:root {
  --primary-color: hsl(168, 73%, 38%);
  --secondary-color: hsl(251, 58%, 58%);
  --bg-color: hsl(168, 7%, 96%);
  --text-color: hsl(168, 10%, 9%);
  --text-muted: hsl(168, 5%, 42%);
  --border-color: rgba(0, 0, 0, 0.08);
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --nav-height: 64px;
  --max-width: 1200px;
  --transition: all 0.25s ease;
  --nav-bg: var(--bg-color);
  --chrome-primary: hsl(168, 73%, 58%);
  --chrome-primary-dark: hsl(168, 73%, 42%);
  --chrome-secondary: hsl(251, 58%, 58%);
  --chrome-text: hsl(168, 10%, 9%);
  --chrome-bg: hsl(168, 7%, 96%);
  --chrome-muted: hsl(168, 5%, 45%);
  --chrome-border: hsl(168, 7%, 88%);
  --chrome-card-bg: #ffffff;
  --brand-primary: hsl(168, 73%, 58%);
  --brand-secondary: hsl(251, 58%, 58%);
  --page-text: hsl(168, 10%, 9%);
  --page-bg: hsl(168, 7%, 96%);
  --card-bg: #ffffff;
  --border-light: hsl(168, 10%, 88%);
  --brand-primary-dark: hsl(168, 73%, 38%);
  --brand-secondary-dark: hsl(251, 58%, 45%);
  --page-primary: hsl(168, 73%, 58%);
  --page-secondary: hsl(251, 58%, 58%);
  --page-card-bg: #ffffff;
  --page-border: hsl(168, 10%, 88%);
  --page-muted: hsl(168, 8%, 42%);
  --cl-primary: hsl(168, 73%, 58%);
  --cl-secondary: hsl(251, 58%, 58%);
  --cl-text: hsl(168, 10%, 9%);
  --cl-bg: hsl(168, 7%, 96%);
  --cl-surface: #ffffff;
  --cl-border: hsl(168, 10%, 88%);
  --cl-muted: hsl(168, 8%, 45%);
  --cl-tag-new: hsl(168, 73%, 94%);
  --cl-tag-fix: hsl(251, 58%, 94%);
  --cl-tag-security: hsl(35, 90%, 93%);
  --cl-tag-perf: hsl(200, 70%, 93%);
  --gs-bg: hsl(168, 7%, 96%);
  --gs-surface: #ffffff;
  --gs-ink: hsl(168, 10%, 9%);
  --gs-muted: hsl(168, 8%, 34%);
  --gs-accent: hsl(168, 73%, 40%);
  --gs-accent-strong: hsl(168, 73%, 32%);
  --gs-secondary: hsl(251, 58%, 58%);
  --gs-border: hsl(168, 16%, 82%);
  --gs-shadow: 0 18px 40px rgba(18, 34, 31, 0.12);
  --gs-radius: 0px;
  --sc-primary: hsl(168, 73%, 58%);
  --sc-secondary: hsl(251, 58%, 58%);
  --sc-text: hsl(168, 10%, 9%);
  --sc-bg: hsl(168, 7%, 96%);
  --sc-surface: #ffffff;
  --sc-border: hsl(168, 10%, 88%);
  --sc-kbd-bg: hsl(168, 5%, 92%);
  --sc-kbd-border: hsl(168, 8%, 82%);
  --sc-category-hover: hsl(168, 30%, 95%);
}

*,
    *::before,
    *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    body {
    padding-top: var(--nav-height);
    font-family: "Georgia", "Times New Roman", serif;
    color: var(--text-color);
    background: var(--bg-color);
    }
    .fluxMob {
    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);
    }
    .zephyr {
    max-width: var(--max-width);
    margin: 0 auto;
    height: 100%;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    }
    .tango9 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: -0.02em;
    font-family: "Georgia", serif;
    }
    .brv2 {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    }
    .snare_pop {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-color);
    transition: var(--transition);
    }
    .pixDust {
    display: flex;
    align-items: center;
    gap: 32px;
    }
    .crmbl {
    display: flex;
    list-style: none;
    gap: 6px;
    }
    .oak_vine {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: var(--transition);
    }
    .oak_vine:hover {
    color: var(--text-color);
    }
    .quartz {
    display: inline-block;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    color: #ffffff;
    background: var(--primary-color);
    text-decoration: none;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    letter-spacing: 0.01em;
    }
    .quartz:hover {
    background: var(--secondary-color);
    box-shadow: var(--shadow-md);
    }
    @media (max-width: 860px) {.zephyr {
    padding: 0 20px;
    }
    .brv2 {
    display: flex;
    }
    .pixDust {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--nav-bg);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    padding: 16px 20px 24px;
    gap: 16px;
    }
    .pixDust.is-open {
    display: flex;
    }
    .crmbl {
    flex-direction: column;
    gap: 0;
    }
    .oak_vine {
    padding: 12px 8px;
    font-size: 15px;
    border-bottom: 1px solid var(--border-color);
    }
    .quartz {
    text-align: center;
    width: 100%;
    padding: 14px;
    font-size: 15px;
    }}
    .oak_vine.active {color: var(--text-color);}
    @import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@400;500;600&display=swap");
    main.index *{ margin: 0; padding: 0; box-sizing: border-box; }
    main.index{
    font-family: "Inter", sans-serif;
    color: var(--chrome-text, #1a1d1a);
    background: var(--chrome-bg, #f3f4f3);
    overflow-x: hidden;
    }
    main.index .smelt{ font-family: "Playfair Display", Georgia, serif; }
    
    main.index .quill_tap{
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    background: linear-gradient(175deg, #ffffff 0%, var(--chrome-bg) 50%, hsl(168, 15%, 92%) 100%);
    }
    main.index .quill_tap::before{
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, hsla(168, 73%, 58%, 0.08) 0%, transparent 70%);
    pointer-events: none;
    }
    main.index .glimmer{ max-width: 780px; position: relative; z-index: 1; }
    main.index .quill_tap h1{
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
    color: var(--chrome-text, #1a1d1a);
    }
    main.index .quill_tap h1 span{
    display: block;
    background: linear-gradient(135deg, var(--chrome-primary-dark), var(--chrome-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    }
    main.index .ratchet{
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--chrome-muted, #6b6e6b);
    max-width: 600px;
    margin: 0 auto 44px;
    }
    main.index .gritPulse{ display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    main.index .slyFox{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--chrome-primary-dark), hsl(180, 60%, 38%));
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px hsla(168, 73%, 42%, 0.3);
    }
    main.index .slyFox:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 30px hsla(168, 73%, 42%, 0.4);
    }
    main.index .vortex3{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: var(--chrome-card-bg);
    color: var(--chrome-text, #1a1d1a);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--chrome-border);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    }
    main.index .vortex3:hover{
    border-color: var(--chrome-primary-dark);
    background: hsl(168, 20%, 97%);
    }
    
    main.index .pebbleDash{
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
    }
    main.index .jotX{
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--chrome-primary-dark);
    margin-bottom: 12px;
    }
    main.index .plume{
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--chrome-text, #1a1d1a);
    }
    main.index .torchLit{
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--chrome-muted, #6b6e6b);
    max-width: 640px;
    }
    
    main.index .dewClaw{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
    }
    main.index .blazeKit{
    background: var(--chrome-card-bg);
    border: 1px solid var(--chrome-border);
    padding: 0;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
    }
    main.index .blazeKit:hover{
    box-shadow: 0 12px 40px hsla(168, 10%, 20%, 0.08);
    transform: translateY(-4px);
    }
    main.index .blazeKit img{
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
    }
    main.index .driftLane{ padding: 32px 28px; }
    main.index .blazeKit h3{
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--chrome-text, #1a1d1a);
    }
    main.index .blazeKit p{
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--chrome-muted, #6b6e6b);
    }
    main.index .blazeKit .prong{
    display: inline-block;
    margin-top: 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--chrome-primary-dark);
    text-decoration: none;
    transition: color 0.2s;
    }
    main.index .blazeKit .prong:hover{ color: var(--chrome-secondary); }
    
    main.index .ridgeMap{
    background: var(--chrome-text, #1a1d1a);
    color: #fff;
    padding: 80px 24px;
    }
    main.index .vex_orb{
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    }
    main.index .ridgeMap h2{
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    }
    main.index .ridgeMap p{
    font-size: 1rem;
    line-height: 1.75;
    color: hsla(0, 0%, 100%, 0.7);
    margin-bottom: 16px;
    }
    main.index .ridgeMap a.waspNest{
    color: var(--chrome-primary);
    text-decoration: none;
    font-weight: 600;
    }
    main.index .ridgeMap a.waspNest:hover{ text-decoration: underline; }
    main.index .echo7{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    }
    main.index .jig_saw2{ text-align: center; }
    main.index .cask8{
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--chrome-primary);
    display: block;
    }
    main.index .crankPod{
    font-size: 0.85rem;
    color: hsla(0, 0%, 100%, 0.6);
    margin-top: 4px;
    }
    
    main.index .yawnLab{ text-align: center; }
    main.index .cruxLine{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
    }
    main.index .ovalRun{
    background: var(--chrome-card-bg);
    border: 1px solid var(--chrome-border);
    padding: 36px 20px;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
    }
    main.index .ovalRun:hover{
    box-shadow: 0 8px 30px hsla(168, 10%, 20%, 0.07);
    transform: translateY(-3px);
    }
    main.index .axle_hub{
    width: 40px;
    height: 40px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    }
    main.index .axle_hub svg{ width: 36px; height: 36px; fill: var(--chrome-text, #1a1d1a); }
    main.index .ovalRun h3{
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--chrome-text, #1a1d1a);
    }
    main.index .ovalRun p{
    font-size: 0.82rem;
    color: var(--chrome-muted, #6b6e6b);
    }
    
    main.index .koi_fin{
    text-align: center;
    padding: 100px 24px;
    background: linear-gradient(180deg, var(--chrome-bg) 0%, hsl(168, 12%, 93%) 100%);
    }
    main.index .koi_fin h2{
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 16px;
    }
    main.index .koi_fin p{
    font-size: 1.05rem;
    color: var(--chrome-muted, #6b6e6b);
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    }
    
    main.index .rumble{
    border-top: 1px solid var(--chrome-border);
    padding: 48px 24px;
    max-width: 1200px;
    margin: 0 auto;
    }
    main.index .mossTip{
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    gap: 32px;
    }
    main.index .fizzBolt{
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--chrome-text, #1a1d1a);
    margin-bottom: 8px;
    }
    main.index .nimbus4{
    font-size: 0.82rem;
    color: var(--chrome-muted, #6b6e6b);
    }
    main.index .footer-links{ display: flex; gap: 28px; flex-wrap: wrap; }
    main.index .footer-links a{
    font-size: 0.85rem;
    color: var(--chrome-muted, #6b6e6b);
    text-decoration: none;
    transition: color 0.2s;
    }
    main.index .footer-links a:hover{ color: var(--chrome-text, #1a1d1a); }
    
    @media (max-width: 960px) {main.index .dewClaw{ grid-template-columns: 1fr; }
    main.index .vex_orb{ grid-template-columns: 1fr; }
    main.index .cruxLine{ grid-template-columns: repeat(3, 1fr); }}
    @media (max-width: 640px) {main.index .quill_tap{ min-height: auto; padding: 100px 20px 60px; }
    main.index .gritPulse{ flex-direction: column; align-items: center; }
    main.index .cruxLine{ grid-template-columns: repeat(2, 1fr); }
    main.index .echo7{ grid-template-columns: 1fr; gap: 20px; }
    main.index .mossTip{ flex-direction: column; }}
    main img.sbv2-ai-image {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    }
    main img.sbv2-ai-image.sbv2-ratio-16-9 { aspect-ratio: 16 / 9; }
    main img.sbv2-ai-image.sbv2-ratio-16-10 { aspect-ratio: 16 / 10; }
    main img.sbv2-ai-image.sbv2-ratio-4-3 { aspect-ratio: 4 / 3; }
    main img.sbv2-ai-image.sbv2-ratio-1-1 { aspect-ratio: 1 / 1; }
    main .sbv2-media-frame {
    overflow: hidden;
    }
    main .sbv2-media-frame.sbv2-ratio-16-9 { aspect-ratio: 16 / 9; }
    main .sbv2-media-frame.sbv2-ratio-16-10 { aspect-ratio: 16 / 10; }
    main .sbv2-media-frame.sbv2-ratio-4-3 { aspect-ratio: 4 / 3; }
    main .sbv2-media-frame.sbv2-ratio-1-1 { aspect-ratio: 1 / 1; }
    main .sbv2-media-frame > img.sbv2-ai-image,
    main .sbv2-media-frame > picture > img.sbv2-ai-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    }

    *,
    *::before,
    *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    body {
    padding-top: var(--nav-height);
    font-family: "Georgia", "Times New Roman", serif;
    color: var(--text-color);
    background: var(--bg-color);
    }
    .fluxMob {
    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);
    }
    .zephyr {
    max-width: var(--max-width);
    margin: 0 auto;
    height: 100%;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    }
    .tango9 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: -0.02em;
    font-family: "Georgia", serif;
    }
    .brv2 {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    }
    .snare_pop {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-color);
    transition: var(--transition);
    }
    .pixDust {
    display: flex;
    align-items: center;
    gap: 32px;
    }
    .crmbl {
    display: flex;
    list-style: none;
    gap: 6px;
    }
    .oak_vine {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: var(--transition);
    }
    .oak_vine:hover {
    color: var(--text-color);
    }
    .quartz {
    display: inline-block;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    color: #ffffff;
    background: var(--primary-color);
    text-decoration: none;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    letter-spacing: 0.01em;
    }
    .quartz:hover {
    background: var(--secondary-color);
    box-shadow: var(--shadow-md);
    }
    @media (max-width: 860px) {.zephyr {
    padding: 0 20px;
    }
    .brv2 {
    display: flex;
    }
    .pixDust {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--nav-bg);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    padding: 16px 20px 24px;
    gap: 16px;
    }
    .pixDust.is-open {
    display: flex;
    }
    .crmbl {
    flex-direction: column;
    gap: 0;
    }
    .oak_vine {
    padding: 12px 8px;
    font-size: 15px;
    border-bottom: 1px solid var(--border-color);
    }
    .quartz {
    text-align: center;
    width: 100%;
    padding: 14px;
    font-size: 15px;
    }}
    .oak_vine.active {color: var(--text-color);}
    main.download *{ margin: 0; padding: 0; box-sizing: border-box; }
    main.download .comet_ray{
    background: linear-gradient(165deg, var(--page-text) 0%, hsl(251, 30%, 22%) 100%);
    color: #fff;
    padding: 6rem 1.5rem 4rem;
    text-align: center;
    }
    main.download .comet_ray h1{
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    }
    main.download .comet_ray .velvetAsh{
    font-size: 1.1rem;
    opacity: 0.82;
    max-width: 540px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    }
    main.download .comet_ray .blip9{
    display: inline-block;
    background: var(--brand-primary);
    color: var(--page-text);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1rem 2.8rem;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
    box-shadow: 0 4px 18px rgba(0,0,0,.25);
    }
    main.download .comet_ray .blip9:hover{
    background: var(--brand-primary-dark);
    box-shadow: 0 6px 24px rgba(0,0,0,.35);
    }
    main.download .comet_ray .sparkNub{
    margin-top: 1.2rem;
    font-size: 0.85rem;
    opacity: 0.6;
    }
    main.download .fern3{
    max-width: 1080px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    }
    
    main.download .spool{ background: var(--page-bg); }
    main.download .spool h2{
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.8rem;
    text-align: center;
    color: var(--page-text);
    margin-bottom: 0.5rem;
    }
    main.download .spool .mistVow{
    text-align: center;
    color: hsl(168, 8%, 40%);
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
    }
    main.download .boltRig{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    }
    main.download .cloverMud{
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow .2s;
    }
    main.download .cloverMud:hover{
    box-shadow: 0 8px 30px rgba(0,0,0,.07);
    }
    main.download .cloverMud .pyre_log{
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: var(--brand-secondary);
    }
    main.download .cloverMud h3{
    font-size: 1.1rem;
    color: var(--page-text);
    margin-bottom: 0.4rem;
    }
    main.download .cloverMud .duskHum{
    font-size: 0.82rem;
    color: hsl(168, 8%, 50%);
    margin-bottom: 1.2rem;
    line-height: 1.5;
    }
    main.download .cloverMud .oxid{
    display: inline-block;
    background: var(--brand-secondary);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.65rem 1.6rem;
    text-decoration: none;
    transition: background .2s;
    margin-top: auto;
    }
    main.download .cloverMud .oxid:hover{
    background: var(--brand-secondary-dark);
    }
    
    main.download .gyro{ background: var(--card-bg); }
    main.download .gyro h2{
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.8rem;
    color: var(--page-text);
    margin-bottom: 2rem;
    }
    main.download .crag7{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    }
    main.download .twig_elm{
    position: relative;
    padding-left: 3rem;
    }
    main.download .huskJab{
    position: absolute;
    left: 0;
    top: 0;
    width: 2.2rem;
    height: 2.2rem;
    background: var(--brand-primary);
    color: var(--page-text);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    }
    main.download .twig_elm h3{
    font-size: 1rem;
    color: var(--page-text);
    margin-bottom: 0.3rem;
    }
    main.download .twig_elm p{
    font-size: 0.88rem;
    color: hsl(168, 8%, 40%);
    line-height: 1.6;
    }
    
    main.download .reef_dye{
    background: var(--page-bg);
    }
    main.download .reef_dye .fern3{
    display: flex;
    gap: 3rem;
    align-items: center;
    }
    main.download .reef_dye .waxComb{
    flex: 1;
    min-width: 0;
    }
    main.download .reef_dye .waxComb img{
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
    }
    main.download .reef_dye .latchPin{
    flex: 1;
    }
    main.download .reef_dye .latchPin h2{
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.6rem;
    color: var(--page-text);
    margin-bottom: 1rem;
    }
    main.download .reef_dye .latchPin p{
    font-size: 0.95rem;
    color: hsl(168, 8%, 35%);
    line-height: 1.75;
    margin-bottom: 1rem;
    }
    main.download .reef_dye .latchPin a{
    color: var(--brand-secondary);
    text-decoration: underline;
    text-underline-offset: 3px;
    }
    
    main.download .dune_fox{
    background: var(--card-bg);
    }
    main.download .gnaw{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    }
    main.download .zenPad h2{
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
    color: var(--page-text);
    margin-bottom: 1rem;
    }
    main.download .zenPad p, main.download .zenPad li{
    font-size: 0.9rem;
    color: hsl(168, 8%, 35%);
    line-height: 1.7;
    }
    main.download .zenPad ul{
    list-style: none;
    padding: 0;
    }
    main.download .zenPad ul li{
    padding: 0.35rem 0;
    padding-left: 1.2rem;
    position: relative;
    }
    main.download .zenPad ul li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    background: var(--brand-primary);
    border-radius: 50%;
    }
    
    main.download .skimDot{ background: var(--page-bg); }
    main.download .skimDot h2{
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    color: var(--page-text);
    margin-bottom: 1rem;
    }
    main.download .skimDot p{
    font-size: 0.92rem;
    color: hsl(168, 8%, 38%);
    line-height: 1.7;
    max-width: 720px;
    }
    main.download .skimDot .plank_rut{
    margin-top: 1rem;
    padding: 1rem 1.2rem;
    background: var(--card-bg);
    border-left: 3px solid var(--brand-secondary);
    font-size: 0.88rem;
    color: hsl(168, 8%, 30%);
    line-height: 1.6;
    }
    
    main.download .rumHive{
    background: var(--page-text);
    color: hsl(168, 10%, 70%);
    padding: 2.5rem 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    line-height: 1.8;
    }
    main.download .rumHive .turf5{
    margin-bottom: 0.8rem;
    }
    main.download .rumHive .turf5 a{
    color: hsl(168, 10%, 70%);
    text-decoration: none;
    margin: 0 0.8rem;
    transition: color .2s;
    }
    main.download .rumHive .turf5 a:hover{
    color: var(--brand-primary);
    }
    @media (max-width: 768px) {main.download .reef_dye .fern3{
    flex-direction: column;
    }
    main.download .gnaw{
    grid-template-columns: 1fr;
    }
    main.download .comet_ray{ padding: 4rem 1.2rem 3rem; }}
    main img.sbv2-ai-image {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    }
    main img.sbv2-ai-image.sbv2-ratio-16-9 { aspect-ratio: 16 / 9; }
    main img.sbv2-ai-image.sbv2-ratio-16-10 { aspect-ratio: 16 / 10; }
    main img.sbv2-ai-image.sbv2-ratio-4-3 { aspect-ratio: 4 / 3; }
    main img.sbv2-ai-image.sbv2-ratio-1-1 { aspect-ratio: 1 / 1; }
    main .sbv2-media-frame {
    overflow: hidden;
    }
    main .sbv2-media-frame.sbv2-ratio-16-9 { aspect-ratio: 16 / 9; }
    main .sbv2-media-frame.sbv2-ratio-16-10 { aspect-ratio: 16 / 10; }
    main .sbv2-media-frame.sbv2-ratio-4-3 { aspect-ratio: 4 / 3; }
    main .sbv2-media-frame.sbv2-ratio-1-1 { aspect-ratio: 1 / 1; }
    main .sbv2-media-frame > img.sbv2-ai-image,
    main .sbv2-media-frame > picture > img.sbv2-ai-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    }

    *,
    *::before,
    *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    body {
    padding-top: var(--nav-height);
    font-family: "Georgia", "Times New Roman", serif;
    color: var(--text-color);
    background: var(--bg-color);
    }
    .fluxMob {
    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);
    }
    .zephyr {
    max-width: var(--max-width);
    margin: 0 auto;
    height: 100%;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    }
    .tango9 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: -0.02em;
    font-family: "Georgia", serif;
    }
    .brv2 {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    }
    .snare_pop {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-color);
    transition: var(--transition);
    }
    .pixDust {
    display: flex;
    align-items: center;
    gap: 32px;
    }
    .crmbl {
    display: flex;
    list-style: none;
    gap: 6px;
    }
    .oak_vine {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: var(--transition);
    }
    .oak_vine:hover {
    color: var(--text-color);
    }
    .quartz {
    display: inline-block;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    color: #ffffff;
    background: var(--primary-color);
    text-decoration: none;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    letter-spacing: 0.01em;
    }
    .quartz:hover {
    background: var(--secondary-color);
    box-shadow: var(--shadow-md);
    }
    @media (max-width: 860px) {.zephyr {
    padding: 0 20px;
    }
    .brv2 {
    display: flex;
    }
    .pixDust {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--nav-bg);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    padding: 16px 20px 24px;
    gap: 16px;
    }
    .pixDust.is-open {
    display: flex;
    }
    .crmbl {
    flex-direction: column;
    gap: 0;
    }
    .oak_vine {
    padding: 12px 8px;
    font-size: 15px;
    border-bottom: 1px solid var(--border-color);
    }
    .quartz {
    text-align: center;
    width: 100%;
    padding: 14px;
    font-size: 15px;
    }}
    .oak_vine.active {color: var(--text-color);}
    main.features *{ margin: 0; padding: 0; box-sizing: border-box; }
    main.features .emitGap{
    padding: 100px 24px 72px;
    text-align: center;
    background: linear-gradient(175deg, var(--page-bg) 0%, hsl(168, 20%, 92%) 100%);
    }
    main.features .emitGap h1{
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--page-text, #111);
    line-height: 1.3;
    max-width: 780px;
    margin: 0 auto 20px;
    letter-spacing: -0.5px;
    }
    main.features .quilRex{
    font-size: 1.08rem;
    color: hsl(168, 8%, 35%);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.7;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }
    main.features .jade_orb{
    display: inline-block;
    padding: 14px 40px;
    background: var(--brand-secondary);
    color: #fff;
    font-size: 1.05rem;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px hsla(251, 58%, 58%, 0.3);
    }
    main.features .jade_orb:hover{
    background: hsl(251, 58%, 48%);
    box-shadow: 0 6px 24px hsla(251, 58%, 48%, 0.35); color: #ffffff;}
    main.features .lurkVat{
    max-width: 1120px;
    margin: 0 auto;
    padding: 80px 24px;
    }
    main.features .lurkVat h2{
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    color: var(--page-text, #111);
    margin-bottom: 48px;
    text-align: center;
    letter-spacing: -0.3px;
    }
    main.features .pith_gem{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    }
    main.features .tuskOak{
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow 0.25s, transform 0.25s;
    }
    main.features .tuskOak:hover{
    box-shadow: 0 8px 32px hsla(168, 20%, 20%, 0.08);
    transform: translateY(-3px);
    }
    main.features .rind_bay{
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(168, 40%, 94%);
    border-radius: 10px;
    }
    main.features .rind_bay svg{
    width: 26px;
    height: 26px;
    stroke: var(--brand-primary-dark);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    }
    main.features .tuskOak h3{
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.18rem;
    color: var(--page-text, #111);
    }
    main.features .tuskOak p{
    font-size: 0.95rem;
    color: hsl(168, 8%, 38%);
    line-height: 1.72;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }
    main.features .gale2{
    background: hsl(168, 10%, 93%);
    }
    main.features .malt_cog{
    max-width: 1120px;
    margin: 0 auto;
    padding: 80px 24px;
    }
    main.features .malt_cog h2{
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    color: var(--page-text, #111);
    margin-bottom: 48px;
    text-align: center;
    }
    main.features .harpJet{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 64px;
    }
    main.features .harpJet:last-child{ margin-bottom: 0; }
    main.features .harpJet.optic5{ direction: rtl; }
    main.features .harpJet.optic5 > *{ direction: ltr; }
    main.features .slabNet{
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border: 1px solid var(--border-light);
    }
    main.features .umbra7 h3{
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
    color: var(--page-text, #111);
    margin-bottom: 14px;
    }
    main.features .umbra7 p{
    font-size: 0.97rem;
    color: hsl(168, 8%, 35%);
    line-height: 1.75;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }
    main.features .umbra7 a{
    color: var(--brand-secondary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
    }
    main.features .umbra7 a:hover{
    border-bottom-color: var(--brand-secondary);
    }
    main.features .nookSap{
    text-align: center;
    padding: 72px 24px;
    background: linear-gradient(170deg, hsl(251, 30%, 96%) 0%, var(--page-bg) 100%);
    }
    main.features .nookSap h2{
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--page-text, #111);
    margin-bottom: 16px;
    }
    main.features .nookSap p{
    font-size: 1rem;
    color: hsl(168, 8%, 38%);
    margin-bottom: 28px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }
    main.features .inkWell3{
    display: inline-block;
    padding: 15px 44px;
    background: var(--brand-primary-dark);
    color: #fff;
    font-size: 1.05rem;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 16px hsla(168, 73%, 38%, 0.3);
    transition: background 0.2s, box-shadow 0.2s;
    }
    main.features .inkWell3:hover{
    background: hsl(168, 73%, 32%);
    box-shadow: 0 6px 24px hsla(168, 73%, 32%, 0.35);
    }
    main.features .frothSky{
    max-width: 1120px;
    margin: 0 auto;
    padding: 40px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-light);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.88rem;
    color: hsl(168, 8%, 50%);
    flex-wrap: wrap;
    gap: 16px;
    }
    main.features .kelpRun{
    display: flex;
    gap: 24px;
    list-style: none;
    }
    main.features .kelpRun a{
    color: hsl(168, 8%, 42%);
    text-decoration: none;
    transition: color 0.2s;
    }
    main.features .kelpRun a:hover{
    color: var(--page-text);
    }
    @media (max-width: 860px) {main.features .pith_gem{ grid-template-columns: 1fr 1fr; }
    main.features .harpJet{ grid-template-columns: 1fr; gap: 24px; }
    main.features .harpJet.optic5{ direction: ltr; }}
    @media (max-width: 560px) {main.features .pith_gem{ grid-template-columns: 1fr; }
    main.features .emitGap{ padding: 72px 20px 48px; }
    main.features .frothSky{ flex-direction: column; text-align: center; }}
    main img.sbv2-ai-image {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    }
    main img.sbv2-ai-image.sbv2-ratio-16-9 { aspect-ratio: 16 / 9; }
    main img.sbv2-ai-image.sbv2-ratio-16-10 { aspect-ratio: 16 / 10; }
    main img.sbv2-ai-image.sbv2-ratio-4-3 { aspect-ratio: 4 / 3; }
    main img.sbv2-ai-image.sbv2-ratio-1-1 { aspect-ratio: 1 / 1; }
    main .sbv2-media-frame {
    overflow: hidden;
    }
    main .sbv2-media-frame.sbv2-ratio-16-9 { aspect-ratio: 16 / 9; }
    main .sbv2-media-frame.sbv2-ratio-16-10 { aspect-ratio: 16 / 10; }
    main .sbv2-media-frame.sbv2-ratio-4-3 { aspect-ratio: 4 / 3; }
    main .sbv2-media-frame.sbv2-ratio-1-1 { aspect-ratio: 1 / 1; }
    main .sbv2-media-frame > img.sbv2-ai-image,
    main .sbv2-media-frame > picture > img.sbv2-ai-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    }

    *,
    *::before,
    *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    body {
    padding-top: var(--nav-height);
    font-family: "Georgia", "Times New Roman", serif;
    color: var(--text-color);
    background: var(--bg-color);
    }
    .fluxMob {
    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);
    }
    .zephyr {
    max-width: var(--max-width);
    margin: 0 auto;
    height: 100%;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    }
    .tango9 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: -0.02em;
    font-family: "Georgia", serif;
    }
    .brv2 {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    }
    .snare_pop {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-color);
    transition: var(--transition);
    }
    .pixDust {
    display: flex;
    align-items: center;
    gap: 32px;
    }
    .crmbl {
    display: flex;
    list-style: none;
    gap: 6px;
    }
    .oak_vine {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: var(--transition);
    }
    .oak_vine:hover {
    color: var(--text-color);
    }
    .quartz {
    display: inline-block;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    color: #ffffff;
    background: var(--primary-color);
    text-decoration: none;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    letter-spacing: 0.01em;
    }
    .quartz:hover {
    background: var(--secondary-color);
    box-shadow: var(--shadow-md);
    }
    @media (max-width: 860px) {.zephyr {
    padding: 0 20px;
    }
    .brv2 {
    display: flex;
    }
    .pixDust {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--nav-bg);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    padding: 16px 20px 24px;
    gap: 16px;
    }
    .pixDust.is-open {
    display: flex;
    }
    .crmbl {
    flex-direction: column;
    gap: 0;
    }
    .oak_vine {
    padding: 12px 8px;
    font-size: 15px;
    border-bottom: 1px solid var(--border-color);
    }
    .quartz {
    text-align: center;
    width: 100%;
    padding: 14px;
    font-size: 15px;
    }}
    .oak_vine.active {color: var(--text-color);}
    main.system-requirements *{ margin: 0; padding: 0; box-sizing: border-box; }
    main.system-requirements .dawnMix{
    padding: 5rem 1.5rem 3.5rem;
    text-align: center;
    background: linear-gradient(175deg, hsl(168, 20%, 94%) 0%, var(--page-bg) 100%);
    }
    main.system-requirements .dawnMix h1{
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--page-text);
    line-height: 1.3;
    max-width: 720px;
    margin: 0 auto 1rem;
    }
    main.system-requirements .dawnMix p{
    font-size: 1.05rem;
    color: var(--page-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    }
    main.system-requirements .flint_rub{
    display: inline-block;
    padding: 0.85rem 2.2rem;
    background: var(--page-secondary);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: opacity 0.2s;
    }
    main.system-requirements .flint_rub:hover{ opacity: 0.88; }
    main.system-requirements .ompRay{
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 1.5rem;
    }
    main.system-requirements .brinePod{
    padding: 3.5rem 0;
    }
    main.system-requirements .brinePod h2{
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.6rem;
    color: var(--page-text);
    margin-bottom: 0.5rem;
    }
    main.system-requirements .brinePod > .ompRay > p.loom5{
    color: var(--page-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 680px;
    }
    main.system-requirements .clad9{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    }
    main.system-requirements .grubSaw{
    background: var(--page-card-bg);
    border: 1px solid var(--page-border);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    }
    main.system-requirements .amberFog{
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(168, 30%, 93%);
    border-radius: 4px;
    }
    main.system-requirements .amberFog svg{
    width: 24px;
    height: 24px;
    stroke: var(--page-secondary);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    }
    main.system-requirements .grubSaw h3{
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;
    color: var(--page-text);
    }
    main.system-requirements .grubSaw ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    }
    main.system-requirements .grubSaw li{
    font-size: 0.92rem;
    color: var(--page-muted);
    line-height: 1.6;
    padding-left: 1.1rem;
    position: relative;
    }
    main.system-requirements .grubSaw li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 5px;
    height: 5px;
    background: var(--page-primary);
    border-radius: 50%;
    }
    main.system-requirements .vialCut{
    background: hsl(168, 15%, 93%);
    }
    main.system-requirements .jolt_vim{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
    }
    main.system-requirements .hazeKit{
    background: var(--page-card-bg);
    border: 1px solid var(--page-border);
    padding: 1.5rem;
    text-align: center;
    }
    main.system-requirements .hazeKit .irisLap{
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    color: var(--page-secondary);
    margin-bottom: 0.3rem;
    }
    main.system-requirements .hazeKit .yak_den{
    font-size: 0.88rem;
    color: var(--page-muted);
    }
    main.system-requirements .wren_dip{
    position: relative;
    overflow: hidden;
    aspect-ratio: 21/7;
    max-height: 320px;
    }
    main.system-requirements .wren_dip img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    }
    main.system-requirements .nectarJig{
    padding: 3.5rem 0;
    }
    main.system-requirements .nectarJig h2{
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.6rem;
    color: var(--page-text);
    margin-bottom: 0.5rem;
    }
    main.system-requirements .xyloPeg{
    color: var(--page-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 680px;
    }
    main.system-requirements .mullPix{
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
    }
    main.system-requirements .mullPix th, main.system-requirements .mullPix td{
    text-align: left;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--page-border);
    }
    main.system-requirements .mullPix th{
    background: hsl(168, 15%, 93%);
    color: var(--page-text);
    font-weight: 600;
    }
    main.system-requirements .mullPix td{
    color: var(--page-muted);
    }
    main.system-requirements .knobArc{
    padding: 3rem 0;
    text-align: center;
    }
    main.system-requirements .knobArc h2{
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
    color: var(--page-text);
    margin-bottom: 1.5rem;
    }
    main.system-requirements .etchVow{
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    }
    main.system-requirements .etchVow a{
    padding: 0.7rem 1.6rem;
    border: 1px solid var(--page-border);
    text-decoration: none;
    color: var(--page-text);
    font-size: 0.92rem;
    transition: border-color 0.2s, color 0.2s;
    }
    main.system-requirements .etchVow a:hover{
    border-color: var(--page-secondary);
    color: var(--page-secondary);
    }
    main.system-requirements .zorb{
    border-top: 1px solid var(--page-border);
    padding: 2.5rem 1.5rem;
    text-align: center;
    color: var(--page-muted);
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    }
    main.system-requirements .zorb a{
    color: var(--page-muted);
    text-decoration: none;
    }
    main.system-requirements .zorb a:hover{
    color: var(--page-secondary);
    }
    @media (max-width: 640px) {main.system-requirements .dawnMix{ padding: 3.5rem 1rem 2.5rem; }
    main.system-requirements .brinePod{ padding: 2.5rem 0; }
    main.system-requirements .clad9{ grid-template-columns: 1fr; }
    main.system-requirements .jolt_vim{ grid-template-columns: 1fr 1fr; }
    main.system-requirements .mullPix{ font-size: 0.82rem; }
    main.system-requirements .mullPix th, main.system-requirements .mullPix td{ padding: 0.6rem 0.6rem; }}
    main img.sbv2-ai-image {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    }
    main img.sbv2-ai-image.sbv2-ratio-16-9 { aspect-ratio: 16 / 9; }
    main img.sbv2-ai-image.sbv2-ratio-16-10 { aspect-ratio: 16 / 10; }
    main img.sbv2-ai-image.sbv2-ratio-4-3 { aspect-ratio: 4 / 3; }
    main img.sbv2-ai-image.sbv2-ratio-1-1 { aspect-ratio: 1 / 1; }
    main .sbv2-media-frame {
    overflow: hidden;
    }
    main .sbv2-media-frame.sbv2-ratio-16-9 { aspect-ratio: 16 / 9; }
    main .sbv2-media-frame.sbv2-ratio-16-10 { aspect-ratio: 16 / 10; }
    main .sbv2-media-frame.sbv2-ratio-4-3 { aspect-ratio: 4 / 3; }
    main .sbv2-media-frame.sbv2-ratio-1-1 { aspect-ratio: 1 / 1; }
    main .sbv2-media-frame > img.sbv2-ai-image,
    main .sbv2-media-frame > picture > img.sbv2-ai-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    }

    *,
    *::before,
    *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    body {
    padding-top: var(--nav-height);
    font-family: "Georgia", "Times New Roman", serif;
    color: var(--text-color);
    background: var(--bg-color);
    }
    .fluxMob {
    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);
    }
    .zephyr {
    max-width: var(--max-width);
    margin: 0 auto;
    height: 100%;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    }
    .tango9 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: -0.02em;
    font-family: "Georgia", serif;
    }
    .brv2 {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    }
    .snare_pop {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-color);
    transition: var(--transition);
    }
    .pixDust {
    display: flex;
    align-items: center;
    gap: 32px;
    }
    .crmbl {
    display: flex;
    list-style: none;
    gap: 6px;
    }
    .oak_vine {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: var(--transition);
    }
    .oak_vine:hover {
    color: var(--text-color);
    }
    .quartz {
    display: inline-block;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    color: #ffffff;
    background: var(--primary-color);
    text-decoration: none;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    letter-spacing: 0.01em;
    }
    .quartz:hover {
    background: var(--secondary-color);
    box-shadow: var(--shadow-md);
    }
    @media (max-width: 860px) {.zephyr {
    padding: 0 20px;
    }
    .brv2 {
    display: flex;
    }
    .pixDust {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--nav-bg);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    padding: 16px 20px 24px;
    gap: 16px;
    }
    .pixDust.is-open {
    display: flex;
    }
    .crmbl {
    flex-direction: column;
    gap: 0;
    }
    .oak_vine {
    padding: 12px 8px;
    font-size: 15px;
    border-bottom: 1px solid var(--border-color);
    }
    .quartz {
    text-align: center;
    width: 100%;
    padding: 14px;
    font-size: 15px;
    }}
    .oak_vine.active {color: var(--text-color);}
    main.update-log *{ margin: 0; padding: 0; box-sizing: border-box; }
    main.update-log .dram_hue{
    padding: 80px 24px 60px;
    text-align: center;
    background: var(--cl-bg);
    border-bottom: 1px solid var(--cl-border);
    }
    main.update-log .dram_hue h1{
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--cl-text, #1a1a1a);
    line-height: 1.35;
    max-width: 720px;
    margin: 0 auto 20px;
    letter-spacing: -0.02em;
    }
    main.update-log .dram_hue .whisk_pod{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1.05rem;
    color: var(--cl-muted, #555);
    max-width: 640px;
    margin: 0 auto 32px;
    line-height: 1.7;
    }
    main.update-log .dram_hue .urnWax{
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/9;
    object-fit: cover;
    border: 1px solid var(--cl-border);
    margin: 0 auto;
    display: block;
    }
    main.update-log .dram_hue .veld3{
    display: inline-block;
    margin-top: 28px;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--cl-secondary), hsl(251, 58%, 48%));
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    transition: opacity 0.2s;
    }
    main.update-log .dram_hue .veld3:hover{ opacity: 0.88; }
    main.update-log .rusk_tin{
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 24px 80px;
    }
    main.update-log .xen_cub{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.98rem;
    color: var(--cl-muted, #555);
    line-height: 1.75;
    margin-bottom: 56px;
    border-left: 3px solid var(--cl-primary);
    padding-left: 20px;
    }
    main.update-log .xen_cub a{
    color: var(--cl-secondary, #6c5ce7);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
    }
    main.update-log .xen_cub a:hover{ border-bottom-color: var(--cl-secondary); }
    main.update-log .siltVex{
    position: relative;
    padding-left: 32px;
    margin-bottom: 56px;
    }
    main.update-log .siltVex::before{
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background: var(--cl-primary);
    border: 3px solid var(--cl-bg);
    box-shadow: 0 0 0 2px var(--cl-primary);
    }
    main.update-log .siltVex::after{
    content: "";
    position: absolute;
    left: 5px;
    top: 24px;
    bottom: -40px;
    width: 2px;
    background: var(--cl-border);
    }
    main.update-log .siltVex:last-of-type::after{ display: none; }
    main.update-log .alp_rue{
    display: flex;
    align-items: baseline;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    }
    main.update-log .alp_rue h2{
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
    color: var(--cl-text, #1a1a1a);
    letter-spacing: -0.01em;
    }
    main.update-log .timber{
    font-family: "SF Mono", "Fira Code", monospace;
    font-size: 0.82rem;
    color: var(--cl-muted, #888);
    background: var(--cl-bg);
    padding: 3px 10px;
    border: 1px solid var(--cl-border);
    }
    main.update-log .cobalt{
    font-size: 0.8rem;
    color: var(--cl-muted);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }
    main.update-log .ember{ margin-bottom: 20px; }
    main.update-log .ember h3{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--cl-text, #333);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    }
    main.update-log .mosaic{
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }
    main.update-log .prism{ background: var(--cl-tag-new); color: hsl(168, 60%, 30%); }
    main.update-log .yore8{ background: var(--cl-tag-fix); color: hsl(251, 50%, 35%); }
    main.update-log .qoph{ background: var(--cl-tag-security); color: hsl(35, 70%, 30%); }
    main.update-log .falcon{ background: var(--cl-tag-perf); color: hsl(200, 55%, 28%); }
    main.update-log .zag_elm{
    list-style: none;
    padding: 0;
    }
    main.update-log .zag_elm li{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.92rem;
    color: var(--cl-text, #333);
    line-height: 1.7;
    padding: 6px 0 6px 20px;
    position: relative;
    border-bottom: 1px solid hsl(168, 7%, 93%);
    }
    main.update-log .zag_elm li:last-child{ border-bottom: none; }
    main.update-log .zag_elm li::before{
    content: "—";
    position: absolute;
    left: 0;
    color: var(--cl-muted);
    }
    main.update-log .zag_elm li a{
    color: var(--cl-secondary, #6c5ce7);
    text-decoration: none;
    border-bottom: 1px dotted var(--cl-secondary);
    }
    main.update-log .zag_elm li a:hover{ border-bottom-style: solid; }
    main.update-log .corvid2{
    margin-top: 60px;
    padding: 28px;
    background: var(--cl-surface);
    border: 1px solid var(--cl-border);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.9rem;
    color: var(--cl-muted);
    line-height: 1.7;
    }
    main.update-log .corvid2 a{
    color: var(--cl-secondary);
    text-decoration: none;
    }
    main.update-log .purl_hex{
    border-top: 1px solid var(--cl-border);
    padding: 40px 24px;
    text-align: center;
    background: var(--cl-bg);
    }
    main.update-log .purl_hex .byre{
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.1rem;
    color: var(--cl-text, #1a1a1a);
    margin-bottom: 6px;
    }
    main.update-log .purl_hex .tambGlo{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.82rem;
    color: var(--cl-muted);
    margin-bottom: 16px;
    }
    main.update-log .footer-links{
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    }
    main.update-log .footer-links a{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.82rem;
    color: var(--cl-muted);
    text-decoration: none;
    transition: color 0.2s;
    }
    main.update-log .footer-links a:hover{ color: var(--cl-text); }
    main.update-log .purl_hex .velvet{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.78rem;
    color: var(--cl-muted);
    }
    @media (max-width: 640px) {main.update-log .dram_hue{ padding: 56px 16px 40px; }
    main.update-log .rusk_tin{ padding: 40px 16px 60px; }
    main.update-log .alp_rue{ flex-direction: column; gap: 6px; }
    main.update-log .siltVex{ padding-left: 24px; }}
    main img.sbv2-ai-image {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    }
    main img.sbv2-ai-image.sbv2-ratio-16-9 { aspect-ratio: 16 / 9; }
    main img.sbv2-ai-image.sbv2-ratio-16-10 { aspect-ratio: 16 / 10; }
    main img.sbv2-ai-image.sbv2-ratio-4-3 { aspect-ratio: 4 / 3; }
    main img.sbv2-ai-image.sbv2-ratio-1-1 { aspect-ratio: 1 / 1; }
    main .sbv2-media-frame {
    overflow: hidden;
    }
    main .sbv2-media-frame.sbv2-ratio-16-9 { aspect-ratio: 16 / 9; }
    main .sbv2-media-frame.sbv2-ratio-16-10 { aspect-ratio: 16 / 10; }
    main .sbv2-media-frame.sbv2-ratio-4-3 { aspect-ratio: 4 / 3; }
    main .sbv2-media-frame.sbv2-ratio-1-1 { aspect-ratio: 1 / 1; }
    main .sbv2-media-frame > img.sbv2-ai-image,
    main .sbv2-media-frame > picture > img.sbv2-ai-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    }

    *,
    *::before,
    *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    body {
    padding-top: var(--nav-height);
    font-family: "Georgia", "Times New Roman", serif;
    color: var(--text-color);
    background: var(--bg-color);
    }
    .fluxMob {
    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);
    }
    .zephyr {
    max-width: var(--max-width);
    margin: 0 auto;
    height: 100%;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    }
    .tango9 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: -0.02em;
    font-family: "Georgia", serif;
    }
    .brv2 {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    }
    .snare_pop {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-color);
    transition: var(--transition);
    }
    .pixDust {
    display: flex;
    align-items: center;
    gap: 32px;
    }
    .crmbl {
    display: flex;
    list-style: none;
    gap: 6px;
    }
    .oak_vine {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: var(--transition);
    }
    .oak_vine:hover {
    color: var(--text-color);
    }
    .quartz {
    display: inline-block;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    color: #ffffff;
    background: var(--primary-color);
    text-decoration: none;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    letter-spacing: 0.01em;
    }
    .quartz:hover {
    background: var(--secondary-color);
    box-shadow: var(--shadow-md);
    }
    @media (max-width: 860px) {.zephyr {
    padding: 0 20px;
    }
    .brv2 {
    display: flex;
    }
    .pixDust {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--nav-bg);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    padding: 16px 20px 24px;
    gap: 16px;
    }
    .pixDust.is-open {
    display: flex;
    }
    .crmbl {
    flex-direction: column;
    gap: 0;
    }
    .oak_vine {
    padding: 12px 8px;
    font-size: 15px;
    border-bottom: 1px solid var(--border-color);
    }
    .quartz {
    text-align: center;
    width: 100%;
    padding: 14px;
    font-size: 15px;
    }}
    .oak_vine.active {color: var(--text-color);}
    main.getting-started *{
    box-sizing: border-box;
    }
    main.getting-started{
    font-family: "Noto Serif SC", "Source Han Serif SC", "PingFang SC", "Hiragino Sans GB", serif;
    color: var(--text-color, var(--gs-ink));
    background:
    radial-gradient(circle at 10% 10%, rgba(61, 226, 193, 0.14), transparent 45%),
    radial-gradient(circle at 92% 0%, rgba(116, 89, 209, 0.11), transparent 35%),
    var(--background-color, var(--gs-bg));
    line-height: 1.7;
    padding: 32px 20px 0;
    }
    main.getting-started .fable{
    max-width: 1120px;
    margin: 0 auto;
    }
    main.getting-started .dusk{
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
    align-items: stretch;
    }
    main.getting-started .cipher{
    background: var(--card-bg, var(--gs-surface));
    border: 1px solid var(--border-color, var(--gs-border));
    border-radius: var(--radius-md));
    box-shadow: var(--shadow-md));
    }
    main.getting-started .pulse{
    padding: 40px;
    }
    main.getting-started .onyx{
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gs-muted);
    margin: 0 0 14px;
    }
    main.getting-started h1{
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
    }
    main.getting-started .rune{
    margin: 18px 0 0;
    color: var(--gs-muted);
    font-size: 1.03rem;
    }
    main.getting-started .torque{
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    }
    main.getting-started .vertex{
    border: 1px solid var(--gs-border);
    background: #f9fffd;
    padding: 8px 12px;
    font-size: 0.92rem;
    }
    main.getting-started .helix{
    position: relative;
    overflow: hidden;
    min-height: 360px;
    }
    main.getting-started .helix img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 10;
    display: block;
    }
    main.getting-started .wren{
    position: absolute;
    inset: auto 0 0 0;
    padding: 18px;
    color: #ffffff;
    background: linear-gradient(to top, rgba(5, 16, 14, 0.82), rgba(5, 16, 14, 0.1));
    font-size: 0.92rem;
    }
    main.getting-started .glyph{
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    }
    main.getting-started .orbit{
    display: inline-block;
    background: linear-gradient(135deg, var(--gs-accent), var(--gs-secondary));
    color: #ffffff;
    text-decoration: none;
    padding: 12px 20px;
    font-weight: 700;
    border-radius: 0;
    box-shadow: 0 10px 22px rgba(24, 133, 112, 0.35);
    }
    main.getting-started .orbit:hover{
    background: linear-gradient(135deg, var(--gs-accent-strong), hsl(251, 58%, 48%)); color: #ffffff;}
    main.getting-started .drift{
    color: var(--gs-accent-strong);
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
    }
    main.getting-started .aurora{
    margin-top: 30px;
    padding: 34px;
    }
    main.getting-started h2{
    margin: 0 0 14px;
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    }
    main.getting-started h3{
    margin: 22px 0 8px;
    font-size: 1.14rem;
    }
    main.getting-started p{
    margin: 0;
    }
    main.getting-started .zenith{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
    }
    main.getting-started .nexus{
    border: 1px solid var(--gs-border);
    background: #fcfefd;
    padding: 18px;
    }
    main.getting-started .crux{
    display: flex;
    align-items: center;
    gap: 10px;
    }
    main.getting-started .crux svg{
    width: 20px;
    height: 20px;
    fill: var(--gs-accent-strong);
    flex: 0 0 auto;
    }
    main.getting-started .sable{
    margin: 0;
    font-weight: 700;
    }
    main.getting-started .flint{
    margin-top: 8px;
    color: var(--gs-muted);
    font-size: 0.95rem;
    }
    main.getting-started .grove{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
    }
    main.getting-started .axiom{
    margin: 0;
    border: 1px solid var(--gs-border);
    overflow: hidden;
    }
    main.getting-started .axiom img{
    width: 100%;
    display: block;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    }
    main.getting-started .axiom figcaption{
    padding: 10px 12px;
    font-size: 0.9rem;
    color: var(--gs-muted);
    background: #f7fbfa;
    }
    main.getting-started .blaze{
    margin: 12px 0 0;
    padding-left: 20px;
    }
    main.getting-started .blaze li{
    margin-bottom: 8px;
    }
    main.getting-started .vortex{
    margin-top: 18px;
    padding: 14px;
    border: 1px dashed var(--gs-border);
    background: #fbfffe;
    font-size: 0.95rem;
    }
    main.getting-started footer{
    margin-top: 34px;
    border-top: 1px solid var(--gs-border);
    padding: 20px 0 28px;
    color: var(--gs-muted);
    font-size: 0.92rem;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    }
    main.getting-started footer a{
    color: var(--gs-accent-strong);
    text-decoration: none;
    }
    @media (max-width: 940px) {main.getting-started .dusk, main.getting-started .grove, main.getting-started .zenith{
    grid-template-columns: 1fr;
    }
    main.getting-started .helix{
    min-height: 280px;
    }
    main.getting-started .pulse, main.getting-started .aurora{
    padding: 24px;
    }}
    main img.sbv2-ai-image {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    }
    main img.sbv2-ai-image.sbv2-ratio-16-9 { aspect-ratio: 16 / 9; }
    main img.sbv2-ai-image.sbv2-ratio-16-10 { aspect-ratio: 16 / 10; }
    main img.sbv2-ai-image.sbv2-ratio-4-3 { aspect-ratio: 4 / 3; }
    main img.sbv2-ai-image.sbv2-ratio-1-1 { aspect-ratio: 1 / 1; }
    main .sbv2-media-frame {
    overflow: hidden;
    }
    main .sbv2-media-frame.sbv2-ratio-16-9 { aspect-ratio: 16 / 9; }
    main .sbv2-media-frame.sbv2-ratio-16-10 { aspect-ratio: 16 / 10; }
    main .sbv2-media-frame.sbv2-ratio-4-3 { aspect-ratio: 4 / 3; }
    main .sbv2-media-frame.sbv2-ratio-1-1 { aspect-ratio: 1 / 1; }
    main .sbv2-media-frame > img.sbv2-ai-image,
    main .sbv2-media-frame > picture > img.sbv2-ai-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    }

    *,
    *::before,
    *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    body {
    padding-top: var(--nav-height);
    font-family: "Georgia", "Times New Roman", serif;
    color: var(--text-color);
    background: var(--bg-color);
    }
    .fluxMob {
    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);
    }
    .zephyr {
    max-width: var(--max-width);
    margin: 0 auto;
    height: 100%;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    }
    .tango9 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: -0.02em;
    font-family: "Georgia", serif;
    }
    .brv2 {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    }
    .snare_pop {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-color);
    transition: var(--transition);
    }
    .pixDust {
    display: flex;
    align-items: center;
    gap: 32px;
    }
    .crmbl {
    display: flex;
    list-style: none;
    gap: 6px;
    }
    .oak_vine {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: var(--transition);
    }
    .oak_vine:hover {
    color: var(--text-color);
    }
    .quartz {
    display: inline-block;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    color: #ffffff;
    background: var(--primary-color);
    text-decoration: none;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    letter-spacing: 0.01em;
    }
    .quartz:hover {
    background: var(--secondary-color);
    box-shadow: var(--shadow-md);
    }
    @media (max-width: 860px) {.zephyr {
    padding: 0 20px;
    }
    .brv2 {
    display: flex;
    }
    .pixDust {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--nav-bg);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    padding: 16px 20px 24px;
    gap: 16px;
    }
    .pixDust.is-open {
    display: flex;
    }
    .crmbl {
    flex-direction: column;
    gap: 0;
    }
    .oak_vine {
    padding: 12px 8px;
    font-size: 15px;
    border-bottom: 1px solid var(--border-color);
    }
    .quartz {
    text-align: center;
    width: 100%;
    padding: 14px;
    font-size: 15px;
    }}
    .oak_vine.active {color: var(--text-color);}
    main.shortcuts *{ box-sizing: border-box; }
    main.shortcuts{
    font-family: Georgia, "Times New Roman", serif;
    color: var(--sc-text);
    background: var(--sc-bg);
    line-height: 1.7;
    max-width: 100%;
    overflow-x: hidden;
    }
    main.shortcuts .basalt{
    position: relative;
    padding: 80px 24px 60px;
    text-align: center;
    background: linear-gradient(170deg, hsl(168, 20%, 14%) 0%, hsl(251, 30%, 22%) 100%);
    color: #fff;
    overflow: hidden;
    }
    main.shortcuts .basalt::after{
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, hsla(168, 73%, 58%, 0.15) 0%, transparent 70%);
    pointer-events: none;
    }
    main.shortcuts .basalt h1{
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin: 0 auto 16px;
    max-width: 720px;
    letter-spacing: -0.02em;
    line-height: 1.3;
    }
    main.shortcuts .forge{
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 28px;
    opacity: 0.85;
    line-height: 1.8;
    }
    main.shortcuts .delta{
    display: inline-flex;
    gap: 24px;
    font-size: 0.88rem;
    opacity: 0.65;
    flex-wrap: wrap;
    justify-content: center;
    }
    main.shortcuts .jade{
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
    }
    main.shortcuts .alcove{
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 48px auto 40px;
    background: var(--sc-surface);
    border: 1px solid var(--sc-border);
    border-radius: 0;
    overflow: hidden;
    width: fit-content;
    }
    main.shortcuts .umbra{
    padding: 12px 32px;
    font-family: inherit;
    font-size: 0.95rem;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--sc-text);
    transition: background 0.2s, color 0.2s;
    font-weight: 600;
    letter-spacing: 0.02em;
    }
    main.shortcuts .umbra.quill{
    background: var(--sc-text);
    color: #fff;
    }
    main.shortcuts .umbra:hover:not(.active){
    background: var(--sc-category-hover);
    }
    main.shortcuts .mirth{
    max-width: 480px;
    margin: 0 auto 48px;
    position: relative;
    }
    main.shortcuts .mirth svg{
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.4;
    }
    main.shortcuts .whisk{
    width: 100%;
    padding: 14px 16px 14px 48px;
    font-family: inherit;
    font-size: 0.95rem;
    border: 1px solid var(--sc-border);
    background: var(--sc-surface);
    color: var(--sc-text);
    outline: none;
    transition: border-color 0.2s;
    }
    main.shortcuts .whisk:focus{
    border-color: var(--sc-primary);
    }
    main.shortcuts .whisk::placeholder{
    color: hsl(168, 8%, 55%);
    }
    main.shortcuts .ripple{
    margin-bottom: 56px;
    }
    main.shortcuts .ripple h2{
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--sc-text);
    display: inline-block;
    }
    main.shortcuts .latch{
    font-size: 0.92rem;
    color: hsl(168, 8%, 42%);
    margin: 0 0 24px;
    }
    main.shortcuts .nova{
    width: 100%;
    border-collapse: collapse;
    background: var(--sc-surface);
    border: 1px solid var(--sc-border);
    }
    main.shortcuts .nova thead th{
    text-align: left;
    padding: 12px 16px;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: hsl(168, 8%, 45%);
    border-bottom: 2px solid var(--sc-border);
    font-weight: 600;
    }
    main.shortcuts .nova tbody tr{
    transition: background 0.15s;
    }
    main.shortcuts .nova tbody tr:hover{
    background: var(--sc-category-hover);
    }
    main.shortcuts .nova tbody td{
    padding: 12px 16px;
    border-bottom: 1px solid var(--sc-border);
    font-size: 0.93rem;
    vertical-align: middle;
    }
    main.shortcuts .nova tbody td:first-child{
    width: 45%;
    }
    main.shortcuts kbd{
    display: inline-block;
    padding: 3px 8px;
    font-family: "SF Mono", "Menlo", "Consolas", monospace;
    font-size: 0.82rem;
    background: var(--sc-kbd-bg);
    border: 1px solid var(--sc-kbd-border);
    border-bottom-width: 2px;
    color: var(--sc-text);
    line-height: 1.4;
    white-space: nowrap;
    }
    main.shortcuts .husk{
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
    }
    main.shortcuts .husk .karma{
    font-size: 0.78rem;
    color: hsl(168, 8%, 50%);
    margin: 0 2px;
    }
    main.shortcuts .yarn{
    margin: 16px 0 56px;
    position: relative;
    overflow: hidden;
    aspect-ratio: 21/9;
    max-height: 320px;
    }
    main.shortcuts .yarn img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    }
    main.shortcuts .gambit{
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, hsla(168, 20%, 10%, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: center;
    padding: 40px; color: #ffffff;}
    main.shortcuts .thorn{
    color: #fff;
    max-width: 400px;
    }
    main.shortcuts .thorn h3{
    font-size: 1.3rem;
    margin: 0 0 8px;
    font-weight: 700;
    }
    main.shortcuts .thorn p{
    font-size: 0.9rem;
    opacity: 0.85;
    margin: 0 0 16px;
    line-height: 1.6;
    }
    main.shortcuts .epoch{
    display: inline-block;
    padding: 12px 28px;
    background: var(--sc-primary);
    color: hsl(168, 10%, 9%);
    text-decoration: none;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: opacity 0.2s;
    }
    main.shortcuts .epoch:hover{
    opacity: 0.85;
    }
    main.shortcuts .sc-links-section{
    padding: 48px 0;
    border-top: 1px solid var(--sc-border);
    margin-top: 24px;
    }
    main.shortcuts .sc-links-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    }
    main.shortcuts .sc-link-card{
    padding: 24px;
    background: var(--sc-surface);
    border: 1px solid var(--sc-border);
    transition: border-color 0.2s;
    }
    main.shortcuts .sc-link-card:hover{
    border-color: var(--sc-primary);
    }
    main.shortcuts .sc-link-card h3{
    font-size: 1rem;
    margin: 0 0 8px;
    font-weight: 700;
    }
    main.shortcuts .sc-link-card p{
    font-size: 0.85rem;
    color: hsl(168, 8%, 42%);
    margin: 0 0 12px;
    line-height: 1.6;
    }
    main.shortcuts .sc-link-card a{
    font-size: 0.88rem;
    color: var(--sc-secondary);
    text-decoration: none;
    font-weight: 600;
    }
    main.shortcuts .sc-link-card a:hover{
    text-decoration: underline;
    }
    main.shortcuts .sc-footer{
    margin-top: 64px;
    padding: 32px 24px;
    background: hsl(168, 10%, 12%);
    color: hsl(168, 5%, 65%);
    text-align: center;
    font-size: 0.85rem;
    }
    main.shortcuts .sc-footer-inner{
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    }
    main.shortcuts .sc-footer-brand{
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.02em;
    }
    main.shortcuts .sc-footer-links{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 4px;
    }
    main.shortcuts .sc-footer-links a{
    color: hsl(168, 5%, 55%);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.2s;
    }
    main.shortcuts .sc-footer-links a:hover{
    color: var(--sc-primary);
    }
    main.shortcuts .inlet{ display: none !important; }
    @media (max-width: 640px) {main.shortcuts .basalt{ padding: 56px 16px 40px; }
    main.shortcuts .umbra{ padding: 10px 20px; font-size: 0.85rem; }
    main.shortcuts .nova thead th, main.shortcuts .nova tbody td{ padding: 10px 12px; font-size: 0.85rem; }
    main.shortcuts .gambit{ padding: 20px; }
    main.shortcuts .thorn h3{ font-size: 1.05rem; }}
    main.shortcuts .haze{
    background: var(--text-color, #161918);
    color: hsl(168, 5%, 72%);
    padding: 56px 24px 32px;
    font-family: "Georgia", "Times New Roman", serif;
    }
    main.shortcuts .opal{
    max-width: var(--max-width, 1200px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    }
    main.shortcuts .clover{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    }
    main.shortcuts .vigor{
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
    }
    main.shortcuts .pyre{
    font-size: 0.9rem;
    color: hsl(168, 5%, 55%);
    }
    main.shortcuts .ivory{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
    }
    main.shortcuts .jovial{
    color: hsl(168, 5%, 68%);
    text-decoration: none;
    font-size: 0.88rem;
    padding: 4px 0;
    border-bottom: 1px solid transparent;
    transition: var(--transition, all 0.25s ease);
    }
    main.shortcuts .jovial:hover{
    color: var(--primary-color, hsl(168, 73%, 38%));
    border-bottom-color: var(--primary-color, hsl(168, 73%, 38%));
    }
    main.shortcuts .spark{
    font-size: 0.8rem;
    color: hsl(168, 5%, 42%);
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    text-align: center;
    }
    @media (max-width: 600px) {main.shortcuts .haze{
    padding: 40px 16px 24px;
    }
    main.shortcuts .ivory{
    flex-direction: column;
    align-items: center;
    gap: 12px;
    }}
    main img.sbv2-ai-image {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    }
    main img.sbv2-ai-image.sbv2-ratio-16-9 { aspect-ratio: 16 / 9; }
    main img.sbv2-ai-image.sbv2-ratio-16-10 { aspect-ratio: 16 / 10; }
    main img.sbv2-ai-image.sbv2-ratio-4-3 { aspect-ratio: 4 / 3; }
    main img.sbv2-ai-image.sbv2-ratio-1-1 { aspect-ratio: 1 / 1; }
    main .sbv2-media-frame {
    overflow: hidden;
    }
    main .sbv2-media-frame.sbv2-ratio-16-9 { aspect-ratio: 16 / 9; }
    main .sbv2-media-frame.sbv2-ratio-16-10 { aspect-ratio: 16 / 10; }
    main .sbv2-media-frame.sbv2-ratio-4-3 { aspect-ratio: 4 / 3; }
    main .sbv2-media-frame.sbv2-ratio-1-1 { aspect-ratio: 1 / 1; }
    main .sbv2-media-frame > img.sbv2-ai-image,
    main .sbv2-media-frame > picture > img.sbv2-ai-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    }

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