:root {
  --primary-color: hsl(151, 79%, 40%);
  --secondary-color: hsl(198, 63%, 45%);
  --bg-color: hsl(151, 7%, 96%);
  --text-color: hsl(151, 10%, 8%);
  --text-muted: hsl(151, 6%, 42%);
  --border-color: rgba(0, 0, 0, 0.1);
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 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;
  --cta-gradient: linear-gradient(135deg, var(--primary-color), hsl(170, 70%, 36%));
  --chrome-primary: hsl(151, 79%, 42%);
  --chrome-secondary: hsl(198, 63%, 49%);
  --chrome-accent: hsl(30, 90%, 56%);
  --chrome-warm: hsl(12, 76%, 58%);
  --chrome-text: hsl(151, 10%, 8%);
  --chrome-bg: hsl(151, 7%, 96%);
  --chrome-bg-warm: hsl(30, 30%, 97%);
  --chrome-card-bg: #ffffff;
  --chrome-muted: hsl(151, 6%, 45%);
  --dl-primary: hsl(151, 79%, 42%);
  --dl-primary-dark: hsl(151, 79%, 32%);
  --dl-secondary: hsl(198, 63%, 49%);
  --dl-secondary-dark: hsl(198, 63%, 39%);
  --dl-accent: hsl(25, 90%, 55%);
  --dl-accent-dark: hsl(25, 90%, 42%);
  --dl-text: hsl(151, 10%, 8%);
  --dl-text-light: hsl(151, 5%, 40%);
  --dl-bg: hsl(151, 7%, 96%);
  --dl-bg-warm: hsl(30, 20%, 97%);
  --dl-card-bg: #ffffff;
  --dl-border: hsl(151, 10%, 88%);
  --dl-serif: "Playfair Display", Georgia, serif;
  --dl-sans: "Noto Sans SC", system-ui, sans-serif;
  --feat-primary: hsl(151, 79%, 42%);
  --feat-primary-dark: hsl(151, 79%, 32%);
  --feat-secondary: hsl(198, 63%, 49%);
  --feat-secondary-dark: hsl(198, 63%, 39%);
  --feat-text: hsl(151, 10%, 8%);
  --feat-text-light: hsl(151, 10%, 35%);
  --feat-bg: hsl(151, 7%, 96%);
  --feat-bg-warm: hsl(30, 40%, 97%);
  --feat-accent-orange: hsl(24, 85%, 58%);
  --feat-accent-red: hsl(8, 72%, 56%);
  --feat-accent-brown: hsl(28, 40%, 42%);
  --feat-card-bg: #ffffff;
  --feat-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --feat-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --page-primary: hsl(151, 79%, 42%);
  --page-secondary: hsl(198, 63%, 49%);
  --page-accent: hsl(24, 85%, 58%);
  --page-text: hsl(151, 10%, 8%);
  --page-bg: hsl(151, 7%, 96%);
  --page-card-bg: #ffffff;
  --page-border: hsl(151, 10%, 88%);
  --page-muted: hsl(151, 5%, 45%);
  --page-success: hsl(151, 70%, 38%);
  --page-warning: hsl(38, 90%, 50%);
  --page-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --page-sans: "Source Sans Pro", -apple-system, BlinkMacSystemFont, sans-serif;
  --guide-primary: hsl(151, 79%, 42%);
  --guide-primary-dark: hsl(151, 79%, 32%);
  --guide-secondary: hsl(198, 63%, 49%);
  --guide-secondary-dark: hsl(198, 63%, 39%);
  --guide-text: hsl(151, 10%, 8%);
  --guide-text-light: hsl(151, 10%, 35%);
  --guide-bg: hsl(151, 7%, 96%);
  --guide-bg-warm: hsl(30, 30%, 97%);
  --guide-accent-orange: hsl(24, 85%, 55%);
  --guide-accent-red: hsl(8, 72%, 56%);
  --guide-accent-brown: hsl(28, 40%, 38%);
  --guide-card-bg: #ffffff;
  --guide-border: hsl(151, 10%, 88%);
  --guide-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --guide-sans: "Noto Sans SC", -apple-system, BlinkMacSystemFont, sans-serif;
  --guide-step-size: 56px;
  --tips-primary: hsl(151, 79%, 42%);
  --tips-primary-dark: hsl(151, 79%, 32%);
  --tips-secondary: hsl(198, 63%, 49%);
  --tips-secondary-dark: hsl(198, 63%, 39%);
  --tips-accent: hsl(25, 90%, 55%);
  --tips-accent-dark: hsl(25, 90%, 42%);
  --tips-text: hsl(151, 10%, 8%);
  --tips-text-light: hsl(151, 10%, 35%);
  --tips-bg: hsl(151, 7%, 96%);
  --tips-bg-warm: hsl(30, 20%, 95%);
  --tips-card-bg: #ffffff;
  --tips-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --tips-sans: "Source Sans 3", -apple-system, BlinkMacSystemFont, sans-serif;
  --tips-border: hsl(151, 10%, 85%);
}

*,
    *::before,
    *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    }
    body {
    padding-top: var(--nav-height);
    font-family: "Georgia", "Noto Serif SC", "Source Han Serif SC", "Songti SC", serif;
    color: var(--text-color);
    background: var(--bg-color);
    }
    
    .whelk {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: var(--nav-bg);
    border-bottom: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    }
    .rimShade {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    }
    
    .axiom7 {
    flex-shrink: 0;
    }
    .sable {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    }
    .sable:hover {
    color: var(--primary-color);
    }
    .smelt {
    color: var(--primary-color);
    }
    .zephyr {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    }
    
    .frizz {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    }
    .fog_ray {
    position: relative;
    }
    .vortex {
    display: block;
    padding: 8px 14px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: var(--transition);
    white-space: nowrap;
    }
    .vortex:hover {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.04);
    }
    .vortex::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
    }
    .vortex:hover::after {
    transform: scaleX(1);
    }
    
    .cruxNode {
    flex-shrink: 0;
    }
    .glintFade {
    display: inline-block;
    padding: 10px 26px;
    font-family: inherit;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--btn-text);
    background: var(--cta-gradient);
    border: none;
    border-radius: var(--radius-sm);
    text-decoration: none;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
    }
    .glintFade:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
    filter: brightness(1.08);
    }
    .glintFade:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
    }
    
    .crumble {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    background: none;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    }
    .crumble:hover {
    border-color: var(--primary-color);
    }
    .quaff {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-color);
    border-radius: 1px;
    transition: var(--transition);
    }
    
    .junco {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease; color: #ffffff;}
    .pixel3d {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1002;
    width: 300px;
    max-width: 85vw;
    background: var(--bg-color);
    border-left: 2px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    flex-direction: column;
    }
    .dawnLit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 2px solid var(--border-color);
    }
    .brine04 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: -0.02em;
    }
    .kv9 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 26px;
    line-height: 1;
    color: var(--text-muted);
    background: none;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    }
    .kv9:hover {
    color: var(--text-color);
    border-color: var(--primary-color);
    }
    .ember_hue {
    list-style: none;
    padding: 12px 0;
    }
    .dapple {
    border-bottom: 1px solid var(--border-color);
    }
    .blotch {
    display: block;
    padding: 14px 24px;
    font-size: 15.5px;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    }
    .blotch:hover {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.03);
    padding-left: 30px;
    }
    .opal {
    padding: 20px 24px;
    }
    .tusk {
    display: block;
    width: 100%;
    padding: 14px 0;
    font-family: inherit;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--btn-text);
    background: var(--cta-gradient);
    border: none;
    border-radius: var(--radius-sm);
    text-decoration: none;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    transition: var(--transition);
    cursor: pointer;
    }
    .tusk:hover {
    filter: brightness(1.08);
    box-shadow: var(--shadow-md);
    }
    
    .nav--open .junco {
    display: block;
    opacity: 1;
    }
    .nav--open .pixel3d {
    display: flex;
    transform: translateX(0);
    }
    
    @media (max-width: 900px) {.frizz,
    .cruxNode {
    display: none;
    }
    .crumble {
    display: flex;
    }
    .junco,
    .pixel3d {
    display: block;
    }
    .pixel3d {
    display: flex;
    }
    .nav--open .junco {
    display: block;
    opacity: 1;
    }
    .nav--open .pixel3d {
    transform: translateX(0);
    }
    .junco {
    pointer-events: none;
    opacity: 0;
    }
    .nav--open .junco {
    pointer-events: auto;
    }
    .pixel3d {
    transform: translateX(100%);
    }}
    @media (min-width: 901px) {.junco,
    .pixel3d,
    .crumble {
    display: none !important;
    }}
    .vortex.active {color: #ffffff; background: rgba(0, 0, 0, 0.04);}
    .blotch.active {color: #ffffff; background: rgba(0, 0, 0, 0.03);}
    @import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Source+Sans+3:wght@400;600;700&display=swap");
    main.index *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    main.index{
    font-family: "Source Sans 3", "Segoe UI", sans-serif;
    color: var(--chrome-text);
    background: var(--chrome-bg);
    overflow-x: hidden;
    }
    main.index h1, main.index h2, main.index h3{
    font-family: "Playfair Display", Georgia, serif;
    }
    
    main.index .flax{
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, hsl(151, 30%, 12%) 0%, hsl(198, 40%, 14%) 50%, hsl(30, 30%, 16%) 100%);
    overflow: hidden; color: #ffffff;}
    main.index .flax::before{
    content: "";
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, hsla(151, 79%, 50%, 0.15) 0%, transparent 70%);
    pointer-events: none;
    }
    main.index .flax::after{
    content: "";
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, hsla(30, 90%, 56%, 0.1) 0%, transparent 70%);
    pointer-events: none;
    }
    main.index .quill{
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 40px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    }
    main.index .pyre{
    color: #fff;
    }
    main.index .wicker{
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--chrome-accent);
    margin-bottom: 24px;
    padding: 6px 16px;
    border: 1.5px solid var(--chrome-accent);
    }
    main.index .pyre h1{
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff;
    }
    main.index .pyre h1 span{
    display: block;
    background: linear-gradient(135deg, var(--chrome-primary), var(--chrome-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    }
    main.index .reef{
    font-size: 1.15rem;
    line-height: 1.7;
    color: hsla(0, 0%, 100%, 0.72);
    margin-bottom: 40px;
    max-width: 480px;
    }
    main.index .sprig02{
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    }
    main.index .cobalt_fin{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--chrome-primary), hsl(165, 70%, 38%));
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 24px hsla(151, 79%, 42%, 0.35);
    letter-spacing: 0.3px;
    }
    main.index .cobalt_fin:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 32px hsla(151, 79%, 42%, 0.45);
    }
    main.index .cobalt_fin svg{
    width: 20px;
    height: 20px;
    fill: currentColor;
    }
    main.index .shorn{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 32px;
    font-size: 1.05rem;
    font-weight: 600;
    color: hsla(0, 0%, 100%, 0.85);
    background: transparent;
    border: 1.5px solid hsla(0, 0%, 100%, 0.25);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    }
    main.index .shorn:hover{
    border-color: var(--chrome-primary);
    color: #fff;
    background: hsla(151, 79%, 42%, 0.08);
    }
    main.index .brackFog{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    }
    main.index .vale{
    position: relative;
    width: 100%;
    max-width: 520px;
    }
    main.index .vale img{
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    }
    main.index .pang{
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: var(--chrome-accent);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 20px;
    letter-spacing: 0.5px;
    }
    
    main.index .lurk{
    background: #fff;
    border-bottom: 1px solid hsl(151, 7%, 90%);
    }
    main.index .thrum{
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
    }
    main.index .jarPulse{
    padding: 8px 0;
    }
    main.index .orbSnap{
    font-family: "Playfair Display", serif;
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--chrome-primary);
    line-height: 1.2;
    }
    main.index .floe{
    font-size: 0.92rem;
    color: var(--chrome-muted);
    margin-top: 6px;
    }
    
    main.index .plinth{
    padding: 100px 40px;
    max-width: 1280px;
    margin: 0 auto;
    }
    main.index .lapseKit{
    text-align: center;
    margin-bottom: 64px;
    }
    main.index .lapseKit h2{
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--chrome-text);
    }
    main.index .lapseKit p{
    font-size: 1.1rem;
    color: var(--chrome-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
    }
    main.index .vex{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    }
    main.index .prismHue{
    background: var(--chrome-card-bg);
    padding: 40px 32px;
    border: 1px solid hsl(151, 7%, 90%);
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
    }
    main.index .prismHue::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--chrome-primary), var(--chrome-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
    }
    main.index .prismHue:hover::before{
    transform: scaleX(1);
    }
    main.index .prismHue:hover{
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
    }
    main.index .yawl{
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.6rem;
    }
    main.index .yawl.talc{ background: hsla(151, 79%, 42%, 0.1); color: var(--chrome-primary); }
    main.index .yawl.crispNod{ background: hsla(198, 63%, 49%, 0.1); color: var(--chrome-secondary); }
    main.index .yawl.murk{ background: hsla(30, 90%, 56%, 0.1); color: var(--chrome-accent); }
    main.index .yawl.clodNub{ background: hsla(12, 76%, 58%, 0.1); color: var(--chrome-warm); }
    main.index .yawl.grout_web{ background: hsla(270, 60%, 55%, 0.1); color: hsl(270, 60%, 55%); }
    main.index .yawl.churn3{ background: hsla(151, 50%, 30%, 0.1); color: #ffffff; }
    main.index .prismHue h3{
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--chrome-text);
    }
    main.index .prismHue p{
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--chrome-muted);
    }
    
    main.index .wren{
    background: linear-gradient(180deg, var(--chrome-bg-warm) 0%, #fff 100%);
    padding: 100px 40px;
    }
    main.index .bevel{
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    }
    main.index .gnash{
    position: relative;
    }
    main.index .gnash img{
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    }
    main.index .sleekOrb{
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, hsla(30, 90%, 56%, 0.2), transparent);
    z-index: -1;
    }
    main.index .notch h2{
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    }
    main.index .notch p{
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--chrome-muted);
    margin-bottom: 16px;
    }
    main.index .scrim{
    list-style: none;
    margin: 24px 0 32px;
    }
    main.index .scrim li{
    padding: 8px 0;
    font-size: 1rem;
    color: var(--chrome-text);
    display: flex;
    align-items: center;
    gap: 12px;
    }
    main.index .scrim li::before{
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--chrome-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    }
    main.index .xylem{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: var(--chrome-secondary);
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 16px hsla(198, 63%, 49%, 0.3);
    }
    main.index .xylem:hover{
    background: hsl(198, 63%, 42%);
    transform: translateY(-2px);
    }
    
    main.index .cuspFog{
    padding: 100px 40px;
    max-width: 1280px;
    margin: 0 auto;
    }
    main.index .dint{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 64px;
    }
    main.index .husk_dye{
    background: var(--chrome-card-bg);
    border: 1px solid hsl(151, 7%, 90%);
    padding: 40px 28px;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
    }
    main.index .husk_dye:hover{
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.07);
    }
    main.index .plume{
    font-size: 2.4rem;
    margin-bottom: 20px;
    display: block;
    }
    main.index .husk_dye h3{
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    }
    main.index .husk_dye p{
    font-size: 0.88rem;
    color: var(--chrome-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    }
    main.index .siltVane{
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--chrome-primary);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
    }
    main.index .siltVane:hover{
    border-color: var(--chrome-primary);
    }
    
    main.index .bloke8{
    position: relative;
    overflow: hidden;
    }
    main.index .vouch{
    position: relative;
    background: url("assets/img/index-guide-1.jpg") center/cover no-repeat;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    }
    main.index .vouch::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsla(151, 40%, 10%, 0.88), hsla(198, 40%, 12%, 0.85)); color: #ffffff;}
    main.index .dross{
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 40px;
    max-width: 680px;
    }
    main.index .dross h2{
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    }
    main.index .dross p{
    font-size: 1.1rem;
    color: hsla(0, 0%, 100%, 0.75);
    margin-bottom: 36px;
    line-height: 1.6;
    }
    main.index .ebb{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 48px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--chrome-text);
    background: linear-gradient(135deg, var(--chrome-accent), hsl(20, 85%, 55%));
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 28px hsla(30, 90%, 56%, 0.4);
    color: #fff;
    }
    main.index .ebb:hover{
    transform: translateY(-2px);
    box-shadow: 0 10px 36px hsla(30, 90%, 56%, 0.5);
    }
    main.index .jib_knot{
    margin-top: 16px;
    font-size: 0.82rem;
    color: hsla(0, 0%, 100%, 0.5);
    }
    
    main.index .hexDrift{
    background: hsl(151, 10%, 10%);
    color: hsla(0, 0%, 100%, 0.6);
    padding: 48px 40px;
    }
    main.index .fen_bolt{
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    }
    main.index .ratch{
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    }
    main.index .fathom12{
    display: flex;
    gap: 28px;
    list-style: none;
    }
    main.index .fathom12 a{
    color: hsla(0, 0%, 100%, 0.55);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
    }
    main.index .fathom12 a:hover{
    color: var(--chrome-primary);
    }
    main.index .pivot_elm{
    font-size: 0.82rem;
    color: hsla(0, 0%, 100%, 0.4);
    }
    
    @media (max-width: 1024px) {main.index .quill{
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    }
    main.index .reef{ margin-left: auto; margin-right: auto; }
    main.index .sprig02{ justify-content: center; }
    main.index .brackFog{ order: -1; }
    main.index .vale{ max-width: 420px; }
    main.index .vex{ grid-template-columns: repeat(2, 1fr); }
    main.index .bevel{ grid-template-columns: 1fr; gap: 40px; }
    main.index .gnash{ order: -1; }
    main.index .dint{ grid-template-columns: repeat(2, 1fr); }
    main.index .thrum{ grid-template-columns: repeat(2, 1fr); }}
    @media (max-width: 640px) {main.index .quill{ padding: 80px 20px 60px; }
    main.index .plinth, main.index .cuspFog{ padding: 64px 20px; }
    main.index .wren{ padding: 64px 20px; }
    main.index .vex{ grid-template-columns: 1fr; }
    main.index .dint{ grid-template-columns: 1fr; }
    main.index .thrum{ grid-template-columns: 1fr; padding: 32px 20px; }
    main.index .sprig02{ flex-direction: column; align-items: stretch; }
    main.index .cobalt_fin, main.index .shorn{ justify-content: center; }
    main.index .fen_bolt{ flex-direction: column; text-align: center; }
    main.index .fathom12{ justify-content: center; }}

    *,
    *::before,
    *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    }
    body {
    padding-top: var(--nav-height);
    font-family: "Georgia", "Noto Serif SC", "Source Han Serif SC", "Songti SC", serif;
    color: var(--text-color);
    background: var(--bg-color);
    }
    
    .whelk {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: var(--nav-bg);
    border-bottom: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    }
    .rimShade {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    }
    
    .axiom7 {
    flex-shrink: 0;
    }
    .sable {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    }
    .sable:hover {
    color: var(--primary-color);
    }
    .smelt {
    color: var(--primary-color);
    }
    .zephyr {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    }
    
    .frizz {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    }
    .fog_ray {
    position: relative;
    }
    .vortex {
    display: block;
    padding: 8px 14px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: var(--transition);
    white-space: nowrap;
    }
    .vortex:hover {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.04);
    }
    .vortex::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
    }
    .vortex:hover::after {
    transform: scaleX(1);
    }
    
    .cruxNode {
    flex-shrink: 0;
    }
    .glintFade {
    display: inline-block;
    padding: 10px 26px;
    font-family: inherit;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--btn-text);
    background: var(--cta-gradient);
    border: none;
    border-radius: var(--radius-sm);
    text-decoration: none;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
    }
    .glintFade:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
    filter: brightness(1.08);
    }
    .glintFade:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
    }
    
    .crumble {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    background: none;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    }
    .crumble:hover {
    border-color: var(--primary-color);
    }
    .quaff {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-color);
    border-radius: 1px;
    transition: var(--transition);
    }
    
    .junco {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease; color: #ffffff;}
    .pixel3d {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1002;
    width: 300px;
    max-width: 85vw;
    background: var(--bg-color);
    border-left: 2px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    flex-direction: column;
    }
    .dawnLit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 2px solid var(--border-color);
    }
    .brine04 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: -0.02em;
    }
    .kv9 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 26px;
    line-height: 1;
    color: var(--text-muted);
    background: none;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    }
    .kv9:hover {
    color: var(--text-color);
    border-color: var(--primary-color);
    }
    .ember_hue {
    list-style: none;
    padding: 12px 0;
    }
    .dapple {
    border-bottom: 1px solid var(--border-color);
    }
    .blotch {
    display: block;
    padding: 14px 24px;
    font-size: 15.5px;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    }
    .blotch:hover {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.03);
    padding-left: 30px;
    }
    .opal {
    padding: 20px 24px;
    }
    .tusk {
    display: block;
    width: 100%;
    padding: 14px 0;
    font-family: inherit;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--btn-text);
    background: var(--cta-gradient);
    border: none;
    border-radius: var(--radius-sm);
    text-decoration: none;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    transition: var(--transition);
    cursor: pointer;
    }
    .tusk:hover {
    filter: brightness(1.08);
    box-shadow: var(--shadow-md);
    }
    
    .nav--open .junco {
    display: block;
    opacity: 1;
    }
    .nav--open .pixel3d {
    display: flex;
    transform: translateX(0);
    }
    
    @media (max-width: 900px) {.frizz,
    .cruxNode {
    display: none;
    }
    .crumble {
    display: flex;
    }
    .junco,
    .pixel3d {
    display: block;
    }
    .pixel3d {
    display: flex;
    }
    .nav--open .junco {
    display: block;
    opacity: 1;
    }
    .nav--open .pixel3d {
    transform: translateX(0);
    }
    .junco {
    pointer-events: none;
    opacity: 0;
    }
    .nav--open .junco {
    pointer-events: auto;
    }
    .pixel3d {
    transform: translateX(100%);
    }}
    @media (min-width: 901px) {.junco,
    .pixel3d,
    .crumble {
    display: none !important;
    }}
    .vortex.active {color: #ffffff; background: rgba(0, 0, 0, 0.04);}
    .blotch.active {color: #ffffff; background: rgba(0, 0, 0, 0.03);}
    @import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800;900&family=Noto+Sans+SC:wght@400;500;600;700&display=swap");
    main.download *{ margin: 0; padding: 0; box-sizing: border-box; }
    main.download .basalt{
    background: linear-gradient(165deg, hsl(151, 30%, 12%) 0%, hsl(198, 35%, 18%) 50%, hsl(25, 40%, 22%) 100%);
    padding: 100px 24px 80px;
    text-align: center;
    position: relative;
    overflow: hidden; color: #ffffff;}
    main.download .basalt::before{
    content: "";
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 20%, hsla(151, 79%, 50%, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, hsla(25, 90%, 55%, 0.1) 0%, transparent 50%);
    pointer-events: none;
    }
    main.download .riddle{
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    }
    main.download .hasp{
    display: inline-block;
    background: hsla(151, 79%, 50%, 0.15);
    border: 1px solid hsla(151, 79%, 50%, 0.3);
    color: hsl(151, 79%, 65%);
    font-family: var(--dl-sans);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 18px;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    text-transform: uppercase;
    }
    main.download .basalt h1{
    font-family: var(--dl-serif);
    font-size: clamp(42px, 7vw, 76px);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -1px;
    }
    main.download .basalt h1 em{
    font-style: normal;
    color: var(--dl-accent);
    }
    main.download .helix{
    font-family: var(--dl-sans);
    font-size: 18px;
    color: hsla(0, 0%, 100%, 0.7);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 40px;
    }
    main.download .bask{
    font-family: var(--dl-sans);
    font-size: 13px;
    color: hsla(0, 0%, 100%, 0.45);
    margin-top: 20px;
    }
    main.download .nexus{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--dl-accent);
    color: #ffffff;
    font-family: var(--dl-sans);
    font-size: 17px;
    font-weight: 700;
    padding: 18px 48px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 4px 24px hsla(25, 90%, 45%, 0.35);
    letter-spacing: 0.3px;
    }
    main.download .nexus:hover{
    background: var(--dl-accent-dark);
    transform: translateY(-1px);
    }
    main.download .nexus svg{
    width: 20px;
    height: 20px;
    fill: currentColor;
    }
    main.download .jade{
    display: inline-block;
    color: hsla(0, 0%, 100%, 0.6);
    font-family: var(--dl-sans);
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-top: 16px;
    transition: color 0.2s;
    }
    main.download .jade:hover{
    color: #ffffff;
    }
    
    main.download .spore{
    background: var(--dl-bg);
    padding: 80px 24px;
    }
    main.download .orbit{
    max-width: 1100px;
    margin: 0 auto;
    }
    main.download .cinch{
    text-align: center;
    margin-bottom: 56px;
    }
    main.download .cinch h2{
    font-family: var(--dl-serif);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--dl-text);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    }
    main.download .cinch p{
    font-family: var(--dl-sans);
    font-size: 16px;
    color: var(--dl-text-light);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
    }
    main.download .mosaic{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    }
    main.download .vinca{
    background: var(--dl-card-bg);
    border: 1px solid var(--dl-border);
    padding: 36px 24px 32px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
    position: relative;
    }
    main.download .vinca:hover{
    border-color: var(--dl-primary);
    box-shadow: 0 8px 32px hsla(151, 40%, 30%, 0.08);
    }
    main.download .jolt{
    width: 52px;
    height: 52px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    }
    main.download .jolt svg{
    width: 44px;
    height: 44px;
    }
    main.download .vinca h3{
    font-family: var(--dl-serif);
    font-size: 20px;
    font-weight: 800;
    color: var(--dl-text);
    margin-bottom: 6px;
    }
    main.download .vinca .rusk{
    font-family: var(--dl-sans);
    font-size: 13px;
    color: var(--dl-text-light);
    margin-bottom: 8px;
    }
    main.download .vinca .mote{
    font-family: var(--dl-sans);
    font-size: 12px;
    color: var(--dl-text-light);
    margin-bottom: 20px;
    }
    main.download .karma{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--dl-primary);
    color: #ffffff;
    font-family: var(--dl-sans);
    font-size: 14px;
    font-weight: 600;
    padding: 11px 28px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    }
    main.download .karma:hover{
    background: var(--dl-primary-dark);
    }
    main.download .karma svg{
    width: 16px;
    height: 16px;
    fill: currentColor;
    }
    main.download .forge{
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 14px;
    flex-wrap: wrap;
    }
    main.download .forge a{
    font-family: var(--dl-sans);
    font-size: 12px;
    color: var(--dl-secondary);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
    }
    main.download .forge a:hover{
    color: var(--dl-secondary-dark);
    }
    
    main.download .pulse{
    background: var(--dl-bg-warm);
    padding: 64px 24px;
    }
    main.download .ivory{
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    }
    main.download .latch{
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid var(--dl-border);
    }
    main.download .glyph{
    text-align: center;
    margin-top: 20px;
    font-family: var(--dl-sans);
    font-size: 14px;
    color: var(--dl-text-light);
    }
    
    main.download .mythos{
    background: var(--dl-card-bg);
    padding: 80px 24px;
    }
    main.download .quiver{
    max-width: 900px;
    margin: 0 auto;
    }
    main.download .shard{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
    }
    main.download .husk{
    border: 1px solid var(--dl-border);
    padding: 28px;
    }
    main.download .husk h3{
    font-family: var(--dl-serif);
    font-size: 18px;
    font-weight: 800;
    color: var(--dl-text);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--dl-primary);
    }
    main.download .husk ul{
    list-style: none;
    padding: 0;
    }
    main.download .husk li{
    font-family: var(--dl-sans);
    font-size: 14px;
    color: var(--dl-text);
    padding: 7px 0;
    border-bottom: 1px solid hsl(151, 7%, 93%);
    line-height: 1.5;
    }
    main.download .husk li:last-child{
    border-bottom: none;
    }
    main.download .husk li span{
    color: var(--dl-text-light);
    font-size: 13px;
    }
    
    main.download .dl-security{
    background: hsl(151, 20%, 10%);
    padding: 72px 24px;
    color: #ffffff;
    }
    main.download .dl-security-inner{
    max-width: 900px;
    margin: 0 auto;
    }
    main.download .dl-security h2{
    font-family: var(--dl-serif);
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -0.5px;
    }
    main.download .dl-security-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    }
    main.download .dl-security-item{
    border: 1px solid hsla(151, 40%, 50%, 0.2);
    padding: 28px 24px;
    background: hsla(151, 30%, 15%, 0.5); color: #ffffff;}
    main.download .dl-security-item .dl-sec-icon{
    font-size: 28px;
    margin-bottom: 14px;
    display: block;
    }
    main.download .dl-security-item h3{
    font-family: var(--dl-serif);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: hsl(151, 60%, 70%);
    }
    main.download .dl-security-item p{
    font-family: var(--dl-sans);
    font-size: 14px;
    color: hsla(0, 0%, 100%, 0.65);
    line-height: 1.65;
    }
    
    main.download .dl-mosaic{
    background: var(--dl-bg);
    padding: 80px 24px;
    }
    main.download .dl-mosaic-inner{
    max-width: 1100px;
    margin: 0 auto;
    }
    main.download .dl-mosaic-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    }
    main.download .dl-mosaic-tile{
    background: var(--dl-card-bg);
    border: 1px solid var(--dl-border);
    padding: 28px 22px;
    transition: border-color 0.2s;
    }
    main.download .dl-mosaic-tile:hover{
    border-color: var(--dl-accent);
    }
    main.download .dl-mosaic-tile .dl-tile-num{
    font-family: var(--dl-serif);
    font-size: 36px;
    font-weight: 900;
    color: var(--dl-accent);
    margin-bottom: 10px;
    line-height: 1;
    }
    main.download .dl-mosaic-tile h3{
    font-family: var(--dl-sans);
    font-size: 15px;
    font-weight: 700;
    color: var(--dl-text);
    margin-bottom: 8px;
    }
    main.download .dl-mosaic-tile p{
    font-family: var(--dl-sans);
    font-size: 13px;
    color: var(--dl-text-light);
    line-height: 1.6;
    }
    
    main.download .dl-faq{
    background: var(--dl-card-bg);
    padding: 80px 24px;
    }
    main.download .dl-faq-inner{
    max-width: 720px;
    margin: 0 auto;
    }
    main.download .dl-faq-item{
    border-bottom: 1px solid var(--dl-border);
    padding: 24px 0;
    }
    main.download .dl-faq-item:first-of-type{
    border-top: 1px solid var(--dl-border);
    }
    main.download .dl-faq-item h3{
    font-family: var(--dl-sans);
    font-size: 16px;
    font-weight: 700;
    color: var(--dl-text);
    margin-bottom: 10px;
    cursor: default;
    }
    main.download .dl-faq-item p{
    font-family: var(--dl-sans);
    font-size: 14px;
    color: var(--dl-text-light);
    line-height: 1.7;
    }
    main.download .dl-faq-item a{
    color: var(--dl-secondary);
    text-decoration: underline;
    text-underline-offset: 2px;
    }
    main.download .dl-faq-item a:hover{
    color: var(--dl-secondary-dark);
    }
    
    main.download .dl-footer{
    background: hsl(151, 10%, 8%);
    padding: 48px 24px;
    text-align: center; color: #ffffff;}
    main.download .dl-footer-brand{
    font-family: var(--dl-serif);
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    }
    main.download .dl-footer-slogan{
    font-family: var(--dl-sans);
    font-size: 13px;
    color: hsla(0, 0%, 100%, 0.45);
    margin-bottom: 20px;
    }
    main.download .dl-footer-links{
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    }
    main.download .dl-footer-links a{
    font-family: var(--dl-sans);
    font-size: 13px;
    color: hsla(0, 0%, 100%, 0.55);
    text-decoration: none;
    transition: color 0.2s;
    }
    main.download .dl-footer-links a:hover{
    color: #ffffff;
    }
    main.download .dl-footer-copy{
    font-family: var(--dl-sans);
    font-size: 12px;
    color: hsla(0, 0%, 100%, 0.35);
    }
    
    @media (max-width: 900px) {main.download .mosaic{
    grid-template-columns: repeat(2, 1fr);
    }
    main.download .dl-security-grid{
    grid-template-columns: 1fr;
    }
    main.download .dl-mosaic-grid{
    grid-template-columns: repeat(2, 1fr);
    }
    main.download .shard{
    grid-template-columns: 1fr;
    }}
    @media (max-width: 600px) {main.download .basalt{ padding: 80px 20px 60px; }
    main.download .mosaic{ grid-template-columns: 1fr; }
    main.download .dl-mosaic-grid{ grid-template-columns: 1fr; }
    main.download .nexus{ padding: 16px 36px; font-size: 16px; }}
    main.download .glacier{
    background: var(--text-color, #161b18);
    color: hsl(151, 7%, 76%);
    padding: 64px 0 0 0;
    font-family: Georgia, "Times New Roman", serif;
    width: 100%;
    box-sizing: border-box;
    }
    main.download .crux{
    max-width: var(--max-width, 1200px);
    margin: 0 auto;
    padding: 0 32px;
    box-sizing: border-box;
    width: 100%;
    }
    main.download .rune{
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    padding-bottom: 48px;
    }
    main.download .quartz{
    flex: 1 1 220px;
    min-width: 200px;
    }
    main.download .loom_arc{
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.02em;
    font-family: Georgia, "Times New Roman", serif;
    display: block;
    margin-bottom: 12px;
    }
    main.download .prism{
    font-size: 15px;
    line-height: 1.6;
    color: hsl(151, 7%, 58%);
    margin: 0;
    max-width: 220px;
    }
    main.download .trellis{
    display: flex;
    flex: 2 1 480px;
    gap: 40px;
    flex-wrap: wrap;
    }
    main.download .nebula{
    flex: 1 1 140px;
    min-width: 130px;
    }
    main.download .awlTip{
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color, hsl(151, 79%, 40%));
    margin: 0 0 16px 0;
    font-family: Georgia, "Times New Roman", serif;
    }
    main.download .cobalt{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    }
    main.download .umbra{
    line-height: 1;
    }
    main.download .dreg_pod{
    font-size: 14px;
    color: hsl(151, 7%, 66%);
    text-decoration: none;
    transition: var(--transition, all 0.25s ease);
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.5;
    }
    main.download .dreg_pod:hover{
    color: #ffffff;
    }
    main.download .nix{
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 28px 32px;
    background: hsla(151, 79%, 40%, 0.08);
    border-left: 3px solid var(--primary-color, hsl(151, 79%, 40%));
    }
    main.download .swig{
    font-size: 15px;
    color: hsl(151, 7%, 76%);
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.5;
    }
    main.download .cipher{
    display: inline-block;
    padding: 12px 32px;
    background: var(--cta-gradient, linear-gradient(135deg, hsl(151, 79%, 40%), hsl(170, 70%, 36%)));
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    font-family: Georgia, "Times New Roman", serif;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: var(--transition, all 0.25s ease);
    box-shadow: var(--shadow-md, 0 4px 16px rgba(0, 0, 0, 0.1));
    }
    main.download .cipher:hover{
    box-shadow: 0 6px 24px hsla(151, 79%, 40%, 0.35);
    transform: translateY(-1px);
    }
    main.download .aurora{
    height: 1px;
    background: hsla(151, 7%, 76%, 0.12);
    width: 100%;
    }
    main.download .ember{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 12px;
    }
    main.download .quirk{
    font-size: 13px;
    color: hsl(151, 7%, 50%);
    margin: 0;
    flex: 1 1 auto;
    font-family: Georgia, "Times New Roman", serif;
    }
    main.download .kelp9{
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 1 auto;
    flex-wrap: wrap;
    }
    main.download .zenith{
    font-size: 13px;
    color: hsl(151, 7%, 58%);
    text-decoration: none;
    transition: var(--transition, all 0.25s ease);
    font-family: Georgia, "Times New Roman", serif;
    }
    main.download .zenith:hover{
    color: var(--primary-color, hsl(151, 79%, 40%));
    }
    main.download .flux{
    color: hsl(151, 7%, 36%);
    font-size: 13px;
    user-select: none;
    }
    @media (max-width: 768px) {main.download .glacier{
    padding: 40px 0 0 0;
    }
    main.download .crux{
    padding: 0 20px;
    }
    main.download .rune{
    flex-direction: column;
    gap: 32px;
    padding-bottom: 32px;
    }
    main.download .quartz{
    flex: 1 1 100%;
    }
    main.download .prism{
    max-width: 100%;
    }
    main.download .trellis{
    flex: 1 1 100%;
    gap: 28px;
    }
    main.download .nebula{
    flex: 1 1 100%;
    }
    main.download .nix{
    width: 100%;
    box-sizing: border-box;
    align-items: stretch;
    }
    main.download .cipher{
    text-align: center;
    }
    main.download .ember{
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 20px 0;
    }
    main.download .quirk{
    flex: 1 1 100%;
    }
    main.download .kelp9{
    flex: 1 1 100%;
    }}

    *,
    *::before,
    *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    }
    body {
    padding-top: var(--nav-height);
    font-family: "Georgia", "Noto Serif SC", "Source Han Serif SC", "Songti SC", serif;
    color: var(--text-color);
    background: var(--bg-color);
    }
    
    .whelk {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: var(--nav-bg);
    border-bottom: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    }
    .rimShade {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    }
    
    .axiom7 {
    flex-shrink: 0;
    }
    .sable {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    }
    .sable:hover {
    color: var(--primary-color);
    }
    .smelt {
    color: var(--primary-color);
    }
    .zephyr {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    }
    
    .frizz {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    }
    .fog_ray {
    position: relative;
    }
    .vortex {
    display: block;
    padding: 8px 14px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: var(--transition);
    white-space: nowrap;
    }
    .vortex:hover {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.04);
    }
    .vortex::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
    }
    .vortex:hover::after {
    transform: scaleX(1);
    }
    
    .cruxNode {
    flex-shrink: 0;
    }
    .glintFade {
    display: inline-block;
    padding: 10px 26px;
    font-family: inherit;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--btn-text);
    background: var(--cta-gradient);
    border: none;
    border-radius: var(--radius-sm);
    text-decoration: none;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
    }
    .glintFade:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
    filter: brightness(1.08);
    }
    .glintFade:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
    }
    
    .crumble {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    background: none;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    }
    .crumble:hover {
    border-color: var(--primary-color);
    }
    .quaff {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-color);
    border-radius: 1px;
    transition: var(--transition);
    }
    
    .junco {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease; color: #ffffff;}
    .pixel3d {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1002;
    width: 300px;
    max-width: 85vw;
    background: var(--bg-color);
    border-left: 2px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    flex-direction: column;
    }
    .dawnLit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 2px solid var(--border-color);
    }
    .brine04 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: -0.02em;
    }
    .kv9 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 26px;
    line-height: 1;
    color: var(--text-muted);
    background: none;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    }
    .kv9:hover {
    color: var(--text-color);
    border-color: var(--primary-color);
    }
    .ember_hue {
    list-style: none;
    padding: 12px 0;
    }
    .dapple {
    border-bottom: 1px solid var(--border-color);
    }
    .blotch {
    display: block;
    padding: 14px 24px;
    font-size: 15.5px;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    }
    .blotch:hover {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.03);
    padding-left: 30px;
    }
    .opal {
    padding: 20px 24px;
    }
    .tusk {
    display: block;
    width: 100%;
    padding: 14px 0;
    font-family: inherit;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--btn-text);
    background: var(--cta-gradient);
    border: none;
    border-radius: var(--radius-sm);
    text-decoration: none;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    transition: var(--transition);
    cursor: pointer;
    }
    .tusk:hover {
    filter: brightness(1.08);
    box-shadow: var(--shadow-md);
    }
    
    .nav--open .junco {
    display: block;
    opacity: 1;
    }
    .nav--open .pixel3d {
    display: flex;
    transform: translateX(0);
    }
    
    @media (max-width: 900px) {.frizz,
    .cruxNode {
    display: none;
    }
    .crumble {
    display: flex;
    }
    .junco,
    .pixel3d {
    display: block;
    }
    .pixel3d {
    display: flex;
    }
    .nav--open .junco {
    display: block;
    opacity: 1;
    }
    .nav--open .pixel3d {
    transform: translateX(0);
    }
    .junco {
    pointer-events: none;
    opacity: 0;
    }
    .nav--open .junco {
    pointer-events: auto;
    }
    .pixel3d {
    transform: translateX(100%);
    }}
    @media (min-width: 901px) {.junco,
    .pixel3d,
    .crumble {
    display: none !important;
    }}
    .vortex.active {color: #ffffff; background: rgba(0, 0, 0, 0.04);}
    .blotch.active {color: #ffffff; background: rgba(0, 0, 0, 0.03);}
    @import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800;900&family=Inter:wght@400;500;600;700&display=swap");
    main.features .kindle{
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, hsl(151, 30%, 12%) 0%, hsl(198, 35%, 18%) 50%, hsl(24, 30%, 20%) 100%);
    padding: 100px 24px 80px;
    text-align: center;
    color: #fff;
    }
    main.features .kindle::before{
    content: "";
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 20%, hsla(151, 79%, 50%, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, hsla(24, 85%, 58%, 0.12) 0%, transparent 50%);
    pointer-events: none;
    }
    main.features .blaze{
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    }
    main.features .kindle h1{
    font-family: var(--feat-serif);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 24px;
    letter-spacing: -0.02em;
    }
    main.features .kindle h1 .vivid{
    color: var(--feat-accent-orange);
    }
    main.features .phantom{
    font-family: var(--feat-sans);
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.7;
    color: hsla(0, 0%, 100%, 0.82);
    max-width: 640px;
    margin: 0 auto 36px;
    }
    main.features .lantern{
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    }
    main.features .drift{
    display: inline-block;
    font-family: var(--feat-sans);
    font-weight: 700;
    font-size: 1rem;
    padding: 15px 36px;
    background: linear-gradient(135deg, var(--feat-accent-orange), hsl(14, 80%, 52%));
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px hsla(24, 85%, 50%, 0.35);
    }
    main.features .drift:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 28px hsla(24, 85%, 50%, 0.45);
    }
    main.features .ember{
    display: inline-block;
    font-family: var(--feat-sans);
    font-weight: 600;
    font-size: 1rem;
    padding: 15px 36px;
    background: hsla(0, 0%, 100%, 0.12);
    border: 2px solid hsla(0, 0%, 100%, 0.35);
    color: #fff;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    }
    main.features .ember:hover{
    background: hsla(0, 0%, 100%, 0.2);
    border-color: hsla(0, 0%, 100%, 0.6);
    }
    main.features .haven{
    padding: 80px 24px;
    }
    main.features .abyss{
    max-width: 1100px;
    margin: 0 auto;
    }
    main.features .marsh{
    font-family: var(--feat-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--feat-text, #1a1a1a);
    margin: 0 0 16px;
    letter-spacing: -0.01em;
    }
    main.features .dusk{
    font-family: var(--feat-sans);
    font-size: 1.05rem;
    color: var(--feat-text-light);
    line-height: 1.7;
    margin: 0 0 48px;
    max-width: 600px;
    }
    main.features .dusk.mirage{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    }
    main.features .marsh.mirage{
    text-align: center;
    }
    
    main.features .warp{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid hsl(151, 10%, 86%);
    }
    main.features .vale{
    padding: 40px 32px;
    background: var(--feat-card-bg);
    border-right: 1px solid hsl(151, 10%, 86%);
    border-bottom: 1px solid hsl(151, 10%, 86%);
    transition: background 0.25s;
    position: relative;
    }
    main.features .vale:nth-child(3n){
    border-right: none;
    }
    main.features .vale:nth-child(n+4){
    border-bottom: none;
    }
    main.features .vale:hover{
    background: hsl(151, 15%, 97%);
    }
    main.features .ripple{
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, hsla(151, 79%, 42%, 0.12), hsla(198, 63%, 49%, 0.08));
    color: var(--feat-primary-dark);
    }
    main.features .vale h3{
    font-family: var(--feat-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--feat-text, #1a1a1a);
    margin: 0 0 12px;
    }
    main.features .vale p{
    font-family: var(--feat-sans);
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--feat-text-light);
    margin: 0;
    }
    
    main.features .cascade{
    background: linear-gradient(180deg, var(--feat-bg) 0%, hsl(30, 25%, 95%) 100%);
    }
    main.features .summit{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    margin-bottom: 2px;
    }
    main.features .summit.loom{
    direction: rtl;
    }
    main.features .summit.loom > *{
    direction: ltr;
    }
    main.features .xenon{
    position: relative;
    overflow: hidden;
    min-height: 360px;
    }
    main.features .xenon img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    }
    main.features .inlet{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px 48px;
    background: var(--feat-card-bg);
    }
    main.features .nimbus{
    font-family: var(--feat-sans);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--feat-accent-orange);
    margin-bottom: 14px;
    }
    main.features .inlet h2{
    font-family: var(--feat-serif);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--feat-text, #1a1a1a);
    margin: 0 0 16px;
    line-height: 1.2;
    }
    main.features .inlet p{
    font-family: var(--feat-sans);
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--feat-text-light);
    margin: 0 0 24px;
    }
    main.features .tide{
    color: var(--feat-primary-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
    transition: color 0.2s;
    }
    main.features .tide:hover{
    color: var(--feat-accent-orange);
    }
    
    main.features .glacier{
    background: linear-gradient(135deg, hsl(151, 30%, 14%), hsl(198, 30%, 20%));
    padding: 56px 24px; color: #ffffff;}
    main.features .bramble{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    }
    main.features .yield{
    color: #fff;
    }
    main.features .yonder{
    font-family: var(--feat-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--feat-accent-orange);
    line-height: 1;
    margin-bottom: 8px;
    }
    main.features .fable{
    font-family: var(--feat-sans);
    font-size: 0.88rem;
    color: hsla(0, 0%, 100%, 0.72);
    line-height: 1.5;
    }
    
    main.features .prism{
    background: var(--feat-card-bg);
    border: 1px solid hsl(151, 10%, 88%);
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 48px;
    }
    main.features .jubilee{
    font-family: var(--feat-sans);
    font-size: 0.92rem;
    color: var(--feat-text-light);
    }
    main.features .jubilee strong{
    color: var(--feat-text, #1a1a1a);
    font-weight: 700;
    }
    main.features .urchin{
    font-family: var(--feat-sans);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 16px;
    background: hsla(151, 79%, 42%, 0.1);
    color: var(--feat-primary-dark);
    letter-spacing: 0.03em;
    }
    
    main.features .quarry{
    background: var(--feat-bg-warm);
    }
    main.features .epoch{
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    }
    main.features .nomad{
    width: 100%;
    border-collapse: collapse;
    font-family: var(--feat-sans);
    font-size: 0.92rem;
    min-width: 600px;
    }
    main.features .nomad thead th{
    font-family: var(--feat-serif);
    font-weight: 700;
    font-size: 1rem;
    padding: 18px 24px;
    text-align: left;
    background: hsl(151, 30%, 14%);
    color: #fff;
    border-bottom: 3px solid var(--feat-accent-orange);
    }
    main.features .nomad thead th:first-child{
    width: 35%;
    }
    main.features .nomad tbody td{
    padding: 16px 24px;
    border-bottom: 1px solid hsl(151, 10%, 88%);
    color: var(--feat-text, #1a1a1a);
    background: var(--feat-card-bg);
    }
    main.features .nomad tbody tr:hover td{
    background: hsl(151, 12%, 96%);
    }
    main.features .zenith{
    color: var(--feat-primary);
    font-weight: 700;
    font-size: 1.1rem;
    }
    main.features .elm{
    color: hsl(0, 0%, 72%);
    font-size: 1.1rem;
    }
    
    main.features .feat-cta{
    background: linear-gradient(135deg, hsl(24, 50%, 18%) 0%, hsl(8, 40%, 22%) 50%, hsl(151, 25%, 16%) 100%);
    padding: 80px 24px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    }
    main.features .feat-cta::after{
    content: "";
    position: absolute;
    bottom: -40%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse, hsla(24, 85%, 58%, 0.1) 0%, transparent 60%);
    pointer-events: none;
    }
    main.features .feat-cta-inner{
    position: relative;
    max-width: 640px;
    margin: 0 auto;
    }
    main.features .feat-cta h2{
    font-family: var(--feat-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    margin: 0 0 16px;
    line-height: 1.15;
    }
    main.features .feat-cta p{
    font-family: var(--feat-sans);
    font-size: 1.05rem;
    color: hsla(0, 0%, 100%, 0.78);
    line-height: 1.7;
    margin: 0 0 32px;
    }
    main.features .btn-cta-large{
    display: inline-block;
    font-family: var(--feat-sans);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 18px 48px;
    background: linear-gradient(135deg, var(--feat-accent-orange), hsl(14, 80%, 50%));
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 30px hsla(24, 85%, 50%, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    }
    main.features .btn-cta-large:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 40px hsla(24, 85%, 50%, 0.5);
    }
    
    main.features .feat-footer{
    background: hsl(151, 12%, 10%);
    padding: 40px 24px;
    text-align: center; color: #ffffff;}
    main.features .feat-footer-inner{
    max-width: 800px;
    margin: 0 auto;
    }
    main.features .feat-footer-brand{
    font-family: var(--feat-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: hsla(0, 0%, 100%, 0.9);
    margin-bottom: 8px;
    }
    main.features .feat-footer-links{
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    }
    main.features .feat-footer-links a{
    font-family: var(--feat-sans);
    font-size: 0.85rem;
    color: hsla(0, 0%, 100%, 0.55);
    text-decoration: none;
    transition: color 0.2s;
    }
    main.features .feat-footer-links a:hover{
    color: var(--feat-accent-orange);
    }
    main.features .feat-footer-copy{
    font-family: var(--feat-sans);
    font-size: 0.8rem;
    color: hsla(0, 0%, 100%, 0.38);
    }
    
    @media (max-width: 900px) {main.features .warp{
    grid-template-columns: repeat(2, 1fr);
    }
    main.features .vale:nth-child(3n){
    border-right: 1px solid hsl(151, 10%, 86%);
    }
    main.features .vale:nth-child(2n){
    border-right: none;
    }
    main.features .vale{
    border-bottom: 1px solid hsl(151, 10%, 86%);
    }
    main.features .vale:nth-last-child(-n+2){
    border-bottom: none;
    }
    main.features .summit, main.features .summit.loom{
    grid-template-columns: 1fr;
    direction: ltr;
    }
    main.features .xenon{
    min-height: 240px;
    }
    main.features .bramble{
    grid-template-columns: repeat(2, 1fr);
    }}
    @media (max-width: 600px) {main.features .warp{
    grid-template-columns: 1fr;
    }
    main.features .vale{
    border-right: none !important;
    border-bottom: 1px solid hsl(151, 10%, 86%) !important;
    }
    main.features .vale:last-child{
    border-bottom: none !important;
    }
    main.features .inlet{
    padding: 36px 24px;
    }
    main.features .prism{
    flex-direction: column;
    text-align: center;
    padding: 24px;
    }
    main.features .bramble{
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    }
    main.features .kindle{
    padding: 72px 20px 60px;
    }}
    main.features .jewel{
    background: hsl(151, 10%, 10%);
    color: hsl(151, 7%, 80%);
    padding: 64px 24px 0 24px;
    font-family: Georgia, "Times New Roman", serif;
    }
    main.features .cobalt{
    max-width: var(--max-width, 1200px);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px 32px;
    }
    main.features .knot{
    flex: 1 1 220px;
    min-width: 180px;
    }
    main.features .plume{
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
    letter-spacing: 0.01em;
    }
    main.features .quartz{
    font-size: 0.95rem;
    color: hsl(151, 7%, 60%);
    margin: 0;
    line-height: 1.6;
    }
    main.features .zinc{
    flex: 0 1 150px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    }
    main.features .thorn{
    font-size: 0.82rem;
    font-weight: 700;
    color: hsl(151, 50%, 55%);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 4px 0;
    }
    main.features .xeno{
    font-size: 0.92rem;
    color: hsl(151, 7%, 72%);
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1.5;
    }
    main.features .xeno:hover{
    color: #fff;
    }
    main.features .grove{
    flex: 1 1 200px;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    }
    main.features .frost{
    font-size: 0.92rem;
    color: hsl(151, 7%, 65%);
    margin: 0;
    line-height: 1.55;
    }
    main.features .grain{
    display: inline-block;
    width: fit-content;
    padding: 12px 32px;
    background: var(--cta-gradient, linear-gradient(135deg, hsl(151, 79%, 40%), hsl(170, 70%, 36%)));
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: Georgia, "Times New Roman", serif;
    text-decoration: none;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 18px hsla(151, 79%, 40%, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 4px;
    }
    main.features .grain:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 24px hsla(151, 79%, 40%, 0.45);
    }
    main.features .nebula{
    max-width: var(--max-width, 1200px);
    margin: 48px auto 0 auto;
    height: 1px;
    background: hsla(151, 7%, 80%, 0.12);
    }
    main.features .whisper{
    max-width: var(--max-width, 1200px);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 28px 0;
    gap: 12px;
    }
    main.features .ignite{
    font-size: 0.85rem;
    color: hsl(151, 7%, 50%);
    margin: 0;
    flex: 1 1 auto;
    }
    main.features .alchemy{
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 0 1 auto;
    }
    main.features .crest{
    font-size: 0.84rem;
    color: hsl(151, 7%, 58%);
    text-decoration: none;
    transition: color 0.2s ease;
    }
    main.features .crest:hover{
    color: #fff;
    }
    main.features .hollow{
    font-size: 0.8rem;
    color: hsl(151, 7%, 35%);
    user-select: none;
    }
    @media (max-width: 768px) {main.features .jewel{
    padding: 40px 16px 0 16px;
    }
    main.features .cobalt{
    flex-direction: column;
    gap: 32px;
    }
    main.features .knot{
    flex: 1 1 100%;
    }
    main.features .zinc{
    flex: 1 1 100%;
    }
    main.features .grove{
    flex: 1 1 100%;
    }
    main.features .whisper{
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0 24px 0;
    }
    main.features .ignite{
    flex: 1 1 100%;
    }
    main.features .alchemy{
    flex: 1 1 100%;
    }
    main.features .nebula{
    margin-top: 32px;
    }}

    *,
    *::before,
    *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    }
    body {
    padding-top: var(--nav-height);
    font-family: "Georgia", "Noto Serif SC", "Source Han Serif SC", "Songti SC", serif;
    color: var(--text-color);
    background: var(--bg-color);
    }
    
    .whelk {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: var(--nav-bg);
    border-bottom: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    }
    .rimShade {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    }
    
    .axiom7 {
    flex-shrink: 0;
    }
    .sable {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    }
    .sable:hover {
    color: var(--primary-color);
    }
    .smelt {
    color: var(--primary-color);
    }
    .zephyr {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    }
    
    .frizz {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    }
    .fog_ray {
    position: relative;
    }
    .vortex {
    display: block;
    padding: 8px 14px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: var(--transition);
    white-space: nowrap;
    }
    .vortex:hover {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.04);
    }
    .vortex::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
    }
    .vortex:hover::after {
    transform: scaleX(1);
    }
    
    .cruxNode {
    flex-shrink: 0;
    }
    .glintFade {
    display: inline-block;
    padding: 10px 26px;
    font-family: inherit;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--btn-text);
    background: var(--cta-gradient);
    border: none;
    border-radius: var(--radius-sm);
    text-decoration: none;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
    }
    .glintFade:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
    filter: brightness(1.08);
    }
    .glintFade:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
    }
    
    .crumble {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    background: none;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    }
    .crumble:hover {
    border-color: var(--primary-color);
    }
    .quaff {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-color);
    border-radius: 1px;
    transition: var(--transition);
    }
    
    .junco {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease; color: #ffffff;}
    .pixel3d {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1002;
    width: 300px;
    max-width: 85vw;
    background: var(--bg-color);
    border-left: 2px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    flex-direction: column;
    }
    .dawnLit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 2px solid var(--border-color);
    }
    .brine04 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: -0.02em;
    }
    .kv9 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 26px;
    line-height: 1;
    color: var(--text-muted);
    background: none;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    }
    .kv9:hover {
    color: var(--text-color);
    border-color: var(--primary-color);
    }
    .ember_hue {
    list-style: none;
    padding: 12px 0;
    }
    .dapple {
    border-bottom: 1px solid var(--border-color);
    }
    .blotch {
    display: block;
    padding: 14px 24px;
    font-size: 15.5px;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    }
    .blotch:hover {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.03);
    padding-left: 30px;
    }
    .opal {
    padding: 20px 24px;
    }
    .tusk {
    display: block;
    width: 100%;
    padding: 14px 0;
    font-family: inherit;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--btn-text);
    background: var(--cta-gradient);
    border: none;
    border-radius: var(--radius-sm);
    text-decoration: none;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    transition: var(--transition);
    cursor: pointer;
    }
    .tusk:hover {
    filter: brightness(1.08);
    box-shadow: var(--shadow-md);
    }
    
    .nav--open .junco {
    display: block;
    opacity: 1;
    }
    .nav--open .pixel3d {
    display: flex;
    transform: translateX(0);
    }
    
    @media (max-width: 900px) {.frizz,
    .cruxNode {
    display: none;
    }
    .crumble {
    display: flex;
    }
    .junco,
    .pixel3d {
    display: block;
    }
    .pixel3d {
    display: flex;
    }
    .nav--open .junco {
    display: block;
    opacity: 1;
    }
    .nav--open .pixel3d {
    transform: translateX(0);
    }
    .junco {
    pointer-events: none;
    opacity: 0;
    }
    .nav--open .junco {
    pointer-events: auto;
    }
    .pixel3d {
    transform: translateX(100%);
    }}
    @media (min-width: 901px) {.junco,
    .pixel3d,
    .crumble {
    display: none !important;
    }}
    .vortex.active {color: #ffffff; background: rgba(0, 0, 0, 0.04);}
    .blotch.active {color: #ffffff; background: rgba(0, 0, 0, 0.03);}
    @import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Source+Sans+Pro:wght@400;600;700&display=swap");
    main.system-requirements .beacon{
    position: relative;
    overflow: hidden;
    padding: 80px 24px 60px;
    background: linear-gradient(135deg, hsl(151, 30%, 12%) 0%, hsl(198, 35%, 18%) 100%);
    color: #fff;
    }
    main.system-requirements .beacon::before{
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, hsla(151, 79%, 50%, 0.15) 0%, transparent 70%);
    pointer-events: none;
    }
    main.system-requirements .beacon::after{
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, hsla(198, 63%, 50%, 0.12) 0%, transparent 70%);
    pointer-events: none;
    }
    main.system-requirements .anvil{
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    }
    main.system-requirements .flint{
    display: inline-block;
    padding: 6px 16px;
    background: hsla(151, 79%, 50%, 0.18);
    border: 1px solid hsla(151, 79%, 50%, 0.35);
    color: hsl(151, 79%, 65%);
    font-family: var(--page-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 24px;
    }
    main.system-requirements .beacon h1{
    font-family: var(--page-serif);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 20px;
    color: #fff;
    }
    main.system-requirements .beacon h1 span{
    color: hsl(151, 79%, 59%);
    }
    main.system-requirements .sigil{
    font-family: var(--page-sans);
    font-size: 1.1rem;
    line-height: 1.7;
    color: hsla(0, 0%, 100%, 0.78);
    max-width: 700px;
    margin: 0;
    }
    main.system-requirements .marrow{
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px;
    }
    main.system-requirements .talon{
    font-family: var(--page-serif);
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 900;
    color: var(--page-text);
    margin: 0 0 12px;
    line-height: 1.25;
    }
    main.system-requirements .mosaic{
    font-family: var(--page-sans);
    font-size: 1rem;
    color: var(--page-muted);
    margin: 0 0 40px;
    line-height: 1.6;
    }
    main.system-requirements .flux{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    }
    main.system-requirements .spire{
    background: var(--page-card-bg);
    border: 1px solid var(--page-border);
    padding: 0;
    overflow: hidden;
    transition: box-shadow 0.25s ease;
    }
    main.system-requirements .spire:hover{
    box-shadow: 0 8px 30px hsla(151, 20%, 10%, 0.1);
    }
    main.system-requirements .torque{
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--page-border);
    background: hsl(151, 7%, 98%);
    }
    main.system-requirements .spark{
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    }
    main.system-requirements .spark svg{
    width: 32px;
    height: 32px;
    }
    main.system-requirements .parcel{
    font-family: var(--page-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--page-text);
    margin: 0;
    }
    main.system-requirements .radiant{
    font-family: var(--page-sans);
    font-size: 0.82rem;
    color: var(--page-muted);
    margin: 2px 0 0;
    }
    main.system-requirements .nectar{
    padding: 20px 24px 24px;
    }
    main.system-requirements .cipher{
    list-style: none;
    margin: 0;
    padding: 0;
    }
    main.system-requirements .cipher li{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid hsl(151, 7%, 93%);
    font-family: var(--page-sans);
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--page-text);
    }
    main.system-requirements .cipher li:last-child{
    border-bottom: none;
    }
    main.system-requirements .mantle{
    flex-shrink: 0;
    width: 80px;
    font-weight: 700;
    color: var(--page-muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding-top: 1px;
    }
    main.system-requirements .velvet{
    flex: 1;
    color: var(--page-text);
    }
    main.system-requirements .echo{
    display: inline-block;
    padding: 2px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--page-sans);
    letter-spacing: 0.03em;
    }
    main.system-requirements .axiom{
    background: hsla(151, 70%, 40%, 0.12);
    color: hsl(151, 70%, 30%);
    }
    main.system-requirements .sr-status-badge--limited{
    background: hsla(38, 90%, 50%, 0.12);
    color: hsl(38, 70%, 35%);
    }
    main.system-requirements .sr-comparison{
    background: hsl(151, 7%, 98%);
    border-top: 3px solid var(--page-primary);
    border-bottom: 3px solid var(--page-primary);
    }
    main.system-requirements .sr-comparison-inner{
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px;
    }
    main.system-requirements .sr-table-wrap{
    overflow-x: auto;
    margin-top: 32px;
    -webkit-overflow-scrolling: touch;
    }
    main.system-requirements .sr-table{
    width: 100%;
    border-collapse: collapse;
    font-family: var(--page-sans);
    font-size: 0.9rem;
    min-width: 600px;
    }
    main.system-requirements .sr-table thead th{
    background: hsl(151, 30%, 14%);
    color: #fff;
    padding: 14px 18px;
    text-align: left;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    }
    main.system-requirements .sr-table tbody td{
    padding: 13px 18px;
    border-bottom: 1px solid var(--page-border);
    color: var(--page-text);
    vertical-align: top;
    }
    main.system-requirements .sr-table tbody tr:nth-child(even){
    background: hsla(151, 10%, 92%, 0.4);
    }
    main.system-requirements .sr-table tbody tr:hover{
    background: hsla(151, 79%, 50%, 0.06);
    }
    main.system-requirements .sr-table .sr-check{
    color: var(--page-success);
    font-weight: 700;
    }
    main.system-requirements .sr-table .sr-cross{
    color: hsl(0, 60%, 50%);
    font-weight: 700;
    }
    main.system-requirements .sr-visual-section{
    position: relative;
    overflow: hidden;
    }
    main.system-requirements .sr-visual-img-wrap{
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    }
    main.system-requirements .sr-visual-img-wrap img{
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    filter: brightness(0.7);
    }
    main.system-requirements .sr-visual-overlay{
    position: absolute;
    inset: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px;
    background: linear-gradient(135deg, hsla(151, 30%, 10%, 0.65), hsla(198, 35%, 15%, 0.55)); color: #ffffff;}
    main.system-requirements .sr-visual-overlay h2{
    font-family: var(--page-serif);
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    font-weight: 900;
    color: #fff;
    margin: 0 0 16px;
    }
    main.system-requirements .sr-visual-overlay p{
    font-family: var(--page-sans);
    font-size: 1.05rem;
    color: hsla(0, 0%, 100%, 0.85);
    max-width: 550px;
    margin: 0 0 28px;
    line-height: 1.6;
    }
    main.system-requirements .sr-cta-btn{
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--page-primary), hsl(151, 70%, 36%));
    color: #fff;
    font-family: var(--page-sans);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px hsla(151, 70%, 30%, 0.3);
    }
    main.system-requirements .sr-cta-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 24px hsla(151, 70%, 30%, 0.4);
    }
    main.system-requirements .sr-cta-btn--secondary{
    background: linear-gradient(135deg, var(--page-secondary), hsl(198, 55%, 42%));
    box-shadow: 0 4px 16px hsla(198, 60%, 35%, 0.3);
    }
    main.system-requirements .sr-cta-btn--secondary:hover{
    box-shadow: 0 6px 24px hsla(198, 60%, 35%, 0.4);
    }
    main.system-requirements .sr-tips-section{
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px;
    }
    main.system-requirements .sr-tips-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 36px;
    }
    main.system-requirements .sr-tip-card{
    background: var(--page-card-bg);
    border: 1px solid var(--page-border);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    }
    main.system-requirements .sr-tip-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    }
    main.system-requirements .sr-tip-card:nth-child(1)::before{ background: var(--page-primary); }
    main.system-requirements .sr-tip-card:nth-child(2)::before{ background: var(--page-secondary); }
    main.system-requirements .sr-tip-card:nth-child(3)::before{ background: var(--page-accent); }
    main.system-requirements .sr-tip-num{
    font-family: var(--page-serif);
    font-size: 2rem;
    font-weight: 900;
    color: hsl(151, 7%, 88%);
    line-height: 1;
    margin-bottom: 12px;
    }
    main.system-requirements .sr-tip-card h3{
    font-family: var(--page-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--page-text);
    margin: 0 0 10px;
    }
    main.system-requirements .sr-tip-card p{
    font-family: var(--page-sans);
    font-size: 0.9rem;
    color: var(--page-muted);
    line-height: 1.6;
    margin: 0;
    }
    main.system-requirements .sr-faq-section{
    background: hsl(151, 7%, 98%);
    }
    main.system-requirements .sr-faq-inner{
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px;
    }
    main.system-requirements .sr-faq-item{
    border-bottom: 1px solid var(--page-border);
    padding: 20px 0;
    }
    main.system-requirements .sr-faq-item:first-of-type{
    border-top: 1px solid var(--page-border);
    }
    main.system-requirements .sr-faq-q{
    font-family: var(--page-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--page-text);
    margin: 0 0 10px;
    cursor: default;
    }
    main.system-requirements .sr-faq-a{
    font-family: var(--page-sans);
    font-size: 0.92rem;
    color: var(--page-muted);
    line-height: 1.7;
    margin: 0;
    }
    main.system-requirements .sr-faq-a a{
    color: var(--page-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    }
    main.system-requirements .sr-faq-a a:hover{
    color: hsl(151, 70%, 30%);
    }
    main.system-requirements .sr-update-note{
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 24px 40px;
    text-align: right;
    }
    main.system-requirements .sr-update-note p{
    font-family: var(--page-sans);
    font-size: 0.8rem;
    color: hsl(151, 5%, 60%);
    margin: 0;
    }
    main.system-requirements .sr-footer{
    background: hsl(151, 30%, 10%);
    color: hsla(0, 0%, 100%, 0.6);
    padding: 40px 24px;
    }
    main.system-requirements .sr-footer-inner{
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    }
    main.system-requirements .sr-footer-brand{
    font-family: var(--page-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    }
    main.system-requirements .sr-footer-brand span{
    color: hsl(151, 79%, 59%);
    }
    main.system-requirements .sr-footer-links{
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
    }
    main.system-requirements .sr-footer-links a{
    font-family: var(--page-sans);
    font-size: 0.85rem;
    color: hsla(0, 0%, 100%, 0.5);
    text-decoration: none;
    transition: color 0.2s;
    }
    main.system-requirements .sr-footer-links a:hover{
    color: hsl(151, 79%, 59%);
    }
    main.system-requirements .sr-footer-copy{
    width: 100%;
    text-align: center;
    font-family: var(--page-sans);
    font-size: 0.8rem;
    margin-top: 16px;
    padding-top: 20px;
    border-top: 1px solid hsla(0, 0%, 100%, 0.1);
    color: hsla(0, 0%, 100%, 0.4);
    }
    main.system-requirements .sr-footer-tagline{
    font-family: var(--page-sans);
    font-size: 0.78rem;
    color: hsla(0, 0%, 100%, 0.3);
    margin-top: 6px;
    }
    @media (max-width: 768px) {main.system-requirements .beacon{
    padding: 60px 20px 40px;
    }
    main.system-requirements .flux{
    grid-template-columns: 1fr;
    }
    main.system-requirements .sr-visual-img-wrap img{
    height: 260px;
    }
    main.system-requirements .sr-tips-grid{
    grid-template-columns: 1fr;
    }
    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-table{
    font-size: 0.82rem;
    }
    main.system-requirements .sr-table thead th, main.system-requirements .sr-table tbody td{
    padding: 10px 12px;
    }}
    main.system-requirements .fossil{
    background: hsl(151, 10%, 8%);
    color: hsl(151, 7%, 76%);
    padding: 56px 24px 0 24px;
    font-family: "Georgia", "Noto Serif SC", "Source Han Serif SC", serif;
    font-size: 14px;
    line-height: 1.7;
    }
    main.system-requirements .quiver{
    max-width: var(--max-width, 1200px);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px 32px;
    }
    main.system-requirements .harbor{
    flex: 1 1 260px;
    min-width: 220px;
    }
    main.system-requirements .shard{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    }
    main.system-requirements .forge{
    flex: 0 0 28px;
    display: block;
    }
    main.system-requirements .pulse{
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
    font-family: "Georgia", "Noto Serif SC", serif;
    }
    main.system-requirements .husk{
    color: hsl(151, 6%, 56%);
    font-size: 13.5px;
    margin: 0;
    max-width: 260px;
    }
    main.system-requirements .riddle{
    flex: 0 1 150px;
    min-width: 120px;
    }
    main.system-requirements .rune{
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 14px 0;
    font-family: "Georgia", "Noto Serif SC", serif;
    }
    main.system-requirements .tundra{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    }
    main.system-requirements .bloom{
    margin: 0;
    padding: 0;
    }
    main.system-requirements .helix{
    color: hsl(151, 6%, 60%);
    text-decoration: none;
    font-size: 13.5px;
    transition: color 0.2s ease;
    display: inline-block;
    border-bottom: 1px solid transparent;
    }
    main.system-requirements .helix:hover{
    color: var(--primary-color, hsl(151, 79%, 40%));
    border-bottom-color: var(--primary-color, hsl(151, 79%, 40%));
    }
    main.system-requirements .basalt{
    flex: 0 1 200px;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 2px;
    }
    main.system-requirements .vertex{
    color: hsl(151, 6%, 72%);
    font-size: 14px;
    margin: 0;
    font-style: italic;
    }
    main.system-requirements .vault{
    display: inline-block;
    padding: 11px 28px;
    background: var(--cta-gradient, linear-gradient(135deg, hsl(151, 79%, 40%), hsl(170, 70%, 36%)));
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    font-family: "Georgia", "Noto Serif SC", serif;
    text-decoration: none;
    letter-spacing: 0.03em;
    box-shadow: 0 3px 14px rgba(40, 200, 120, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    main.system-requirements .vault:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(40, 200, 120, 0.35);
    }
    main.system-requirements .orbit{
    max-width: var(--max-width, 1200px);
    margin: 44px auto 0 auto;
    height: 1px;
    background: hsl(151, 6%, 22%); color: #ffffff;}
    main.system-requirements .glyph{
    max-width: var(--max-width, 1200px);
    margin: 0 auto;
    padding: 20px 0 28px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 24px;
    }
    main.system-requirements .crux{
    margin: 0;
    font-size: 12.5px;
    color: hsl(151, 6%, 46%);
    flex: 1 1 auto;
    }
    main.system-requirements .onyx{
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 0 1 auto;
    }
    main.system-requirements .wisp{
    color: hsl(151, 6%, 54%);
    text-decoration: none;
    font-size: 12.5px;
    transition: color 0.2s ease;
    }
    main.system-requirements .wisp:hover{
    color: var(--primary-color, hsl(151, 79%, 40%));
    }
    main.system-requirements .wren{
    color: hsl(151, 6%, 32%);
    font-size: 12px;
    user-select: none;
    }
    @media (max-width: 768px) {main.system-requirements .fossil{
    padding: 40px 18px 0 18px;
    }
    main.system-requirements .quiver{
    gap: 32px 24px;
    }
    main.system-requirements .harbor{
    flex: 1 1 100%;
    }
    main.system-requirements .riddle{
    flex: 1 1 calc(50% - 12px);
    min-width: 130px;
    }
    main.system-requirements .basalt{
    flex: 1 1 100%;
    align-items: center;
    text-align: center;
    padding-top: 8px;
    }
    main.system-requirements .glyph{
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px 0 24px 0;
    }
    main.system-requirements .crux{
    flex: 1 1 100%;
    }}
    @media (max-width: 480px) {main.system-requirements .riddle{
    flex: 1 1 100%;
    }
    main.system-requirements .vault{
    width: 100%;
    text-align: center;
    padding: 13px 20px;
    }}

    *,
    *::before,
    *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    }
    body {
    padding-top: var(--nav-height);
    font-family: "Georgia", "Noto Serif SC", "Source Han Serif SC", "Songti SC", serif;
    color: var(--text-color);
    background: var(--bg-color);
    }
    
    .whelk {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: var(--nav-bg);
    border-bottom: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    }
    .rimShade {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    }
    
    .axiom7 {
    flex-shrink: 0;
    }
    .sable {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    }
    .sable:hover {
    color: var(--primary-color);
    }
    .smelt {
    color: var(--primary-color);
    }
    .zephyr {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    }
    
    .frizz {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    }
    .fog_ray {
    position: relative;
    }
    .vortex {
    display: block;
    padding: 8px 14px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: var(--transition);
    white-space: nowrap;
    }
    .vortex:hover {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.04);
    }
    .vortex::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
    }
    .vortex:hover::after {
    transform: scaleX(1);
    }
    
    .cruxNode {
    flex-shrink: 0;
    }
    .glintFade {
    display: inline-block;
    padding: 10px 26px;
    font-family: inherit;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--btn-text);
    background: var(--cta-gradient);
    border: none;
    border-radius: var(--radius-sm);
    text-decoration: none;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
    }
    .glintFade:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
    filter: brightness(1.08);
    }
    .glintFade:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
    }
    
    .crumble {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    background: none;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    }
    .crumble:hover {
    border-color: var(--primary-color);
    }
    .quaff {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-color);
    border-radius: 1px;
    transition: var(--transition);
    }
    
    .junco {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease; color: #ffffff;}
    .pixel3d {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1002;
    width: 300px;
    max-width: 85vw;
    background: var(--bg-color);
    border-left: 2px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    flex-direction: column;
    }
    .dawnLit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 2px solid var(--border-color);
    }
    .brine04 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: -0.02em;
    }
    .kv9 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 26px;
    line-height: 1;
    color: var(--text-muted);
    background: none;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    }
    .kv9:hover {
    color: var(--text-color);
    border-color: var(--primary-color);
    }
    .ember_hue {
    list-style: none;
    padding: 12px 0;
    }
    .dapple {
    border-bottom: 1px solid var(--border-color);
    }
    .blotch {
    display: block;
    padding: 14px 24px;
    font-size: 15.5px;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    }
    .blotch:hover {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.03);
    padding-left: 30px;
    }
    .opal {
    padding: 20px 24px;
    }
    .tusk {
    display: block;
    width: 100%;
    padding: 14px 0;
    font-family: inherit;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--btn-text);
    background: var(--cta-gradient);
    border: none;
    border-radius: var(--radius-sm);
    text-decoration: none;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    transition: var(--transition);
    cursor: pointer;
    }
    .tusk:hover {
    filter: brightness(1.08);
    box-shadow: var(--shadow-md);
    }
    
    .nav--open .junco {
    display: block;
    opacity: 1;
    }
    .nav--open .pixel3d {
    display: flex;
    transform: translateX(0);
    }
    
    @media (max-width: 900px) {.frizz,
    .cruxNode {
    display: none;
    }
    .crumble {
    display: flex;
    }
    .junco,
    .pixel3d {
    display: block;
    }
    .pixel3d {
    display: flex;
    }
    .nav--open .junco {
    display: block;
    opacity: 1;
    }
    .nav--open .pixel3d {
    transform: translateX(0);
    }
    .junco {
    pointer-events: none;
    opacity: 0;
    }
    .nav--open .junco {
    pointer-events: auto;
    }
    .pixel3d {
    transform: translateX(100%);
    }}
    @media (min-width: 901px) {.junco,
    .pixel3d,
    .crumble {
    display: none !important;
    }}
    .vortex.active {color: #ffffff; background: rgba(0, 0, 0, 0.04);}
    .blotch.active {color: #ffffff; background: rgba(0, 0, 0, 0.03);}
    @import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Noto+Sans+SC:wght@400;500;700&display=swap");
    main.guide *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    main.guide{
    font-family: var(--guide-sans);
    color: var(--guide-text, #1a1a1a);
    background-color: var(--guide-bg, #f4f5f4);
    line-height: 1.7;
    overflow-x: hidden;
    }
    
    main.guide .delta{
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, hsl(24, 60%, 94%) 0%, hsl(151, 20%, 92%) 50%, hsl(198, 30%, 92%) 100%);
    overflow: hidden;
    }
    main.guide .delta::before{
    content: "";
    position: absolute;
    top: -120px;
    right: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, hsla(151, 79%, 59%, 0.15) 0%, transparent 70%);
    pointer-events: none;
    }
    main.guide .delta::after{
    content: "";
    position: absolute;
    bottom: -60px;
    left: -40px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, hsla(24, 85%, 55%, 0.12) 0%, transparent 70%);
    pointer-events: none;
    }
    main.guide .bloom{
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 32px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    }
    main.guide .quartz h1{
    font-family: var(--guide-serif);
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1.2;
    color: var(--guide-text, #1a1a1a);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    }
    main.guide .quartz h1 span{
    color: var(--guide-accent-orange);
    }
    main.guide .fable{
    font-size: 1.125rem;
    color: var(--guide-text-light);
    margin-bottom: 32px;
    max-width: 480px;
    }
    main.guide .flux{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--guide-accent-orange), var(--guide-accent-red));
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px hsla(24, 85%, 55%, 0.35);
    }
    main.guide .flux:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 28px hsla(24, 85%, 55%, 0.45);
    }
    main.guide .flux svg{
    width: 20px;
    height: 20px;
    fill: currentColor;
    }
    main.guide .onyx{
    position: relative;
    }
    main.guide .onyx img{
    width: 100%;
    height: 380px;
    object-fit: cover;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    }
    main.guide .timber{
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--guide-primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 18px;
    box-shadow: 0 4px 12px hsla(151, 79%, 42%, 0.3);
    }
    
    main.guide .guide-quicknav{
    background: var(--guide-card-bg);
    border-bottom: 2px solid var(--guide-border);
    }
    main.guide .guide-quicknav-inner{
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    }
    main.guide .guide-quicknav-label{
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--guide-accent-brown);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-right: 8px;
    }
    main.guide .guide-quicknav a{
    display: inline-block;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--guide-text);
    text-decoration: none;
    border: 2px solid var(--guide-border);
    transition: all 0.2s;
    }
    main.guide .guide-quicknav a:hover{
    border-color: var(--guide-primary);
    color: var(--guide-primary-dark);
    background: hsla(151, 79%, 59%, 0.06);
    }
    
    main.guide .loom{
    max-width: 1200px;
    margin: 0 auto;
    padding: 72px 32px;
    }
    main.guide .nebula{
    background: var(--guide-card-bg);
    }
    main.guide .guide-section-warm{
    background: var(--guide-bg-warm);
    }
    main.guide .sigil{
    font-family: var(--guide-serif);
    font-size: 2rem;
    font-weight: 900;
    color: var(--guide-text);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    }
    main.guide .sigil::before{
    content: "";
    display: inline-block;
    width: 40px;
    height: 4px;
    background: var(--guide-accent-orange);
    margin-right: 14px;
    vertical-align: middle;
    }
    main.guide .jasper{
    font-size: 1.05rem;
    color: var(--guide-text-light);
    margin-bottom: 40px;
    max-width: 680px;
    }
    
    main.guide .drift{
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    }
    main.guide .drift::before{
    content: "";
    position: absolute;
    left: 27px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--guide-primary), var(--guide-secondary));
    }
    main.guide .lapis{
    display: grid;
    grid-template-columns: var(--guide-step-size) 1fr;
    gap: 28px;
    padding: 28px 0;
    position: relative;
    }
    main.guide .cobalt{
    width: var(--guide-step-size);
    height: var(--guide-step-size);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--guide-serif);
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    background: var(--guide-primary);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    box-shadow: 0 4px 12px hsla(151, 79%, 42%, 0.25);
    }
    main.guide .lapis:nth-child(even) .cobalt{
    background: var(--guide-secondary);
    box-shadow: 0 4px 12px hsla(198, 63%, 49%, 0.25);
    }
    main.guide .lapis:nth-child(3) .cobalt{
    background: var(--guide-accent-orange);
    box-shadow: 0 4px 12px hsla(24, 85%, 55%, 0.25);
    }
    main.guide .umbra h3{
    font-family: var(--guide-serif);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--guide-text);
    }
    main.guide .umbra p{
    color: var(--guide-text-light);
    font-size: 0.98rem;
    line-height: 1.8;
    }
    main.guide .umbra .coral{
    margin-top: 12px;
    padding: 12px 16px;
    background: hsla(24, 85%, 55%, 0.08);
    border-left: 3px solid var(--guide-accent-orange);
    font-size: 0.9rem;
    color: var(--guide-accent-brown);
    }
    
    main.guide .helix{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 8px;
    }
    main.guide .nimbus{
    background: var(--guide-card-bg);
    border: 2px solid var(--guide-border);
    padding: 36px 32px;
    transition: border-color 0.2s, box-shadow 0.2s;
    }
    main.guide .nimbus:hover{
    border-color: var(--guide-primary);
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    }
    main.guide .cipher{
    font-size: 2.2rem;
    margin-bottom: 12px;
    }
    main.guide .nimbus h3{
    font-family: var(--guide-serif);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--guide-text);
    }
    main.guide .nimbus ol{
    padding-left: 20px;
    color: var(--guide-text-light);
    font-size: 0.95rem;
    }
    main.guide .nimbus ol li{
    margin-bottom: 10px;
    line-height: 1.7;
    }
    main.guide .nimbus ol li strong{
    color: var(--guide-text);
    }
    
    main.guide .guide-features{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 8px;
    }
    main.guide .guide-feature-item{
    background: var(--guide-card-bg);
    border: 2px solid var(--guide-border);
    padding: 32px 24px;
    transition: transform 0.2s, box-shadow 0.2s;
    }
    main.guide .guide-feature-item:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.07);
    }
    main.guide .guide-feature-icon{
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
    background: hsla(151, 79%, 59%, 0.1);
    color: var(--guide-primary-dark);
    }
    main.guide .guide-feature-item h3{
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--guide-text);
    }
    main.guide .guide-feature-item p{
    font-size: 0.9rem;
    color: var(--guide-text-light);
    line-height: 1.7;
    }
    
    main.guide .guide-screenshot-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    margin-top: 8px;
    }
    main.guide .guide-screenshot-row img{
    width: 100%;
    height: 320px;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    }
    main.guide .guide-screenshot-text h3{
    font-family: var(--guide-serif);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--guide-text);
    }
    main.guide .guide-screenshot-text p{
    color: var(--guide-text-light);
    font-size: 0.98rem;
    margin-bottom: 12px;
    }
    main.guide .guide-screenshot-text ul{
    list-style: none;
    padding: 0;
    }
    main.guide .guide-screenshot-text ul li{
    padding: 6px 0;
    font-size: 0.95rem;
    color: var(--guide-text-light);
    position: relative;
    padding-left: 22px;
    }
    main.guide .guide-screenshot-text ul li::before{
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--guide-primary);
    font-weight: 700;
    }
    
    main.guide .guide-faq-list{
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
    }
    main.guide .guide-faq-item{
    background: var(--guide-card-bg);
    border: 2px solid var(--guide-border);
    padding: 24px 28px;
    }
    main.guide .guide-faq-item h3{
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--guide-text);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    }
    main.guide .guide-faq-item h3::before{
    content: "Q";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--guide-accent-orange);
    color: #fff;
    font-family: var(--guide-serif);
    font-size: 0.85rem;
    font-weight: 900;
    flex-shrink: 0;
    }
    main.guide .guide-faq-item p{
    font-size: 0.95rem;
    color: var(--guide-text-light);
    padding-left: 38px;
    line-height: 1.8;
    }
    
    main.guide .guide-cta-banner{
    background: linear-gradient(135deg, hsl(24, 60%, 92%), hsl(151, 30%, 90%), hsl(198, 30%, 92%));
    text-align: center;
    padding: 64px 32px;
    }
    main.guide .guide-cta-banner h2{
    font-family: var(--guide-serif);
    font-size: 2rem;
    font-weight: 900;
    color: var(--guide-text);
    margin-bottom: 14px;
    }
    main.guide .guide-cta-banner p{
    font-size: 1.05rem;
    color: var(--guide-text-light);
    margin-bottom: 28px;
    }
    main.guide .guide-cta-banner-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 44px;
    background: linear-gradient(135deg, var(--guide-primary), var(--guide-primary-dark));
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 24px hsla(151, 79%, 42%, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    }
    main.guide .guide-cta-banner-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 32px hsla(151, 79%, 42%, 0.4);
    }
    
    main.guide .forge{
    color: var(--guide-secondary-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
    transition: color 0.2s;
    }
    main.guide .forge:hover{
    color: var(--guide-primary-dark);
    }
    
    main.guide .guide-footer{
    background: var(--guide-text, #1a1a1a);
    color: hsl(0, 0%, 75%);
    padding: 40px 32px;
    }
    main.guide .guide-footer-inner{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    }
    main.guide .guide-footer-brand{
    font-family: var(--guide-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    }
    main.guide .guide-footer-links{
    display: flex;
    gap: 24px;
    }
    main.guide .guide-footer-links a{
    color: hsl(0, 0%, 65%);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    }
    main.guide .guide-footer-links a:hover{
    color: #ffffff;
    }
    main.guide .guide-footer-copy{
    width: 100%;
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid hsl(0, 0%, 22%);
    font-size: 0.85rem;
    }
    
    @media (max-width: 900px) {main.guide .bloom{
    grid-template-columns: 1fr;
    padding: 60px 24px 40px;
    }
    main.guide .quartz h1{
    font-size: 2rem;
    }
    main.guide .onyx{
    order: -1;
    }
    main.guide .onyx img{
    height: 260px;
    }
    main.guide .helix{
    grid-template-columns: 1fr;
    }
    main.guide .guide-features{
    grid-template-columns: 1fr;
    }
    main.guide .guide-screenshot-row{
    grid-template-columns: 1fr;
    }
    main.guide .guide-screenshot-row img{
    height: 240px;
    }
    main.guide .loom{
    padding: 48px 20px;
    }
    main.guide .sigil{
    font-size: 1.6rem;
    }}
    @media (max-width: 600px) {main.guide .quartz h1{
    font-size: 1.65rem;
    }
    main.guide .lapis{
    grid-template-columns: 44px 1fr;
    gap: 16px;
    }
    main.guide .cobalt{
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    }
    main.guide .drift::before{
    left: 21px;
    }
    main.guide .guide-quicknav-inner{
    padding: 16px 20px;
    }
    main.guide .guide-footer-inner{
    flex-direction: column;
    text-align: center;
    }
    main.guide .guide-footer-links{
    justify-content: center;
    }}
    main.guide .basalt{
    background: hsl(151, 10%, 10%);
    color: hsl(151, 5%, 78%);
    padding: 64px 24px 0 24px;
    font-family: "Georgia", "Noto Serif SC", "Source Han Serif SC", serif;
    font-size: 15px;
    line-height: 1.7;
    }
    main.guide .torque{
    display: flex;
    flex-wrap: wrap;
    max-width: var(--max-width, 1200px);
    margin: 0 auto;
    gap: 40px 32px;
    }
    main.guide .crux{
    flex: 1 1 260px;
    min-width: 220px;
    }
    main.guide .ember{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    }
    main.guide .garnet{
    color: var(--primary-color, hsl(151, 79%, 40%));
    flex: 0 0 28px;
    }
    main.guide .falcon{
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
    font-family: "Georgia", "Noto Serif SC", serif;
    }
    main.guide .mosaic{
    color: hsl(151, 5%, 58%);
    font-size: 14px;
    margin: 0;
    max-width: 260px;
    line-height: 1.8;
    }
    main.guide .zenith{
    flex: 0 1 150px;
    min-width: 120px;
    }
    main.guide .wander{
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: hsl(151, 20%, 88%);
    margin: 0 0 16px 0;
    font-family: "Georgia", "Noto Serif SC", serif;
    }
    main.guide .rune{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    }
    main.guide .glacier{
    margin: 0;
    padding: 0;
    }
    main.guide .alloy{
    color: hsl(151, 5%, 62%);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
    display: inline-block;
    border-bottom: 1px solid transparent;
    }
    main.guide .alloy:hover{
    color: var(--primary-color, hsl(151, 79%, 40%));
    border-bottom-color: var(--primary-color, hsl(151, 79%, 40%));
    }
    main.guide .ivory{
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
    min-width: 180px;
    }
    main.guide .phantom{
    margin: 0;
    font-size: 16px;
    color: hsl(151, 10%, 90%);
    font-weight: 700;
    font-family: "Georgia", "Noto Serif SC", serif;
    }
    main.guide .pulse{
    display: inline-block;
    padding: 13px 32px;
    background: var(--cta-gradient, linear-gradient(135deg, hsl(151, 79%, 40%), hsl(170, 70%, 36%)));
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    font-family: "Georgia", "Noto Serif SC", serif;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 18px rgba(40, 200, 120, 0.25);
    transition: box-shadow 0.22s ease, transform 0.18s ease;
    }
    main.guide .pulse:hover{
    box-shadow: 0 6px 28px rgba(40, 200, 120, 0.38);
    transform: translateY(-2px);
    }
    main.guide .vertex{
    max-width: var(--max-width, 1200px);
    margin: 48px auto 0 auto;
    border-top: 1px solid hsl(151, 6%, 22%);
    }
    main.guide .prism{
    max-width: var(--max-width, 1200px);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0 28px 0;
    gap: 12px 24px;
    }
    main.guide .kestrel{
    margin: 0;
    font-size: 13px;
    color: hsl(151, 4%, 48%);
    flex: 1 1 auto;
    }
    main.guide .bronze{
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 1 auto;
    }
    main.guide .axiom{
    color: hsl(151, 5%, 58%);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
    }
    main.guide .axiom:hover{
    color: var(--primary-color, hsl(151, 79%, 40%));
    }
    main.guide .echo{
    color: hsl(151, 4%, 36%);
    font-size: 13px;
    user-select: none;
    }
    @media (max-width: 768px) {main.guide .basalt{
    padding: 48px 18px 0 18px;
    }
    main.guide .torque{
    gap: 32px 24px;
    }
    main.guide .crux{
    flex: 1 1 100%;
    }
    main.guide .zenith{
    flex: 1 1 45%;
    }
    main.guide .ivory{
    flex: 1 1 100%;
    align-items: stretch;
    }
    main.guide .pulse{
    text-align: center;
    }
    main.guide .prism{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 18px 0 24px 0;
    }}

    *,
    *::before,
    *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    }
    body {
    padding-top: var(--nav-height);
    font-family: "Georgia", "Noto Serif SC", "Source Han Serif SC", "Songti SC", serif;
    color: var(--text-color);
    background: var(--bg-color);
    }
    
    .whelk {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: var(--nav-bg);
    border-bottom: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    }
    .rimShade {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    }
    
    .axiom7 {
    flex-shrink: 0;
    }
    .sable {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    }
    .sable:hover {
    color: var(--primary-color);
    }
    .smelt {
    color: var(--primary-color);
    }
    .zephyr {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    }
    
    .frizz {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    }
    .fog_ray {
    position: relative;
    }
    .vortex {
    display: block;
    padding: 8px 14px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: var(--transition);
    white-space: nowrap;
    }
    .vortex:hover {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.04);
    }
    .vortex::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
    }
    .vortex:hover::after {
    transform: scaleX(1);
    }
    
    .cruxNode {
    flex-shrink: 0;
    }
    .glintFade {
    display: inline-block;
    padding: 10px 26px;
    font-family: inherit;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--btn-text);
    background: var(--cta-gradient);
    border: none;
    border-radius: var(--radius-sm);
    text-decoration: none;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
    }
    .glintFade:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
    filter: brightness(1.08);
    }
    .glintFade:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
    }
    
    .crumble {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    background: none;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    }
    .crumble:hover {
    border-color: var(--primary-color);
    }
    .quaff {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-color);
    border-radius: 1px;
    transition: var(--transition);
    }
    
    .junco {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease; color: #ffffff;}
    .pixel3d {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1002;
    width: 300px;
    max-width: 85vw;
    background: var(--bg-color);
    border-left: 2px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    flex-direction: column;
    }
    .dawnLit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 2px solid var(--border-color);
    }
    .brine04 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: -0.02em;
    }
    .kv9 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 26px;
    line-height: 1;
    color: var(--text-muted);
    background: none;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    }
    .kv9:hover {
    color: var(--text-color);
    border-color: var(--primary-color);
    }
    .ember_hue {
    list-style: none;
    padding: 12px 0;
    }
    .dapple {
    border-bottom: 1px solid var(--border-color);
    }
    .blotch {
    display: block;
    padding: 14px 24px;
    font-size: 15.5px;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    }
    .blotch:hover {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.03);
    padding-left: 30px;
    }
    .opal {
    padding: 20px 24px;
    }
    .tusk {
    display: block;
    width: 100%;
    padding: 14px 0;
    font-family: inherit;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--btn-text);
    background: var(--cta-gradient);
    border: none;
    border-radius: var(--radius-sm);
    text-decoration: none;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    transition: var(--transition);
    cursor: pointer;
    }
    .tusk:hover {
    filter: brightness(1.08);
    box-shadow: var(--shadow-md);
    }
    
    .nav--open .junco {
    display: block;
    opacity: 1;
    }
    .nav--open .pixel3d {
    display: flex;
    transform: translateX(0);
    }
    
    @media (max-width: 900px) {.frizz,
    .cruxNode {
    display: none;
    }
    .crumble {
    display: flex;
    }
    .junco,
    .pixel3d {
    display: block;
    }
    .pixel3d {
    display: flex;
    }
    .nav--open .junco {
    display: block;
    opacity: 1;
    }
    .nav--open .pixel3d {
    transform: translateX(0);
    }
    .junco {
    pointer-events: none;
    opacity: 0;
    }
    .nav--open .junco {
    pointer-events: auto;
    }
    .pixel3d {
    transform: translateX(100%);
    }}
    @media (min-width: 901px) {.junco,
    .pixel3d,
    .crumble {
    display: none !important;
    }}
    .vortex.active {color: #ffffff; background: rgba(0, 0, 0, 0.04);}
    .blotch.active {color: #ffffff; background: rgba(0, 0, 0, 0.03);}
    @import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800;900&family=Source+Sans+3:wght@400;600;700&display=swap");
    main.tips .fossil{
    background: linear-gradient(135deg, hsl(25, 85%, 55%) 0%, hsl(15, 80%, 50%) 40%, hsl(151, 60%, 35%) 100%);
    padding: 80px 24px 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
    }
    main.tips .fossil::before{
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
    }
    main.tips .wisp{
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    }
    main.tips .fossil h1{
    font-family: var(--tips-serif);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 20px;
    letter-spacing: -0.5px;
    }
    main.tips .anvil{
    font-family: var(--tips-sans);
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.93;
    max-width: 680px;
    margin: 0;
    }
    main.tips .shard{
    display: inline-block;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 6px 16px;
    font-family: var(--tips-sans);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    }
    main.tips .spire{
    max-width: 1080px;
    margin: 0 auto;
    padding: 60px 24px;
    }
    main.tips .glacier{
    font-family: var(--tips-serif);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--tips-text);
    margin: 0 0 12px;
    letter-spacing: -0.3px;
    }
    main.tips .spark{
    font-family: var(--tips-sans);
    font-size: 1.05rem;
    color: var(--tips-text-light);
    margin: 0 0 40px;
    line-height: 1.6;
    }
    
    main.tips .grove{
    background: var(--tips-bg-warm);
    border-top: 3px solid var(--tips-accent);
    }
    main.tips .talon{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
    }
    main.tips .lantern{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--tips-card-bg);
    padding: 16px 20px;
    border-left: 3px solid var(--tips-primary);
    font-family: var(--tips-sans);
    transition: box-shadow 0.2s;
    }
    main.tips .lantern:hover{
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    }
    main.tips .tundra{
    font-size: 0.95rem;
    color: var(--tips-text);
    font-weight: 600;
    }
    main.tips .plume{
    display: flex;
    gap: 4px;
    flex-shrink: 0;
    margin-left: 12px;
    }
    main.tips .quiver{
    display: inline-block;
    background: hsl(151, 7%, 92%);
    border: 1px solid var(--tips-border);
    border-bottom-width: 2px;
    padding: 3px 10px;
    font-family: "SF Mono", "Consolas", monospace;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--tips-text);
    white-space: nowrap;
    }
    
    main.tips .phantom{
    background: var(--tips-card-bg);
    }
    main.tips .nectar{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    }
    main.tips .kindle{
    border: 1px solid var(--tips-border);
    padding: 28px 24px;
    position: relative;
    transition: border-color 0.2s;
    }
    main.tips .kindle:hover{
    border-color: var(--tips-secondary);
    }
    main.tips .wren{
    font-family: var(--tips-serif);
    font-size: 2.4rem;
    font-weight: 900;
    color: hsl(25, 85%, 55%);
    opacity: 0.3;
    position: absolute;
    top: 12px;
    right: 18px;
    line-height: 1;
    }
    main.tips .kindle h3{
    font-family: var(--tips-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--tips-text);
    margin: 0 0 10px;
    }
    main.tips .flint{
    display: block;
    background: hsl(198, 30%, 95%);
    border: 1px solid hsl(198, 30%, 85%);
    padding: 8px 14px;
    font-family: "SF Mono", "Consolas", monospace;
    font-size: 0.85rem;
    color: var(--tips-secondary-dark);
    margin: 12px 0;
    word-break: break-all;
    }
    main.tips .kindle p{
    font-family: var(--tips-sans);
    font-size: 0.92rem;
    color: var(--tips-text-light);
    line-height: 1.6;
    margin: 0;
    }
    
    main.tips .orbit{
    background: var(--tips-bg);
    }
    main.tips .dusk{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    }
    main.tips .crest{
    overflow: hidden;
    border: 1px solid var(--tips-border);
    }
    main.tips .crest img{
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s;
    }
    main.tips .crest:hover img{
    transform: scale(1.02);
    }
    main.tips .vault h3{
    font-family: var(--tips-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--tips-text);
    margin: 0 0 16px;
    }
    main.tips .beacon{
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step;
    }
    main.tips .beacon li{
    counter-increment: step;
    font-family: var(--tips-sans);
    font-size: 0.95rem;
    color: var(--tips-text);
    line-height: 1.7;
    padding: 10px 0 10px 44px;
    position: relative;
    border-bottom: 1px solid hsl(151, 7%, 92%);
    }
    main.tips .beacon li::before{
    content: counter(step);
    position: absolute;
    left: 0;
    top: 10px;
    width: 28px;
    height: 28px;
    background: var(--tips-primary);
    color: #fff;
    font-family: var(--tips-serif);
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    }
    main.tips .beacon li:last-child{
    border-bottom: none;
    }
    
    main.tips .velvet{
    background: linear-gradient(180deg, hsl(25, 20%, 96%) 0%, var(--tips-card-bg) 100%);
    border-top: 3px solid hsl(25, 90%, 55%);
    }
    main.tips .husk{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    }
    main.tips .ripple{
    background: var(--tips-card-bg);
    border: 1px solid var(--tips-border);
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    }
    main.tips .ripple:hover{
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    }
    main.tips .radiant{
    font-size: 2.2rem;
    margin-bottom: 16px;
    display: block;
    }
    main.tips .ripple h3{
    font-family: var(--tips-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--tips-text);
    margin: 0 0 10px;
    }
    main.tips .ripple p{
    font-family: var(--tips-sans);
    font-size: 0.9rem;
    color: var(--tips-text-light);
    line-height: 1.65;
    margin: 0;
    }
    
    main.tips .tips-devtools-zone{
    background: var(--tips-text);
    color: #fff;
    position: relative;
    overflow: hidden;
    }
    main.tips .tips-devtools-zone::after{
    position: absolute;
    bottom: -20px;
    right: 40px;
    font-family: "SF Mono", "Consolas", monospace;
    font-size: 8rem;
    font-weight: 900;
    opacity: 0.04;
    pointer-events: none;
    }
    main.tips .tips-devtools-zone .glacier{
    color: #fff;
    }
    main.tips .tips-devtools-zone .spark{
    color: rgba(255,255,255,0.65);
    }
    main.tips .tips-devtools-layout{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    }
    main.tips .tips-devtools-img-wrap{
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    }
    main.tips .tips-devtools-img-wrap img{
    width: 100%;
    height: auto;
    display: block;
    }
    main.tips .tips-devtools-list{
    list-style: none;
    padding: 0;
    margin: 0;
    }
    main.tips .tips-devtools-list li{
    font-family: var(--tips-sans);
    font-size: 0.95rem;
    line-height: 1.7;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    gap: 12px;
    }
    main.tips .tips-devtools-list li:last-child{
    border-bottom: none;
    }
    main.tips .tips-devtools-tag{
    display: inline-block;
    background: var(--tips-primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    height: fit-content;
    margin-top: 3px;
    }
    
    main.tips .tips-cta-zone{
    background: linear-gradient(135deg, var(--tips-primary-dark) 0%, hsl(198, 63%, 35%) 100%);
    padding: 60px 24px;
    text-align: center;
    color: #fff;
    }
    main.tips .tips-cta-zone h2{
    font-family: var(--tips-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin: 0 0 14px;
    }
    main.tips .tips-cta-zone p{
    font-family: var(--tips-sans);
    font-size: 1.05rem;
    opacity: 0.9;
    margin: 0 0 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    }
    main.tips .tips-cta-btn{
    display: inline-block;
    background: hsl(25, 90%, 55%);
    color: #fff;
    font-family: var(--tips-sans);
    font-size: 1.05rem;
    font-weight: 700;
    padding: 16px 44px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    }
    main.tips .tips-cta-btn:hover{
    background: var(--tips-accent-dark);
    transform: translateY(-1px);
    }
    main.tips .tips-cta-links{
    margin-top: 18px;
    font-family: var(--tips-sans);
    font-size: 0.9rem;
    }
    main.tips .tips-cta-links a{
    color: rgba(255,255,255,0.85);
    text-decoration: underline;
    text-underline-offset: 3px;
    margin: 0 10px;
    transition: color 0.2s;
    }
    main.tips .tips-cta-links a:hover{
    color: #fff;
    }
    
    main.tips .mirage{
    background: var(--tips-text);
    color: rgba(255,255,255,0.55);
    padding: 36px 24px;
    text-align: center;
    font-family: var(--tips-sans);
    font-size: 0.85rem;
    }
    main.tips .bramble{
    font-family: var(--tips-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
    }
    main.tips .mantle{
    margin-top: 12px;
    }
    main.tips .mantle a{
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    margin: 0 12px;
    font-size: 0.82rem;
    transition: color 0.2s;
    }
    main.tips .mantle a:hover{
    color: rgba(255,255,255,0.85);
    }
    
    @media (max-width: 768px) {main.tips .dusk, main.tips .tips-devtools-layout{
    grid-template-columns: 1fr;
    }
    main.tips .husk{
    grid-template-columns: 1fr;
    }
    main.tips .talon{
    grid-template-columns: 1fr;
    }
    main.tips .nectar{
    grid-template-columns: 1fr;
    }
    main.tips .fossil{
    padding: 60px 20px 48px;
    }
    main.tips .spire{
    padding: 44px 20px;
    }}
    @media (max-width: 480px) {main.tips .lantern{
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    }
    main.tips .plume{
    margin-left: 0;
    }}
    main.tips .mirage{
    background: hsl(151, 10%, 8%);
    padding: 48px 24px 32px;
    color: hsl(151, 7%, 96%);
    font-family: Georgia, "Noto Serif SC", "Source Han Serif SC", serif;
    border-top: 4px solid var(--primary-color, hsl(151, 79%, 40%));
    }
    main.tips .summit{
    max-width: var(--max-width, 1200px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    }
    main.tips .bramble{
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1 auto;
    }
    main.tips .quarry{
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
    font-family: Georgia, "Noto Serif SC", serif;
    }
    main.tips .harbor{
    font-size: 0.95rem;
    color: hsl(151, 10%, 62%);
    margin: 0;
    line-height: 1.6;
    }
    main.tips .mantle{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    flex: 1 1 auto;
    }
    main.tips .glyph{
    color: hsl(151, 30%, 72%);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition, all 0.25s ease);
    padding: 2px 0;
    border-bottom: 1px solid transparent;
    flex: 0 0 auto;
    }
    main.tips .glyph:hover{
    color: var(--primary-color, hsl(151, 79%, 40%));
    border-bottom-color: var(--primary-color, hsl(151, 79%, 40%));
    }
    main.tips .marrow{
    color: hsl(151, 6%, 30%);
    font-size: 0.85rem;
    flex: 0 0 auto;
    user-select: none;
    }
    main.tips .vivid{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid hsl(151, 6%, 18%);
    flex: 1 1 auto;
    }
    main.tips .parcel{
    margin: 0;
    font-size: 0.85rem;
    color: hsl(151, 6%, 48%);
    flex: 1 1 auto;
    }
    main.tips .riddle{
    display: inline-block;
    padding: 12px 28px;
    background: var(--cta-gradient, linear-gradient(135deg, hsl(151, 79%, 40%), hsl(170, 70%, 36%)));
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: Georgia, "Noto Serif SC", serif;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: var(--transition, all 0.25s ease);
    box-shadow: 0 4px 14px hsla(151, 79%, 40%, 0.35);
    flex: 0 0 auto;
    }
    main.tips .riddle:hover{
    box-shadow: 0 6px 22px hsla(151, 79%, 40%, 0.5);
    transform: translateY(-2px);
    }
    @media (max-width: 640px) {main.tips .mirage{
    padding: 36px 16px 24px;
    }
    main.tips .summit{
    gap: 24px;
    }
    main.tips .mantle{
    gap: 8px;
    }
    main.tips .vivid{
    flex-direction: column;
    align-items: flex-start;
    }
    main.tips .riddle{
    width: 100%;
    text-align: center;
    }}

    *,
    *::before,
    *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    }
    body {
    padding-top: var(--nav-height);
    font-family: "Georgia", "Noto Serif SC", "Source Han Serif SC", "Songti SC", serif;
    color: var(--text-color);
    background: var(--bg-color);
    }
    
    .whelk {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: var(--nav-bg);
    border-bottom: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    }
    .rimShade {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    }
    
    .axiom7 {
    flex-shrink: 0;
    }
    .sable {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    }
    .sable:hover {
    color: var(--primary-color);
    }
    .smelt {
    color: var(--primary-color);
    }
    .zephyr {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    }
    
    .frizz {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    }
    .fog_ray {
    position: relative;
    }
    .vortex {
    display: block;
    padding: 8px 14px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: var(--transition);
    white-space: nowrap;
    }
    .vortex:hover {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.04);
    }
    .vortex::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
    }
    .vortex:hover::after {
    transform: scaleX(1);
    }
    
    .cruxNode {
    flex-shrink: 0;
    }
    .glintFade {
    display: inline-block;
    padding: 10px 26px;
    font-family: inherit;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--btn-text);
    background: var(--cta-gradient);
    border: none;
    border-radius: var(--radius-sm);
    text-decoration: none;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
    }
    .glintFade:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
    filter: brightness(1.08);
    }
    .glintFade:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
    }
    
    .crumble {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    background: none;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    }
    .crumble:hover {
    border-color: var(--primary-color);
    }
    .quaff {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-color);
    border-radius: 1px;
    transition: var(--transition);
    }
    
    .junco {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease; color: #ffffff;}
    .pixel3d {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1002;
    width: 300px;
    max-width: 85vw;
    background: var(--bg-color);
    border-left: 2px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    flex-direction: column;
    }
    .dawnLit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 2px solid var(--border-color);
    }
    .brine04 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: -0.02em;
    }
    .kv9 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 26px;
    line-height: 1;
    color: var(--text-muted);
    background: none;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    }
    .kv9:hover {
    color: var(--text-color);
    border-color: var(--primary-color);
    }
    .ember_hue {
    list-style: none;
    padding: 12px 0;
    }
    .dapple {
    border-bottom: 1px solid var(--border-color);
    }
    .blotch {
    display: block;
    padding: 14px 24px;
    font-size: 15.5px;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    }
    .blotch:hover {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.03);
    padding-left: 30px;
    }
    .opal {
    padding: 20px 24px;
    }
    .tusk {
    display: block;
    width: 100%;
    padding: 14px 0;
    font-family: inherit;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--btn-text);
    background: var(--cta-gradient);
    border: none;
    border-radius: var(--radius-sm);
    text-decoration: none;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    transition: var(--transition);
    cursor: pointer;
    }
    .tusk:hover {
    filter: brightness(1.08);
    box-shadow: var(--shadow-md);
    }
    
    .nav--open .junco {
    display: block;
    opacity: 1;
    }
    .nav--open .pixel3d {
    display: flex;
    transform: translateX(0);
    }
    
    @media (max-width: 900px) {.frizz,
    .cruxNode {
    display: none;
    }
    .crumble {
    display: flex;
    }
    .junco,
    .pixel3d {
    display: block;
    }
    .pixel3d {
    display: flex;
    }
    .nav--open .junco {
    display: block;
    opacity: 1;
    }
    .nav--open .pixel3d {
    transform: translateX(0);
    }
    .junco {
    pointer-events: none;
    opacity: 0;
    }
    .nav--open .junco {
    pointer-events: auto;
    }
    .pixel3d {
    transform: translateX(100%);
    }}
    @media (min-width: 901px) {.junco,
    .pixel3d,
    .crumble {
    display: none !important;
    }}
    .vortex.active {color: #ffffff; background: rgba(0, 0, 0, 0.04);}
    .blotch.active {color: #ffffff; background: rgba(0, 0, 0, 0.03);}
    @import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800;900&family=Source+Sans+3:wght@400;600;700&display=swap");
    main.changelog .ivory{
    position: relative;
    overflow: hidden;
    padding: 5rem 2rem 4rem;
    background: hsl(151, 10%, 8%);
    color: hsl(151, 7%, 96%);
    }
    main.changelog .ivory::after{
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, hsla(151, 79%, 59%, 0.15) 0%, transparent 70%);
    pointer-events: none;
    }
    main.changelog .pulse{
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    }
    main.changelog .ivory h1{
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 1.25rem;
    letter-spacing: -0.02em;
    }
    main.changelog .ivory h1 .xeno{
    color: hsl(151, 79%, 59%);
    }
    main.changelog .cipher{
    font-family: "Source Sans 3", sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: hsla(151, 7%, 96%, 0.75);
    max-width: 680px;
    margin: 0;
    }
    main.changelog .basalt{
    max-width: 960px;
    margin: 0 auto;
    padding: 0 2rem;
    }
    main.changelog .umbra{
    padding: 4rem 0;
    background: var(--bg-color, hsl(151, 7%, 96%));
    }
    main.changelog .umbra h2{
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-color, hsl(151, 10%, 8%));
    margin: 0 0 2.5rem;
    letter-spacing: -0.01em;
    }
    main.changelog .mythos{
    background: #fff;
    border-left: 4px solid hsl(151, 79%, 59%);
    padding: 2rem 2rem 1.75rem;
    margin-bottom: 2rem;
    position: relative;
    transition: box-shadow 0.2s ease;
    }
    main.changelog .mythos:hover{
    box-shadow: 0 4px 20px hsla(151, 10%, 8%, 0.08);
    }
    main.changelog .forge{
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    }
    main.changelog .yield{
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-color, hsl(151, 10%, 8%));
    margin: 0;
    }
    main.changelog .quartz{
    font-family: "Source Sans 3", sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: hsla(151, 10%, 8%, 0.5);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    }
    main.changelog .alchemy{
    display: inline-block;
    font-family: "Source Sans 3", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.2em 0.7em;
    color: #fff;
    }
    main.changelog .flux{
    background: hsl(151, 79%, 42%);
    }
    main.changelog .delta{
    background: hsl(198, 63%, 45%);
    }
    main.changelog .helix{
    background: hsl(15, 75%, 55%);
    }
    main.changelog .karma{
    margin-bottom: 1rem;
    }
    main.changelog .karma:last-child{
    margin-bottom: 0;
    }
    main.changelog .latch{
    font-family: "Source Sans 3", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 0.5rem;
    }
    main.changelog .prism{ color: hsl(151, 65%, 38%); }
    main.changelog .cobalt{ color: hsl(198, 63%, 40%); }
    main.changelog .warp{ color: hsl(30, 70%, 45%); }
    main.changelog .thorn{ color: hsl(0, 60%, 48%); }
    main.changelog .vale{
    list-style: none;
    padding: 0;
    margin: 0;
    }
    main.changelog .vale li{
    font-family: "Source Sans 3", sans-serif;
    font-size: 0.95rem;
    line-height: 1.65;
    color: hsla(151, 10%, 8%, 0.78);
    padding: 0.25rem 0 0.25rem 1.25rem;
    position: relative;
    }
    main.changelog .vale li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 6px;
    height: 6px;
    background: hsl(151, 79%, 59%);
    }
    main.changelog .zenith{
    position: relative;
    overflow: hidden;
    margin: 0;
    background: hsl(151, 10%, 8%); color: #ffffff;}
    main.changelog .zenith img{
    display: block;
    width: 100%;
    height: 320px;
    object-fit: cover;
    opacity: 0.45;
    }
    main.changelog .nebula{
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    }
    main.changelog .nebula h2{
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.5rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.75rem;
    }
    main.changelog .nebula p{
    font-family: "Source Sans 3", sans-serif;
    font-size: 1.05rem;
    color: hsla(0, 0%, 100%, 0.8);
    margin: 0 0 1.5rem;
    max-width: 480px;
    }
    main.changelog .ember{
    display: inline-block;
    font-family: "Source Sans 3", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: hsl(151, 10%, 8%);
    background: hsl(151, 79%, 59%);
    padding: 0.85rem 2.2rem;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.2s ease, transform 0.15s ease;
    }
    main.changelog .ember:hover{
    background: hsl(151, 79%, 50%);
    transform: translateY(-1px);
    }
    main.changelog .mosaic{
    padding: 3.5rem 0;
    background: var(--bg-color, hsl(151, 7%, 96%));
    }
    main.changelog .mosaic h2{
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-color, hsl(151, 10%, 8%));
    margin: 0 0 1.5rem;
    }
    main.changelog .cascade{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    }
    main.changelog .nexus{
    background: #fff;
    padding: 1.5rem;
    border: 1px solid hsla(151, 10%, 8%, 0.08);
    transition: border-color 0.2s ease;
    }
    main.changelog .nexus:hover{
    border-color: hsl(151, 79%, 59%);
    }
    main.changelog .nexus h3{
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--text-color, hsl(151, 10%, 8%));
    }
    main.changelog .nexus p{
    font-family: "Source Sans 3", sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: hsla(151, 10%, 8%, 0.65);
    margin: 0 0 1rem;
    }
    main.changelog .nexus a{
    font-family: "Source Sans 3", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: hsl(151, 65%, 35%);
    text-decoration: none;
    letter-spacing: 0.02em;
    }
    main.changelog .nexus a:hover{
    text-decoration: underline;
    }
    main.changelog .jade{
    background: hsl(151, 10%, 8%);
    color: hsla(151, 7%, 96%, 0.55);
    padding: 2.5rem 2rem;
    text-align: center;
    font-family: "Source Sans 3", sans-serif;
    }
    main.changelog .rune{
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: hsl(151, 7%, 96%);
    margin: 0 0 0.35rem;
    }
    main.changelog .onyx{
    font-size: 0.85rem;
    margin: 0 0 1rem;
    color: hsla(151, 7%, 96%, 0.45);
    }
    main.changelog .crux{
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    }
    main.changelog .crux a{
    font-size: 0.85rem;
    color: hsla(151, 7%, 96%, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
    }
    main.changelog .crux a:hover{
    color: hsl(151, 79%, 59%);
    }
    main.changelog .aurora{
    font-size: 0.8rem;
    margin: 0;
    }
    @media (max-width: 640px) {main.changelog .ivory{
    padding: 3.5rem 1.25rem 3rem;
    }
    main.changelog .basalt{
    padding: 0 1.25rem;
    }
    main.changelog .mythos{
    padding: 1.5rem;
    }
    main.changelog .forge{
    flex-direction: column;
    gap: 0.4rem;
    }
    main.changelog .zenith img{
    height: 240px;
    }
    main.changelog .umbra{
    padding: 3rem 0;
    }}

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