:root {
      --bg: #050b14;
      --bg2: #07111f;
      --panel: rgba(11, 23, 39, 0.88);
      --line: rgba(255, 255, 255, 0.10);
      --text: #f7f9fc;
      --muted: #aeb8c7;
      --muted2: #8b97a8;
      --blue: #1687ff;
      --cyan: #4cc9ff;
      --live: #ff3b4f;
      --light: #f5f8fc;
      --light-text: #132033;
      --light-muted: #5d6b7c;
      --ok: #2fbf71;
      --radius: 18px;
      --max: 1520px;
      --font: Inter, "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
      --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--text);
      font-family: var(--font);
      background: var(--light);
      overflow-x: hidden;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; display: block; }
    picture { display: block; }
    a { color: inherit; text-decoration: none; }
    button, input, textarea, select { font: inherit; }
    :focus-visible { outline: 3px solid rgba(22, 135, 255, 0.55); outline-offset: 3px; }
    .wrap { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }

    .site-header {
      position: sticky; top: 0; z-index: 50;
      backdrop-filter: blur(16px);
      background: rgba(5, 11, 20, 0.86);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .nav { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; min-height: 92px; position: relative; }
    .brand { display: inline-flex; align-items: center; gap: 0.75rem; min-width: 0; flex-shrink: 0; }
    .brand img { height: 34px; width: auto; }
    .brand-text { display: flex; flex-direction: column; line-height: 1.15; }
    .brand-text strong { font-weight: 800; font-size: 1rem; letter-spacing: -0.02em; color: #fff; }
    .brand-text span { color: var(--muted2); font-size: 0.72rem; font-weight: 500; }
    .nav-toggle {
      display: none; width: 46px; height: 46px; border-radius: 12px;
      border: 1px solid var(--line); background: rgba(255,255,255,.03); color: #fff; cursor: pointer;
      align-items: center; justify-content: center;
    }
    .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
      display: block; width: 18px; height: 2px; background: currentColor; position: relative;
    }
    .nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
    .nav-toggle span::before { top: -6px; }
    .nav-toggle span::after { top: 6px; }
    .nav-links { display: flex; align-items: center; gap: 0.15rem 1.35rem; flex-wrap: wrap; justify-content: flex-end; }
    .nav-links a:not(.btn) { color: var(--muted); font-weight: 500; font-size: 0.95rem; padding: 0.55rem 0.2rem; }
    .nav-links a:not(.btn):hover { color: #fff; }

    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
      min-height: 54px; padding: 0.85rem 1.35rem; border-radius: 12px; border: 1px solid transparent;
      font-weight: 650; font-size: 0.98rem; cursor: pointer;
      transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn-primary { background: var(--blue); color: #fff; box-shadow: 0 10px 28px rgba(22,135,255,.28); }
    .btn-primary:hover { background: #2b95ff; }
    .btn-ghost { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.22); color: #fff; }
    .btn-ghost:hover { background: rgba(255,255,255,.14); }
    .btn-header { min-height: 46px; padding: 0.65rem 1.1rem; border-radius: 10px; }

    .hero { position: relative; isolation: isolate; min-height: min(85vh, 920px); display: flex; align-items: center; color: var(--text); overflow: hidden; }
    .hero-media { position: absolute; inset: 0; z-index: -1; }
    .hero-media picture, .hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
    .hero-media img { position: absolute; inset: 0; }
    .hero-shade {
      position: absolute; inset: 0;
      background:
        linear-gradient(90deg, rgba(5,11,20,.82) 0%, rgba(5,11,20,.55) 46%, rgba(5,11,20,.28) 100%),
        linear-gradient(180deg, rgba(5,11,20,.28) 0%, transparent 28%, rgba(5,11,20,.55) 100%);
    }
    .hero-inner {
      display: grid; grid-template-columns: 48fr 52fr; gap: clamp(2rem,4vw,3.5rem); align-items: center;
      width: min(100% - 2.5rem, var(--max)); margin: 0 auto; padding: 4.5rem 0 3.8rem;
    }
    .hero-copy { max-width: 36rem; }
    .live-place {
      display: flex; align-items: center; gap: .45rem; margin: 0 0 .55rem;
      color: rgba(247,249,252,.82); font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
    }
    .live-place i { width: 7px; height: 7px; border-radius: 50%; background: var(--live); animation: livePulse 1.8s ease-out infinite; }
    .eyebrow {
      display: flex; align-items: center; gap: .5rem; color: var(--cyan);
      font-weight: 650; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; margin: 0 0 1.2rem;
    }
    .eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--live); animation: livePulse 1.8s ease-out infinite; }
    .hero h1 { margin: 0; font-weight: 750; letter-spacing: -.04em; line-height: 1.02; font-size: clamp(2.4rem,5.2vw,4.4rem); max-width: 16ch; }
    .hero h1 .accent { color: #7fd0ff; }
    .lede { margin: 1.5rem 0 0; color: rgba(247,249,252,.86); font-size: 1.08rem; line-height: 1.65; max-width: 38rem; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
    .trust-row { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.75rem; }
    .trust-pill {
      display: inline-flex; align-items: center; gap: .45rem; padding: .5rem .8rem; border-radius: 999px;
      border: 1px solid rgba(255,255,255,.16); background: rgba(5,11,20,.38); backdrop-filter: blur(8px);
      color: rgba(247,249,252,.88); font-size: .86rem; font-weight: 550;
    }
    .trust-pill svg { width: 14px; height: 14px; color: var(--cyan); flex-shrink: 0; }

    .player-shell {
      border-radius: 20px; padding: .65rem; background: rgba(8,14,24,.55);
      border: 1px solid rgba(255,255,255,.16); box-shadow: 0 24px 60px rgba(0,0,0,.38); backdrop-filter: blur(10px);
    }
    #hvlLiveCamPlayer, #llLiveCamPlayer { position: relative; aspect-ratio: 16/9; border-radius: 14px; overflow: hidden; background: #070b14; border: 1px solid rgba(255,255,255,.08); }
    .player-poster, .player-poster img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
    .player-chrome {
      position: absolute; inset: 0; display: grid; grid-template-rows: auto 1fr auto auto; padding: .95rem; gap: .55rem;
      background: linear-gradient(180deg, rgba(5,11,20,.42), transparent 26%), linear-gradient(0deg, rgba(5,11,20,.78), transparent 40%);
    }
    .player-top, .player-footer { display: flex; justify-content: space-between; align-items: center; gap: .6rem; flex-wrap: wrap; }
    .live-badge {
      display: inline-flex; align-items: center; gap: .4rem; padding: .28rem .55rem; border-radius: 6px;
      background: rgba(255,59,79,.22); border: 1px solid rgba(255,59,79,.55); color: #ffd7dc;
      font-size: .72rem; font-weight: 800; letter-spacing: .08em;
    }
    .live-badge i { width: 7px; height: 7px; border-radius: 50%; background: var(--live); display: block; animation: livePulse 1.8s ease-out infinite; }
    .player-meta { color: rgba(247,249,252,.82); font-size: .82rem; font-weight: 600; }
    .player-center { display: grid; place-items: center; text-align: center; padding: .4rem; }
    .player-center .coming { margin: 0 0 .45rem; color: rgba(255,255,255,.55); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; font-size: .68rem; }
    .player-center h2 { margin: 0; font-size: clamp(1.35rem,2.4vw,1.85rem); font-weight: 750; letter-spacing: -.03em; line-height: 1.15; }
    .sponsor-box {
      margin-top: .95rem; display: inline-flex; flex-direction: column; gap: .12rem; padding: .7rem .95rem;
      border-radius: 12px; border: 1px solid rgba(255,255,255,.16); background: rgba(5,11,20,.58);
      backdrop-filter: blur(8px); min-width: min(100%,230px); text-align: left;
    }
    .sponsor-box small { color: var(--muted2); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 650; }
    .sponsor-box strong { font-size: .95rem; font-weight: 700; }
    .player-controls {
      display: flex; align-items: center; gap: .7rem; padding: .45rem .55rem; border-radius: 10px;
      background: rgba(0,0,0,.38); border: 1px solid rgba(255,255,255,.08); color: rgba(247,249,252,.82);
      font-size: .78rem; font-weight: 650; width: fit-content; max-width: 100%; margin: 0 auto;
    }
    .player-controls .ctrl { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; }
    .player-controls .ctrl svg { width: 16px; height: 16px; }
    .player-controls .live-mini { color: #ffd0d6; letter-spacing: .06em; }
    .player-footer { padding-top: .15rem; border-top: 1px solid rgba(255,255,255,.08); margin-top: .15rem; }

    .photo-card {
      position: relative; overflow: hidden; border-radius: var(--radius); min-height: 280px; color: #fff;
      isolation: isolate; display: flex; border: 1px solid rgba(255,255,255,.08); box-shadow: var(--shadow);
    }
    .photo-card picture, .photo-card > img { position: absolute; inset: 0; }
    .photo-card img { width: 100%; height: 100%; object-fit: cover; }
    .photo-card .shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,11,20,.08), rgba(5,11,20,.78)); }
    .photo-card .body { position: relative; z-index: 1; padding: 1.35rem 1.25rem; display: flex; flex-direction: column; justify-content: flex-end; min-height: 280px; width: 100%; }
    .photo-card .label {
      display: inline-flex; width: fit-content; margin-bottom: .7rem; padding: .28rem .55rem; border-radius: 999px;
      background: rgba(255,59,79,.18); border: 1px solid rgba(255,59,79,.38); color: #ffd7dc;
      font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
    }
    .photo-card .card-num {
      display: inline-grid; place-items: center; width: 2rem; height: 2rem; border-radius: 999px; margin-bottom: .7rem;
      background: rgba(22,135,255,.2); border: 1px solid rgba(22,135,255,.4); color: #cfe8ff; font-weight: 800; font-size: .85rem;
    }
    .photo-card h3 { margin: 0 0 .4rem; font-size: 1.18rem; font-weight: 750; letter-spacing: -.02em; }
    .photo-card p { margin: 0; color: rgba(247,249,252,.82); font-size: .94rem; line-height: 1.5; }

    .feature-band { background: #07111f; padding: 2.6rem 0 3.2rem; }
    .feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
    section.block { padding: 5.5rem 0; }
    .section-kicker { color: var(--cyan); font-weight: 650; letter-spacing: .1em; text-transform: uppercase; font-size: .76rem; margin: 0 0 .75rem; }
    .section-title { margin: 0; font-size: clamp(1.85rem,3vw,2.6rem); font-weight: 750; letter-spacing: -.035em; line-height: 1.12; max-width: 18ch; }
    .section-copy { margin: .95rem 0 0; color: var(--muted); max-width: 40rem; line-height: 1.65; font-size: 1.02rem; }
    .dark-band { background: #07111f; color: var(--text); }
    .light-band { background: var(--light); color: var(--light-text); }
    .light-band .section-kicker { color: var(--blue); }
    .light-band .section-title { color: var(--light-text); }
    .light-band .section-copy { color: var(--light-muted); }

    .case-study {
      display: grid; grid-template-columns: 1.15fr .85fr; min-height: 540px; border-radius: 22px; overflow: hidden;
      border: 1px solid rgba(255,255,255,.1); box-shadow: var(--shadow); background: #08121e;
    }
    .case-media { position: relative; min-height: 360px; }
    .case-media picture, .case-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
    .case-media .shade { position: absolute; inset: 0; background: linear-gradient(90deg, transparent 40%, rgba(8,18,30,.55)); }
    .case-copy { padding: clamp(1.6rem,3vw,2.6rem); display: flex; flex-direction: column; justify-content: center; }
    .case-copy .section-title { max-width: none; }
    .case-pills { display: flex; flex-wrap: wrap; gap: .45rem; margin: 1.2rem 0 1.5rem; }
    .case-pills span { padding: .4rem .7rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.04); font-size: .82rem; font-weight: 600; }
    .case-actions { display: flex; flex-wrap: wrap; gap: .7rem; }

    .reach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
    .reach-flow { display: flex; align-items: center; justify-content: center; gap: .65rem; margin: 1.6rem 0 0; flex-wrap: wrap; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; font-size: .78rem; color: var(--light-muted); }
    .reach-flow b { color: var(--light-text); }
    .reach-flow em { color: var(--blue); font-style: normal; }

    .steps-grid, .field-grid, .host-grid { display: grid; gap: 1rem; margin-top: 2.2rem; }
    .steps-grid { grid-template-columns: repeat(4, 1fr); }
    .field-grid { grid-template-columns: 1fr 1fr; }
    .host-grid { grid-template-columns: repeat(4, 1fr); }
    .field-grid .photo-card, .host-grid .photo-card { min-height: 320px; }
    .field-grid .photo-card .body, .host-grid .photo-card .body { min-height: 320px; }
    .field-grid .photo-card h3 { font-size: 1.35rem; letter-spacing: .04em; text-transform: uppercase; }

    .value-grid, .stats-grid { display: grid; gap: 1rem; margin-top: 2rem; }
    .value-grid { grid-template-columns: 1fr 1fr; gap: 1.4rem; }
    .value-list { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: .8rem; }
    .value-list li { display: grid; grid-template-columns: auto 1fr; gap: .75rem; align-items: start; padding: .95rem 1rem; border-radius: 14px; border: 1px solid var(--line); background: rgba(255,255,255,.03); }
    .value-list .dot { width: 10px; height: 10px; margin-top: .4rem; border-radius: 50%; background: var(--blue); box-shadow: 0 0 12px rgba(22,135,255,.4); }
    .value-list strong { display: block; margin-bottom: .15rem; }
    .value-list span { color: var(--muted); font-size: .94rem; line-height: 1.5; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat { min-height: 124px; display: flex; flex-direction: column; justify-content: center; border-radius: var(--radius); border: 1px solid var(--line); background: var(--panel); padding: 1.2rem; }
    .stat strong { font-size: 1.75rem; color: var(--cyan); display: block; margin-bottom: .25rem; letter-spacing: -.03em; }
    .stat span { color: var(--muted); line-height: 1.4; }
    .use-cases { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.6rem; }
    .use-pill { padding: .65rem .9rem; border-radius: 999px; border: 1px solid rgba(19,32,51,.1); background: #fff; color: var(--light-text); font-weight: 550; font-size: .9rem; }

    .photo-section { position: relative; isolation: isolate; color: var(--text); padding: 5.5rem 0; overflow: hidden; }
    .photo-section .bg, .photo-section .bg picture, .photo-section .bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
    .photo-section .bg-shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(5,11,20,.72), rgba(5,11,20,.82)); }
    .sponsor-stage { display: grid; grid-template-columns: 1.25fr .75fr; gap: 1.4rem; margin-top: 2rem; align-items: stretch; }
    .sponsor-player { position: relative; border-radius: 18px; overflow: hidden; min-height: 360px; border: 1px solid rgba(255,255,255,.14); box-shadow: var(--shadow); }
    .sponsor-player picture, .sponsor-player img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
    .sponsor-player .shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,11,20,.25), transparent 30%, rgba(5,11,20,.72)); }
    .sponsor-player .live-badge { position: absolute; top: 1rem; left: 1rem; z-index: 2; }
    .sponsor-card { background: rgba(8,14,24,.72); border: 1px solid rgba(255,255,255,.14); border-radius: 18px; padding: 1.6rem 1.4rem; backdrop-filter: blur(12px); display: flex; flex-direction: column; justify-content: center; }
    .sponsor-logo { width: 72px; height: 72px; border-radius: 16px; display: grid; place-items: center; background: linear-gradient(160deg,#1687ff,#0b3d73); font-weight: 800; letter-spacing: .04em; margin: .7rem 0 1rem; }
    .sponsor-card small { color: var(--muted2); letter-spacing: .1em; text-transform: uppercase; font-weight: 700; font-size: .72rem; }
    .sponsor-card h3 { margin: 0 0 .5rem; font-size: 1.45rem; letter-spacing: -.03em; }
    .sponsor-card p { margin: 0 0 1.2rem; color: var(--muted); }

    .cta-section { padding: 0 0 4rem; background: #050b14; }
    .cta-band { position: relative; isolation: isolate; overflow: hidden; border-radius: 22px; border: 1px solid rgba(255,255,255,.12); padding: clamp(1.6rem,3vw,2.6rem); box-shadow: var(--shadow); color: var(--text); }
    .cta-band .bg, .cta-band .bg picture, .cta-band .bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; z-index: -2; }
    .cta-band .bg-shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(5,11,20,.82) 0%, rgba(5,11,20,.62) 55%, rgba(5,11,20,.5) 100%); }
    .cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; align-items: start; }
    .cta-points { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.2rem 0 1.3rem; }
    .cta-points span { padding: .4rem .7rem; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); font-size: .84rem; font-weight: 600; }
    .form { display: grid; gap: .9rem; }
    .field { display: grid; gap: .35rem; }
    .field label { font-size: .88rem; font-weight: 600; color: rgba(247,249,252,.9); }
    .field input, .field textarea { width: 100%; border-radius: 12px; border: 1px solid rgba(255,255,255,.14); background: rgba(0,0,0,.36); color: var(--text); padding: .85rem .95rem; min-height: 52px; }
    .field textarea { min-height: 110px; resize: vertical; }
    .field.error input, .field.error textarea { border-color: rgba(255,90,90,.7); }
    .field-error { color: #ff9b9b; font-size: .8rem; min-height: 1em; }
    .form-note { margin: 0; color: var(--muted2); font-size: .84rem; line-height: 1.45; }
    .form-status { margin: 0; min-height: 1.2em; font-size: .9rem; color: var(--ok); }
    .form-status.is-error { color: #ff9b9b; }
    .cta-actions { display: flex; flex-wrap: wrap; gap: .7rem; }

    .site-footer { background: #050b14; color: var(--muted2); padding: 1.5rem 0 2.2rem; font-size: .9rem; }
    .site-footer .wrap { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
    .site-footer a { color: var(--muted); }
    .site-footer a:hover { color: #fff; }
    .credits { width: 100%; margin: .85rem 0 0; font-size: .72rem; line-height: 1.55; color: #6d7888; }
    .credits a { color: #8b97a8; text-decoration: underline; text-underline-offset: 2px; }
    .credits a:hover { color: #fff; }

    @keyframes livePulse {
      0% { box-shadow: 0 0 0 0 rgba(255,59,79,.5); }
      70% { box-shadow: 0 0 0 10px rgba(255,59,79,0); }
      100% { box-shadow: 0 0 0 0 rgba(255,59,79,0); }
    }
    @media (max-width: 1100px) {
      .hero { min-height: 0; }
      .hero-inner { grid-template-columns: 1fr; padding: 3.2rem 0 2.6rem; }
      .hero h1 { max-width: none; font-size: clamp(2.4rem,8vw,3.8rem); }
      .hero-copy { max-width: none; }
      .hero-media img { object-position: center 42%; }
      .feature-grid, .steps-grid, .host-grid { grid-template-columns: 1fr 1fr; }
      .case-study { grid-template-columns: 1fr; }
      .case-media { min-height: 280px; }
      .cta-grid, .reach-grid, .sponsor-stage { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .nav { min-height: 72px; }
      .nav-toggle { display: inline-flex; }
      .nav-links {
        display: none; position: absolute; left: 0; right: 0; top: calc(100% + .35rem);
        flex-direction: column; align-items: stretch; padding: .85rem; border-radius: 14px;
        border: 1px solid var(--line); background: rgba(7,17,31,.98); box-shadow: var(--shadow); gap: .2rem;
      }
      .nav-links.is-open { display: flex; }
      .nav-links .btn { width: 100%; }
      .feature-grid, .value-grid, .stats-grid, .steps-grid, .field-grid, .host-grid { grid-template-columns: 1fr; }
      section.block, .feature-band, .photo-section { padding: 3.5rem 0; }
      .hero-actions .btn, .case-actions .btn, .cta-actions .btn, .form .btn { width: 100%; }
      .wrap, .hero-inner { width: min(100% - 1.5rem, var(--max)); }
      .hero-media img { object-position: center 45%; }
      .hero-shade {
        background:
          linear-gradient(180deg, rgba(5,11,20,.38) 0%, rgba(5,11,20,.62) 42%, rgba(5,11,20,.78) 100%);
      }
      .photo-card, .photo-card .body, .field-grid .photo-card, .host-grid .photo-card,
      .field-grid .photo-card .body, .host-grid .photo-card .body { min-height: 260px; }
    }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation: none !important; transition: none !important; }
    }

    /* Ludlow Live Cam — extra layout (local CC-licensed scenery) */
    .hero-media {
      background:
        radial-gradient(900px 500px at 12% 10%, rgba(22, 135, 255, 0.28), transparent 55%),
        radial-gradient(700px 480px at 88% 20%, rgba(255, 59, 79, 0.18), transparent 50%),
        linear-gradient(160deg, #07121f 0%, #0b1a2e 48%, #071018 100%);
    }
    .demo-soon {
      position: absolute; inset: 0;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 0.55rem; text-align: center; padding: 1.25rem;
      background: linear-gradient(180deg, rgba(5,11,20,0.38), rgba(5,11,20,0.72));
    }
    .demo-soon strong {
      letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.78rem; color: #fff;
    }
    .demo-soon span { color: var(--muted); font-size: 0.92rem; max-width: 16rem; }
    .chip-cloud { display: flex; flex-wrap: wrap; gap: 0.55rem; }
    .chip {
      display: inline-flex; align-items: center;
      padding: 0.45rem 0.8rem; border-radius: 999px;
      border: 1px solid var(--line); background: rgba(255,255,255,0.04);
      font-size: 0.86rem; font-weight: 600;
    }
    .light-band .chip { border-color: rgba(19,32,51,0.12); background: #fff; color: var(--light-text); }
    .metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
    @media (max-width: 900px) { .metric-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 560px) { .metric-grid { grid-template-columns: 1fr; } }
    .metric { padding: 1.15rem 1.2rem; border-radius: 16px; border: 1px solid var(--line); background: var(--panel); }
    .metric b { display: block; letter-spacing: 0.12em; font-size: 0.72rem; color: var(--cyan); margin-bottom: 0.35rem; }
    .callout {
      border: 1px solid rgba(22,135,255,0.28);
      background: rgba(22,135,255,0.08);
      border-radius: 18px; padding: 1.4rem 1.5rem;
    }
    .form .field select {
      width: 100%; border-radius: 12px; border: 1px solid var(--line);
      background: rgba(5,11,20,0.45); color: var(--text); padding: 0.75rem 0.85rem;
    }
    .optional { font-weight: 500; color: var(--muted2); font-size: 0.82rem; }
    .player-kicker { position: absolute; top: 12px; left: 12px; z-index: 2;
      display: inline-flex; align-items: center; gap: 0.4rem;
      background: rgba(5,11,20,0.72); border: 1px solid rgba(255,255,255,0.12);
      border-radius: 999px; padding: 0.28rem 0.65rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
    }
    .player-kicker i { width: 8px; height: 8px; border-radius: 50%; background: var(--live); box-shadow: 0 0 0 4px rgba(255,59,79,0.22); }
    .player-shell > .player-meta { padding: 0.9rem 0.45rem 0.35rem; }
    .feature-grid article {
      padding: 1.15rem 1.1rem; border-radius: 16px;
      border: 1px solid var(--line); background: rgba(255,255,255,0.03);
    }
    .feature-grid h2 { margin: 0 0 0.45rem; font-size: 1.12rem; letter-spacing: -0.02em; }
    .feature-grid p { margin: 0; color: var(--muted); }
    .steps-grid article {
      padding: 1.1rem 1.05rem; border-radius: 16px;
      border: 1px solid var(--line); background: rgba(255,255,255,0.03);
    }
    .steps-grid h3 { margin: 0 0 0.4rem; }
    .steps-grid p { margin: 0; color: var(--muted); }
