:root {
      --bg: #030406;
      --bg-soft: #080a0d;
      --panel: rgba(12, 15, 19, .78);
      --panel-strong: rgba(14, 17, 22, .94);
      --ink: #e3e6e9;
      --muted: #979ea7;
      --steel: #c5ccd4;
      --steel-dark: #4d555e;
      --ember: #a52d21;
      --ember-hot: #d85a3f;
      --gold: #b9985c;
      --bronze: #b9985c;
      --paper: #eee4cf;
      --ember-bright: #df6948;
      --line: rgba(205, 213, 221, .16);
      --max: 1180px;
      --shadow: 0 30px 90px rgba(0, 0, 0, .58);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; background: var(--bg); }
    body {
      margin: 0;
      min-height: 100%;
      overflow-x: hidden;
      color: var(--ink);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at 50% 0%, rgba(98, 107, 118, .13), transparent 29%),
        radial-gradient(circle at 9% 30%, rgba(118, 30, 22, .11), transparent 30%),
        radial-gradient(circle at 92% 66%, rgba(118, 30, 22, .08), transparent 28%),
        linear-gradient(180deg, #050608 0%, #020304 48%, #06070a 100%);
    }

    body::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -5;
      opacity: .24;
      background:
        repeating-radial-gradient(circle at 30% 20%, transparent 0 4px, rgba(255,255,255,.014) 5px 6px),
        repeating-linear-gradient(113deg, transparent 0 36px, rgba(255,255,255,.012) 37px, transparent 38px 78px);
      pointer-events: none;
    }

    body::after {
      content: none;
    }

    @keyframes backgroundDrift {
      to { transform: translate3d(2%, -1.5%, 0) rotate(1.8deg) scale(1.035); }
    }

    ::selection { background: rgba(165, 45, 33, .72); color: white; }
    a { color: inherit; }
    button, a { -webkit-tap-highlight-color: transparent; }

    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 2px;
      width: 0;
      z-index: 1200;
      background: linear-gradient(90deg, var(--ember), var(--ember-hot), var(--steel));
      box-shadow: 0 0 18px rgba(216, 90, 63, .55);
    }

    .ambient, .fog-layer { display: none; }

    .ambient { z-index: -2; }
    .fog-layer { z-index: -3; opacity: .55; }

    .fog {
      position: absolute;
      width: 58vw;
      height: 22vw;
      min-height: 180px;
      border-radius: 50%;
      filter: blur(62px);
      background: rgba(143, 153, 166, .045);
      animation: fogMove var(--fog-duration) ease-in-out infinite alternate;
      transform: translate3d(var(--fog-x), var(--fog-y), 0);
    }

    @keyframes fogMove {
      to { transform: translate3d(calc(var(--fog-x) + 17vw), calc(var(--fog-y) - 3vw), 0) scale(1.15); }
    }

    .mote {
      position: absolute;
      left: var(--left);
      top: 108%;
      width: var(--size);
      height: var(--size);
      border-radius: 50%;
      opacity: 0;
      background: var(--mote-color);
      box-shadow: 0 0 10px currentColor;
      animation: floatUp var(--duration) linear infinite;
      animation-delay: var(--delay);
    }

    @keyframes floatUp {
      0% { transform: translate3d(0, 0, 0) scale(.6); opacity: 0; }
      10% { opacity: var(--alpha); }
      72% { opacity: calc(var(--alpha) * .55); }
      100% { transform: translate3d(var(--drift), -118vh, 0) scale(1.2); opacity: 0; }
    }

    .topbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 14px 22px;
      transition: background .2s ease, border-color .2s ease;
      border-bottom: 1px solid transparent;
    }

    .topbar.is-scrolled {
      background: rgba(3, 4, 6, .96);
      border-color: rgba(205, 213, 221, .1);
    }

    .nav {
      max-width: var(--max);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      text-decoration: none;
      white-space: nowrap;
    }

    .brand-mark {
      width: 30px;
      height: 30px;
      position: relative;
      display: grid;
      place-items: center;
      border: 1px solid rgba(208, 216, 224, .36);
      transform: rotate(45deg);
      box-shadow: inset 0 0 18px rgba(255,255,255,.03), 0 0 20px rgba(0,0,0,.5);
    }

    .brand-mark::before {
      content: "X";
      transform: rotate(-45deg);
      font: 700 13px/1 Georgia, serif;
      color: var(--steel);
    }

    .brand-text {
      font-family: Georgia, "Times New Roman", serif;
      font-size: 19px;
      letter-spacing: .19em;
      text-transform: uppercase;
    }

    .header-recipes {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      padding: 12px 16px;
      color: #fff1cc;
      border: 1px solid #c59752;
      background: linear-gradient(180deg, #71431f, #3b2417);
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: .08em;
      font-size: 12px;
      font-weight: 700;
      white-space: nowrap;
    }
    .header-recipes:hover,
    .header-recipes:focus-visible {
      color: white;
      border-color: #ffe0a0;
      background: #805024;
      outline: 2px solid #ffe0a0;
      outline-offset: 3px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .nav-links a {
      position: relative;
      padding: 11px 13px;
      color: rgba(220, 225, 231, .68);
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: .18em;
      font-size: 10px;
      font-weight: 700;
      transition: color .25s ease;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 13px;
      right: 13px;
      bottom: 6px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--ember-hot), transparent);
      transform: scaleX(0);
      transition: transform .25s ease;
    }

    .nav-links a:hover { color: white; }
    .nav-links a:hover::after { transform: scaleX(1); }

    .nav-links .nav-livemap {
      margin: 0 4px;
      padding: 10px 14px;
      color: var(--paper);
      border: 1px solid rgba(197, 151, 82, .48);
      background: linear-gradient(180deg, rgba(135, 78, 37, .25), rgba(67, 29, 19, .22));
      box-shadow: inset 0 0 18px rgba(197, 151, 82, .05);
    }
    .nav-links .nav-livemap::after { display: none; }
    .nav-links .nav-livemap:hover {
      color: #fff4cf;
      border-color: rgba(224, 184, 105, .82);
      background: linear-gradient(180deg, rgba(158, 91, 40, .4), rgba(83, 35, 21, .35));
    }

    .nav-cta {
      overflow: hidden;
      border: 1px solid rgba(185, 152, 92, .4);
      background: linear-gradient(135deg, rgba(132, 31, 23, .54), rgba(185, 152, 92, .08));
      box-shadow: 0 0 0 0 rgba(203, 72, 48, 0);
    }

    .nav-cta::before {
      content: "";
      position: absolute;
      top: -60%;
      bottom: -60%;
      left: -45%;
      width: 30%;
      transform: skewX(-22deg) translateX(-250%);
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
      pointer-events: none;
    }

    .cta-attention { animation: ctaBeacon 6.8s ease-in-out infinite; }
    .cta-attention::before { animation: ctaSweep 6.8s ease-in-out infinite; }

    @keyframes ctaBeacon {
      0%, 67%, 100% { box-shadow: 0 0 0 0 rgba(203, 72, 48, 0); transform: translateX(0); }
      71% { box-shadow: 0 0 0 4px rgba(203, 72, 48, .08), 0 0 24px rgba(173, 50, 36, .25); transform: translateX(-1px); }
      73% { transform: translateX(2px); }
      75% { transform: translateX(0); }
      82% { box-shadow: 0 0 0 7px rgba(203, 72, 48, 0), 0 0 30px rgba(173, 50, 36, 0); }
    }

    @keyframes ctaSweep {
      0%, 68% { transform: skewX(-22deg) translateX(-250%); }
      80%, 100% { transform: skewX(-22deg) translateX(620%); }
    }

    .menu-button {
      display: none;
      width: 42px;
      height: 42px;
      border: 1px solid var(--line);
      background: rgba(10, 12, 15, .8);
      color: white;
      cursor: pointer;
    }

    .menu-button span,
    .menu-button::before,
    .menu-button::after {
      content: "";
      display: block;
      width: 18px;
      height: 1px;
      margin: 5px auto;
      background: currentColor;
      transition: transform .25s ease, opacity .25s ease;
    }

    .menu-button.is-open span { opacity: 0; }
    .menu-button.is-open::before { transform: translateY(6px) rotate(45deg); }
    .menu-button.is-open::after { transform: translateY(-6px) rotate(-45deg); }

    main { overflow: hidden; }

    .hero {
      min-height: 100svh;
      display: grid;
      align-items: center;
      position: relative;
      padding: 120px 24px 70px;
      isolation: isolate;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background:
        linear-gradient(180deg, rgba(3,4,6,.16), rgba(3,4,6,.34) 64%, #030406 100%),
        radial-gradient(circle at 70% 45%, rgba(190, 200, 211, .075), transparent 25%);
    }

    .hero::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -1px;
      width: min(1200px, 92vw);
      height: 1px;
      transform: translateX(-50%);
      background: linear-gradient(90deg, transparent, rgba(210,218,226,.26), transparent);
    }

    .hero-inner {
      width: min(var(--max), 100%);
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
      gap: clamp(42px, 7vw, 92px);
      align-items: center;
    }

    .hero-copy { position: relative; z-index: 2; }

    .kicker {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: rgba(205, 213, 221, .56);
      text-transform: uppercase;
      letter-spacing: .34em;
      font-size: 10px;
      font-weight: 700;
    }

    .kicker::before {
      content: "";
      width: 42px;
      height: 1px;
      background: linear-gradient(90deg, var(--ember-hot), transparent);
    }

    h1, h2, h3, p { margin-top: 0; }

    .hero-title {
      margin: 24px 0 16px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(64px, 11vw, 142px);
      line-height: .77;
      letter-spacing: -.055em;
      text-transform: uppercase;
      color: transparent;
      background:
        linear-gradient(180deg, #f1f3f5 0%, #b7bec7 40%, #686f77 67%, #d7dce1 100%);
      -webkit-background-clip: text;
      background-clip: text;
      filter: drop-shadow(0 4px 0 rgba(255,255,255,.05)) drop-shadow(0 20px 24px rgba(0,0,0,.7));
      position: relative;
    }

    .hero-title span {
      display: block;
      margin-top: .24em;
      font-size: .18em;
      line-height: 1;
      letter-spacing: .5em;
      color: rgba(212, 218, 224, .64);
      -webkit-text-fill-color: rgba(212, 218, 224, .64);
      background: none;
      text-shadow: none;
    }

    .hero-title .hero-value-line {
      font-size: .14em;
      line-height: 1.15;
      letter-spacing: .14em;
    }

    .hero-lead {
      max-width: 690px;
      margin: 0 0 28px;
      color: rgba(213, 219, 225, .72);
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(18px, 2.2vw, 25px);
      line-height: 1.55;
    }

    .hero-lead strong { color: white; font-weight: 400; }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 13px;
      margin-top: 30px;
    }

    .button {
      position: relative;
      min-height: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 0 22px;
      overflow: hidden;
      border: 1px solid rgba(205, 213, 221, .22);
      background: rgba(18, 21, 26, .72);
      color: rgba(239, 242, 245, .92);
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: .19em;
      font-size: 10px;
      font-weight: 800;
      cursor: pointer;
      transition: transform .25s ease, border-color .25s ease, background .25s ease;
    }

    .button::before {
      content: "";
      position: absolute;
      inset: -2px;
      background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.12) 48%, transparent 60%);
      transform: translateX(-120%);
      transition: transform .65s ease;
    }

    .button:hover { transform: translateY(-2px); border-color: rgba(220, 226, 232, .46); }
    .button:hover::before { transform: translateX(120%); }

    .button-primary {
      border-color: rgba(174, 50, 36, .55);
      background: linear-gradient(135deg, rgba(132, 31, 23, .92), rgba(75, 18, 14, .9));
      box-shadow: 0 15px 45px rgba(115, 24, 17, .22);
    }

    .button-install-call {
      border-color: rgba(185, 152, 92, .48);
      background: linear-gradient(135deg, rgba(49, 42, 29, .88), rgba(18, 21, 26, .8));
      animation: ctaBeacon 6.8s ease-in-out infinite;
    }

    .button-install-call::before { animation: buttonSweep 6.8s ease-in-out infinite; }

    @keyframes buttonSweep {
      0%, 68% { transform: translateX(-120%); }
      80%, 100% { transform: translateX(120%); }
    }

    .button svg { width: 16px; height: 16px; fill: currentColor; }

    .hero-proof-grid {
      max-width: 690px;
      margin-top: 32px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-top: 1px solid rgba(205, 213, 221, .16);
      border-left: 1px solid rgba(205, 213, 221, .16);
    }

    .hero-proof-grid article {
      min-height: 74px;
      display: grid;
      grid-template-columns: auto 1fr;
      align-items: center;
      gap: 12px;
      padding: 13px 15px;
      border-right: 1px solid rgba(205, 213, 221, .16);
      border-bottom: 1px solid rgba(205, 213, 221, .16);
      background: rgba(13, 16, 20, .54);
    }

    .hero-proof-grid article > strong {
      color: var(--ember-bright);
      font-family: Georgia, "Times New Roman", serif;
      font-size: 28px;
      font-weight: 400;
      line-height: 1;
    }

    .hero-proof-grid span {
      color: rgba(190, 199, 207, .56);
      font-size: 9px;
      line-height: 1.45;
    }

    .hero-proof-grid b {
      display: block;
      margin-bottom: 3px;
      color: rgba(238, 241, 244, .88);
      text-transform: uppercase;
      letter-spacing: .12em;
      font-size: 9px;
    }

    .seal-wrap {
      position: relative;
      min-height: 500px;
      display: grid;
      place-items: center;
      perspective: 1600px;
    }

    .seal-glow {
      position: absolute;
      width: 88%;
      aspect-ratio: 1;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(176, 186, 198, .09), transparent 57%);
      filter: blur(10px);
      animation: sealGlow 5s ease-in-out infinite;
    }

    @keyframes sealGlow { 50% { transform: scale(1.08); opacity: .68; } }

    .launch-card {
      width: min(470px, 100%);
      aspect-ratio: 1.04 / 1;
      position: relative;
      filter: drop-shadow(0 40px 38px rgba(0,0,0,.56));
    }

    .launch-face { inset: 0; }

    .launch-date {
      margin: 20px 0 0;
      color: transparent;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(34px, 4vw, 49px);
      line-height: .95;
      letter-spacing: -.035em;
      background: linear-gradient(180deg, #f0f2f4, #aeb5bd 58%, #626a73);
      -webkit-background-clip: text;
      background-clip: text;
      filter: drop-shadow(0 12px 14px rgba(0,0,0,.72));
    }

    .launch-link {
      display: inline-block;
      margin-top: 27px;
      color: rgba(215, 221, 227, .68);
      text-transform: uppercase;
      text-decoration: none;
      letter-spacing: .18em;
      font-size: 8px;
      font-weight: 800;
      transition: color .25s ease;
    }

    .launch-link:hover { color: white; }

    .realm-face {
      position: absolute;
      inset: 0;
      overflow: hidden;
      display: grid;
      place-items: center;
      padding: clamp(26px, 4vw, 44px);
      border-radius: 20px;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      border: 1px solid rgba(212, 219, 226, .24);
      background:
        radial-gradient(circle at 50% 42%, rgba(255,255,255,.05), transparent 25%),
        linear-gradient(135deg, rgba(21,25,31,.98), rgba(7,9,12,.98) 52%, rgba(20,23,28,.98));
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.035), inset 0 0 85px rgba(0,0,0,.88), var(--shadow);
    }

    .realm-face::before {
      content: "";
      position: absolute;
      inset: 9px;
      border: 1px solid rgba(190, 198, 207, .13);
      border-radius: 13px;
      background:
        linear-gradient(90deg, transparent 49.85%, rgba(255,255,255,.035) 50%, transparent 50.15%),
        linear-gradient(transparent 49.85%, rgba(255,255,255,.025) 50%, transparent 50.15%);
    }

    .realm-face::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: .54;
      mix-blend-mode: overlay;
      background:
        repeating-linear-gradient(18deg, transparent 0 8px, rgba(255,255,255,.017) 9px, transparent 10px),
        radial-gradient(circle at 12% 22%, rgba(255,255,255,.06) 0 1px, transparent 2px),
        radial-gradient(circle at 84% 76%, rgba(255,255,255,.04) 0 1px, transparent 2px);
      background-size: auto, 18px 21px, 26px 31px;
    }

    .corner {
      position: absolute;
      width: 76px;
      height: 76px;
      opacity: .53;
      z-index: 2;
    }
    .corner::before, .corner::after { content: ""; position: absolute; }
    .corner::before { width: 70px; height: 1px; top: 8px; background: linear-gradient(90deg, transparent, rgba(205,212,219,.7), transparent); }
    .corner::after { width: 1px; height: 70px; left: 8px; background: linear-gradient(transparent, rgba(205,212,219,.7), transparent); }
    .corner.tl { top: 14px; left: 14px; }
    .corner.tr { top: 14px; right: 14px; transform: rotate(90deg); }
    .corner.br { right: 14px; bottom: 14px; transform: rotate(180deg); }
    .corner.bl { left: 14px; bottom: 14px; transform: rotate(270deg); }

    .realm-back-content {
      position: relative;
      z-index: 3;
      width: 100%;
      text-align: center;
    }

    .opening-label {
      color: rgba(211, 217, 223, .58);
      text-transform: uppercase;
      letter-spacing: .28em;
      font-size: 10px;
      font-weight: 800;
    }

    .countdown {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      margin: 29px 0 25px;
      padding: 23px 0;
      border-block: 1px solid rgba(190,197,205,.17);
    }

    .count-unit { position: relative; padding: 0 7px; }
    .count-unit + .count-unit::before {
      content: "";
      position: absolute;
      left: 0;
      top: 8%;
      bottom: 8%;
      width: 1px;
      background: linear-gradient(transparent, rgba(190,197,205,.22), transparent);
    }

    .count-value {
      display: block;
      color: #e4e7ea;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(30px, 4.6vw, 54px);
      line-height: .95;
      font-variant-numeric: tabular-nums;
      text-shadow: 0 3px 12px rgba(0,0,0,.88);
    }

    .count-label {
      display: block;
      margin-top: 9px;
      color: rgba(170,178,187,.55);
      text-transform: uppercase;
      letter-spacing: .2em;
      font-size: 7px;
      font-weight: 800;
    }

    .count-status {
      margin: 0;
      color: rgba(214,220,226,.7);
      text-transform: uppercase;
      letter-spacing: .25em;
      font-size: 9px;
      font-weight: 800;
    }

    .scroll-cue {
      position: absolute;
      left: 50%;
      bottom: 22px;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 11px;
      color: rgba(188, 196, 204, .35);
      text-transform: uppercase;
      letter-spacing: .28em;
      font-size: 8px;
      font-weight: 800;
    }

    .scroll-cue i {
      display: block;
      width: 1px;
      height: 36px;
      background: linear-gradient(var(--steel), transparent);
      animation: scrollCue 1.8s ease-in-out infinite;
      transform-origin: top;
    }

    @keyframes scrollCue { 50% { transform: scaleY(.45); opacity: .35; } }

    .section {
      position: relative;
      padding: clamp(88px, 11vw, 150px) 24px;
      content-visibility: auto;
      contain-intrinsic-size: auto 980px;
    }

    .section-inner { width: min(var(--max), 100%); margin: 0 auto; }

    .section-heading {
      max-width: 780px;
      margin-bottom: clamp(40px, 6vw, 72px);
    }

    .section-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      color: rgba(185, 152, 92, .83);
      text-transform: uppercase;
      letter-spacing: .31em;
      font-size: 9px;
      font-weight: 850;
    }

    .section-eyebrow::before { content: ""; width: 32px; height: 1px; background: currentColor; }

    .section-title {
      margin: 17px 0 18px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(40px, 6vw, 76px);
      line-height: .98;
      letter-spacing: -.035em;
      font-weight: 400;
    }

    .section-copy {
      max-width: 720px;
      margin: 0;
      color: rgba(199, 206, 213, .65);
      font-size: clamp(15px, 1.55vw, 18px);
      line-height: 1.75;
    }

    .vision {
      background:
        linear-gradient(180deg, rgba(3,4,6,.1), rgba(10,12,15,.45) 46%, rgba(3,4,6,.1)),
        radial-gradient(circle at 13% 55%, rgba(149, 38, 28, .07), transparent 28%);
    }


    .vision-grid {
      display: grid;
      grid-template-columns: minmax(500px, .98fr) minmax(360px, .82fr);
      gap: clamp(42px, 5vw, 72px);
      align-items: center;
    }

    .world-visual {
      position: relative;
      min-width: 0;
      display: flex;
      align-items: center;
      justify-content: flex-start;
    }

    .terrain-panel {
      position: relative;
      z-index: 2;
      width: min(100%, 610px);
      min-width: 0;
      padding: 20px;
      overflow: hidden;
      border: 1px solid var(--line-strong);
      background:
        radial-gradient(circle at 20% 10%, rgba(255,255,255,.04), transparent 35%),
        linear-gradient(180deg, rgba(18,21,26,.97), rgba(8,10,13,.97));
      box-shadow: var(--shadow-soft);
    }

    .terrain-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(rgba(255,255,255,.023) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.013) 1px, transparent 1px);
      background-size: 5px 5px;
      opacity: .18;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,.65), transparent 92%);
    }

    .terrain-head {
      position: relative;
      z-index: 1;
      margin-bottom: 14px;
    }

    .terrain-kicker {
      display: inline-block;
      margin-bottom: 8px;
      color: rgba(200,206,212,.46);
      font: 700 10px/1 Arial, sans-serif;
      letter-spacing: .3em;
      text-transform: uppercase;
    }

    .terrain-head h3 {
      margin: 0;
      color: var(--ink-strong);
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(25px, 2.5vw, 34px);
      font-weight: 400;
      line-height: 1.05;
      letter-spacing: -.025em;
    }

    .terrain-head p {
      max-width: 520px;
      margin: 9px 0 0;
      color: rgba(201,208,214,.65);
      font-size: 13px;
      line-height: 1.65;
    }

    .terrain-mini-legend {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: wrap;
      gap: 9px 15px;
      margin-bottom: 13px;
      color: rgba(194,202,210,.58);
      font: 700 9px/1.4 Arial, sans-serif;
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .terrain-mini-legend span {
      display: inline-flex;
      align-items: center;
      gap: 7px;
    }

    .swatch {
      width: 10px;
      height: 10px;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 3px;
      background: rgba(255,255,255,.06);
    }

    .swatch-selected {
      border-color: rgba(132,187,255,.82);
      background: rgba(48,95,157,.72);
    }

    .swatch-center {
      border-color: rgba(220,115,64,.55);
      background: rgba(113,54,27,.75);
    }

    .terrain-original-note {
      position: relative;
      z-index: 1;
      margin-bottom: 13px;
      padding: 10px 12px;
      border-left: 2px solid rgba(220,115,64,.68);
      background: linear-gradient(90deg, rgba(103,44,22,.2), transparent);
      color: rgba(204,211,218,.67);
      font-size: 12px;
      line-height: 1.55;
    }

    .terrain-original-note strong {
      color: #e4b79e;
      font-weight: 700;
    }

    .terrain-grid-wrap {
      position: relative;
      z-index: 1;
      width: 100%;
      min-width: 0;
      overflow: hidden;
    }

    .terrain-grid {
      width: 100%;
      min-width: 0;
      display: grid;
      grid-template-columns: repeat(9, minmax(0, 1fr));
      gap: 4px;
    }

    .terrain-cell {
      position: relative;
      width: 100%;
      min-width: 0;
      aspect-ratio: 1.22;
      display: grid;
      place-items: center;
      padding: 0;
      border: 1px solid rgba(210,218,226,.18);
      border-radius: 5px;
      background: linear-gradient(180deg, rgba(59,64,71,.9), rgba(39,43,49,.95));
      color: rgba(238,242,246,.92);
      font: 600 clamp(9px, .86vw, 13px)/1 Arial, sans-serif;
      cursor: pointer;
      user-select: none;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
      transition:
        transform .16s ease,
        border-color .16s ease,
        background .16s ease,
        box-shadow .16s ease;
    }

    .terrain-cell:hover {
      z-index: 2;
      transform: translateY(-1px) scale(1.035);
      border-color: rgba(232,238,244,.45);
      background: linear-gradient(180deg, rgba(77,83,92,.96), rgba(47,52,59,.98));
    }

    .terrain-cell.is-client-center {
      border-color: rgba(179,98,56,.38);
      background: linear-gradient(180deg, rgba(86,47,28,.94), rgba(58,32,20,.98));
    }

    .terrain-cell.is-server {
      border-color: rgba(105,157,220,.48);
      background: linear-gradient(180deg, rgba(31,58,91,.96), rgba(22,41,66,.99));
    }

    .terrain-cell.is-selected {
      z-index: 3;
      border-color: rgba(158,204,255,.96);
      background: linear-gradient(180deg, rgba(51,101,169,.98), rgba(30,63,108,.99));
      box-shadow:
        0 0 0 2px rgba(105,167,244,.28),
        0 0 16px rgba(65,126,202,.24);
    }

    .terrain-cell.server-edge-left {
      border-left-width: 2px;
    }

    .terrain-cell.server-edge-right {
      border-right-width: 2px;
    }

    .terrain-cell.server-edge-top {
      border-top-width: 2px;
    }

    .terrain-cell.server-edge-bottom {
      border-bottom-width: 2px;
    }

    .terrain-status {
      position: relative;
      z-index: 1;
      min-height: 52px;
      margin-top: 13px;
      padding: 11px 13px;
      border: 1px solid rgba(205,213,221,.12);
      background: rgba(255,255,255,.025);
      color: rgba(217,223,229,.78);
      font: 500 12px/1.55 Arial, sans-serif;
    }

    .terrain-status strong {
      color: var(--ink-strong);
      font-weight: 700;
    }

    .terrain-status .server-result {
      color: #9ecbff;
    }

    .vision-content {
      position: relative;
      min-width: 0;
    }



    .big-quote {
      margin: 0 0 34px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(31px, 4.2vw, 54px);
      line-height: 1.12;
      letter-spacing: -.025em;
    }

    .big-quote em { color: var(--ember-hot); font-style: normal; }

    .vision-text {
      color: rgba(200, 207, 214, .66);
      font-size: 16px;
      line-height: 1.8;
    }

    .stat-line {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      margin-top: 42px;
      border: 1px solid var(--line);
      background: var(--line);
    }

    .stat {
      min-height: 128px;
      padding: 24px;
      background: rgba(7,9,12,.88);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .stat strong {
      display: block;
      color: var(--steel);
      font-family: Georgia, serif;
      font-size: 35px;
      font-weight: 400;
      line-height: 1;
    }

    .stat span {
      display: block;
      margin-top: 10px;
      color: rgba(182,190,198,.48);
      text-transform: uppercase;
      letter-spacing: .18em;
      font-size: 8px;
      font-weight: 800;
    }

    .features {
      background: radial-gradient(circle at 88% 20%, rgba(170, 45, 33, .07), transparent 26%);
    }

    .feature-chapter + .feature-chapter {
      margin-top: clamp(64px, 8vw, 104px);
    }

    .feature-chapter-head {
      display: grid;
      grid-template-columns: minmax(230px, .72fr) 1.28fr;
      gap: clamp(28px, 6vw, 88px);
      align-items: end;
      margin-bottom: 30px;
    }

    .feature-chapter-index {
      display: block;
      margin-bottom: 14px;
      color: var(--bronze);
      font-family: Georgia, serif;
      font-size: 13px;
      letter-spacing: .2em;
    }

    .feature-chapter h3 {
      margin: 0;
      font-family: Georgia, serif;
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 400;
      line-height: 1.02;
    }

    .feature-chapter-lead {
      max-width: 660px;
      margin: 0;
      color: rgba(191, 199, 207, .62);
      font-size: 15px;
      line-height: 1.8;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line);
    }

    .feature-card {
      min-height: 285px;
      position: relative;
      overflow: hidden;
      padding: 34px;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: linear-gradient(145deg, rgba(13,16,20,.72), rgba(5,7,9,.88));
      transition: background .35s ease, transform .35s ease;
    }

    .feature-card::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0;
      background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(173,50,36,.16), transparent 45%);
      transition: opacity .35s ease;
    }

    .feature-card:hover { background: linear-gradient(145deg, rgba(20,23,28,.9), rgba(6,8,10,.95)); transform: translateY(-3px); }
    .feature-card:hover::before { opacity: 1; }

    .feature-number {
      position: relative;
      z-index: 2;
      color: rgba(185, 152, 92, .72);
      font-family: Georgia, serif;
      font-size: 13px;
      letter-spacing: .16em;
    }

    .feature-mark {
      position: relative;
      z-index: 2;
      width: 52px;
      height: 1px;
      margin: 40px 0 30px;
      background: linear-gradient(90deg, var(--ember), rgba(173,50,36,0));
    }

    .feature-card-wide { grid-column: span 2; }

    .feature-card-accent {
      background:
        radial-gradient(circle at 82% 18%, rgba(181, 34, 26, .14), transparent 34%),
        linear-gradient(145deg, rgba(18,21,26,.88), rgba(5,7,9,.96));
    }

    .feature-card h3 {
      position: relative;
      z-index: 2;
      margin-bottom: 14px;
      font-family: Georgia, serif;
      font-size: 25px;
      font-weight: 400;
    }

    .feature-card p {
      position: relative;
      z-index: 2;
      margin: 0;
      color: rgba(191, 199, 207, .59);
      font-size: 14px;
      line-height: 1.75;
    }

    .development-note {
      margin-top: 26px;
      padding: 17px 20px;
      border-left: 2px solid var(--ember);
      background: rgba(112, 27, 21, .07);
      color: rgba(201,208,215,.58);
      font-size: 12px;
      line-height: 1.7;
    }

    .install-section {
      background:
        radial-gradient(circle at 50% 45%, rgba(173,50,36,.1), transparent 32%),
        linear-gradient(180deg, rgba(4,5,7,.25), rgba(10,12,15,.72), rgba(4,5,7,.25));
    }

    .install-panel {
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: clamp(34px, 7vw, 90px);
      align-items: center;
      padding: clamp(34px, 7vw, 78px);
      border: 1px solid rgba(205,213,221,.17);
      background: linear-gradient(145deg, rgba(17,20,24,.92), rgba(4,6,8,.98));
      box-shadow: var(--shadow);
    }

    .install-panel::before {
      content: "01";
      position: absolute;
      top: -36px;
      right: 22px;
      color: rgba(191,199,207,.035);
      font-family: Georgia, serif;
      font-size: clamp(150px, 24vw, 320px);
      line-height: 1;
    }

    .install-step {
      position: relative;
      z-index: 2;
      width: min(210px, 55vw);
      aspect-ratio: 1;
      display: grid;
      place-items: center;
      margin: 0 auto;
      transform: rotate(45deg);
      border: 1px solid rgba(185,152,92,.42);
      background: rgba(113,27,21,.09);
      box-shadow: inset 0 0 50px rgba(0,0,0,.42);
    }

    .install-step-inner {
      transform: rotate(-45deg);
      text-align: center;
    }

    .install-step strong {
      display: block;
      color: var(--steel);
      font-family: Georgia, serif;
      font-size: clamp(56px, 8vw, 88px);
      font-weight: 400;
      line-height: .85;
    }

    .install-step span {
      display: block;
      margin-top: 16px;
      color: var(--bronze);
      font-size: 9px;
      font-weight: 800;
      letter-spacing: .24em;
      text-transform: uppercase;
    }

    .install-copy { position: relative; z-index: 2; }

    .install-copy h2 {
      max-width: 760px;
      margin: 12px 0 20px;
      font-family: Georgia, serif;
      font-size: clamp(40px, 5.5vw, 72px);
      font-weight: 400;
      line-height: 1.02;
    }

    .install-copy p {
      max-width: 700px;
      margin: 0;
      color: rgba(201,208,215,.68);
      font-size: clamp(16px, 2vw, 19px);
      line-height: 1.75;
    }

    .install-copy code {
      color: var(--steel);
      font-family: Consolas, monospace;
      font-size: .92em;
    }

    .install-status {
      display: inline-flex;
      margin-top: 26px;
      padding: 12px 16px;
      border-left: 2px solid var(--bronze);
      background: rgba(185,152,92,.06);
      color: rgba(204,211,217,.56);
      font-size: 11px;
      letter-spacing: .08em;
      text-decoration: none;
      text-transform: uppercase;
      transition: background-color .2s ease, color .2s ease;
    }

    .install-status:hover,
    .install-status:focus-visible {
      background: rgba(185,152,92,.13);
      color: var(--steel);
    }

    .media {
      background:
        linear-gradient(180deg, rgba(4,5,7,.2), rgba(12,14,17,.7), rgba(4,5,7,.2)),
        radial-gradient(circle at 10% 75%, rgba(119, 29, 22, .08), transparent 28%);
    }

    .media-layout {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: clamp(28px, 5vw, 64px);
      align-items: stretch;
    }

    .video-shell {
      position: relative;
      min-height: 420px;
      overflow: hidden;
      border: 1px solid rgba(205, 213, 221, .18);
      background:
        radial-gradient(circle at 50% 42%, rgba(181, 34, 26, .16), transparent 31%),
        linear-gradient(145deg, rgba(18,21,26,.96), rgba(3,4,6,.99));
      box-shadow: var(--shadow);
    }

    .video-shell::before {
      content: "";
      position: absolute;
      inset: 8px;
      z-index: 2;
      pointer-events: none;
      border: 1px solid rgba(205, 213, 221, .1);
    }

    .playlist-link-card {
      position: absolute;
      inset: 0;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 22px;
      padding: 42px;
      color: inherit;
      text-align: center;
      text-decoration: none;
      isolation: isolate;
    }

    .playlist-link-card::before {
      content: "";
      position: absolute;
      inset: -25%;
      z-index: -2;
      background:
        repeating-radial-gradient(circle at 30% 20%, transparent 0 4px, rgba(255,255,255,.018) 5px 6px),
        linear-gradient(115deg, transparent 35%, rgba(255,255,255,.045) 49%, transparent 63%);
      transform: translateX(-18%);
      transition: transform .65s ease;
    }

    .playlist-link-card::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        linear-gradient(180deg, transparent, rgba(0,0,0,.28)),
        radial-gradient(circle at 50% 48%, rgba(183,45,34,.11), transparent 40%);
    }

    .playlist-link-card:hover::before {
      transform: translateX(18%);
    }

    .playlist-play {
      width: 88px;
      height: 88px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(236, 91, 69, .65);
      border-radius: 50%;
      background:
        radial-gradient(circle at 35% 30%, rgba(255,255,255,.12), transparent 38%),
        linear-gradient(145deg, #a82e22, #62170f);
      box-shadow:
        0 0 0 10px rgba(166, 42, 31, .08),
        0 0 40px rgba(177, 49, 37, .24);
      transition: transform .28s ease, box-shadow .28s ease;
    }

    .playlist-link-card:hover .playlist-play {
      transform: scale(1.08);
      box-shadow:
        0 0 0 14px rgba(166, 42, 31, .1),
        0 0 54px rgba(177, 49, 37, .36);
    }

    .playlist-play svg {
      width: 36px;
      height: 36px;
      margin-left: 5px;
      fill: #f4eee9;
    }

    .playlist-kicker {
      color: rgba(203, 210, 217, .55);
      font: 800 10px/1 Arial, sans-serif;
      letter-spacing: .34em;
      text-transform: uppercase;
    }

    .playlist-link-card strong {
      max-width: 540px;
      color: var(--ink-strong);
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(30px, 4.3vw, 54px);
      font-weight: 400;
      line-height: 1.08;
      letter-spacing: -.025em;
    }

    .playlist-link-card p {
      max-width: 520px;
      margin: 0;
      color: rgba(198, 205, 212, .66);
      font-size: 14px;
      line-height: 1.75;
    }

    .playlist-link-card b {
      color: #e2664e;
      font: 800 11px/1 Arial, sans-serif;
      letter-spacing: .25em;
      text-transform: uppercase;
    }

    .media-side {
      border: 1px solid var(--line);
      background: linear-gradient(145deg, rgba(16,19,24,.82), rgba(5,7,9,.94));
      padding: clamp(30px, 4vw, 48px);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .media-side h3 {
      margin-bottom: 20px;
      font-family: Georgia, serif;
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.08;
      font-weight: 400;
    }

    .media-side p { color: rgba(194, 201, 208, .62); line-height: 1.78; }

    .media-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 24px 0 34px;
    }

    .media-tags span {
      padding: 8px 10px;
      border: 1px solid rgba(205, 213, 221, .13);
      color: rgba(197,205,213,.53);
      text-transform: uppercase;
      letter-spacing: .16em;
      font-size: 7px;
      font-weight: 800;
    }

    .support-section {
      background:
        radial-gradient(circle at 78% 42%, rgba(177, 49, 37, .1), transparent 28%),
        linear-gradient(180deg, rgba(4,5,7,.2), rgba(11,13,16,.76), rgba(4,5,7,.25));
    }

    .support-panel {
      position: relative;
      display: grid;
      grid-template-columns: 1.08fr .92fr;
      overflow: hidden;
      border: 1px solid rgba(205, 213, 221, .18);
      background: linear-gradient(145deg, rgba(16,19,24,.9), rgba(5,7,9,.97));
      box-shadow: var(--shadow);
    }

    .support-panel::before {
      content: "";
      position: absolute;
      inset: 8px;
      pointer-events: none;
      border: 1px solid rgba(205, 213, 221, .07);
    }

    .support-copy,
    .support-card {
      position: relative;
      z-index: 1;
      padding: clamp(38px, 6vw, 76px);
    }

    .support-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .support-copy h2 {
      max-width: 720px;
      margin: 14px 0 24px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(38px, 5.2vw, 70px);
      font-weight: 400;
      line-height: 1.03;
      letter-spacing: -.025em;
    }

    .support-copy > p {
      max-width: 670px;
      margin: 0;
      color: rgba(198, 205, 212, .68);
      font-size: clamp(16px, 1.8vw, 19px);
      line-height: 1.78;
    }

    .support-copy > .support-story {
      margin-top: 16px;
      color: rgba(198, 205, 212, .56);
      font-size: clamp(14px, 1.5vw, 17px);
    }

    .support-copy > p strong { color: var(--ink-strong); }

    .support-creators {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 34px;
      color: rgba(201, 208, 215, .58);
      font: 800 10px/1.2 Arial, sans-serif;
      letter-spacing: .2em;
      text-transform: uppercase;
    }

    .support-creators::before {
      content: "";
      width: 34px;
      height: 1px;
      background: var(--bronze);
    }

    .support-creators strong {
      color: var(--bronze-light);
      letter-spacing: .12em;
    }

    .support-contributors {
      display: flex;
      flex-wrap: wrap;
      gap: 7px 10px;
      margin: 14px 0 0 48px;
      color: rgba(201, 208, 215, .46);
      font: 700 9px/1.55 Arial, sans-serif;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .support-contributors strong {
      color: rgba(218, 197, 160, .66);
      letter-spacing: .08em;
    }

    .support-card {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      border-left: 1px solid rgba(205, 213, 221, .13);
      background:
        radial-gradient(circle at 50% 14%, rgba(177,49,37,.13), transparent 32%),
        rgba(0,0,0,.18);
    }

    .support-mark {
      width: 64px;
      height: 64px;
      display: grid;
      place-items: center;
      margin-bottom: 28px;
      border: 1px solid rgba(221, 97, 75, .48);
      border-radius: 50%;
      background: rgba(137, 35, 27, .16);
      box-shadow: 0 0 34px rgba(177,49,37,.18);
    }

    .support-mark svg {
      width: 27px;
      height: 27px;
      fill: #d65a45;
    }

    .support-card h3 {
      margin: 14px 0 20px;
      color: var(--ink-strong);
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(30px, 3.8vw, 48px);
      font-weight: 400;
      line-height: 1.08;
    }

    .support-card p {
      margin: 0;
      color: rgba(198, 205, 212, .66);
      line-height: 1.75;
    }

    .support-button { margin-top: 30px; }

    .support-card small {
      display: block;
      margin-top: 18px;
      color: rgba(198, 205, 212, .45);
      font-size: 11px;
      line-height: 1.6;
    }


    .closing {
      padding-top: 50px;
      padding-bottom: 120px;
    }

    .closing-panel {
      position: relative;
      overflow: hidden;
      min-height: 410px;
      display: grid;
      place-items: center;
      padding: clamp(46px, 8vw, 92px) 24px;
      text-align: center;
      border: 1px solid rgba(205,213,221,.17);
      background:
        radial-gradient(circle at 50% 35%, rgba(197,207,217,.08), transparent 35%),
        linear-gradient(135deg, rgba(18,21,26,.94), rgba(5,7,9,.98));
      box-shadow: var(--shadow);
    }

    .closing-panel::before {
      content: "";
      position: absolute;
      inset: 9px;
      border: 1px solid rgba(205,213,221,.09);
    }

    .closing-panel::after {
      content: "LIFXXL";
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      color: rgba(255,255,255,.018);
      font-family: Georgia, serif;
      font-size: clamp(100px, 18vw, 230px);
      letter-spacing: -.06em;
      white-space: nowrap;
    }

    .closing-content { position: relative; z-index: 2; max-width: 820px; }

    .closing-title {
      margin: 17px 0 22px;
      font-family: Georgia, serif;
      font-size: clamp(42px, 7vw, 82px);
      line-height: .98;
      font-weight: 400;
    }

    .closing-copy { color: rgba(201,208,215,.62); font-size: 17px; line-height: 1.75; }
    .closing-actions { justify-content: center; }

    footer {
      padding: 33px 24px;
      border-top: 1px solid var(--line);
      color: rgba(178,186,194,.36);
    }

    .footer-inner {
      width: min(var(--max), 100%);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      font-size: 10px;
      line-height: 1.6;
    }

    .footer-brand { color: rgba(215,221,227,.56); text-transform: uppercase; letter-spacing: .25em; font-weight: 800; }
    .disclaimer { max-width: 720px; text-align: right; }

    .reveal {
      opacity: 0;
      transform: translateY(34px);
      transition: opacity .8s ease, transform .8s cubic-bezier(.2,.75,.2,1);
    }
    .reveal.is-visible { opacity: 1; transform: translateY(0); }

    @media (max-width: 980px) {
      .hero-inner, .vision-grid, .media-layout, .support-panel { grid-template-columns: 1fr; }
      .hero-copy { text-align: center; }
      .hero-lead, .section-heading { margin-left: auto; margin-right: auto; }
      .kicker { justify-content: center; }
      .hero-actions { justify-content: center; }
      .hero-proof-grid { margin-left: auto; margin-right: auto; }
      .seal-wrap { min-height: 480px; }
      .feature-grid { grid-template-columns: repeat(2, 1fr); }
      .feature-chapter-head, .install-panel { grid-template-columns: 1fr; }
      .feature-chapter-head { align-items: start; }
      .support-card { border-top: 1px solid rgba(205, 213, 221, .13); border-left: 0; }
    }

    @media (max-width: 760px) {
      .topbar { padding: 10px 14px; }
      .menu-button { display: block; }
      .nav-links {
        position: absolute;
        top: 64px;
        left: 14px;
        right: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
        border: 1px solid var(--line);
        background: rgba(5,7,9,.97);
        box-shadow: var(--shadow);
      }
      .nav-links.is-open { display: flex; }
      .nav-links a { padding: 15px 16px; }
      .nav-links .nav-livemap { margin: 4px 0; text-align: center; }
      .hero { padding-left: 16px; padding-right: 16px; }
      .hero-title { font-size: clamp(62px, 22vw, 100px); }
      .hero-title span { font-size: .16em; letter-spacing: .32em; }
      .hero-title .hero-value-line { font-size: .13em; letter-spacing: .09em; }
      .launch-card { width: min(440px, 95vw); }
      .hero-proof-grid { width: min(100%, 440px); grid-template-columns: 1fr; }
      .hero-proof-grid article { min-height: 58px; }
      .seal-wrap { min-height: 430px; }
      .section { padding-left: 16px; padding-right: 16px; }
      .feature-grid { grid-template-columns: 1fr; }
      .feature-card { min-height: 270px; }
      .feature-card-wide { grid-column: auto; }
      .install-panel { padding: 42px 24px; }
      .stat-line { grid-template-columns: 1fr; }
      .video-shell { min-height: 300px; }
      .support-copy, .support-card { padding: 42px 24px; }
      .support-contributors { margin-left: 0; }
      .footer-inner { flex-direction: column; align-items: flex-start; }
      .disclaimer { text-align: left; }
    }

    @media (max-width: 520px) {
      .hero { padding-top: 104px; }
      .hero-title { font-size: 67px; }
      .hero-lead { font-size: 18px; }
      .button { width: 100%; }
      .seal-wrap { min-height: 355px; }
      .launch-card { aspect-ratio: .96 / 1; }
      .realm-face { padding: 25px 18px; }
      .countdown { grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
      .count-unit:nth-child(3)::before { display: none; }
      .world-visual { min-height: 400px; }
    }


    @media (max-width: 1080px) {
      .vision-grid {
        grid-template-columns: 1fr;
      }

      .world-visual {
        justify-content: center;
      }

      .terrain-panel {
        width: min(100%, 640px);
      }
    }

    @media (max-width: 620px) {
      .terrain-panel {
        padding: 15px;
      }

      .terrain-grid {
        gap: 3px;
      }

      .terrain-cell {
        border-radius: 4px;
        font-size: clamp(8px, 2.5vw, 11px);
      }

      .terrain-original-note {
        font-size: 11px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
      }
    }

    .nav-links a.is-active { color: var(--paper); }
    .nav-links a.is-active::after { transform: scaleX(1); }

    /* One-page medieval presentation */
    html { scroll-padding-top: 76px; }

    .medieval-theme {
      --bg: #070604;
      --bg-soft: #100e0a;
      --panel: rgba(18, 16, 12, .84);
      --panel-strong: rgba(21, 18, 13, .96);
      --ink: #e9e0cf;
      --muted: #a79d8c;
      --steel: #d1c6b2;
      --steel-dark: #625a4d;
      --ember: #8f2d20;
      --ember-hot: #d15c3d;
      --gold: #b78b4e;
      --bronze: #bd9456;
      --paper: #f0e5cd;
      --line: rgba(195, 164, 112, .19);
      background:
        radial-gradient(circle at 50% -8%, rgba(126, 94, 52, .18), transparent 27%),
        radial-gradient(circle at 8% 31%, rgba(105, 29, 20, .13), transparent 27%),
        linear-gradient(180deg, #090805 0%, #050504 48%, #0a0805 100%);
    }

    .medieval-theme::before {
      opacity: .52;
      background:
        repeating-linear-gradient(92deg, transparent 0 7px, rgba(233, 215, 178, .008) 8px 9px),
        repeating-linear-gradient(2deg, transparent 0 11px, rgba(0, 0, 0, .06) 12px 13px),
        radial-gradient(ellipse at 50% 10%, rgba(184, 139, 74, .08), transparent 42%);
    }

    .medieval-theme .topbar {
      border-image: linear-gradient(90deg, transparent, rgba(190, 148, 83, .28), transparent) 1;
    }

    .medieval-theme .topbar.is-scrolled {
      background:
        linear-gradient(180deg, rgba(16, 13, 9, .94), rgba(7, 7, 5, .91)),
        repeating-linear-gradient(90deg, transparent 0 5px, rgba(255,255,255,.012) 6px);
      border-color: rgba(190, 148, 83, .23);
      box-shadow: 0 8px 35px rgba(0, 0, 0, .42);
    }

    .medieval-theme .brand-mark {
      border-color: rgba(190, 148, 83, .58);
      background: radial-gradient(circle, rgba(170, 119, 55, .16), rgba(0,0,0,.2));
      box-shadow: inset 0 0 18px rgba(190,148,83,.09), 0 0 22px rgba(0,0,0,.65);
    }

    .medieval-theme .brand-mark::before,
    .medieval-theme .brand-text { color: var(--paper); }

    .medieval-theme .nav-links a { color: rgba(230, 218, 195, .58); }
    .medieval-theme .nav-links a:hover,
    .medieval-theme .nav-links a.is-active { color: var(--paper); }

    .medieval-theme .nav-cta {
      border-color: rgba(197, 151, 82, .52);
      background: linear-gradient(180deg, rgba(135, 78, 37, .26), rgba(67, 29, 19, .25));
      box-shadow: inset 0 0 20px rgba(197,151,82,.06);
    }

    .medieval-theme .hero {
      isolation: isolate;
      background:
        linear-gradient(90deg, rgba(5,5,3,.1), rgba(5,5,3,.42) 52%, rgba(5,5,3,.08)),
        radial-gradient(ellipse at 73% 35%, rgba(170, 121, 54, .13), transparent 28%),
        radial-gradient(ellipse at 18% 40%, rgba(120, 33, 23, .13), transparent 32%);
    }

    .medieval-theme .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      background:
        linear-gradient(180deg, transparent 76%, #080704 100%),
        repeating-linear-gradient(115deg, transparent 0 86px, rgba(221,198,155,.012) 87px 88px);
    }

    .medieval-theme .hero-title {
      color: var(--paper);
      text-shadow: 0 3px 0 #14100a, 0 15px 45px rgba(0,0,0,.68);
    }

    .medieval-theme .hero-value-line { color: #c6a369; }
    .medieval-theme .hero-lead { color: rgba(233, 224, 207, .7); }
    .medieval-theme .hero-lead strong { color: var(--paper); }

    .medieval-theme .button {
      border-color: rgba(190, 159, 107, .28);
      background:
        linear-gradient(180deg, rgba(37, 31, 22, .92), rgba(12, 11, 8, .97)),
        repeating-linear-gradient(90deg, transparent 0 4px, rgba(255,255,255,.02) 5px);
      color: #e8ddc8;
      box-shadow: inset 0 1px rgba(255,255,255,.035), 0 10px 28px rgba(0,0,0,.26);
    }

    .medieval-theme .button-primary {
      border-color: rgba(206, 157, 86, .62);
      background:
        linear-gradient(180deg, #9c3b29, #681f18),
        repeating-linear-gradient(90deg, transparent 0 4px, rgba(255,255,255,.03) 5px);
      color: #fff2dc;
      box-shadow: inset 0 1px rgba(255,255,255,.15), inset 0 -8px 20px rgba(45,8,4,.25), 0 12px 34px rgba(90,27,19,.3);
    }

    .medieval-theme .button-primary:hover {
      background: linear-gradient(180deg, #b04a31, #78251b);
      border-color: rgba(225, 184, 117, .8);
    }

    .medieval-theme .hero-proof-grid {
      border-color: rgba(185, 145, 81, .24);
      background: linear-gradient(180deg, rgba(31, 26, 18, .56), rgba(9, 9, 7, .7));
      box-shadow: inset 0 0 28px rgba(0,0,0,.3);
    }

    .medieval-theme .hero-proof-grid article + article { border-color: rgba(185,145,81,.19); }
    .medieval-theme .hero-proof-grid strong { color: #c9a365; }
    .medieval-theme .hero-proof-grid b { color: #ede2cc; }

    .medieval-theme .launch-card {
      filter: drop-shadow(0 35px 55px rgba(0,0,0,.62));
    }

    .medieval-theme .realm-face {
      border-color: rgba(191, 151, 89, .4);
      background:
        radial-gradient(circle at 50% 35%, rgba(154, 106, 49, .12), transparent 36%),
        repeating-linear-gradient(2deg, transparent 0 6px, rgba(255,255,255,.012) 7px),
        linear-gradient(145deg, rgba(30,26,19,.97), rgba(7,7,5,.99));
    }

    .medieval-theme .count-value { color: var(--paper); }
    .medieval-theme .launch-date,
    .medieval-theme .opening-label { color: #c6a269; }

    .one-page .section {
      overflow: hidden;
      padding-top: clamp(110px, 12vw, 165px);
      padding-bottom: clamp(110px, 12vw, 165px);
    }

    .one-page .section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      width: min(1180px, calc(100% - 48px));
      height: 1px;
      transform: translateX(-50%);
      background: linear-gradient(90deg, transparent, rgba(190, 149, 84, .55) 25%, rgba(228, 203, 156, .26) 50%, rgba(190, 149, 84, .55) 75%, transparent);
      box-shadow: 0 1px rgba(0,0,0,.7);
    }

    .one-page .section::after {
      content: "◆";
      position: absolute;
      top: -8px;
      left: 50%;
      transform: translateX(-50%) rotate(45deg);
      color: #b78d50;
      font-size: 11px;
      text-shadow: 0 0 15px rgba(192,145,76,.45);
    }

    .one-page .section-heading { max-width: 890px; }
    .one-page .section-title {
      color: var(--paper);
      text-shadow: 0 3px 0 rgba(0,0,0,.55);
    }

    .one-page .realm-section {
      background:
        radial-gradient(ellipse at 12% 56%, rgba(126, 39, 26, .1), transparent 31%),
        linear-gradient(180deg, #080704, rgba(16,13,9,.72) 52%, #070604);
    }

    .one-page .terrain-panel {
      padding: 25px;
      border-color: rgba(192, 152, 90, .35);
      background:
        repeating-linear-gradient(2deg, transparent 0 7px, rgba(255,255,255,.012) 8px),
        linear-gradient(145deg, rgba(31,27,20,.96), rgba(9,9,7,.98));
      box-shadow: inset 0 0 38px rgba(0,0,0,.28), 0 28px 70px rgba(0,0,0,.47);
    }

    .one-page .terrain-panel::before {
      border-color: rgba(190, 149, 84, .14);
    }

    .one-page .terrain-cell {
      border-color: rgba(196, 168, 119, .15);
      background: rgba(30, 28, 23, .75);
      color: rgba(225,214,193,.65);
    }

    .one-page .terrain-cell:hover { background: rgba(109, 61, 34, .55); color: #fff0d3; }
    .one-page .terrain-cell.is-client-center { background: rgba(115, 79, 40, .42); }
    .one-page .terrain-cell.is-server { background: rgba(129, 48, 32, .58); }
    .one-page .terrain-cell.is-selected { background: #b34831; color: white; box-shadow: 0 0 18px rgba(185,69,46,.55); }
    .one-page .big-quote { color: var(--paper); }

    .one-page .features {
      background:
        radial-gradient(circle at 92% 12%, rgba(139, 43, 28, .11), transparent 24%),
        radial-gradient(circle at 3% 72%, rgba(151, 106, 48, .06), transparent 25%),
        #070604;
    }

    .one-page .feature-chapter-head {
      position: relative;
      padding: 26px 30px;
      border-left: 2px solid rgba(190, 145, 78, .58);
      background: linear-gradient(90deg, rgba(104, 68, 32, .12), transparent 72%);
    }

    .one-page .feature-grid { border-color: rgba(190, 155, 99, .23); gap: 10px; border: 0; }

    .one-page .feature-card {
      border: 1px solid rgba(190, 155, 99, .2);
      background:
        repeating-linear-gradient(2deg, transparent 0 8px, rgba(255,255,255,.009) 9px),
        linear-gradient(145deg, rgba(28,25,19,.88), rgba(8,8,6,.94));
      box-shadow: inset 0 0 28px rgba(0,0,0,.18);
    }

    .one-page .feature-card::after {
      content: "";
      position: absolute;
      inset: 7px;
      pointer-events: none;
      border: 1px solid rgba(197, 160, 99, .055);
    }

    .one-page .feature-card:hover {
      border-color: rgba(203, 158, 86, .42);
      background: linear-gradient(145deg, rgba(42,34,23,.94), rgba(10,9,7,.98));
      box-shadow: inset 0 0 30px rgba(146,74,34,.1), 0 14px 30px rgba(0,0,0,.26);
    }

    /* Keep the medieval finish without forcing full-card GPU recomposition while scrolling. */
    .one-page .feature-card,
    .one-page .terrain-panel,
    .one-page .media-panel,
    .one-page .install-panel {
      contain: layout paint;
    }

    .medieval-theme .launch-card { filter: none; }

    .one-page .feature-card p,
    .one-page .feature-chapter-lead,
    .one-page .section-copy,
    .one-page .vision-text { color: rgba(222, 211, 190, .62); }

    .one-page .feature-card h3,
    .one-page .feature-chapter h3,
    .one-page .media-side h3 { color: #eee2ca; }

    .one-page .media {
      background:
        radial-gradient(circle at 12% 76%, rgba(130, 39, 26, .12), transparent 29%),
        linear-gradient(180deg, #070604, #110e09 50%, #070604);
    }

    .one-page .video-shell,
    .one-page .media-side {
      border-color: rgba(194, 153, 91, .3);
      background:
        repeating-linear-gradient(2deg, transparent 0 8px, rgba(255,255,255,.01) 9px),
        linear-gradient(145deg, rgba(30,26,19,.96), rgba(7,7,5,.99));
      box-shadow: 0 30px 70px rgba(0,0,0,.46);
    }

    .one-page .support-section {
      background:
        radial-gradient(ellipse at 78% 42%, rgba(130, 39, 26, .13), transparent 30%),
        linear-gradient(180deg, #070604, #100d08 52%, #070604);
    }

    .one-page .support-panel {
      border-color: rgba(202, 162, 97, .38);
      background:
        repeating-linear-gradient(2deg, transparent 0 8px, rgba(255,255,255,.01) 9px),
        linear-gradient(145deg, rgba(30,26,19,.97), rgba(7,7,5,.99));
      box-shadow: inset 0 0 70px rgba(0,0,0,.2), 0 35px 85px rgba(0,0,0,.5);
    }

    .one-page .support-card { border-color: rgba(194, 153, 91, .25); }
    .one-page .support-copy h2,
    .one-page .support-card h3 { color: #eee2ca; }
    .one-page .support-copy > p,
    .one-page .support-card p { color: rgba(222, 211, 190, .64); }

    .one-page .install-section {
      background:
        radial-gradient(ellipse at 50% 18%, rgba(154, 103, 44, .12), transparent 30%),
        linear-gradient(180deg, #080704, #100d08 60%, #070604);
    }

    .one-page .install-panel {
      border-color: rgba(202, 162, 97, .42);
      background:
        repeating-linear-gradient(2deg, transparent 0 7px, rgba(255,255,255,.012) 8px),
        radial-gradient(circle at 18% 50%, rgba(158, 104, 45, .13), transparent 29%),
        linear-gradient(145deg, rgba(34,29,21,.97), rgba(8,8,6,.99));
      box-shadow: inset 0 0 70px rgba(0,0,0,.22), 0 35px 85px rgba(0,0,0,.5);
    }

    .one-page .install-step {
      border-color: rgba(212, 170, 101, .58);
      background: radial-gradient(circle, rgba(151, 88, 40, .25), rgba(45,20,13,.25));
      box-shadow: inset 0 0 55px rgba(0,0,0,.48), 0 18px 40px rgba(0,0,0,.32);
    }

    .one-page .closing-panel {
      margin-top: clamp(46px, 7vw, 82px);
      border-color: rgba(193, 151, 86, .29);
      background:
        radial-gradient(circle at 50% 35%, rgba(191,145,77,.1), transparent 36%),
        repeating-linear-gradient(2deg, transparent 0 7px, rgba(255,255,255,.01) 8px),
        linear-gradient(135deg, rgba(28,24,17,.96), rgba(7,7,5,.99));
    }

    .one-page footer {
      background: #070604;
      border-color: rgba(190, 148, 83, .2);
    }

    @media (max-width: 760px) {
      html { scroll-padding-top: 64px; }
      .one-page .section { padding-top: 92px; padding-bottom: 92px; }
      .medieval-theme .nav-links {
        border-color: rgba(192,151,88,.3);
        background: rgba(13,11,8,.98);
      }
      .one-page .feature-chapter-head { padding: 22px 18px; }
      .one-page .feature-grid { gap: 8px; }
      .one-page .section::before { width: calc(100% - 32px); }
    }

    /* Regional language selector */
    [hidden] { display: none !important; }

    .language-switcher {
      position: relative;
      z-index: 130;
    }

    .language-button {
      min-width: 132px;
      height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 0 12px;
      border: 1px solid rgba(193, 153, 91, .27);
      background: linear-gradient(180deg, rgba(32, 27, 19, .88), rgba(11, 10, 8, .94));
      color: rgba(236, 225, 204, .78);
      font: 700 9px/1 Inter, ui-sans-serif, system-ui, sans-serif;
      letter-spacing: .1em;
      text-transform: uppercase;
      cursor: pointer;
      transition: border-color .25s ease, color .25s ease, background .25s ease;
    }

    .language-button:hover,
    .language-button[aria-expanded="true"] {
      color: var(--paper);
      border-color: rgba(207, 167, 102, .58);
      background: linear-gradient(180deg, rgba(49, 38, 25, .96), rgba(14, 12, 9, .98));
    }

    .language-button-globe {
      color: var(--bronze);
      font-size: 10px;
      text-shadow: 0 0 10px rgba(189, 148, 86, .46);
    }

    .language-button-flag { font-size: 15px; line-height: 1; letter-spacing: 0; }
    .language-button-label {
      max-width: 76px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .language-button-chevron {
      width: 6px;
      height: 6px;
      margin-left: 2px;
      transform: translateY(-2px) rotate(45deg);
      border-right: 1px solid currentColor;
      border-bottom: 1px solid currentColor;
      transition: transform .25s ease;
    }

    .language-button[aria-expanded="true"] .language-button-chevron {
      transform: translateY(2px) rotate(225deg);
    }

    .language-popover {
      position: absolute;
      top: calc(100% + 13px);
      right: -84px;
      width: min(620px, calc(100vw - 32px));
      max-height: min(720px, calc(100vh - 92px));
      overflow: auto;
      padding: 24px;
      border: 1px solid rgba(201, 160, 96, .39);
      background:
        repeating-linear-gradient(2deg, transparent 0 8px, rgba(255,255,255,.008) 9px),
        radial-gradient(circle at 88% 8%, rgba(143, 49, 30, .13), transparent 28%),
        linear-gradient(145deg, rgba(27, 23, 17, .99), rgba(7, 7, 5, .995));
      box-shadow: 0 30px 90px rgba(0,0,0,.72), inset 0 0 0 7px rgba(190,148,82,.025);
      scrollbar-color: rgba(187, 145, 80, .5) rgba(8, 7, 5, .7);
    }

    .language-popover::before {
      content: "";
      position: absolute;
      inset: 7px;
      pointer-events: none;
      border: 1px solid rgba(201, 160, 96, .08);
    }

    .language-popover-head {
      position: relative;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 20px;
      padding: 3px 3px 18px;
      border-bottom: 1px solid rgba(198, 158, 96, .16);
    }

    .language-popover-kicker {
      display: block;
      margin-bottom: 8px;
      color: rgba(190, 148, 83, .66);
      font: 800 8px/1 Inter, ui-sans-serif, system-ui, sans-serif;
      letter-spacing: .23em;
      text-transform: uppercase;
    }

    .language-popover h2 {
      margin: 0;
      color: var(--paper);
      font-family: Georgia, "Times New Roman", serif;
      font-size: 30px;
      font-weight: 400;
    }

    .language-count {
      color: rgba(193, 154, 92, .62);
      font-family: Georgia, serif;
      font-size: 30px;
      line-height: 1;
    }

    .language-search {
      position: relative;
      display: flex;
      align-items: center;
      gap: 10px;
      height: 46px;
      margin-bottom: 21px;
      padding: 0 14px;
      border: 1px solid rgba(193, 158, 99, .2);
      background: rgba(5, 5, 4, .62);
      color: rgba(190, 151, 88, .7);
    }

    .language-search input {
      width: 100%;
      border: 0;
      outline: 0;
      background: transparent;
      color: var(--paper);
      font: 500 13px/1.2 Inter, ui-sans-serif, system-ui, sans-serif;
    }

    .language-search input::placeholder { color: rgba(211, 199, 177, .36); }

    .language-region + .language-region { margin-top: 24px; }

    .language-region h3 {
      margin: 0 0 9px;
      color: rgba(194, 153, 91, .7);
      font: 800 8px/1 Inter, ui-sans-serif, system-ui, sans-serif;
      letter-spacing: .2em;
      text-transform: uppercase;
    }

    .language-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 6px;
    }

    .language-option {
      min-width: 0;
      display: grid;
      grid-template-columns: 25px minmax(0, 1fr) auto;
      align-items: center;
      gap: 10px;
      padding: 11px 12px;
      border: 1px solid transparent;
      background: rgba(255,255,255,.018);
      color: rgba(231, 220, 200, .74);
      text-align: left;
      cursor: pointer;
      transition: background .2s ease, border-color .2s ease, color .2s ease;
    }

    .language-option:hover {
      color: var(--paper);
      border-color: rgba(191, 148, 84, .24);
      background: rgba(151, 96, 44, .1);
    }

    .language-option.is-active {
      color: #fff1d8;
      border-color: rgba(206, 161, 91, .48);
      background: linear-gradient(90deg, rgba(141, 47, 30, .25), rgba(121, 81, 39, .1));
    }

    .language-option-flag { font-size: 18px; }
    .language-option-copy { min-width: 0; display: block; }
    .language-option-copy strong,
    .language-option-copy small {
      display: block;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .language-option-copy strong { font-size: 12px; font-weight: 650; }
    .language-option-copy small {
      margin-top: 3px;
      color: rgba(204, 192, 171, .4);
      font-size: 9px;
    }
    .language-option-code {
      color: rgba(194, 154, 92, .45);
      font: 800 8px/1 Inter, ui-sans-serif, system-ui, sans-serif;
      letter-spacing: .15em;
    }

    .language-empty {
      margin: 26px 0 8px;
      color: rgba(215, 203, 183, .52);
      text-align: center;
      font-size: 13px;
    }

    @media (max-width: 1160px) and (min-width: 761px) {
      .language-button { min-width: 52px; padding: 0 10px; }
      .language-button-globe,
      .language-button-label { display: none; }
    }

    @media (max-width: 760px) {
      .language-switcher { width: 100%; }
      .language-button {
        width: 100%;
        justify-content: flex-start;
        padding: 0 16px;
        border-color: transparent;
        background: transparent;
      }
      .language-button-chevron { margin-left: auto; }
      .language-popover {
        position: fixed;
        top: 72px;
        right: 14px;
        bottom: 14px;
        left: 14px;
        width: auto;
        max-height: none;
        padding: 20px;
      }
      .language-grid { grid-template-columns: 1fr; }
      .language-popover h2 { font-size: 26px; }
    }

/* Keep Recipes visible independently of the collapsible navigation. */
.nav > .brand { order: 0; }
.nav > .header-recipes { order: 1; }
.nav > .nav-links { order: 2; margin-left: auto; }
.nav > .menu-button { order: 3; flex: 0 0 auto; }
.nav > .header-discord {
  order: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  height: 44px;
  color: #e0e3ff;
  background: rgba(88, 101, 242, .2);
  border: 1px solid #5865f2;
  border-radius: 6px;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.header-discord:hover,
.header-discord:focus-visible {
  color: #fff;
  background: #5865f2;
}
.header-discord:focus-visible {
  outline: 2px solid #e0e3ff;
  outline-offset: 3px;
}
@media (max-width: 1380px) {
  .nav { gap: 12px; }
  .nav > .menu-button { margin-left: auto; }
  .nav > .header-recipes { margin-left: auto; }
  .nav > .menu-button { display: block; }
  .nav > .nav-links {
    position: absolute;
    top: 64px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    padding: 10px;
    max-height: calc(100dvh - 78px);
    overflow-y: auto;
    border: 1px solid var(--line);
    background: #100d09;
    box-shadow: var(--shadow);
  }
  .nav > .nav-links.is-open { display: flex; }
  .nav-links a { padding: 15px 16px; }
  .nav-links .nav-livemap { margin: 4px 0; text-align: center; }
  .language-switcher { width: 100%; }
  .language-button { width: 100%; justify-content: flex-start; }
  .language-button-label { display: inline; }
  .language-button-chevron { margin-left: auto; }
  .language-popover { position: fixed; top: 72px; bottom: 14px; right: 14px; left: 14px; width: auto; max-height: none; }
}
@media (max-width: 380px) {
  .nav { gap: 8px; }
  .header-recipes { padding: 11px 10px; font-size: 11px; letter-spacing: .02em; }
  .brand { gap: 8px; }
  .brand-text { font-size: 16px; letter-spacing: .1em; }
}
