:root {
  --primary-color: hsl(259, 84%, 60%);
  --secondary-color: hsl(49, 67%, 58%);
  --bg-color: hsl(259, 8%, 96%);
  --text-color: hsl(259, 10%, 8%);
  --text-muted: hsl(259, 6%, 44%);
  --border-color: rgba(0, 0, 0, 0.08);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.14);
  --nav-height: 64px;
  --max-width: 1200px;
  --transition: all 0.25s ease;
  --nav-bg: var(--bg-color);
  --btn-text: #ffffff;
  --page-primary: hsl(259, 84%, 66%);
  --page-primary-dark: hsl(259, 84%, 56%);
  --page-secondary: hsl(49, 67%, 66%);
  --page-text: hsl(259, 10%, 8%);
  --page-bg: hsl(259, 8%, 96%);
  --page-surface: #ffffff;
  --page-muted: hsl(259, 6%, 45%);
  --page-border: hsl(259, 8%, 88%);
  --dl-primary: hsl(259, 84%, 66%);
  --dl-primary-dark: hsl(259, 84%, 54%);
  --dl-accent: hsl(49, 67%, 66%);
  --dl-text: hsl(259, 10%, 8%);
  --dl-bg: hsl(259, 8%, 96%);
  --dl-surface: #ffffff;
  --dl-muted: hsl(259, 6%, 45%);
  --dl-border: hsl(259, 8%, 88%);
  --page-success: hsl(145, 60%, 40%);
  --page-warning: hsl(35, 90%, 55%);
  --guide-primary: hsl(259, 84%, 66%);
  --guide-secondary: hsl(49, 67%, 66%);
  --guide-text: hsl(259, 10%, 8%);
  --guide-bg: hsl(259, 8%, 96%);
  --guide-surface: #ffffff;
  --guide-border: hsl(259, 10%, 88%);
  --guide-muted: hsl(259, 8%, 45%);
  --guide-step-bg: hsl(259, 20%, 98%);
}

*,
    *::before,
    *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    body {
    padding-top: var(--nav-height);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    }
    
    .dawnLit {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: var(--nav-bg);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    }
    .flicker {
    display: flex;
    align-items: center;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    gap: 8px;
    }
    
    .smelt {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-color);
    flex-shrink: 0;
    margin-right: 24px;
    }
    .quilted {
    width: 28px;
    height: 28px;
    color: var(--primary-color);
    }
    .rune {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    }
    
    .glyph {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4px;
    flex: 1;
    min-width: 0;
    }
    .crumble {
    flex-shrink: 0;
    }
    .tundra {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
    }
    .tundra:hover {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.04);
    }
    
    .fog_ray {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 22px;
    font-size: 14px;
    font-weight: 600;
    color: var(--btn-text);
    background: var(--primary-color);
    border: none;
    border-radius: var(--radius-sm);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 2px 8px hsla(259, 84%, 60%, 0.35);
    transition: var(--transition);
    }
    .fog_ray:hover {
    background: hsl(259, 84%, 52%);
    box-shadow: 0 4px 14px hsla(259, 84%, 52%, 0.4);
    transform: translateY(-1px); color: #ffffff;}
    
    .juniper {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: auto;
    }
    .sableWing {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-color);
    border-radius: 2px;
    transition: var(--transition);
    }
    
    .kv9 {
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease; color: #ffffff;}
    .kv9.is-visible {
    opacity: 1;
    visibility: visible;
    }
    
    .blotch {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1002;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: var(--bg-color);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    }
    .blotch.is-open {
    transform: translateX(0);
    }
    .cragMist {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    padding: 0 20px;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
    }
    .cragMist .rune {
    font-size: 17px;
    }
    .ob7 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    }
    .ob7:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #ffffff;
    }
    .zephyr {
    list-style: none;
    padding: 12px;
    flex: 1;
    }
    .vortex3 {
    display: block;
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    }
    .vortex3:hover {
    background: rgba(0, 0, 0, 0.04);
    color: #ffffff;
    }
    .pixDuo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    margin: 8px 16px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--btn-text);
    background: var(--primary-color);
    border-radius: var(--radius-sm);
    text-decoration: none;
    box-shadow: 0 2px 8px hsla(259, 84%, 60%, 0.35);
    transition: var(--transition);
    flex-shrink: 0;
    }
    .pixDuo:hover {
    background: hsl(259, 84%, 52%); color: #ffffff;}
    
    @media (max-width: 960px) {.glyph {
    display: none;
    }
    .fog_ray {
    display: none;
    }
    .juniper {
    display: flex;
    }}
    .tundra.active {color: #ffffff; background: rgba(0, 0, 0, 0.04);}
    .vortex3.active {background: rgba(0, 0, 0, 0.04); color: #ffffff;}
    main.index *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    main.index .umber{
    padding: 100px 24px 80px;
    text-align: center;
    background: linear-gradient(170deg, var(--page-bg) 0%, hsl(259, 14%, 92%) 50%, hsl(49, 20%, 92%) 100%);
    position: relative;
    overflow: hidden;
    }
    main.index .umber::before{
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, hsla(259, 84%, 66%, 0.08) 0%, transparent 70%);
    pointer-events: none;
    }
    main.index .umber::after{
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, hsla(49, 67%, 66%, 0.1) 0%, transparent 70%);
    pointer-events: none;
    }
    main.index .torque5{
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    }
    main.index .driftSaw{
    display: inline-block;
    padding: 6px 16px;
    background: hsla(259, 84%, 66%, 0.1);
    color: var(--page-primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }
    main.index .umber h1{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--page-text, #1a1a1a);
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    }
    main.index .umber h1 span{
    background: linear-gradient(135deg, var(--page-primary), hsl(280, 80%, 60%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    }
    main.index .lichen{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--page-muted);
    max-width: 580px;
    margin: 0 auto 40px;
    }
    main.index .bramble{
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    }
    main.index .mortar{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--page-primary);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 20px hsla(259, 84%, 66%, 0.35);
    }
    main.index .mortar:hover{
    background: var(--page-primary-dark);
    box-shadow: 0 6px 28px hsla(259, 84%, 66%, 0.45);
    transform: translateY(-1px);
    }
    main.index .mortar svg{
    width: 18px;
    height: 18px;
    fill: currentColor;
    }
    main.index .nimbus{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: var(--page-surface);
    color: var(--page-text, #1a1a1a);
    font-size: 16px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    text-decoration: none;
    border: 2px solid var(--page-border);
    transition: all 0.2s ease;
    }
    main.index .nimbus:hover{
    border-color: var(--page-primary);
    color: var(--page-primary);
    }
    main.index .plinth{
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 64px;
    flex-wrap: wrap;
    }
    main.index .ember_vow{
    text-align: center;
    }
    main.index .sluice{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--page-text, #1a1a1a);
    letter-spacing: -1px;
    }
    main.index .opal{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 13px;
    color: var(--page-muted);
    margin-top: 4px;
    letter-spacing: 0.3px;
    }
    main.index .barb_fin{
    padding: 100px 24px;
    background: var(--page-surface);
    }
    main.index .loom8{
    max-width: 1120px;
    margin: 0 auto;
    }
    main.index .prismCut{
    text-align: center;
    margin-bottom: 64px;
    }
    main.index .prismCut h2{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--page-text, #1a1a1a);
    letter-spacing: -0.8px;
    margin-bottom: 16px;
    }
    main.index .prismCut p{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    color: var(--page-muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
    }
    main.index .cobalt{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    }
    main.index .whelk{
    padding: 40px 32px;
    background: var(--page-bg);
    border: 1px solid var(--page-border);
    transition: all 0.25s ease;
    position: relative;
    }
    main.index .whelk:hover{
    border-color: var(--page-primary);
    box-shadow: 0 8px 32px hsla(259, 84%, 66%, 0.08);
    transform: translateY(-2px);
    }
    main.index .cinder_fox{
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsla(259, 84%, 66%, 0.1);
    margin-bottom: 24px;
    }
    main.index .cinder_fox svg{
    width: 24px;
    height: 24px;
    stroke: var(--page-primary);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    }
    main.index .whelk h3{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--page-text, #1a1a1a);
    margin-bottom: 12px;
    }
    main.index .whelk p{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: var(--page-muted);
    }
    main.index .wv2{
    padding: 100px 24px;
    background: var(--page-bg);
    }
    main.index .calcDew{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    }
    main.index .pyre{
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid var(--page-border);
    }
    main.index .axle h2{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 800;
    color: var(--page-text, #1a1a1a);
    letter-spacing: -0.6px;
    margin-bottom: 20px;
    }
    main.index .axle p{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--page-muted);
    margin-bottom: 16px;
    }
    main.index .gristMill{
    list-style: none;
    margin: 24px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    }
    main.index .gristMill li{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    color: var(--page-text, #1a1a1a);
    display: flex;
    align-items: center;
    gap: 12px;
    }
    main.index .gristMill li::before{
    content: "";
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: var(--page-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    }
    main.index .jarMoss{
    color: var(--page-primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
    }
    main.index .jarMoss:hover{
    border-bottom-color: var(--page-primary);
    }
    main.index .quill_dip{
    padding: 100px 24px;
    background: var(--page-surface);
    }
    main.index .haze{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 64px;
    }
    main.index .sprig{
    padding: 36px 24px;
    text-align: center;
    background: var(--page-bg);
    border: 1px solid var(--page-border);
    transition: all 0.25s ease;
    }
    main.index .sprig:hover{
    border-color: var(--page-primary);
    transform: translateY(-2px);
    }
    main.index .talc{
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    }
    main.index .talc svg{
    width: 36px;
    height: 36px;
    fill: var(--page-text, #1a1a1a);
    }
    main.index .sprig h3{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--page-text, #1a1a1a);
    margin-bottom: 8px;
    }
    main.index .sprig p{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 13px;
    color: var(--page-muted);
    }
    main.index .visual-section{
    padding: 100px 24px;
    background: var(--page-bg);
    }
    main.index .visual-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 64px;
    }
    main.index .visual-card{
    position: relative;
    overflow: hidden;
    border: 1px solid var(--page-border);
    }
    main.index .visual-card img{
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    }
    main.index .visual-overlay{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, hsla(259, 10%, 8%, 0.85) 0%, transparent 100%); color: #ffffff;}
    main.index .visual-overlay h3{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    }
    main.index .visual-overlay p{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 13px;
    color: hsla(0, 0%, 100%, 0.75);
    }
    main.index .cta-section{
    padding: 100px 24px;
    background: linear-gradient(135deg, hsl(259, 84%, 66%) 0%, hsl(280, 70%, 55%) 100%);
    text-align: center;
    }
    main.index .cta-section h2{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.8px;
    margin-bottom: 16px;
    }
    main.index .cta-section p{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    color: hsla(0, 0%, 100%, 0.85);
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    }
    main.index .cta-section .btn-cta{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 44px;
    background: #ffffff;
    color: var(--page-primary);
    font-size: 17px;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 20px hsla(0, 0%, 0%, 0.15);
    }
    main.index .cta-section .btn-cta:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 32px hsla(0, 0%, 0%, 0.2);
    }
    main.index .cta-version{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 13px;
    color: hsla(0, 0%, 100%, 0.6);
    margin-top: 20px;
    }
    main.index .page-footer{
    padding: 48px 24px;
    background: var(--page-text, hsl(259, 10%, 8%));
    text-align: center;
    }
    main.index .fathom{
    max-width: 1120px;
    margin: 0 auto;
    }
    main.index .footer-links{
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    }
    main.index .footer-links a{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14px;
    color: hsla(0, 0%, 100%, 0.5);
    text-decoration: none;
    transition: color 0.2s;
    }
    main.index .footer-links a:hover{
    color: hsla(0, 0%, 100%, 0.85);
    }
    main.index .footer-copy{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 13px;
    color: hsla(0, 0%, 100%, 0.35);
    }
    @media (max-width: 900px) {main.index .cobalt{
    grid-template-columns: 1fr 1fr;
    }
    main.index .calcDew{
    grid-template-columns: 1fr;
    gap: 32px;
    }
    main.index .calcDew.reverse{
    direction: ltr;
    }
    main.index .haze{
    grid-template-columns: 1fr 1fr;
    }
    main.index .visual-grid{
    grid-template-columns: 1fr;
    }
    main.index .plinth{
    gap: 32px;
    }}
    @media (max-width: 600px) {main.index .cobalt{
    grid-template-columns: 1fr;
    }
    main.index .haze{
    grid-template-columns: 1fr 1fr;
    }
    main.index .bramble{
    flex-direction: column;
    align-items: center;
    }
    main.index .mortar, main.index .nimbus{
    width: 100%;
    max-width: 320px;
    justify-content: center;
    }
    main.index .footer-links{
    gap: 20px;
    }}
    main.index .joltArc{
    background: hsl(259, 12%, 10%);
    color: hsl(259, 6%, 72%);
    padding: 64px 24px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    }
    main.index .fathom{
    max-width: var(--max-width, 1200px);
    margin: 0 auto;
    display: flex;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid hsl(259, 8%, 20%);
    }
    main.index .duskHum{
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 8px;
    }
    main.index .cruxVane{
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    }
    main.index .waspNib{
    margin: 0;
    color: hsl(259, 6%, 50%);
    font-size: 14px;
    }
    main.index .knotElm{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    }
    main.index .riven{
    margin: 0 0 4px;
    font-size: 13px;
    font-weight: 600;
    color: hsl(259, 6%, 56%);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    }
    main.index .vexCurl{
    color: hsl(259, 6%, 78%);
    text-decoration: none;
    transition: color 0.2s ease;
    width: fit-content;
    }
    main.index .vexCurl:hover{
    color: var(--primary-color, hsl(259, 84%, 60%));
    }
    main.index .eddy{
    max-width: var(--max-width, 1200px);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    }
    main.index .skald{
    color: hsl(259, 6%, 42%);
    font-size: 13px;
    flex-shrink: 0;
    }
    main.index .pewter{
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    }
    main.index .fen3{
    color: hsl(259, 6%, 50%);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
    }
    main.index .fen3:hover{
    color: var(--primary-color, hsl(259, 84%, 60%));
    }
    main.index .shale{
    color: hsl(259, 6%, 30%);
    font-size: 13px;
    }
    @media (max-width: 768px) {main.index .joltArc{
    padding: 48px 20px 0;
    }
    main.index .fathom{
    flex-wrap: wrap;
    gap: 32px;
    }
    main.index .duskHum{
    flex: 1 1 100%;
    }
    main.index .knotElm{
    flex: 1 1 calc(33.333% - 24px);
    min-width: 120px;
    }
    main.index .eddy{
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 20px 0;
    }}

    *,
    *::before,
    *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    body {
    padding-top: var(--nav-height);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    }
    
    .dawnLit {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: var(--nav-bg);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    }
    .flicker {
    display: flex;
    align-items: center;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    gap: 8px;
    }
    
    .smelt {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-color);
    flex-shrink: 0;
    margin-right: 24px;
    }
    .quilted {
    width: 28px;
    height: 28px;
    color: var(--primary-color);
    }
    .rune {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    }
    
    .glyph {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4px;
    flex: 1;
    min-width: 0;
    }
    .crumble {
    flex-shrink: 0;
    }
    .tundra {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
    }
    .tundra:hover {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.04);
    }
    
    .fog_ray {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 22px;
    font-size: 14px;
    font-weight: 600;
    color: var(--btn-text);
    background: var(--primary-color);
    border: none;
    border-radius: var(--radius-sm);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 2px 8px hsla(259, 84%, 60%, 0.35);
    transition: var(--transition);
    }
    .fog_ray:hover {
    background: hsl(259, 84%, 52%);
    box-shadow: 0 4px 14px hsla(259, 84%, 52%, 0.4);
    transform: translateY(-1px); color: #ffffff;}
    
    .juniper {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: auto;
    }
    .sableWing {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-color);
    border-radius: 2px;
    transition: var(--transition);
    }
    
    .kv9 {
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease; color: #ffffff;}
    .kv9.is-visible {
    opacity: 1;
    visibility: visible;
    }
    
    .blotch {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1002;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: var(--bg-color);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    }
    .blotch.is-open {
    transform: translateX(0);
    }
    .cragMist {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    padding: 0 20px;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
    }
    .cragMist .rune {
    font-size: 17px;
    }
    .ob7 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    }
    .ob7:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #ffffff;
    }
    .zephyr {
    list-style: none;
    padding: 12px;
    flex: 1;
    }
    .vortex3 {
    display: block;
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    }
    .vortex3:hover {
    background: rgba(0, 0, 0, 0.04);
    color: #ffffff;
    }
    .pixDuo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    margin: 8px 16px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--btn-text);
    background: var(--primary-color);
    border-radius: var(--radius-sm);
    text-decoration: none;
    box-shadow: 0 2px 8px hsla(259, 84%, 60%, 0.35);
    transition: var(--transition);
    flex-shrink: 0;
    }
    .pixDuo:hover {
    background: hsl(259, 84%, 52%); color: #ffffff;}
    
    @media (max-width: 960px) {.glyph {
    display: none;
    }
    .fog_ray {
    display: none;
    }
    .juniper {
    display: flex;
    }}
    .tundra.active {color: #ffffff; background: rgba(0, 0, 0, 0.04);}
    .vortex3.active {background: rgba(0, 0, 0, 0.04); color: #ffffff;}
    main.download .dapple{
    padding: 80px 24px 64px;
    text-align: center;
    background: linear-gradient(170deg, hsl(259, 30%, 18%) 0%, hsl(259, 40%, 28%) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    }
    main.download .dapple::before{
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: var(--dl-primary);
    opacity: 0.15;
    border-radius: 50%;
    filter: blur(80px);
    }
    main.download .dapple::after{
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: var(--dl-accent);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(60px);
    }
    main.download .oxbow{
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    }
    main.download .cairn{
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    font-size: 13px;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    color: var(--dl-accent);
    font-weight: 600;
    }
    main.download .dapple h1{
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 20px;
    letter-spacing: -0.5px;
    }
    main.download .kelp{
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    margin: 0 0 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    }
    main.download .gulch{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 48px;
    background: var(--dl-primary);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 4px 24px rgba(124, 77, 255, 0.35);
    cursor: pointer;
    border: none;
    }
    main.download .gulch:hover{
    background: var(--dl-primary-dark);
    transform: translateY(-1px);
    }
    main.download .gulch svg{
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    }
    main.download .woad{
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    }
    main.download .woad span + span::before{
    content: "·";
    margin: 0 8px;
    }
    main.download .vale{
    padding: 72px 24px;
    background: var(--dl-bg, #f4f3f6);
    }
    main.download .zinc5{
    max-width: 1080px;
    margin: 0 auto;
    }
    main.download .vale h2{
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    color: var(--dl-text, #1a1520);
    margin: 0 0 12px;
    letter-spacing: -0.3px;
    }
    main.download .furze{
    text-align: center;
    color: var(--dl-muted);
    font-size: 1rem;
    margin: 0 0 48px;
    line-height: 1.6;
    }
    main.download .frond{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    }
    main.download .mote3{
    background: var(--dl-surface);
    border: 1px solid var(--dl-border);
    padding: 36px 28px 32px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.15s;
    }
    main.download .mote3:hover{
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transform: translateY(-2px);
    }
    main.download .pang{
    width: 52px;
    height: 52px;
    margin: 0 auto 20px;
    background: var(--dl-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    }
    main.download .pang svg{
    width: 28px;
    height: 28px;
    color: var(--dl-primary);
    }
    main.download .mote3 h3{
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dl-text, #1a1520);
    margin: 0 0 6px;
    }
    main.download .quag{
    font-size: 13px;
    color: var(--dl-muted);
    margin: 0 0 20px;
    }
    main.download .anvil{
    display: inline-block;
    padding: 12px 28px;
    background: var(--dl-primary);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    }
    main.download .anvil:hover{
    background: var(--dl-primary-dark);
    }
    main.download .ivyTwist{
    display: block;
    margin-top: 12px;
    font-size: 12px;
    color: var(--dl-muted);
    }
    main.download .riptow{
    padding: 72px 24px;
    background: var(--dl-surface, #fff);
    }
    main.download .dowel{
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    }
    main.download .brine_pod h2{
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dl-text, #1a1520);
    margin: 0 0 24px;
    letter-spacing: -0.3px;
    }
    main.download .elk9{
    width: 100%;
    border-collapse: collapse;
    }
    main.download .elk9 tr{
    border-bottom: 1px solid var(--dl-border);
    }
    main.download .elk9 td{
    padding: 14px 0;
    font-size: 0.95rem;
    color: var(--dl-text, #1a1520);
    }
    main.download .elk9 td:first-child{
    color: var(--dl-muted);
    width: 140px;
    font-size: 0.9rem;
    }
    main.download .abloom{
    color: var(--dl-primary);
    text-decoration: none;
    font-weight: 600;
    }
    main.download .abloom:hover{
    text-decoration: underline;
    }
    main.download .gavel h2{
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dl-text, #1a1520);
    margin: 0 0 24px;
    letter-spacing: -0.3px;
    }
    main.download .thrum_ax{
    list-style: none;
    padding: 0;
    margin: 0;
    }
    main.download .thrum_ax li{
    padding: 12px 0;
    border-bottom: 1px solid var(--dl-border);
    font-size: 0.95rem;
    color: var(--dl-text, #1a1520);
    display: flex;
    gap: 10px;
    align-items: baseline;
    }
    main.download .thrum_ax li::before{
    content: "";
    width: 6px;
    height: 6px;
    background: var(--dl-primary);
    flex-shrink: 0;
    margin-top: 6px;
    }
    main.download .scud{
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--dl-muted);
    line-height: 1.6;
    }
    main.download .scud a{
    color: var(--dl-primary);
    text-decoration: none;
    font-weight: 600;
    }
    main.download .scud a:hover{
    text-decoration: underline;
    }
    main.download .tessGap{
    padding: 72px 24px;
    background: var(--dl-bg, #f4f3f6);
    }
    main.download .husk_orb{
    max-width: 1080px;
    margin: 0 auto;
    }
    main.download .tessGap h2{
    font-size: 1.5rem;
    font-weight: 800;
    text-align: center;
    color: var(--dl-text, #1a1520);
    margin: 0 0 48px;
    }
    main.download .jib{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    }
    main.download .urnVex{
    background: var(--dl-surface);
    border: 1px solid var(--dl-border);
    padding: 32px 28px;
    }
    main.download .cleat4{
    width: 44px;
    height: 44px;
    background: hsl(259, 84%, 96%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    }
    main.download .cleat4 svg{
    width: 22px;
    height: 22px;
    color: var(--dl-primary);
    }
    main.download .urnVex h3{
    font-size: 1rem;
    font-weight: 700;
    color: var(--dl-text, #1a1520);
    margin: 0 0 8px;
    }
    main.download .urnVex p{
    font-size: 0.9rem;
    color: var(--dl-muted);
    line-height: 1.65;
    margin: 0;
    }
    main.download .ochre{
    padding: 72px 24px;
    background: var(--dl-surface, #fff);
    }
    main.download .murk{
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    }
    main.download .ochre h2{
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dl-text, #1a1520);
    margin: 0 0 24px;
    }
    main.download .bevel_kin{
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    counter-reset: step;
    }
    main.download .bevel_kin li{
    counter-increment: step;
    padding: 14px 0;
    font-size: 0.95rem;
    color: var(--dl-text, #1a1520);
    display: flex;
    gap: 14px;
    align-items: baseline;
    border-bottom: 1px solid var(--dl-border);
    }
    main.download .bevel_kin li::before{
    content: counter(step);
    width: 28px;
    height: 28px;
    background: var(--dl-primary);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    }
    main.download .erg{
    color: var(--dl-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    }
    main.download .erg:hover{
    text-decoration: underline;
    }
    main.download .cuspJaw{
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid var(--dl-border);
    }
    main.download .nubCrag{
    padding: 40px 24px;
    background: hsl(259, 30%, 14%);
    color: rgba(255,255,255,0.5);
    text-align: center;
    font-size: 0.85rem;
    }
    main.download .xyst{
    max-width: 1080px;
    margin: 0 auto;
    }
    main.download .lancet{
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    }
    main.download .yawl{
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    }
    main.download .yawl a{
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
    }
    main.download .yawl a:hover{
    color: rgba(255,255,255,0.8);
    }
    @media (max-width: 900px) {main.download .frond{
    grid-template-columns: repeat(2, 1fr);
    }
    main.download .dowel{
    grid-template-columns: 1fr;
    gap: 48px;
    }
    main.download .jib{
    grid-template-columns: 1fr;
    }
    main.download .murk{
    grid-template-columns: 1fr;
    }}
    @media (max-width: 560px) {main.download .dapple{
    padding: 56px 20px 48px;
    }
    main.download .dapple h1{
    font-size: 1.8rem;
    }
    main.download .frond{
    grid-template-columns: 1fr;
    }
    main.download .gulch{
    padding: 16px 36px;
    font-size: 1rem;
    }
    main.download .vale, main.download .riptow, main.download .tessGap, main.download .ochre{
    padding: 48px 20px;
    }}

    *,
    *::before,
    *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    body {
    padding-top: var(--nav-height);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    }
    
    .dawnLit {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: var(--nav-bg);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    }
    .flicker {
    display: flex;
    align-items: center;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    gap: 8px;
    }
    
    .smelt {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-color);
    flex-shrink: 0;
    margin-right: 24px;
    }
    .quilted {
    width: 28px;
    height: 28px;
    color: var(--primary-color);
    }
    .rune {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    }
    
    .glyph {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4px;
    flex: 1;
    min-width: 0;
    }
    .crumble {
    flex-shrink: 0;
    }
    .tundra {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
    }
    .tundra:hover {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.04);
    }
    
    .fog_ray {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 22px;
    font-size: 14px;
    font-weight: 600;
    color: var(--btn-text);
    background: var(--primary-color);
    border: none;
    border-radius: var(--radius-sm);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 2px 8px hsla(259, 84%, 60%, 0.35);
    transition: var(--transition);
    }
    .fog_ray:hover {
    background: hsl(259, 84%, 52%);
    box-shadow: 0 4px 14px hsla(259, 84%, 52%, 0.4);
    transform: translateY(-1px); color: #ffffff;}
    
    .juniper {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: auto;
    }
    .sableWing {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-color);
    border-radius: 2px;
    transition: var(--transition);
    }
    
    .kv9 {
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease; color: #ffffff;}
    .kv9.is-visible {
    opacity: 1;
    visibility: visible;
    }
    
    .blotch {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1002;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: var(--bg-color);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    }
    .blotch.is-open {
    transform: translateX(0);
    }
    .cragMist {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    padding: 0 20px;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
    }
    .cragMist .rune {
    font-size: 17px;
    }
    .ob7 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    }
    .ob7:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #ffffff;
    }
    .zephyr {
    list-style: none;
    padding: 12px;
    flex: 1;
    }
    .vortex3 {
    display: block;
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    }
    .vortex3:hover {
    background: rgba(0, 0, 0, 0.04);
    color: #ffffff;
    }
    .pixDuo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    margin: 8px 16px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--btn-text);
    background: var(--primary-color);
    border-radius: var(--radius-sm);
    text-decoration: none;
    box-shadow: 0 2px 8px hsla(259, 84%, 60%, 0.35);
    transition: var(--transition);
    flex-shrink: 0;
    }
    .pixDuo:hover {
    background: hsl(259, 84%, 52%); color: #ffffff;}
    
    @media (max-width: 960px) {.glyph {
    display: none;
    }
    .fog_ray {
    display: none;
    }
    .juniper {
    display: flex;
    }}
    .tundra.active {color: #ffffff; background: rgba(0, 0, 0, 0.04);}
    .vortex3.active {background: rgba(0, 0, 0, 0.04); color: #ffffff;}
    main.features *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    main.features .pulse{
    padding: 100px 24px 80px;
    background: linear-gradient(165deg, hsl(259, 30%, 14%) 0%, hsl(259, 40%, 22%) 50%, hsl(259, 50%, 30%) 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    }
    main.features .pulse::before{
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, hsla(259, 84%, 66%, 0.15) 0%, transparent 70%);
    pointer-events: none;
    }
    main.features .pulse::after{
    content: "";
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, hsla(49, 67%, 66%, 0.1) 0%, transparent 70%);
    pointer-events: none;
    }
    main.features .pulse h1{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto 24px;
    letter-spacing: -0.02em;
    position: relative;
    }
    main.features .pulse h1 span{
    color: var(--page-secondary);
    }
    main.features .helix{
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 40px;
    color: hsla(0, 0%, 100%, 0.75);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    position: relative;
    }
    main.features .thorn{
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    }
    main.features .nexus{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: var(--page-primary);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 20px hsla(259, 84%, 66%, 0.35);
    }
    main.features .nexus:hover{
    background: var(--page-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px hsla(259, 84%, 66%, 0.45);
    }
    main.features .vale{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: hsla(0, 0%, 100%, 0.1);
    border: 1px solid hsla(0, 0%, 100%, 0.2);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    }
    main.features .vale:hover{
    background: hsla(0, 0%, 100%, 0.18);
    transform: translateY(-2px);
    }
    main.features .orbit{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1100px;
    margin: -48px auto 0;
    position: relative;
    z-index: 2;
    background: var(--page-surface);
    box-shadow: 0 8px 40px hsla(259, 20%, 10%, 0.08);
    }
    main.features .crux{
    padding: 36px 24px;
    text-align: center;
    border-right: 1px solid var(--page-border);
    }
    main.features .crux:last-child{
    border-right: none;
    }
    main.features .basalt{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--page-primary);
    letter-spacing: -0.02em;
    }
    main.features .mosaic{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.875rem;
    color: var(--page-muted);
    margin-top: 4px;
    }
    main.features .mythos{
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    }
    main.features .alchemy{
    padding: 100px 24px;
    background: var(--page-bg);
    }
    main.features .ember{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--page-primary);
    margin-bottom: 12px;
    }
    main.features .alchemy h2{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--page-text, #333333);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    }
    main.features .vortex{
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--page-muted);
    max-width: 560px;
    margin-bottom: 60px;
    }
    main.features .karma{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    }
    main.features .nebula{
    background: var(--page-surface);
    padding: 40px 32px;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    }
    main.features .nebula:hover{
    transform: translateY(-4px);
    box-shadow: 0 12px 40px hsla(259, 20%, 10%, 0.08);
    z-index: 1;
    }
    main.features .husk{
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsla(259, 84%, 66%, 0.08);
    margin-bottom: 20px;
    }
    main.features .husk svg{
    width: 24px;
    height: 24px;
    stroke: var(--page-primary);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    }
    main.features .nebula h3{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--page-text, #333333);
    margin-bottom: 10px;
    }
    main.features .nebula p{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.925rem;
    line-height: 1.7;
    color: var(--page-muted);
    }
    main.features .cobalt{
    padding: 100px 24px;
    background: var(--page-surface);
    }
    main.features .ivory{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    }
    main.features .ivory + .ivory{
    margin-top: 100px;
    }
    main.features .ivory.zenith .delta{
    order: -1;
    }
    main.features .latch h2{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--page-text, #333333);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    }
    main.features .latch p{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--page-muted);
    margin-bottom: 28px;
    }
    main.features .umbra{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    }
    main.features .umbra li{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.95rem;
    color: var(--page-text, #333333);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
    }
    main.features .umbra li::before{
    content: "";
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    background: var(--page-primary);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E") center/contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E") center/contain no-repeat;
    }
    main.features .delta{
    position: relative;
    }
    main.features .delta img{
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    }
    main.features .onyx{
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--page-primary);
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 16px;
    letter-spacing: 0.04em;
    }
    main.features .features-comparison{
    padding: 100px 24px;
    background: var(--page-bg);
    }
    main.features .features-comparison h2{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--page-text, #333333);
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 16px;
    }
    main.features .comparison-desc{
    text-align: center;
    font-size: 1.05rem;
    color: var(--page-muted);
    margin-bottom: 48px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    }
    main.features .comparison-table-wrap{
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
    }
    main.features .comparison-table{
    width: 100%;
    border-collapse: collapse;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    }
    main.features .comparison-table thead th{
    padding: 16px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--page-muted);
    text-align: center;
    border-bottom: 2px solid var(--page-border);
    }
    main.features .comparison-table thead th:first-child{
    text-align: left;
    }
    main.features .comparison-table thead th.highlight-col{
    color: var(--page-primary);
    background: hsla(259, 84%, 66%, 0.04);
    }
    main.features .comparison-table tbody td{
    padding: 16px 20px;
    font-size: 0.95rem;
    color: var(--page-text, #333333);
    text-align: center;
    border-bottom: 1px solid var(--page-border);
    }
    main.features .comparison-table tbody td:first-child{
    text-align: left;
    font-weight: 600;
    }
    main.features .comparison-table tbody td.highlight-col{
    background: hsla(259, 84%, 66%, 0.04);
    font-weight: 600;
    }
    main.features .check-yes{
    color: hsl(145, 60%, 40%);
    font-weight: 700;
    font-size: 1.1rem;
    }
    main.features .check-no{
    color: hsl(0, 0%, 72%);
    font-size: 1.1rem;
    }
    main.features .check-partial{
    color: hsl(40, 70%, 50%);
    font-size: 0.85rem;
    font-weight: 600;
    }
    main.features .features-cta{
    padding: 100px 24px;
    background: linear-gradient(165deg, hsl(259, 30%, 14%) 0%, hsl(259, 50%, 30%) 100%);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    }
    main.features .features-cta::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, hsla(259, 84%, 66%, 0.12) 0%, transparent 60%);
    pointer-events: none;
    }
    main.features .features-cta h2{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    position: relative;
    }
    main.features .features-cta p{
    font-size: 1.1rem;
    color: hsla(0, 0%, 100%, 0.7);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    position: relative;
    }
    main.features .features-cta .nexus{
    font-size: 1.1rem;
    padding: 18px 44px;
    position: relative;
    }
    main.features .page-footer{
    background: hsl(259, 20%, 10%);
    color: hsla(0, 0%, 100%, 0.5);
    padding: 48px 24px;
    }
    main.features .flux{
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    }
    main.features .prism{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: hsla(0, 0%, 100%, 0.8);
    }
    main.features .footer-copy{
    font-size: 0.85rem;
    }
    main.features .footer-links{
    display: flex;
    gap: 24px;
    list-style: none;
    }
    main.features .footer-links a{
    font-size: 0.85rem;
    color: hsla(0, 0%, 100%, 0.5);
    text-decoration: none;
    transition: color 0.2s;
    }
    main.features .footer-links a:hover{
    color: hsla(0, 0%, 100%, 0.85);
    }
    @media (max-width: 900px) {main.features .orbit{
    grid-template-columns: repeat(2, 1fr);
    }
    main.features .crux:nth-child(2){
    border-right: none;
    }
    main.features .crux:nth-child(1), main.features .crux:nth-child(2){
    border-bottom: 1px solid var(--page-border);
    }
    main.features .karma{
    grid-template-columns: repeat(2, 1fr);
    }
    main.features .ivory{
    grid-template-columns: 1fr;
    gap: 40px;
    }
    main.features .ivory.zenith .delta{
    order: 0;
    }}
    @media (max-width: 600px) {main.features .orbit{
    grid-template-columns: 1fr;
    }
    main.features .crux{
    border-right: none;
    border-bottom: 1px solid var(--page-border);
    }
    main.features .crux:last-child{
    border-bottom: none;
    }
    main.features .karma{
    grid-template-columns: 1fr;
    }
    main.features .pulse{
    padding: 80px 20px 64px;
    }
    main.features .nebula{
    padding: 32px 24px;
    }
    main.features .flux{
    flex-direction: column;
    text-align: center;
    }
    main.features .footer-links{
    justify-content: center;
    }}
    main.features .cipher{
    background: hsl(259, 12%, 10%);
    color: hsl(259, 6%, 72%);
    padding: 64px 24px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    }
    main.features .flux{
    max-width: var(--max-width, 1200px);
    margin: 0 auto;
    display: flex;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid hsl(259, 8%, 20%);
    }
    main.features .prism{
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 12px;
    }
    main.features .xeno{
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
    }
    main.features .bramble{
    color: hsl(259, 6%, 52%);
    font-size: 14px;
    margin: 0;
    max-width: 240px;
    line-height: 1.7;
    }
    main.features .quiver{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    }
    main.features .riddle{
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin: 0 0 4px;
    }
    main.features .jade{
    color: hsl(259, 6%, 56%);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
    display: inline-block;
    }
    main.features .jade:hover{
    color: var(--primary-color, hsl(259, 84%, 60%));
    }
    main.features .yield{
    max-width: var(--max-width, 1200px);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    }
    main.features .aurora{
    color: hsl(259, 6%, 40%);
    font-size: 13px;
    flex-shrink: 0;
    }
    main.features .shard{
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    }
    main.features .forge{
    color: hsl(259, 6%, 46%);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
    }
    main.features .forge:hover{
    color: var(--primary-color, hsl(259, 84%, 60%));
    }
    main.features .warp{
    color: hsl(259, 6%, 30%);
    font-size: 12px;
    user-select: none;
    }
    @media (max-width: 768px) {main.features .cipher{
    padding: 48px 20px 0;
    }
    main.features .flux{
    flex-direction: column;
    gap: 36px;
    padding-bottom: 36px;
    }
    main.features .prism{
    flex: none;
    }
    main.features .quiver{
    flex: none;
    }
    main.features .yield{
    flex-direction: column;
    gap: 12px;
    padding: 20px 0;
    text-align: center;
    }
    main.features .aurora{
    flex-shrink: unset;
    }
    main.features .shard{
    flex-shrink: unset;
    }}

    *,
    *::before,
    *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    body {
    padding-top: var(--nav-height);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    }
    
    .dawnLit {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: var(--nav-bg);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    }
    .flicker {
    display: flex;
    align-items: center;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    gap: 8px;
    }
    
    .smelt {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-color);
    flex-shrink: 0;
    margin-right: 24px;
    }
    .quilted {
    width: 28px;
    height: 28px;
    color: var(--primary-color);
    }
    .rune {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    }
    
    .glyph {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4px;
    flex: 1;
    min-width: 0;
    }
    .crumble {
    flex-shrink: 0;
    }
    .tundra {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
    }
    .tundra:hover {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.04);
    }
    
    .fog_ray {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 22px;
    font-size: 14px;
    font-weight: 600;
    color: var(--btn-text);
    background: var(--primary-color);
    border: none;
    border-radius: var(--radius-sm);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 2px 8px hsla(259, 84%, 60%, 0.35);
    transition: var(--transition);
    }
    .fog_ray:hover {
    background: hsl(259, 84%, 52%);
    box-shadow: 0 4px 14px hsla(259, 84%, 52%, 0.4);
    transform: translateY(-1px); color: #ffffff;}
    
    .juniper {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: auto;
    }
    .sableWing {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-color);
    border-radius: 2px;
    transition: var(--transition);
    }
    
    .kv9 {
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease; color: #ffffff;}
    .kv9.is-visible {
    opacity: 1;
    visibility: visible;
    }
    
    .blotch {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1002;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: var(--bg-color);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    }
    .blotch.is-open {
    transform: translateX(0);
    }
    .cragMist {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    padding: 0 20px;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
    }
    .cragMist .rune {
    font-size: 17px;
    }
    .ob7 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    }
    .ob7:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #ffffff;
    }
    .zephyr {
    list-style: none;
    padding: 12px;
    flex: 1;
    }
    .vortex3 {
    display: block;
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    }
    .vortex3:hover {
    background: rgba(0, 0, 0, 0.04);
    color: #ffffff;
    }
    .pixDuo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    margin: 8px 16px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--btn-text);
    background: var(--primary-color);
    border-radius: var(--radius-sm);
    text-decoration: none;
    box-shadow: 0 2px 8px hsla(259, 84%, 60%, 0.35);
    transition: var(--transition);
    flex-shrink: 0;
    }
    .pixDuo:hover {
    background: hsl(259, 84%, 52%); color: #ffffff;}
    
    @media (max-width: 960px) {.glyph {
    display: none;
    }
    .fog_ray {
    display: none;
    }
    .juniper {
    display: flex;
    }}
    .tundra.active {color: #ffffff; background: rgba(0, 0, 0, 0.04);}
    .vortex3.active {background: rgba(0, 0, 0, 0.04); color: #ffffff;}
    main.system-requirements *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    main.system-requirements .inlet{
    position: relative;
    overflow: hidden;
    padding: 80px 24px 64px;
    background: linear-gradient(165deg, hsl(259, 30%, 14%) 0%, hsl(259, 40%, 22%) 50%, hsl(259, 50%, 30%) 100%);
    color: #fff;
    }
    main.system-requirements .inlet::after{
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, hsla(259, 84%, 66%, 0.15) 0%, transparent 70%);
    pointer-events: none;
    }
    main.system-requirements .ripple{
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    }
    main.system-requirements .frost{
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--page-secondary);
    margin-bottom: 20px;
    }
    main.system-requirements .inlet h1{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    }
    main.system-requirements .vivid{
    font-size: 17px;
    line-height: 1.7;
    color: hsla(0, 0%, 100%, 0.75);
    max-width: 640px;
    margin-bottom: 32px;
    }
    main.system-requirements .jewel{
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    }
    main.system-requirements .haven{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    font-family: inherit;
    }
    main.system-requirements .haven:hover{
    transform: translateY(-1px);
    }
    main.system-requirements .marsh{
    background: var(--page-primary);
    color: #fff;
    box-shadow: 0 4px 16px hsla(259, 84%, 50%, 0.35);
    }
    main.system-requirements .marsh:hover{
    background: var(--page-primary-dark);
    box-shadow: 0 6px 24px hsla(259, 84%, 50%, 0.45);
    }
    main.system-requirements .lantern{
    background: hsla(0, 0%, 100%, 0.08);
    color: #fff;
    border: 1.5px solid hsla(0, 0%, 100%, 0.25);
    }
    main.system-requirements .lantern:hover{
    background: hsla(0, 0%, 100%, 0.14);
    }
    main.system-requirements .phantom{
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    }
    main.system-requirements .nimbus{
    padding: 72px 0;
    }
    main.system-requirements .sr-section-alt{
    background: var(--page-surface);
    }
    main.system-requirements .xenon{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 800;
    color: var(--page-text, #1a1a1a);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    }
    main.system-requirements .knot{
    font-size: 16px;
    color: var(--page-muted);
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 600px;
    }
    main.system-requirements .tide{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    }
    main.system-requirements .cascade{
    background: var(--page-bg);
    border: 1px solid var(--page-border);
    padding: 0;
    overflow: hidden;
    transition: box-shadow 0.2s;
    }
    main.system-requirements .cascade:hover{
    box-shadow: 0 8px 32px hsla(259, 20%, 20%, 0.08);
    }
    main.system-requirements .quarry{
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 28px 20px;
    border-bottom: 1px solid var(--page-border);
    }
    main.system-requirements .dusk{
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--page-primary);
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
    }
    main.system-requirements .dusk.crest{ background: hsl(207, 80%, 52%); }
    main.system-requirements .dusk.obsidian{ background: hsl(0, 0%, 18%); color: #ffffff;}
    main.system-requirements .dusk.zinc{ background: hsl(40, 80%, 50%); }
    main.system-requirements .dusk.hollow{ background: hsl(140, 60%, 42%); }
    main.system-requirements .dusk.mirage{ background: hsl(0, 0%, 28%); color: #ffffff;}
    main.system-requirements .urchin{
    font-size: 18px;
    font-weight: 700;
    color: var(--page-text, #1a1a1a);
    }
    main.system-requirements .glacier{
    font-size: 13px;
    color: var(--page-muted);
    margin-top: 2px;
    }
    main.system-requirements .grove{
    padding: 24px 28px 28px;
    }
    main.system-requirements .elm{
    width: 100%;
    border-collapse: collapse;
    }
    main.system-requirements .elm tr{
    border-bottom: 1px solid var(--page-border);
    }
    main.system-requirements .elm tr:last-child{
    border-bottom: none;
    }
    main.system-requirements .elm td{
    padding: 10px 0;
    font-size: 14px;
    line-height: 1.5;
    vertical-align: top;
    color: var(--page-text, #1a1a1a);
    }
    main.system-requirements .elm td:first-child{
    font-weight: 600;
    width: 110px;
    color: var(--page-muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-right: 16px;
    }
    main.system-requirements .drift{
    display: inline-block;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    }
    main.system-requirements .prism{
    background: hsla(259, 84%, 66%, 0.1);
    color: var(--page-primary);
    }
    main.system-requirements .sr-badge-rec{
    background: hsla(145, 60%, 40%, 0.1);
    color: var(--page-success);
    }
    main.system-requirements .blaze{
    background: var(--page-bg);
    }
    main.system-requirements .velvet{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    }
    main.system-requirements .grain{
    background: var(--page-surface);
    border: 1px solid var(--page-border);
    padding: 32px 28px;
    position: relative;
    }
    main.system-requirements .grain::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    }
    main.system-requirements .grain:nth-child(1)::before{ background: var(--page-primary); }
    main.system-requirements .grain:nth-child(2)::before{ background: var(--page-success); }
    main.system-requirements .grain:nth-child(3)::before{ background: var(--page-secondary); }
    main.system-requirements .jubilee{
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--page-muted);
    margin-bottom: 8px;
    }
    main.system-requirements .ignite{
    font-size: 18px;
    font-weight: 700;
    color: var(--page-text, #1a1a1a);
    margin-bottom: 14px;
    }
    main.system-requirements .summit{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    }
    main.system-requirements .summit li{
    font-size: 14px;
    line-height: 1.5;
    color: var(--page-text, #1a1a1a);
    padding-left: 22px;
    position: relative;
    }
    main.system-requirements .summit li::before{
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--page-success);
    font-weight: 700;
    font-size: 13px;
    }
    main.system-requirements .sr-image-section{
    padding: 0;
    }
    main.system-requirements .sr-image-banner{
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    }
    main.system-requirements .sr-image-banner img{
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    }
    main.system-requirements .sr-image-overlay{
    position: absolute;
    inset: 0 24px;
    background: linear-gradient(90deg, hsla(259, 30%, 14%, 0.85) 0%, hsla(259, 30%, 14%, 0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px;
    color: #fff;
    }
    main.system-requirements .sr-image-overlay h2{
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    margin-bottom: 12px;
    }
    main.system-requirements .sr-image-overlay p{
    font-size: 15px;
    line-height: 1.6;
    color: hsla(0, 0%, 100%, 0.8);
    max-width: 440px;
    margin-bottom: 24px;
    }
    main.system-requirements .sr-faq-section{
    background: var(--page-surface);
    }
    main.system-requirements .sr-faq-list{
    max-width: 760px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    }
    main.system-requirements .sr-faq-item{
    border: 1px solid var(--page-border);
    overflow: hidden;
    }
    main.system-requirements .sr-faq-toggle{
    display: none;
    }
    main.system-requirements .sr-faq-label{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--page-text, #1a1a1a);
    background: var(--page-surface);
    transition: background 0.15s;
    user-select: none;
    }
    main.system-requirements .sr-faq-label:hover{
    background: var(--page-bg);
    }
    main.system-requirements .sr-faq-arrow{
    font-size: 18px;
    transition: transform 0.2s;
    color: var(--page-muted);
    flex-shrink: 0;
    margin-left: 16px;
    }
    main.system-requirements .sr-faq-toggle:checked + .sr-faq-label .sr-faq-arrow{
    transform: rotate(180deg);
    }
    main.system-requirements .sr-faq-content{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    }
    main.system-requirements .sr-faq-toggle:checked ~ .sr-faq-content{
    max-height: 300px;
    }
    main.system-requirements .sr-faq-answer{
    padding: 0 24px 20px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--page-muted);
    }
    main.system-requirements .sr-faq-answer a{
    color: var(--page-primary);
    text-decoration: none;
    font-weight: 500;
    }
    main.system-requirements .sr-faq-answer a:hover{
    text-decoration: underline;
    }
    main.system-requirements .sr-cta-section{
    padding: 80px 24px;
    background: linear-gradient(165deg, hsl(259, 30%, 14%) 0%, hsl(259, 50%, 30%) 100%);
    text-align: center;
    color: #fff;
    }
    main.system-requirements .sr-cta-section h2{
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 800;
    margin-bottom: 14px;
    }
    main.system-requirements .sr-cta-section p{
    font-size: 16px;
    color: hsla(0, 0%, 100%, 0.7);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    }
    main.system-requirements .abyss{
    display: inline-block;
    font-size: 12px;
    color: var(--page-muted);
    margin-top: 8px;
    }
    main.system-requirements .sr-footer{
    background: hsl(259, 10%, 8%);
    color: hsla(0, 0%, 100%, 0.5);
    padding: 40px 24px;
    }
    main.system-requirements .sr-footer-inner{
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    }
    main.system-requirements .sr-footer-brand{
    font-size: 15px;
    font-weight: 700;
    color: hsla(0, 0%, 100%, 0.8);
    }
    main.system-requirements .sr-footer-links{
    display: flex;
    gap: 24px;
    list-style: none;
    }
    main.system-requirements .sr-footer-links a{
    color: hsla(0, 0%, 100%, 0.5);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.15s;
    }
    main.system-requirements .sr-footer-links a:hover{
    color: #fff;
    }
    main.system-requirements .sr-footer-copy{
    font-size: 13px;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid hsla(0, 0%, 100%, 0.08);
    }
    @media (max-width: 768px) {main.system-requirements .inlet{
    padding: 60px 20px 48px;
    }
    main.system-requirements .nimbus{
    padding: 48px 0;
    }
    main.system-requirements .tide{
    grid-template-columns: 1fr;
    }
    main.system-requirements .velvet{
    grid-template-columns: 1fr;
    }
    main.system-requirements .sr-image-overlay{
    padding: 28px;
    }
    main.system-requirements .sr-image-banner img{
    height: 240px;
    }
    main.system-requirements .sr-footer-inner{
    flex-direction: column;
    text-align: center;
    }
    main.system-requirements .sr-footer-links{
    justify-content: center;
    }
    main.system-requirements .sr-cta-section{
    padding: 56px 20px;
    }}
    main.system-requirements .kindle{
    background: var(--text-color, hsl(259, 10%, 8%));
    padding: 48px 24px 36px;
    color: hsl(259, 8%, 72%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    }
    main.system-requirements .nomad{
    max-width: var(--max-width, 1200px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    }
    main.system-requirements .fable{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    }
    main.system-requirements .yonder{
    flex: 0 0 20px;
    color: var(--primary-color, hsl(259, 84%, 60%));
    }
    main.system-requirements .loom{
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
    flex: 0 0 auto;
    }
    main.system-requirements .plume{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 28px;
    }
    main.system-requirements .whisper{
    flex: 0 0 auto;
    font-size: 14px;
    color: hsl(259, 8%, 58%);
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
    }
    main.system-requirements .whisper:hover{
    color: #fff;
    border-bottom-color: var(--primary-color, hsl(259, 84%, 60%));
    }
    main.system-requirements .opal{
    font-size: 13px;
    color: hsl(259, 6%, 42%);
    margin: 8px 0 0;
    text-align: center;
    }
    @media (max-width: 600px) {main.system-requirements .kindle{
    padding: 36px 16px 28px;
    }
    main.system-requirements .plume{
    flex-direction: column;
    align-items: center;
    gap: 12px;
    }
    main.system-requirements .opal{
    font-size: 12px;
    }}

    *,
    *::before,
    *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    body {
    padding-top: var(--nav-height);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    }
    
    .dawnLit {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: var(--nav-bg);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    }
    .flicker {
    display: flex;
    align-items: center;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    gap: 8px;
    }
    
    .smelt {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-color);
    flex-shrink: 0;
    margin-right: 24px;
    }
    .quilted {
    width: 28px;
    height: 28px;
    color: var(--primary-color);
    }
    .rune {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    }
    
    .glyph {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4px;
    flex: 1;
    min-width: 0;
    }
    .crumble {
    flex-shrink: 0;
    }
    .tundra {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
    }
    .tundra:hover {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.04);
    }
    
    .fog_ray {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 22px;
    font-size: 14px;
    font-weight: 600;
    color: var(--btn-text);
    background: var(--primary-color);
    border: none;
    border-radius: var(--radius-sm);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 2px 8px hsla(259, 84%, 60%, 0.35);
    transition: var(--transition);
    }
    .fog_ray:hover {
    background: hsl(259, 84%, 52%);
    box-shadow: 0 4px 14px hsla(259, 84%, 52%, 0.4);
    transform: translateY(-1px); color: #ffffff;}
    
    .juniper {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: auto;
    }
    .sableWing {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-color);
    border-radius: 2px;
    transition: var(--transition);
    }
    
    .kv9 {
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease; color: #ffffff;}
    .kv9.is-visible {
    opacity: 1;
    visibility: visible;
    }
    
    .blotch {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1002;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: var(--bg-color);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    }
    .blotch.is-open {
    transform: translateX(0);
    }
    .cragMist {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    padding: 0 20px;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
    }
    .cragMist .rune {
    font-size: 17px;
    }
    .ob7 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    }
    .ob7:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #ffffff;
    }
    .zephyr {
    list-style: none;
    padding: 12px;
    flex: 1;
    }
    .vortex3 {
    display: block;
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    }
    .vortex3:hover {
    background: rgba(0, 0, 0, 0.04);
    color: #ffffff;
    }
    .pixDuo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    margin: 8px 16px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--btn-text);
    background: var(--primary-color);
    border-radius: var(--radius-sm);
    text-decoration: none;
    box-shadow: 0 2px 8px hsla(259, 84%, 60%, 0.35);
    transition: var(--transition);
    flex-shrink: 0;
    }
    .pixDuo:hover {
    background: hsl(259, 84%, 52%); color: #ffffff;}
    
    @media (max-width: 960px) {.glyph {
    display: none;
    }
    .fog_ray {
    display: none;
    }
    .juniper {
    display: flex;
    }}
    .tundra.active {color: #ffffff; background: rgba(0, 0, 0, 0.04);}
    .vortex3.active {background: rgba(0, 0, 0, 0.04); color: #ffffff;}
    main.guide *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    main.guide{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--guide-text);
    background: var(--guide-bg);
    line-height: 1.6;
    }
    main.guide .kelp{
    position: relative;
    overflow: hidden;
    padding: 80px 24px 72px;
    background: linear-gradient(135deg, hsl(259, 84%, 66%) 0%, hsl(259, 70%, 50%) 100%);
    color: #fff;
    text-align: center;
    }
    main.guide .kelp::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("static/img/guide-overview-3.jpg") center/cover no-repeat;
    opacity: 0.1;
    pointer-events: none;
    }
    main.guide .basalt{
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    }
    main.guide .kelp h1{
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 16px;
    }
    main.guide .kelp p{
    font-size: 1.1rem;
    opacity: 0.92;
    max-width: 560px;
    margin: 0 auto 32px;
    }
    main.guide .sapphire{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--guide-secondary);
    color: var(--guide-text);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    }
    main.guide .sapphire:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.24);
    }
    main.guide .guide-toc{
    max-width: 900px;
    margin: -36px auto 0;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    }
    main.guide .guide-toc-inner{
    background: var(--guide-surface);
    padding: 32px 36px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }
    main.guide .guide-toc h2{
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--guide-text);
    }
    main.guide .guide-toc-list{
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px 24px;
    }
    main.guide .guide-toc-list li a{
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--guide-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 6px 0;
    transition: color 0.15s;
    }
    main.guide .guide-toc-list li a::before{
    content: attr(data-step);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: var(--guide-primary);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
    }
    main.guide .guide-toc-list li a:hover{
    color: hsl(259, 70%, 50%);
    }
    main.guide .quartz{
    max-width: 900px;
    margin: 0 auto;
    padding: 56px 24px 0;
    }
    main.guide .vortex{
    margin-bottom: 56px;
    }
    main.guide .vortex h2{
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    color: var(--guide-text);
    display: flex;
    align-items: center;
    gap: 12px;
    }
    main.guide .vortex h2 .aurora{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--guide-primary);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    flex-shrink: 0;
    }
    main.guide .flint{
    color: var(--guide-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    padding-left: 48px;
    }
    main.guide .falcon{
    display: flex;
    flex-direction: column;
    gap: 16px;
    }
    main.guide .jade{
    background: var(--guide-surface);
    padding: 24px 28px;
    border-left: 3px solid var(--guide-primary);
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s;
    }
    main.guide .jade:hover{
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    }
    main.guide .jade h3{
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    }
    main.guide .jade h3 .mosaic{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    background: hsl(259, 84%, 94%);
    color: var(--guide-primary);
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    }
    main.guide .jade p{
    color: var(--guide-muted);
    font-size: 0.93rem;
    line-height: 1.7;
    }
    main.guide .jade p a{
    color: var(--guide-primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s;
    }
    main.guide .jade p a:hover{
    border-bottom-color: var(--guide-primary);
    }
    main.guide .jade .cobalt{
    margin-top: 12px;
    padding: 10px 14px;
    background: hsl(49, 67%, 94%);
    border-left: 3px solid var(--guide-secondary);
    font-size: 0.88rem;
    color: hsl(49, 40%, 25%);
    }
    main.guide .marble{
    margin: 32px 0;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    }
    main.guide .marble img{
    width: 100%;
    height: auto;
    display: block;
    }
    main.guide .umbra{
    display: flex;
    gap: 0;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--guide-border);
    }
    main.guide .vapor{
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--guide-muted);
    cursor: default;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color 0.15s, border-color 0.15s;
    }
    main.guide .vapor.epoch{
    color: var(--guide-primary);
    border-bottom-color: var(--guide-primary);
    }
    main.guide .axiom{
    background: var(--guide-surface);
    padding: 28px 32px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    }
    main.guide .axiom h3{
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 16px;
    }
    main.guide .axiom ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    }
    main.guide .axiom ul li{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.93rem;
    color: var(--guide-muted);
    }
    main.guide .axiom ul li::before{
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: hsl(150, 60%, 92%);
    color: hsl(150, 60%, 35%);
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
    }
    main.guide .haze{
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px 64px;
    }
    main.guide .haze h2{
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    text-align: center;
    }
    main.guide .pulse{
    display: flex;
    flex-direction: column;
    gap: 12px;
    }
    main.guide .ivory{
    background: var(--guide-surface);
    padding: 20px 24px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    }
    main.guide .ivory h3{
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--guide-text);
    }
    main.guide .ivory p{
    font-size: 0.9rem;
    color: var(--guide-muted);
    line-height: 1.7;
    }
    main.guide .guide-cta-banner{
    background: linear-gradient(135deg, hsl(259, 84%, 66%) 0%, hsl(259, 70%, 50%) 100%);
    padding: 56px 24px;
    text-align: center;
    color: #fff;
    }
    main.guide .guide-cta-banner h2{
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    }
    main.guide .guide-cta-banner p{
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 28px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    }
    main.guide .guide-cta-banner .cta-btn{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: var(--guide-secondary);
    color: var(--guide-text);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    }
    main.guide .guide-cta-banner .cta-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.24);
    }
    main.guide .guide-footer{
    background: var(--guide-text);
    color: hsl(259, 8%, 70%);
    padding: 40px 24px;
    text-align: center;
    }
    main.guide .guide-footer-inner{
    max-width: 900px;
    margin: 0 auto;
    }
    main.guide .guide-footer-brand{
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    }
    main.guide .guide-footer-tagline{
    font-size: 0.85rem;
    margin-bottom: 20px;
    opacity: 0.7;
    }
    main.guide .guide-footer-links{
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    }
    main.guide .guide-footer-links a{
    color: hsl(259, 8%, 70%);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.15s;
    }
    main.guide .guide-footer-links a:hover{
    color: #fff;
    }
    main.guide .guide-footer-copy{
    font-size: 0.8rem;
    opacity: 0.6;
    }
    @media (max-width: 640px) {main.guide .kelp{
    padding: 56px 20px 48px;
    }
    main.guide .guide-toc-inner{
    padding: 24px 20px;
    }
    main.guide .guide-toc-list{
    grid-template-columns: 1fr;
    }
    main.guide .quartz{
    padding: 40px 16px 0;
    }
    main.guide .vortex h2{
    font-size: 1.25rem;
    }
    main.guide .flint{
    padding-left: 0;
    }
    main.guide .jade{
    padding: 20px;
    }
    main.guide .umbra{
    overflow-x: auto;
    }
    main.guide .vapor{
    padding: 10px 16px;
    font-size: 0.88rem;
    white-space: nowrap;
    }
    main.guide .axiom{
    padding: 20px;
    }
    main.guide .haze{
    padding: 0 16px 48px;
    }
    main.guide .guide-cta-banner{
    padding: 40px 20px;
    }
    main.guide .guide-footer-links{
    gap: 16px;
    }}
    main.guide .cedar{
    background: var(--text-color, hsl(259, 10%, 8%));
    color: hsl(259, 8%, 76%);
    padding: 64px 24px 0;
    margin-top: 80px;
    }
    main.guide .onyx{
    max-width: var(--max-width, 1200px);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    main.guide .ember{
    flex: 1 1 280px;
    min-width: 200px;
    }
    main.guide .wren{
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
    display: block;
    margin-bottom: 12px;
    }
    main.guide .delta{
    font-size: 14px;
    line-height: 1.6;
    color: hsl(259, 8%, 56%);
    margin: 0;
    }
    main.guide .nectar{
    flex: 0 0 160px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    }
    main.guide .ridgeline{
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 8px;
    }
    main.guide .lumen{
    font-size: 14px;
    color: hsl(259, 8%, 56%);
    text-decoration: none;
    transition: var(--transition, all 0.25s ease);
    line-height: 1.5;
    }
    main.guide .lumen:hover{
    color: var(--primary-color, hsl(259, 84%, 60%));
    }
    main.guide .bloom{
    max-width: var(--max-width, 1200px);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    gap: 16px;
    }
    main.guide .zenith{
    font-size: 13px;
    color: hsl(259, 8%, 44%);
    flex: 0 0 auto;
    }
    main.guide .timber{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    flex: 0 0 auto;
    }
    main.guide .crimson{
    font-size: 13px;
    color: hsl(259, 8%, 44%);
    text-decoration: none;
    transition: var(--transition, all 0.25s ease);
    }
    main.guide .crimson:hover{
    color: var(--primary-color, hsl(259, 84%, 60%));
    }
    @media (max-width: 768px) {main.guide .cedar{
    padding: 48px 20px 0;
    margin-top: 56px;
    }
    main.guide .onyx{
    gap: 32px;
    padding-bottom: 32px;
    }
    main.guide .ember{
    flex: 1 1 100%;
    }
    main.guide .nectar{
    flex: 1 1 140px;
    }
    main.guide .bloom{
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0;
    }
    main.guide .timber{
    gap: 16px;
    }}

    *,
    *::before,
    *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    body {
    padding-top: var(--nav-height);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    }
    
    .dawnLit {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: var(--nav-bg);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    }
    .flicker {
    display: flex;
    align-items: center;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    gap: 8px;
    }
    
    .smelt {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-color);
    flex-shrink: 0;
    margin-right: 24px;
    }
    .quilted {
    width: 28px;
    height: 28px;
    color: var(--primary-color);
    }
    .rune {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    }
    
    .glyph {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4px;
    flex: 1;
    min-width: 0;
    }
    .crumble {
    flex-shrink: 0;
    }
    .tundra {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
    }
    .tundra:hover {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.04);
    }
    
    .fog_ray {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 22px;
    font-size: 14px;
    font-weight: 600;
    color: var(--btn-text);
    background: var(--primary-color);
    border: none;
    border-radius: var(--radius-sm);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 2px 8px hsla(259, 84%, 60%, 0.35);
    transition: var(--transition);
    }
    .fog_ray:hover {
    background: hsl(259, 84%, 52%);
    box-shadow: 0 4px 14px hsla(259, 84%, 52%, 0.4);
    transform: translateY(-1px); color: #ffffff;}
    
    .juniper {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: auto;
    }
    .sableWing {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-color);
    border-radius: 2px;
    transition: var(--transition);
    }
    
    .kv9 {
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease; color: #ffffff;}
    .kv9.is-visible {
    opacity: 1;
    visibility: visible;
    }
    
    .blotch {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1002;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: var(--bg-color);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    }
    .blotch.is-open {
    transform: translateX(0);
    }
    .cragMist {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    padding: 0 20px;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
    }
    .cragMist .rune {
    font-size: 17px;
    }
    .ob7 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    }
    .ob7:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #ffffff;
    }
    .zephyr {
    list-style: none;
    padding: 12px;
    flex: 1;
    }
    .vortex3 {
    display: block;
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    }
    .vortex3:hover {
    background: rgba(0, 0, 0, 0.04);
    color: #ffffff;
    }
    .pixDuo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    margin: 8px 16px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--btn-text);
    background: var(--primary-color);
    border-radius: var(--radius-sm);
    text-decoration: none;
    box-shadow: 0 2px 8px hsla(259, 84%, 60%, 0.35);
    transition: var(--transition);
    flex-shrink: 0;
    }
    .pixDuo:hover {
    background: hsl(259, 84%, 52%); color: #ffffff;}
    
    @media (max-width: 960px) {.glyph {
    display: none;
    }
    .fog_ray {
    display: none;
    }
    .juniper {
    display: flex;
    }}
    .tundra.active {color: #ffffff; background: rgba(0, 0, 0, 0.04);}
    .vortex3.active {background: rgba(0, 0, 0, 0.04); color: #ffffff;}
    main.changelog .glacier{
    padding: 100px 24px 64px;
    background: hsl(259, 8%, 96%);
    text-align: center;
    }
    main.changelog .glacier h1{
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: hsl(259, 10%, 8%);
    margin: 0 0 20px;
    letter-spacing: -0.5px;
    line-height: 1.15;
    }
    main.changelog .glacier h1 span{
    color: hsl(259, 84%, 66%);
    }
    main.changelog .vortex{
    font-size: 18px;
    color: hsl(259, 10%, 38%);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.7;
    font-family: "Segoe UI", system-ui, sans-serif;
    }
    main.changelog .shard{
    display: inline-block;
    padding: 14px 36px;
    background: hsl(259, 84%, 66%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    font-family: "Segoe UI", system-ui, sans-serif;
    transition: background 0.2s, transform 0.15s;
    }
    main.changelog .shard:hover{
    background: hsl(259, 84%, 56%);
    transform: translateY(-1px); color: #ffffff;}
    main.changelog .forge{
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px 48px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    }
    main.changelog .cipher{
    padding: 8px 22px;
    border: 2px solid hsl(259, 10%, 82%);
    background: transparent;
    color: hsl(259, 10%, 30%);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: "Segoe UI", system-ui, sans-serif;
    transition: all 0.2s;
    }
    main.changelog .cipher:hover, main.changelog .cipher.cedar{
    border-color: hsl(259, 84%, 66%);
    background: hsl(259, 84%, 66%);
    color: #fff;
    }
    main.changelog .cobalt{
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px 80px;
    position: relative;
    }
    main.changelog .cobalt::before{
    content: "";
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 80px;
    width: 2px;
    background: hsl(259, 10%, 88%);
    }
    main.changelog .ember{
    position: relative;
    padding-left: 72px;
    margin-bottom: 56px;
    }
    main.changelog .ember:last-child{
    margin-bottom: 0;
    }
    main.changelog .briar{
    position: absolute;
    left: 22px;
    top: 4px;
    width: 22px;
    height: 22px;
    border: 3px solid hsl(259, 84%, 66%);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    }
    main.changelog .pebble{
    width: 8px;
    height: 8px;
    background: hsl(259, 84%, 66%);
    }
    main.changelog .ember.alcove .briar{
    border-color: hsl(49, 67%, 56%);
    background: hsl(49, 67%, 56%);
    }
    main.changelog .ember.alcove .pebble{
    background: #fff;
    }
    main.changelog .dune{
    display: flex;
    align-items: baseline;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 8px;
    }
    main.changelog .prism{
    font-family: "Segoe UI", system-ui, sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: hsl(259, 10%, 8%);
    letter-spacing: -0.3px;
    }
    main.changelog .falcon{
    display: inline-block;
    padding: 3px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    background: hsl(259, 84%, 66%);
    }
    main.changelog .falcon.alcove{
    background: hsl(49, 67%, 46%);
    }
    main.changelog .kite{
    font-size: 14px;
    color: hsl(259, 10%, 50%);
    font-family: "Segoe UI", system-ui, sans-serif;
    }
    main.changelog .helix{
    font-size: 15px;
    color: hsl(259, 10%, 40%);
    margin: 0 0 20px;
    line-height: 1.6;
    font-family: "Segoe UI", system-ui, sans-serif;
    }
    main.changelog .dusk{
    display: grid;
    gap: 12px;
    }
    main.changelog .quiver{
    background: #fff;
    border: 1px solid hsl(259, 10%, 90%);
    padding: 20px 24px;
    }
    main.changelog .raven{
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 12px;
    font-family: "Segoe UI", system-ui, sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    }
    main.changelog .raven.nebula{
    color: hsl(259, 84%, 60%);
    }
    main.changelog .raven.xeno{
    color: hsl(160, 60%, 38%);
    }
    main.changelog .raven.jovial{
    color: hsl(0, 65%, 52%);
    }
    main.changelog .raven.monolith{
    color: hsl(30, 80%, 48%);
    }
    main.changelog .orbit{
    display: inline-block;
    width: 8px;
    height: 8px;
    }
    main.changelog .orbit.nebula{ background: hsl(259, 84%, 60%); }
    main.changelog .orbit.xeno{ background: hsl(160, 60%, 38%); }
    main.changelog .orbit.jovial{ background: hsl(0, 65%, 52%); color: #ffffff;}
    main.changelog .orbit.monolith{ background: hsl(30, 80%, 48%); }
    main.changelog .flint{
    list-style: none;
    margin: 0;
    padding: 0;
    }
    main.changelog .flint li{
    font-size: 14px;
    color: hsl(259, 10%, 22%);
    line-height: 1.65;
    padding: 4px 0 4px 18px;
    position: relative;
    font-family: "Segoe UI", system-ui, sans-serif;
    }
    main.changelog .flint li::before{
    content: "—";
    position: absolute;
    left: 0;
    color: hsl(259, 10%, 68%);
    }
    main.changelog .phantom{
    max-width: 960px;
    margin: 0 auto 80px;
    padding: 0 24px;
    }
    main.changelog .etch{
    position: relative;
    overflow: hidden;
    background: hsl(259, 10%, 8%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 320px; color: #ffffff;}
    main.changelog .nexus{
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    }
    main.changelog .nexus h2{
    font-family: "Segoe UI", system-ui, sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
    line-height: 1.2;
    }
    main.changelog .nexus p{
    font-size: 15px;
    color: hsl(259, 10%, 70%);
    margin: 0 0 28px;
    line-height: 1.6;
    font-family: "Segoe UI", system-ui, sans-serif;
    }
    main.changelog .karma{
    display: inline-block;
    padding: 12px 32px;
    background: hsl(49, 67%, 56%);
    color: hsl(259, 10%, 8%);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    font-family: "Segoe UI", system-ui, sans-serif;
    align-self: flex-start;
    transition: background 0.2s;
    }
    main.changelog .karma:hover{
    background: hsl(49, 67%, 48%);
    }
    main.changelog .totem{
    position: relative;
    }
    main.changelog .totem img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.7;
    }
    main.changelog .nova{
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px 80px;
    }
    main.changelog .nova h2{
    font-family: "Segoe UI", system-ui, sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: hsl(259, 10%, 8%);
    margin: 0 0 32px;
    text-align: center;
    }
    main.changelog .oxide{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    }
    main.changelog .yarn{
    border: 1px solid hsl(259, 10%, 88%);
    padding: 28px 24px;
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    display: block;
    background: #fff;
    }
    main.changelog .yarn:hover{
    border-color: hsl(259, 84%, 66%);
    box-shadow: 0 4px 20px hsla(259, 84%, 66%, 0.1);
    }
    main.changelog .yarn h3{
    font-family: "Segoe UI", system-ui, sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: hsl(259, 10%, 8%);
    margin: 0 0 8px;
    }
    main.changelog .yarn p{
    font-size: 14px;
    color: hsl(259, 10%, 45%);
    margin: 0;
    line-height: 1.55;
    font-family: "Segoe UI", system-ui, sans-serif;
    }
    main.changelog .yarn .wander{
    display: inline-block;
    margin-top: 14px;
    font-size: 13px;
    font-weight: 700;
    color: hsl(259, 84%, 66%);
    font-family: "Segoe UI", system-ui, sans-serif;
    }
    main.changelog .mirth{
    background: hsl(259, 10%, 8%);
    padding: 48px 24px;
    text-align: center; color: #ffffff;}
    main.changelog .lattice{
    font-family: "Segoe UI", system-ui, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    }
    main.changelog .quartz{
    font-size: 13px;
    color: hsl(259, 10%, 55%);
    margin: 0 0 24px;
    font-family: "Segoe UI", system-ui, sans-serif;
    }
    main.changelog .cl-footer-links{
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    }
    main.changelog .cl-footer-links a{
    font-size: 13px;
    color: hsl(259, 10%, 55%);
    text-decoration: none;
    font-family: "Segoe UI", system-ui, sans-serif;
    transition: color 0.2s;
    }
    main.changelog .cl-footer-links a:hover{
    color: #fff;
    }
    main.changelog .cl-footer-copy{
    font-size: 12px;
    color: hsl(259, 10%, 40%);
    margin: 0;
    font-family: "Segoe UI", system-ui, sans-serif;
    }
    @media (max-width: 768px) {main.changelog .glacier{
    padding: 72px 20px 48px;
    }
    main.changelog .glacier h1{
    font-size: 32px;
    }
    main.changelog .vortex{
    font-size: 16px;
    }
    main.changelog .cobalt::before{
    left: 16px;
    }
    main.changelog .ember{
    padding-left: 48px;
    }
    main.changelog .briar{
    left: 7px;
    width: 18px;
    height: 18px;
    }
    main.changelog .pebble{
    width: 6px;
    height: 6px;
    }
    main.changelog .prism{
    font-size: 22px;
    }
    main.changelog .etch{
    grid-template-columns: 1fr;
    }
    main.changelog .totem{
    height: 200px;
    order: -1;
    }
    main.changelog .nexus{
    padding: 32px 24px;
    }
    main.changelog .nexus h2{
    font-size: 22px;
    }
    main.changelog .oxide{
    grid-template-columns: 1fr;
    }
    main.changelog .quiver{
    padding: 16px 18px;
    }}
    @media (max-width: 480px) {main.changelog .glacier h1{
    font-size: 26px;
    }
    main.changelog .dune{
    gap: 8px;
    }
    main.changelog .prism{
    font-size: 20px;
    }
    main.changelog .cipher{
    padding: 6px 16px;
    font-size: 13px;
    }}

    *,
    *::before,
    *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    body {
    padding-top: var(--nav-height);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    }
    
    .dawnLit {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: var(--nav-bg);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    }
    .flicker {
    display: flex;
    align-items: center;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    gap: 8px;
    }
    
    .smelt {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-color);
    flex-shrink: 0;
    margin-right: 24px;
    }
    .quilted {
    width: 28px;
    height: 28px;
    color: var(--primary-color);
    }
    .rune {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    }
    
    .glyph {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4px;
    flex: 1;
    min-width: 0;
    }
    .crumble {
    flex-shrink: 0;
    }
    .tundra {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
    }
    .tundra:hover {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.04);
    }
    
    .fog_ray {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 22px;
    font-size: 14px;
    font-weight: 600;
    color: var(--btn-text);
    background: var(--primary-color);
    border: none;
    border-radius: var(--radius-sm);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 2px 8px hsla(259, 84%, 60%, 0.35);
    transition: var(--transition);
    }
    .fog_ray:hover {
    background: hsl(259, 84%, 52%);
    box-shadow: 0 4px 14px hsla(259, 84%, 52%, 0.4);
    transform: translateY(-1px); color: #ffffff;}
    
    .juniper {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: auto;
    }
    .sableWing {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-color);
    border-radius: 2px;
    transition: var(--transition);
    }
    
    .kv9 {
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease; color: #ffffff;}
    .kv9.is-visible {
    opacity: 1;
    visibility: visible;
    }
    
    .blotch {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1002;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: var(--bg-color);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    }
    .blotch.is-open {
    transform: translateX(0);
    }
    .cragMist {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    padding: 0 20px;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
    }
    .cragMist .rune {
    font-size: 17px;
    }
    .ob7 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    }
    .ob7:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #ffffff;
    }
    .zephyr {
    list-style: none;
    padding: 12px;
    flex: 1;
    }
    .vortex3 {
    display: block;
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    }
    .vortex3:hover {
    background: rgba(0, 0, 0, 0.04);
    color: #ffffff;
    }
    .pixDuo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    margin: 8px 16px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--btn-text);
    background: var(--primary-color);
    border-radius: var(--radius-sm);
    text-decoration: none;
    box-shadow: 0 2px 8px hsla(259, 84%, 60%, 0.35);
    transition: var(--transition);
    flex-shrink: 0;
    }
    .pixDuo:hover {
    background: hsl(259, 84%, 52%); color: #ffffff;}
    
    @media (max-width: 960px) {.glyph {
    display: none;
    }
    .fog_ray {
    display: none;
    }
    .juniper {
    display: flex;
    }}
    .tundra.active {color: #ffffff; background: rgba(0, 0, 0, 0.04);}
    .vortex3.active {background: rgba(0, 0, 0, 0.04); color: #ffffff;}
    main.tips .ivory{
    padding: 100px 24px 80px;
    background: linear-gradient(165deg, hsl(259, 84%, 66%) 0%, hsl(259, 70%, 50%) 100%);
    color: #fff;
    text-align: center;
    }
    main.tips .cirrus{
    max-width: 800px;
    margin: 0 auto;
    }
    main.tips .ivory h1{
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
    }
    main.tips .ivory p{
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.92;
    max-width: 620px;
    margin: 0 auto 32px;
    }
    main.tips .quill{
    display: inline-block;
    padding: 14px 36px;
    background: hsl(49, 67%, 66%);
    color: hsl(259, 10%, 8%);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    }
    main.tips .quill:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.25);
    }
    main.tips .wren{
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 24px;
    }
    main.tips .wren h2{
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--text-color, hsl(259, 10%, 8%));
    margin: 0 0 12px;
    letter-spacing: -0.01em;
    }
    main.tips .plume{
    font-size: 1.05rem;
    color: hsl(259, 8%, 42%);
    margin: 0 0 48px;
    line-height: 1.6;
    }
    main.tips .latch{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    }
    main.tips .crest{
    background: #fff;
    padding: 28px 24px;
    border: 1px solid hsl(259, 8%, 90%);
    transition: box-shadow 0.2s, transform 0.2s;
    }
    main.tips .crest:hover{
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transform: translateY(-2px);
    }
    main.tips .crest h3{
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-color, hsl(259, 10%, 8%));
    margin: 0 0 10px;
    }
    main.tips .crest p{
    font-size: 0.92rem;
    color: hsl(259, 8%, 38%);
    line-height: 1.6;
    margin: 0 0 14px;
    }
    main.tips .surge{
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    }
    main.tips .thorn{
    display: inline-block;
    padding: 4px 10px;
    background: hsl(259, 8%, 96%);
    border: 1px solid hsl(259, 8%, 86%);
    font-size: 0.8rem;
    font-weight: 600;
    font-family: "SF Mono", "Fira Code", monospace;
    color: hsl(259, 84%, 50%);
    }
    main.tips .husk{
    background: hsl(259, 8%, 96%);
    padding: 80px 24px;
    }
    main.tips .opal{
    max-width: 1100px;
    margin: 0 auto;
    }
    main.tips .opal h2{
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--text-color, hsl(259, 10%, 8%));
    margin: 0 0 12px;
    }
    main.tips .opal .plume{
    margin-bottom: 48px;
    }
    main.tips .bolt{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    }
    main.tips .bolt img{
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/10;
    }
    main.tips .moss h3{
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color, hsl(259, 10%, 8%));
    margin: 0 0 12px;
    }
    main.tips .moss p{
    font-size: 0.95rem;
    color: hsl(259, 8%, 38%);
    line-height: 1.7;
    margin: 0 0 8px;
    }
    main.tips .moss ul{
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    }
    main.tips .moss ul li{
    position: relative;
    padding-left: 20px;
    font-size: 0.92rem;
    color: hsl(259, 8%, 32%);
    line-height: 2;
    }
    main.tips .moss ul li::before{
    content: "→";
    position: absolute;
    left: 0;
    color: hsl(259, 84%, 66%);
    font-weight: 700;
    }
    main.tips .apex{
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 24px;
    }
    main.tips .apex h2{
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--text-color, hsl(259, 10%, 8%));
    margin: 0 0 12px;
    }
    main.tips .nimbus{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    }
    main.tips .slate{
    background: #fff;
    border: 1px solid hsl(259, 8%, 90%);
    padding: 32px 28px;
    transition: box-shadow 0.2s;
    }
    main.tips .slate:hover{
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    }
    main.tips .haze{
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, hsl(259, 84%, 66%), hsl(259, 70%, 50%));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
    }
    main.tips .slate h3{
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color, hsl(259, 10%, 8%));
    margin: 0 0 10px;
    }
    main.tips .slate p{
    font-size: 0.92rem;
    color: hsl(259, 8%, 38%);
    line-height: 1.65;
    margin: 0 0 16px;
    }
    main.tips .slate code{
    display: inline-block;
    padding: 3px 10px;
    background: hsl(259, 8%, 96%);
    border: 1px solid hsl(259, 8%, 88%);
    font-size: 0.82rem;
    font-family: "SF Mono", "Fira Code", monospace;
    color: hsl(259, 84%, 50%);
    }
    main.tips .pike{
    background: hsl(259, 10%, 8%);
    padding: 80px 24px;
    color: #fff;
    }
    main.tips .ridge{
    max-width: 1100px;
    margin: 0 auto;
    }
    main.tips .ridge h2{
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    margin: 0 0 12px;
    }
    main.tips .ridge .plume{
    color: hsl(259, 20%, 70%);
    margin-bottom: 48px;
    }
    main.tips .zinc{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    }
    main.tips .alder{
    background: hsl(259, 10%, 14%);
    border: 1px solid hsl(259, 10%, 22%);
    padding: 24px;
    transition: border-color 0.2s; color: #ffffff;}
    main.tips .alder:hover{
    border-color: hsl(259, 84%, 66%);
    }
    main.tips .loom{
    font-size: 0.82rem;
    font-family: "SF Mono", "Fira Code", monospace;
    color: hsl(49, 67%, 66%);
    margin: 0 0 10px;
    word-break: break-all;
    }
    main.tips .alder h3{
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 8px;
    }
    main.tips .alder p{
    font-size: 0.88rem;
    color: hsl(259, 10%, 62%);
    line-height: 1.6;
    margin: 0;
    }
    main.tips .vale{
    padding: 80px 24px;
    text-align: center;
    background: hsl(259, 8%, 96%);
    }
    main.tips .basalt{
    max-width: 640px;
    margin: 0 auto;
    }
    main.tips .basalt h2{
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--text-color, hsl(259, 10%, 8%));
    margin: 0 0 16px;
    }
    main.tips .basalt p{
    font-size: 1rem;
    color: hsl(259, 8%, 42%);
    line-height: 1.7;
    margin: 0 0 32px;
    }
    main.tips .drift{
    display: inline-block;
    padding: 16px 44px;
    background: linear-gradient(135deg, hsl(259, 84%, 66%), hsl(259, 70%, 50%));
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(107, 62, 214, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    }
    main.tips .drift:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(107, 62, 214, 0.45);
    }
    main.tips .knoll{
    margin-top: 24px;
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    }
    main.tips .knoll a{
    font-size: 0.92rem;
    color: hsl(259, 84%, 56%);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
    }
    main.tips .knoll a:hover{
    color: hsl(259, 84%, 40%);
    }
    main.tips .umber{
    padding: 40px 24px;
    text-align: center;
    border-top: 1px solid hsl(259, 8%, 88%);
    background: #fff;
    }
    main.tips .umber p{
    font-size: 0.85rem;
    color: hsl(259, 8%, 52%);
    margin: 0 0 6px;
    }
    main.tips .jade{
    font-weight: 700;
    color: var(--text-color, hsl(259, 10%, 8%));
    }
    @media (max-width: 768px) {main.tips .ivory{
    padding: 72px 20px 60px;
    }
    main.tips .bolt{
    grid-template-columns: 1fr;
    gap: 24px;
    }
    main.tips .latch, main.tips .zinc, main.tips .nimbus{
    grid-template-columns: 1fr;
    }
    main.tips .wren, main.tips .apex{
    padding: 56px 20px;
    }
    main.tips .husk, main.tips .pike, main.tips .vale{
    padding: 56px 20px;
    }}

    *,
    *::before,
    *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    body {
    padding-top: var(--nav-height);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    }
    
    .dawnLit {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: var(--nav-bg);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    }
    .flicker {
    display: flex;
    align-items: center;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    gap: 8px;
    }
    
    .smelt {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-color);
    flex-shrink: 0;
    margin-right: 24px;
    }
    .quilted {
    width: 28px;
    height: 28px;
    color: var(--primary-color);
    }
    .rune {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    }
    
    .glyph {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4px;
    flex: 1;
    min-width: 0;
    }
    .crumble {
    flex-shrink: 0;
    }
    .tundra {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
    }
    .tundra:hover {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.04);
    }
    
    .fog_ray {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 22px;
    font-size: 14px;
    font-weight: 600;
    color: var(--btn-text);
    background: var(--primary-color);
    border: none;
    border-radius: var(--radius-sm);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 2px 8px hsla(259, 84%, 60%, 0.35);
    transition: var(--transition);
    }
    .fog_ray:hover {
    background: hsl(259, 84%, 52%);
    box-shadow: 0 4px 14px hsla(259, 84%, 52%, 0.4);
    transform: translateY(-1px); color: #ffffff;}
    
    .juniper {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: auto;
    }
    .sableWing {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-color);
    border-radius: 2px;
    transition: var(--transition);
    }
    
    .kv9 {
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease; color: #ffffff;}
    .kv9.is-visible {
    opacity: 1;
    visibility: visible;
    }
    
    .blotch {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1002;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: var(--bg-color);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    }
    .blotch.is-open {
    transform: translateX(0);
    }
    .cragMist {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    padding: 0 20px;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
    }
    .cragMist .rune {
    font-size: 17px;
    }
    .ob7 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    }
    .ob7:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #ffffff;
    }
    .zephyr {
    list-style: none;
    padding: 12px;
    flex: 1;
    }
    .vortex3 {
    display: block;
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    }
    .vortex3:hover {
    background: rgba(0, 0, 0, 0.04);
    color: #ffffff;
    }
    .pixDuo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    margin: 8px 16px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--btn-text);
    background: var(--primary-color);
    border-radius: var(--radius-sm);
    text-decoration: none;
    box-shadow: 0 2px 8px hsla(259, 84%, 60%, 0.35);
    transition: var(--transition);
    flex-shrink: 0;
    }
    .pixDuo:hover {
    background: hsl(259, 84%, 52%); color: #ffffff;}
    
    @media (max-width: 960px) {.glyph {
    display: none;
    }
    .fog_ray {
    display: none;
    }
    .juniper {
    display: flex;
    }}
    .tundra.active {color: #ffffff; background: rgba(0, 0, 0, 0.04);}
    .vortex3.active {background: rgba(0, 0, 0, 0.04); color: #ffffff;}
    main.faq .jewel{
    position: relative;
    overflow: hidden;
    padding: 80px 24px 64px;
    background: linear-gradient(135deg, hsl(259, 84%, 66%) 0%, hsl(259, 70%, 50%) 100%);
    color: #fff;
    text-align: center;
    }
    main.faq .jewel::after{
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsla(49, 67%, 66%, 0.12);
    border-radius: 50%;
    pointer-events: none;
    }
    main.faq .jewel h1{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.25;
    margin: 0 auto 20px;
    max-width: 720px;
    position: relative;
    z-index: 1;
    }
    main.faq .epoch{
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.92;
    position: relative;
    z-index: 1;
    }
    main.faq .unity{
    position: relative;
    z-index: 1;
    max-width: 520px;
    margin: 32px auto 0;
    }
    main.faq .unity input{
    width: 100%;
    padding: 14px 20px 14px 48px;
    border: none;
    font-size: 1rem;
    background: hsla(0, 0%, 100%, 0.15);
    color: #fff;
    backdrop-filter: blur(4px);
    outline: none;
    transition: background 0.2s;
    font-family: inherit;
    }
    main.faq .unity input::placeholder{
    color: hsla(0, 0%, 100%, 0.65);
    }
    main.faq .unity input:focus{
    background: hsla(0, 0%, 100%, 0.25);
    }
    main.faq .unity svg{
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    }
    main.faq .delta{
    max-width: 960px;
    margin: 0 auto;
    padding: 56px 24px 80px;
    }
    main.faq .faq-category-nav{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 48px;
    justify-content: center;
    }
    main.faq .faq-cat-btn{
    padding: 10px 22px;
    border: 2px solid hsl(259, 84%, 66%);
    background: transparent;
    color: var(--text-color, hsl(259, 10%, 8%));
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    }
    main.faq .faq-cat-btn:hover, main.faq .faq-cat-btn.active{
    background: hsl(259, 84%, 66%);
    color: #fff;
    }
    main.faq .lunar{
    margin-bottom: 48px;
    }
    main.faq .grain{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid hsl(259, 84%, 66%);
    }
    main.faq .weld{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(259, 84%, 66%);
    color: #fff;
    flex-shrink: 0;
    }
    main.faq .lunar h2{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-color, hsl(259, 10%, 8%));
    margin: 0;
    }
    main.faq .sigma{
    border: 1px solid hsl(259, 8%, 88%);
    margin-bottom: 8px;
    background: #fff;
    transition: box-shadow 0.2s;
    }
    main.faq .sigma:hover{
    box-shadow: 0 2px 12px hsla(259, 84%, 66%, 0.1);
    }
    main.faq .realm{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color, hsl(259, 10%, 8%));
    font-family: inherit;
    gap: 16px;
    line-height: 1.4;
    }
    main.faq .realm:hover{
    color: hsl(259, 84%, 66%);
    }
    main.faq .torch{
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    transition: transform 0.25s;
    }
    main.faq .sigma.open .torch{
    transform: rotate(180deg);
    }
    main.faq .bloom{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    }
    main.faq .sigma.open .bloom{
    max-height: 600px;
    }
    main.faq .axiom{
    padding: 0 20px 20px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: hsl(259, 8%, 30%);
    }
    main.faq .axiom ol, main.faq .axiom ul{
    padding-left: 20px;
    margin: 10px 0;
    }
    main.faq .axiom li{
    margin-bottom: 6px;
    }
    main.faq .axiom a{
    color: hsl(259, 84%, 66%);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
    }
    main.faq .axiom a:hover{
    border-bottom-color: hsl(259, 84%, 66%);
    }
    main.faq .axiom code{
    background: hsl(259, 8%, 93%);
    padding: 2px 6px;
    font-size: 0.88rem;
    font-family: "SF Mono", Consolas, monospace;
    }
    main.faq .fable{
    position: relative;
    margin: 0 0 56px;
    overflow: hidden;
    height: 240px;
    }
    main.faq .fable img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.7);
    }
    main.faq .whirl{
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 24px;
    }
    main.faq .whirl h3{
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 12px;
    }
    main.faq .whirl p{
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    }
    main.faq .faq-cta-section{
    text-align: center;
    padding: 56px 24px;
    background: hsl(259, 8%, 96%);
    margin-top: 16px;
    }
    main.faq .faq-cta-section h2{
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-color, hsl(259, 10%, 8%));
    margin: 0 0 12px;
    }
    main.faq .faq-cta-section p{
    font-size: 1.05rem;
    color: hsl(259, 8%, 35%);
    margin: 0 0 28px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    }
    main.faq .faq-cta-btn{
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, hsl(259, 84%, 66%), hsl(259, 84%, 56%));
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px hsla(259, 84%, 66%, 0.35);
    font-family: inherit;
    }
    main.faq .faq-cta-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 28px hsla(259, 84%, 66%, 0.45);
    }
    main.faq .faq-contact-strip{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
    padding: 48px 24px;
    }
    main.faq .faq-contact-card{
    text-align: center;
    padding: 32px 20px;
    background: #fff;
    border: 1px solid hsl(259, 8%, 88%);
    transition: box-shadow 0.2s;
    }
    main.faq .faq-contact-card:hover{
    box-shadow: 0 4px 16px hsla(259, 84%, 66%, 0.12);
    }
    main.faq .faq-contact-card svg{
    margin-bottom: 12px;
    color: hsl(259, 84%, 66%);
    }
    main.faq .faq-contact-card h3{
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--text-color, hsl(259, 10%, 8%));
    }
    main.faq .faq-contact-card p{
    font-size: 0.9rem;
    color: hsl(259, 8%, 40%);
    margin: 0;
    line-height: 1.5;
    }
    main.faq .faq-update-note{
    text-align: center;
    font-size: 0.85rem;
    color: hsl(259, 8%, 50%);
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid hsl(259, 8%, 90%);
    }
    main.faq .birch{
    background: hsl(259, 10%, 8%);
    color: hsla(0, 0%, 100%, 0.7);
    padding: 40px 24px;
    text-align: center;
    }
    main.faq .depot{
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    }
    main.faq .faq-footer-slogan{
    font-size: 0.88rem;
    margin: 0 0 20px;
    opacity: 0.6;
    }
    main.faq .xenon{
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    }
    main.faq .xenon a{
    color: hsla(0, 0%, 100%, 0.6);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
    }
    main.faq .xenon a:hover{
    color: hsl(49, 67%, 66%);
    }
    main.faq .faq-footer-copy{
    font-size: 0.82rem;
    opacity: 0.5;
    margin: 0;
    }
    @media (max-width: 768px) {main.faq .jewel{
    padding: 56px 20px 48px;
    }
    main.faq .delta{
    padding: 40px 16px 56px;
    }
    main.faq .faq-contact-strip{
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 32px 16px;
    }
    main.faq .faq-category-nav{
    gap: 8px;
    }
    main.faq .faq-cat-btn{
    padding: 8px 16px;
    font-size: 0.82rem;
    }
    main.faq .fable{
    height: 180px;
    }}
    main.faq .birch{
    background: var(--text-color, hsl(259, 10%, 8%));
    padding: 48px 24px 32px;
    margin-top: 80px;
    }
    main.faq .inlet{
    max-width: var(--max-width, 1200px);
    margin: 0 auto;
    width: 100%;
    }
    main.faq .coral{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    }
    main.faq .depot{
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    }
    main.faq .frost{
    flex: 0 0 28px;
    }
    main.faq .clamp{
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
    }
    main.faq .xenon{
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    flex: 0 1 auto;
    }
    main.faq .vivid{
    color: hsl(259, 10%, 62%);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
    }
    main.faq .vivid:hover{
    color: #fff;
    }
    main.faq .elbow{
    height: 1px;
    background: hsl(259, 10%, 18%);
    margin: 32px 0;
    width: 100%; color: #ffffff;}
    main.faq .vapor{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    }
    main.faq .alloy{
    color: hsl(259, 6%, 48%);
    font-size: 13px;
    margin: 0;
    flex: 1 1 auto;
    }
    main.faq .notch{
    display: flex;
    gap: 12px;
    flex: 0 0 auto;
    }
    main.faq .pulse{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: hsl(259, 10%, 52%);
    background: hsl(259, 10%, 14%);
    border-radius: var(--radius-sm, 4px);
    transition: var(--transition, all 0.25s ease);
    flex: 0 0 36px;
    }
    main.faq .pulse:hover{
    color: #fff;
    background: var(--primary-color, hsl(259, 84%, 60%));
    }
    @media (max-width: 640px) {main.faq .birch{
    padding: 36px 16px 24px;
    margin-top: 48px;
    }
    main.faq .coral{
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    }
    main.faq .xenon{
    gap: 16px;
    }
    main.faq .vapor{
    flex-direction: column;
    align-items: flex-start;
    }}

.cc-sec-area.active,
.cc-sec-area.cc-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}