      *,
      *::before,
      *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      html {
        -webkit-font-smoothing: antialiased;
        scroll-behavior: smooth;
      }
      body {
        font-family: "Plus Jakarta Sans", sans-serif;
        background: #f0ede8;
        color: #17150f;
        overflow-x: hidden;
      }
      body.dk {
        background: #0e0d09;
        color: #f0ede6;
      }
      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 600;
        height: 60px;
        padding: 0 44px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition:
          background 0.5s,
          border-color 0.5s;
        border-bottom: 1px solid transparent;
      }
      nav.s {
        background: rgba(14, 13, 9, 0.72);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-bottom-color: rgba(255, 255, 255, 0.07);
      }
      .logo {
        font-size: 17px;
        font-weight: 800;
        letter-spacing: -0.06em;
        color: #fff;
        text-decoration: none;
        flex-shrink: 0;
      }
      .nav-r {
        display: flex;
        align-items: center;
        gap: 4px;
        flex-shrink: 0;
      }
      .nav-lnk {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.07em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.42);
        text-decoration: none;
        padding: 7px 14px;
        border-radius: 100px;
        transition:
          color 0.2s,
          background 0.2s;
      }
      .nav-lnk:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.08);
      }
      .mode-btn {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.15);
        background: transparent;
        cursor: pointer;
        color: rgba(255, 255, 255, 0.4);
        font-size: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s;
      }
      .mode-btn:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.08);
      }
      .nav-cta {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.07em;
        text-transform: uppercase;
        padding: 10px 20px;
        border-radius: 100px;
        background: #fff;
        color: #0e0d09;
        border: none;
        cursor: pointer;
        font-family: inherit;
        text-decoration: none;
        margin-left: 6px;
        transition:
          opacity 0.2s,
          transform 0.2s;
      }
      .nav-cta:hover {
        opacity: 0.85;
        transform: translateY(-1px);
      }
      /* HERO */
      .hero {
        position: relative;
        height: 100vh;
        min-height: 640px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background: #0a0908;
      }
      .hero-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(120px);
        pointer-events: none;
      }
      .orb1 {
        width: 600px;
        height: 400px;
        background: rgba(57, 224, 117, 0.08);
        bottom: -100px;
        left: 50%;
        transform: translateX(-50%);
        animation: orbF 8s ease-in-out infinite;
      }
      .orb2 {
        width: 300px;
        height: 300px;
        background: rgba(245, 166, 35, 0.06);
        bottom: 60px;
        left: 20%;
        animation: orbF2 9s ease-in-out infinite;
      }
      .orb3 {
        width: 280px;
        height: 280px;
        background: rgba(239, 68, 68, 0.05);
        bottom: 40px;
        right: 18%;
        animation: orbF3 7s ease-in-out infinite;
      }
      @keyframes orbF {
        0%,
        100% {
          transform: translateX(-50%) translateY(0);
        }
        50% {
          transform: translateX(-50%) translateY(-28px);
        }
      }
      @keyframes orbF2 {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-18px);
        }
      }
      @keyframes orbF3 {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-22px);
        }
      }
      .hero-inner {
        position: relative;
        z-index: 10;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 24px;
      }
      .hero-kicker {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 14px;
        border-radius: 100px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.04);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.45);
        margin-bottom: 28px;
        animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
      }
      .kicker-dot {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: #39e075;
        box-shadow: 0 0 8px rgba(57, 224, 117, 0.8);
        animation: kpulse 2s ease-in-out infinite;
      }
      @keyframes kpulse {
        0%,
        100% {
          opacity: 1;
          transform: scale(1);
        }
        50% {
          opacity: 0.6;
          transform: scale(0.8);
        }
      }
      .hero-h {
        font-size: clamp(52px, 8vw, 110px);
        font-weight: 800;
        line-height: 0.95;
        letter-spacing: -0.05em;
        color: #fff;
        animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
      }
      .hero-h .line2 {
        display: block;
        font-weight: 300;
        font-style: italic;
        color: rgba(255, 255, 255, 0.38);
        font-size: 0.88em;
      }
      .hero-sub {
        font-size: clamp(14px, 1.6vw, 18px);
        font-weight: 300;
        color: rgba(255, 255, 255, 0.42);
        margin-top: 20px;
        line-height: 1.65;
        max-width: 420px;
        animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.38s both;
      }
      .hero-cta-row {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: 36px;
        animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.48s both;
      }
      .btn-primary {
        padding: 14px 28px;
        background: #fff;
        color: #0e0d09;
        border: none;
        border-radius: 100px;
        font-family: inherit;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.04em;
        cursor: pointer;
        text-decoration: none;
        transition:
          transform 0.2s,
          box-shadow 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }
      .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(255, 255, 255, 0.18);
      }
      .btn-ghost {
        padding: 14px 24px;
        background: transparent;
        color: rgba(255, 255, 255, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 100px;
        font-family: inherit;
        font-size: 13px;
        font-weight: 500;
        cursor: pointer;
        text-decoration: none;
        transition:
          color 0.2s,
          border-color 0.2s;
      }
      .btn-ghost:hover {
        color: #fff;
        border-color: rgba(255, 255, 255, 0.3);
      }
      .hero-device-wrap {
        position: relative;
        margin-top: 52px;
        animation: devIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
      }
      @keyframes devIn {
        from {
          opacity: 0;
          transform: translateY(40px) scale(0.94);
        }
        to {
          opacity: 1;
          transform: none;
        }
      }
      .hero-device-wrap img {
        height: min(340px, 44vh);
        width: auto;
        display: block;
        object-fit: contain;
        animation: devBob 6s ease-in-out infinite;
      }
      @keyframes devBob {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-10px);
        }
      }
      .hero-led-glow {
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 20px;
        border-radius: 50%;
        filter: blur(18px);
        transition:
          background 0.8s,
          box-shadow 0.8s;
        animation: ledP 3s ease-in-out infinite;
      }
      @keyframes ledP {
        0%,
        100% {
          opacity: 0.7;
          transform: translateX(-50%) scaleX(1);
        }
        50% {
          opacity: 1;
          transform: translateX(-50%) scaleX(1.15);
        }
      }
      .hero-scroll {
        position: absolute;
        bottom: 32px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        opacity: 0.3;
        animation: scrollC 2.5s ease-in-out infinite;
      }
      .hero-scroll span {
        font-size: 9px;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: #fff;
      }
      .scroll-line {
        width: 1px;
        height: 32px;
        background: linear-gradient(to bottom, #fff, transparent);
      }
      @keyframes scrollC {
        0%,
        100% {
          opacity: 0.25;
          transform: translateX(-50%) translateY(0);
        }
        50% {
          opacity: 0.5;
          transform: translateX(-50%) translateY(6px);
        }
      }
      @keyframes fadeUp {
        from {
          opacity: 0;
          transform: translateY(24px);
        }
        to {
          opacity: 1;
          transform: none;
        }
      }
      /* STATS BAR — all price-related */
      .stats-bar {
        background: #fff;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
      }
      body.dk .stats-bar {
        background: #161410;
        border-bottom-color: rgba(255, 255, 255, 0.05);
      }
      .stats-header {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 14px 26px 0;
      }
      .stats-header-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #39e075;
        animation: kpulse 2s ease-in-out infinite;
      }
      .stats-header-title {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: rgba(23, 21, 15, 0.4);
      }
      body.dk .stats-header-title {
        color: rgba(240, 237, 230, 0.35);
      }
      .stats-inner {
        display: flex;
        align-items: stretch;
        overflow-x: auto;
        scrollbar-width: none;
      }
      .stats-inner::-webkit-scrollbar {
        display: none;
      }
      .stat-item {
        flex: 1;
        min-width: 155px;
        padding: 18px 26px;
        border-right: 1px solid rgba(0, 0, 0, 0.06);
        display: flex;
        flex-direction: column;
        gap: 4px;
        position: relative;
      }
      body.dk .stat-item {
        border-right-color: rgba(255, 255, 255, 0.05);
      }
      .stat-item:last-child {
        border-right: none;
      }
      .stat-val {
        font-family: "Space Mono", monospace;
        font-size: 20px;
        color: #17150f;
        transition: color 0.4s;
      }
      body.dk .stat-val {
        color: #f0ede6;
      }
      .stat-lbl {
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: rgba(23, 21, 15, 0.32);
      }
      body.dk .stat-lbl {
        color: rgba(240, 237, 230, 0.28);
      }
      .stat-hour {
        font-size: 11px;
        font-family: "Space Mono", monospace;
        color: rgba(23, 21, 15, 0.38);
        margin-top: 2px;
      }
      body.dk .stat-hour {
        color: rgba(240, 237, 230, 0.3);
      }
      .spread-info-btn {
        background: none;
        border: none;
        cursor: pointer;
        font-size: 13px;
        color: rgba(23, 21, 15, 0.35);
        padding: 0 0 0 4px;
        vertical-align: middle;
        line-height: 1;
        transition: color 0.2s;
      }
      body.dk .spread-info-btn {
        color: rgba(240, 237, 230, 0.35);
      }
      .spread-info-btn:hover {
        color: rgba(23, 21, 15, 0.7);
      }
      body.dk .spread-info-btn:hover {
        color: rgba(240, 237, 230, 0.6);
      }
      .spread-tooltip {
        display: none;
        position: fixed;
        background: #17150f;
        color: #f0ede6;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0;
        text-transform: none;
        padding: 10px 14px;
        border-radius: 8px;
        width: max-content;
        max-width: 240px;
        line-height: 1.5;
        box-shadow: 0 8px 24px rgba(0,0,0,0.25);
        z-index: 700;
      }
      body.dk .spread-tooltip {
        background: #2a2720;
        color: #f0ede6;
      }
      .spread-tooltip.visible {
        display: block;
      }
      /* TICKER */
      .ticker {
        overflow: hidden;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        background: rgba(0, 0, 0, 0.015);
        padding: 10px 0;
      }
      body.dk .ticker {
        background: rgba(255, 255, 255, 0.015);
        border-bottom-color: rgba(255, 255, 255, 0.04);
      }
      .tick-inner {
        display: flex;
        animation: tickrun 40s linear infinite;
        width: max-content;
      }
      .ti {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 0 22px;
        border-right: 1px solid rgba(0, 0, 0, 0.04);
        white-space: nowrap;
      }
      body.dk .ti {
        border-right-color: rgba(255, 255, 255, 0.04);
      }
      .ti-dot {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        flex-shrink: 0;
      }
      .ti-v {
        font-family: "Space Mono", monospace;
        font-size: 11px;
        color: #17150f;
      }
      body.dk .ti-v {
        color: #f0ede6;
      }
      .ti-t {
        font-size: 10px;
        color: rgba(23, 21, 15, 0.32);
      }
      body.dk .ti-t {
        color: rgba(240, 237, 230, 0.28);
      }
      @keyframes tickrun {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-50%);
        }
      }
      /* SECTIONS */
      .sec {
        min-height: 100vh;
        padding: 100px 8%;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }
      .sec.alt {
        background: rgba(0, 0, 0, 0.02);
      }
      body.dk .sec.alt {
        background: rgba(255, 255, 255, 0.018);
      }
      .eyebrow {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: rgba(23, 21, 15, 0.28);
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 14px;
      }
      body.dk .eyebrow {
        color: rgba(240, 237, 230, 0.26);
      }
      .eyebrow::before {
        content: "";
        width: 18px;
        height: 1px;
        background: currentColor;
      }
      .sec-h {
        font-size: clamp(28px, 3.4vw, 50px);
        font-weight: 800;
        line-height: 1.04;
        letter-spacing: -0.04em;
        margin-bottom: 48px;
      }
      .sec-h em {
        font-weight: 300;
        font-style: italic;
        color: rgba(23, 21, 15, 0.36);
      }
      body.dk .sec-h em {
        color: rgba(240, 237, 230, 0.32);
      }
      /* LED CARDS */
      .led-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
      }
      .lcard {
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: 14px;
        padding: 22px 18px 26px;
        position: relative;
        overflow: hidden;
        transition:
          transform 0.22s,
          box-shadow 0.22s;
      }
      body.dk .lcard {
        background: #1a1814;
        border-color: rgba(255, 255, 255, 0.06);
      }
      .lcard:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
      }
      body.dk .lcard:hover {
        box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
      }
      .lcard::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
      }
      .lcard::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 68px;
        pointer-events: none;
      }
      .lg::before {
        background: linear-gradient(90deg, #1a7a34, #39e075);
      }
      .lg::after {
        background: linear-gradient(
          180deg,
          rgba(31, 138, 60, 0.08),
          transparent
        );
      }
      .la::before {
        background: linear-gradient(90deg, #9e6208, #f5a623);
      }
      .la::after {
        background: linear-gradient(
          180deg,
          rgba(184, 114, 9, 0.08),
          transparent
        );
      }
      .lr::before {
        background: linear-gradient(90deg, #aa1c1c, #ef4444);
      }
      .lr::after {
        background: linear-gradient(
          180deg,
          rgba(192, 32, 32, 0.08),
          transparent
        );
      }
      .lb::before {
        background: linear-gradient(90deg, #1050a0, #38bdf8);
      }
      .lb::after {
        background: linear-gradient(
          180deg,
          rgba(21, 96, 160, 0.08),
          transparent
        );
      }
      body.dk .lg::after {
        background: linear-gradient(
          180deg,
          rgba(57, 224, 117, 0.09),
          transparent
        );
      }
      body.dk .la::after {
        background: linear-gradient(
          180deg,
          rgba(245, 166, 35, 0.09),
          transparent
        );
      }
      body.dk .lr::after {
        background: linear-gradient(
          180deg,
          rgba(239, 68, 68, 0.09),
          transparent
        );
      }
      body.dk .lb::after {
        background: linear-gradient(
          180deg,
          rgba(56, 189, 248, 0.09),
          transparent
        );
      }
      .lbl {
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        padding: 3px 8px;
        border-radius: 3px;
        margin-bottom: 14px;
      }
      .lg .lbl {
        background: rgba(31, 138, 60, 0.08);
        color: #1a7a34;
      }
      .la .lbl {
        background: rgba(184, 114, 9, 0.08);
        color: #9e6208;
      }
      .lr .lbl {
        background: rgba(192, 32, 32, 0.08);
        color: #aa1c1c;
      }
      .lb .lbl {
        background: rgba(21, 96, 160, 0.08);
        color: #1050a0;
      }
      body.dk .lg .lbl {
        background: rgba(57, 224, 117, 0.09);
        color: #39e075;
      }
      body.dk .la .lbl {
        background: rgba(245, 166, 35, 0.09);
        color: #f5a623;
      }
      body.dk .lr .lbl {
        background: rgba(239, 68, 68, 0.09);
        color: #ef4444;
      }
      body.dk .lb .lbl {
        background: rgba(56, 189, 248, 0.09);
        color: #38bdf8;
      }
      .ld {
        width: 5px;
        height: 5px;
        border-radius: 50%;
      }
      .lg .ld {
        background: #1a7a34;
      }
      .la .ld {
        background: #9e6208;
      }
      .lr .ld {
        background: #aa1c1c;
      }
      .lb .ld {
        background: #1050a0;
      }
      body.dk .lg .ld {
        background: #39e075;
      }
      body.dk .la .ld {
        background: #f5a623;
      }
      body.dk .lr .ld {
        background: #ef4444;
      }
      body.dk .lb .ld {
        background: #38bdf8;
      }
      /* LED TAGLINE */
      .led-tagline {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 18px;
        margin-top: 48px;
        opacity: 0.45;
      }
      .led-tagline-txt {
        font-size: 13px;
        font-weight: 400;
        letter-spacing: 0.04em;
        color: rgba(23, 21, 15, 0.5);
      }
      body.dk .led-tagline-txt {
        color: rgba(240, 237, 230, 0.4);
      }
      .led-dots {
        display: flex;
        gap: 6px;
        align-items: center;
      }
      .led-dots span {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        animation: ldPulse 3s ease-in-out infinite;
      }
      .led-dots span:nth-child(1) {
        background: #39e075;
        animation-delay: 0s;
      }
      .led-dots span:nth-child(2) {
        background: #f5a623;
        animation-delay: 0.4s;
      }
      .led-dots span:nth-child(3) {
        background: #ef4444;
        animation-delay: 0.8s;
      }
      .led-dots span:nth-child(4) {
        background: #38bdf8;
        animation-delay: 1.2s;
      }
      @keyframes ldPulse {
        0%,
        100% {
          opacity: 0.3;
          transform: scale(1);
        }
        50% {
          opacity: 1;
          transform: scale(1.4);
        }
      }
      /* FACT STRIP — removed */
      /* REQ PILLS */
      .req-strip {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 10px;
        margin-bottom: 32px;
        flex-wrap: wrap;
      }
      .req-pill {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: rgba(23, 21, 15, 0.3);
        border: 1px solid rgba(0, 0, 0, 0.07);
        padding: 5px 12px;
        border-radius: 100px;
      }
      body.dk .req-pill {
        color: rgba(240, 237, 230, 0.26);
        border-color: rgba(255, 255, 255, 0.07);
      }
      .req-pill-check {
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: #39e075;
      }
      .lh {
        position: relative;
        z-index: 1;
        font-size: 17px;
        font-weight: 800;
        letter-spacing: -0.02em;
        margin-bottom: 7px;
      }
      .lp {
        position: relative;
        z-index: 1;
        font-size: 13px;
        font-weight: 300;
        color: rgba(23, 21, 15, 0.5);
        line-height: 1.65;
      }
      body.dk .lp {
        color: rgba(240, 237, 230, 0.46);
      }
      /* TIME OF DAY — fixed sky sequence */
      .time-hero {
        position: relative;
        height: 300vh;
      }
      .time-sticky {
        position: sticky;
        top: 0;
        height: 100vh;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .sky-layer {
        position: absolute;
        inset: 0;
        transition: opacity 1.2s ease;
      }
      .sky-night {
        background: linear-gradient(
          180deg,
          #01020d 0%,
          #060418 55%,
          #0a0520 100%
        );
      }
      .sky-dawn {
        background: linear-gradient(
          180deg,
          #0e0420 0%,
          #5a1e5a 28%,
          #c84830 60%,
          #e88030 82%,
          #f0b050 100%
        );
      }
      .sky-noon {
        background: linear-gradient(
          180deg,
          #2e86c8 0%,
          #5aaee0 40%,
          #a8d8f0 100%
        );
      }
      .sky-dusk {
        background: linear-gradient(
          180deg,
          #060414 0%,
          #3a1440 22%,
          #b03018 50%,
          #d86018 76%,
          #e89838 100%
        );
      }
      .sky-deepnight {
        background: linear-gradient(
          180deg,
          #050520 0%,
          #0a0830 40%,
          #0e0a38 75%,
          #080622 100%
        );
      }
      .stars-layer {
        position: absolute;
        inset: 0;
        pointer-events: none;
        transition: opacity 1.2s;
      }
      .star {
        position: absolute;
        background: #fff;
        border-radius: 50%;
      }
      .sky-orb {
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
        transition:
          width 0.6s,
          height 0.6s,
          box-shadow 1s;
      }
      .orb-sun {
        background: radial-gradient(
          circle,
          #fffbe8 0%,
          #ffe566 35%,
          #ffaa00 100%
        );
        box-shadow:
          0 0 80px 28px rgba(255, 180, 40, 0.55),
          0 0 160px 60px rgba(255, 130, 0, 0.22);
      }
      .orb-moon {
        background: radial-gradient(
          circle,
          #f8f5ea 0%,
          #ddd4be 60%,
          #bbb09a 100%
        );
        box-shadow: 0 0 40px 12px rgba(210, 200, 170, 0.28);
      }
      .ground-glow {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 35vh;
        pointer-events: none;
        transition: background 1.2s;
      }
      .horizon {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: rgba(255, 255, 255, 0.05);
      }
      .tod-title {
        position: absolute;
        top: 76px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        text-align: center;
        pointer-events: none;
        white-space: nowrap;
      }
      .tod-title h2 {
        font-size: clamp(20px, 2.8vw, 40px);
        font-weight: 800;
        letter-spacing: -0.04em;
        color: #fff;
        text-shadow: 0 2px 28px rgba(0, 0, 0, 0.5);
        line-height: 1.05;
      }
      .tod-title h2 em {
        font-weight: 300;
        font-style: italic;
        opacity: 0.7;
      }
      .tod-title p {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.35);
        letter-spacing: 0.12em;
        text-transform: uppercase;
        margin-top: 8px;
      }
      .tod-badge {
        position: absolute;
        z-index: 20;
        display: flex;
        align-items: center;
        gap: 10px;
        background: rgba(0, 0, 0, 0.42);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 100px;
        padding: 9px 20px;
        top: 50%;
        transform: translateY(calc(-50% - 148px));
      }
      .hb-time {
        font-family: "Space Mono", monospace;
        font-size: 13px;
        color: #fff;
      }
      .hb-sep {
        width: 1px;
        height: 14px;
        background: rgba(255, 255, 255, 0.2);
      }
      .hb-price {
        font-family: "Space Mono", monospace;
        font-size: 13px;
        font-weight: 700;
        transition: color 0.6s;
      }
      .hb-label {
        font-size: 10px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        transition: color 0.6s;
      }
      .tod-dev {
        position: absolute;
        z-index: 15;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: min(220px, 27vw);
        height: min(280px, 34vh);
      }
      .tod-dev img {
        height: min(280px, 34vh);
        width: auto;
        display: block;
        object-fit: contain;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        transition: opacity 0.8s ease;
      }
      .tod-dev img.tod-active {
        opacity: 1;
      }
      .tod-copy {
        position: absolute;
        z-index: 20;
        max-width: 260px;
        pointer-events: none;
        left: max(36px, 7%);
        top: 50%;
        transform: translateY(-50%);
      }
      .hc-chip {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        padding: 4px 10px;
        border-radius: 4px;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        margin-bottom: 11px;
        border: 1px solid transparent;
        opacity: 0;
        transform: translateY(8px);
        transition:
          opacity 0.45s,
          transform 0.45s;
      }
      .hc-chip.vis {
        opacity: 1;
        transform: none;
      }
      .chip-g {
        background: rgba(57, 224, 117, 0.18);
        color: #4ef084;
        border-color: rgba(57, 224, 117, 0.3);
      }
      .chip-a {
        background: rgba(245, 166, 35, 0.18);
        color: #f8c050;
        border-color: rgba(245, 166, 35, 0.3);
      }
      .chip-r {
        background: rgba(239, 68, 68, 0.18);
        color: #f87070;
        border-color: rgba(239, 68, 68, 0.3);
      }
      .hcd {
        width: 5px;
        height: 5px;
        border-radius: 50%;
      }
      .hc-h {
        font-size: clamp(20px, 2.4vw, 34px);
        font-weight: 800;
        line-height: 1.08;
        letter-spacing: -0.03em;
        color: #fff;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
        margin-bottom: 10px;
        opacity: 0;
        transform: translateY(14px);
        transition:
          opacity 0.5s 0.05s,
          transform 0.5s 0.05s;
      }
      .hc-h.vis {
        opacity: 1;
        transform: none;
      }
      .hc-p {
        font-size: 13px;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.65);
        line-height: 1.75;
        text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
        opacity: 0;
        transform: translateY(10px);
        transition:
          opacity 0.5s 0.1s,
          transform 0.5s 0.1s;
      }
      .hc-p.vis {
        opacity: 1;
        transform: none;
      }
      /* DECIDES */
      .dg {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        align-items: start;
      }
      .dc {
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: 14px;
        padding: 26px 22px;
        transition:
          transform 0.22s,
          box-shadow 0.22s;
        cursor: pointer;
        position: relative;
      }
      body.dk .dc {
        background: #1a1814;
        border-color: rgba(255, 255, 255, 0.06);
      }
      .dc:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
      }
      body.dk .dc:hover {
        box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
      }
      /* Hover-expand detail panel */
      .dc-detail {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition:
          max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
          opacity 0.3s,
          margin 0.3s;
        margin-top: 0;
      }
      .dc:hover .dc-detail {
        max-height: 260px;
        opacity: 1;
        margin-top: 16px;
      }
      .dc-detail-inner {
        padding-top: 14px;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      body.dk .dc-detail-inner {
        border-top-color: rgba(255, 255, 255, 0.06);
      }
      .dc-detail-row {
        display: flex;
        align-items: flex-start;
        gap: 10px;
      }
      .dc-detail-ico {
        font-size: 14px;
        line-height: 1.3;
        flex-shrink: 0;
      }
      .dc-detail-txt {
        font-size: 12px;
        font-weight: 400;
        color: rgba(23, 21, 15, 0.5);
        line-height: 1.6;
      }
      body.dk .dc-detail-txt {
        color: rgba(240, 237, 230, 0.4);
      }
      .dc-detail-txt strong {
        font-weight: 600;
        color: rgba(23, 21, 15, 0.72);
      }
      body.dk .dc-detail-txt strong {
        color: rgba(240, 237, 230, 0.65);
      }
      .dc-top {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 16px;
      }
      .dc-ico {
        font-size: 20px;
      }
      .dc-badge {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        padding: 3px 9px;
        border-radius: 3px;
        background: rgba(0, 0, 0, 0.05);
        color: rgba(23, 21, 15, 0.4);
      }
      body.dk .dc-badge {
        background: rgba(255, 255, 255, 0.06);
        color: rgba(240, 237, 230, 0.35);
      }
      .dc h3 {
        font-size: 16px;
        font-weight: 700;
        letter-spacing: -0.02em;
        margin-bottom: 8px;
      }
      .dc p {
        font-size: 14px;
        font-weight: 300;
        color: rgba(23, 21, 15, 0.5);
        line-height: 1.7;
        margin-bottom: 16px;
      }
      body.dk .dc p {
        color: rgba(240, 237, 230, 0.46);
      }
      .dc-tag {
        display: inline-flex;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: rgba(23, 21, 15, 0.28);
        border: 1px solid rgba(0, 0, 0, 0.09);
        padding: 3px 9px;
        border-radius: 100px;
      }
      body.dk .dc-tag {
        color: rgba(240, 237, 230, 0.26);
        border-color: rgba(255, 255, 255, 0.09);
      }
      /* HOW — device mockups instead of iframe */
      .how-g {
        display: flex;
        flex-direction: row;
        gap: 64px;
        align-items: center;
        margin-top: 48px;
      }
      .how-steps {
        display: flex;
        flex-direction: column;
        gap: 0;
        flex: 1;
        min-width: 0;
      }
      .step {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 18px;
        padding: 28px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
      }
      body.dk .step {
        border-bottom-color: rgba(255, 255, 255, 0.06);
      }
      .step:last-child {
        border-bottom: none;
      }
      .step:first-child {
        padding-top: 0;
      }
      .sn {
        font-size: 36px;
        font-weight: 800;
        font-style: italic;
        color: rgba(23, 21, 15, 0.1);
        line-height: 1;
        letter-spacing: -0.04em;
        flex-shrink: 0;
        width: 40px;
      }
      body.dk .sn {
        color: rgba(240, 237, 230, 0.11);
      }
      .sh {
        font-size: 15px;
        font-weight: 700;
        letter-spacing: -0.01em;
        margin-bottom: 5px;
      }
      .sp {
        font-size: 14px;
        font-weight: 300;
        color: rgba(23, 21, 15, 0.48);
        line-height: 1.75;
      }
      body.dk .sp {
        color: rgba(240, 237, 230, 0.44);
      }
      /* Device mockup images */
      .mockup-wrap {
        display: flex;
        align-items: flex-end;
        gap: 24px;
        justify-content: center;
        flex: 1;
        min-width: 0;
        max-width: 480px;
      }
      .mockup-img {
        display: block;
        height: auto;
        border-radius: 12px;
        flex-shrink: 0;
      }
      .mockup-phone {
        width: 140px;
      }
      .mockup-browser {
        width: 320px;
      }
      /* EXPLODED — 3D CSS perspective */
      .xsec {
        position: relative;
        height: 1000vh;
      }
      .xsticky {
        position: sticky;
        top: 0;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        gap: 56px;
      }
      .xcopy {
        max-width: 240px;
        flex-shrink: 0;
      }
      .x-title {
        font-size: clamp(26px, 3vw, 42px);
        font-weight: 800;
        line-height: 1.05;
        letter-spacing: -0.04em;
        margin-bottom: 12px;
        min-height: 2.4em;
      }
      .x-title em {
        font-weight: 300;
        font-style: italic;
        color: rgba(23, 21, 15, 0.38);
      }
      body.dk .x-title em {
        color: rgba(240, 237, 230, 0.34);
      }
      .x-desc {
        font-size: 14px;
        font-weight: 300;
        color: rgba(23, 21, 15, 0.48);
        line-height: 1.75;
        min-height: 4em;
      }
      body.dk .x-desc {
        color: rgba(240, 237, 230, 0.44);
      }
      /* 3D stage */
      .xstage3d {
        width: min(360px, 44vw);
        height: min(500px, 62vh);
        flex-shrink: 0;
        perspective: 1200px;
        perspective-origin: 50% 50%;
      }
      .xscene {
        width: 100%;
        height: 100%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .xdev-img {
        position: absolute;
        object-fit: contain;
        transition:
          opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
          transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        opacity: 0;
        pointer-events: none;
        transform: scale(0.96);
        filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.18))
          drop-shadow(0 6px 16px rgba(0, 0, 0, 0.1));
      }
      .xdev-img.ximg-on {
        opacity: 1;
        transform: scale(1);
      }
      .xdev-img.ximg-dim {
        opacity: 0.32;
        transform: scale(0.94);
      }
      /* component layers */
      .xlayer {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) translateY(30px);
        transition:
          transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
          opacity 0.7s ease;
        opacity: 0;
        pointer-events: none;
      }
      .xlayer svg {
        display: block;
      }
      /* annotation panel */
      .xannos {
        position: absolute;
        right: -180px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 160px;
      }
      .xanno {
        opacity: 0;
        transform: translateX(10px);
        transition:
          opacity 0.5s,
          transform 0.5s;
      }
      .xanno.vis {
        opacity: 1;
        transform: none;
      }
      .xanno-name {
        font-family: "Space Mono", monospace;
        font-size: 10px;
        color: rgba(23, 21, 15, 0.6);
        margin-bottom: 2px;
      }
      body.dk .xanno-name {
        color: rgba(240, 237, 230, 0.55);
      }
      .xanno-spec {
        font-size: 9px;
        color: rgba(23, 21, 15, 0.32);
        font-weight: 500;
      }
      body.dk .xanno-spec {
        color: rgba(240, 237, 230, 0.28);
      }
      /* CTA */
      .cta-sec {
        padding: 140px 8%;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      .cta-orb {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 500px;
        height: 260px;
        background: radial-gradient(
          ellipse,
          rgba(31, 138, 60, 0.07),
          transparent 70%
        );
        filter: blur(80px);
        pointer-events: none;
      }
      body.dk .cta-orb {
        background: radial-gradient(
          ellipse,
          rgba(57, 224, 117, 0.05),
          transparent 70%
        );
      }
      .cta-h {
        font-size: clamp(34px, 4.5vw, 58px);
        font-weight: 800;
        line-height: 1;
        letter-spacing: -0.04em;
        margin-bottom: 12px;
        position: relative;
        z-index: 1;
      }
      .cta-h em {
        font-weight: 300;
        font-style: italic;
        color: rgba(23, 21, 15, 0.35);
      }
      body.dk .cta-h em {
        color: rgba(240, 237, 230, 0.32);
      }
      .cta-sub {
        font-size: 15px;
        font-weight: 300;
        color: rgba(23, 21, 15, 0.44);
        margin-bottom: 30px;
        position: relative;
        z-index: 1;
      }
      body.dk .cta-sub {
        color: rgba(240, 237, 230, 0.42);
      }
      .cta-form {
        display: flex;
        gap: 8px;
        max-width: 380px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
      }
      .fi {
        flex: 1;
        padding: 12px 15px;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.09);
        border-radius: 8px;
        font-family: inherit;
        font-size: 14px;
        color: #17150f;
        outline: none;
        transition: border-color 0.2s;
      }
      body.dk .fi {
        background: #1a1814;
        border-color: rgba(255, 255, 255, 0.09);
        color: #f0ede6;
      }
      .fi::placeholder {
        color: rgba(23, 21, 15, 0.26);
      }
      body.dk .fi::placeholder {
        color: rgba(240, 237, 230, 0.22);
      }
      .fi:focus {
        border-color: rgba(0, 0, 0, 0.22);
      }
      .fb {
        padding: 12px 20px;
        background: #17150f;
        color: #f0ede8;
        border: none;
        border-radius: 8px;
        font-family: inherit;
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
        white-space: nowrap;
        transition: opacity 0.2s;
      }
      body.dk .fb {
        background: #f0ede6;
        color: #111009;
      }
      .fb:hover {
        opacity: 0.78;
      }
      .fb:disabled {
        opacity: 0.38;
        cursor: not-allowed;
      }
      .f-note {
        margin-top: 9px;
        font-size: 11px;
        color: rgba(23, 21, 15, 0.26);
        position: relative;
        z-index: 1;
      }
      body.dk .f-note {
        color: rgba(240, 237, 230, 0.2);
      }
      .f-ok {
        display: none;
        font-size: 14px;
        font-weight: 600;
        color: #1a7a34;
        position: relative;
        z-index: 1;
        margin-top: 9px;
      }
      body.dk .f-ok {
        color: #39e075;
      }
      footer {
        padding: 18px 44px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      body.dk footer {
        border-top-color: rgba(255, 255, 255, 0.05);
      }
      .f-logo {
        font-size: 13px;
        font-weight: 800;
        letter-spacing: -0.04em;
        color: rgba(23, 21, 15, 0.28);
      }
      body.dk .f-logo {
        color: rgba(240, 237, 230, 0.26);
      }
      .f-r {
        display: flex;
        gap: 16px;
        font-size: 11px;
        color: rgba(23, 21, 15, 0.26);
      }
      body.dk .f-r {
        color: rgba(240, 237, 230, 0.22);
      }
      .f-r a {
        color: inherit;
        text-decoration: none;
        transition: color 0.2s;
      }
      .f-r a:hover {
        color: #17150f;
      }
      body.dk .f-r a:hover {
        color: #f0ede6;
      }
      /* APP SECTION */
      .app-sec {
        padding: 120px 8%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: rgba(0, 0, 0, 0.02);
      }
      body.dk .app-sec {
        background: rgba(255, 255, 255, 0.018);
      }
      .app-sec-inner {
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
      }
      .app-sec .eyebrow {
        justify-content: center;
      }
      .app-sec .sec-h {
        margin-bottom: 16px;
      }
      .app-sec-sub {
        font-size: 16px;
        font-weight: 300;
        color: rgba(23, 21, 15, 0.42);
        line-height: 1.6;
        margin-bottom: 40px;
      }
      body.dk .app-sec-sub {
        color: rgba(240, 237, 230, 0.38);
      }
      .app-badges {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
      }
      .app-badge {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 22px 12px 16px;
        border: 1px solid rgba(23, 21, 15, 0.14);
        border-radius: 12px;
        text-decoration: none;
        color: rgba(23, 21, 15, 0.75);
        transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
      }
      body.dk .app-badge {
        border-color: rgba(255, 255, 255, 0.12);
        color: rgba(240, 237, 230, 0.65);
      }
      .app-badge:hover {
        border-color: rgba(23, 21, 15, 0.32);
        color: #17150f;
        background: rgba(23, 21, 15, 0.03);
        transform: translateY(-1px);
      }
      body.dk .app-badge:hover {
        border-color: rgba(255, 255, 255, 0.28);
        color: #f0ede6;
        background: rgba(255, 255, 255, 0.04);
      }
      .app-badge-icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
      }
      .app-badge-txt {
        display: flex;
        flex-direction: column;
      }
      .app-badge-line1 {
        font-size: 9px;
        letter-spacing: 0.06em;
        opacity: 0.5;
        line-height: 1;
        text-transform: uppercase;
      }
      .app-badge-line2 {
        font-size: 15px;
        font-weight: 700;
        letter-spacing: -0.03em;
        line-height: 1.3;
      }
      .rv {
        opacity: 0;
        transform: translateY(20px);
        transition:
          opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
          transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .rv.on {
        opacity: 1;
        transform: none;
      }
      .d1 {
        transition-delay: 0.1s;
      }
      .d2 {
        transition-delay: 0.2s;
      }
      .d3 {
        transition-delay: 0.32s;
      }
      /* ─ LIGHT / DARK — HERO & NAV ─ */
      .hero {
        background: #f0ede8;
      }
      body.dk .hero {
        background: #0a0908;
      }
      .hero-orb.orb1 {
        background: rgba(57, 224, 117, 0.15);
      }
      .hero-orb.orb2 {
        background: rgba(245, 166, 35, 0.12);
      }
      .hero-orb.orb3 {
        background: rgba(239, 68, 68, 0.1);
      }
      body.dk .hero-orb.orb1 {
        background: rgba(57, 224, 117, 0.08);
      }
      body.dk .hero-orb.orb2 {
        background: rgba(245, 166, 35, 0.06);
      }
      body.dk .hero-orb.orb3 {
        background: rgba(239, 68, 68, 0.05);
      }
      .hero-kicker {
        border-color: rgba(0, 0, 0, 0.1);
        background: rgba(0, 0, 0, 0.03);
        color: rgba(23, 21, 15, 0.55);
      }
      body.dk .hero-kicker {
        border-color: rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.04);
        color: rgba(255, 255, 255, 0.45);
      }
      .hero-h {
        color: #17150f;
      }
      body.dk .hero-h {
        color: #fff;
      }
      .hero-h .line2 {
        color: rgba(23, 21, 15, 0.28);
      }
      body.dk .hero-h .line2 {
        color: rgba(255, 255, 255, 0.38);
      }
      .hero-sub {
        color: rgba(23, 21, 15, 0.44);
      }
      body.dk .hero-sub {
        color: rgba(255, 255, 255, 0.42);
      }
      .btn-primary {
        background: #17150f;
        color: #f0ede8;
      }
      body.dk .btn-primary {
        background: #fff;
        color: #0e0d09;
      }
      .btn-primary:hover {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
      }
      body.dk .btn-primary:hover {
        box-shadow: 0 12px 40px rgba(255, 255, 255, 0.18);
      }
      .btn-ghost {
        color: rgba(23, 21, 15, 0.5);
        border-color: rgba(0, 0, 0, 0.12);
      }
      body.dk .btn-ghost {
        color: rgba(255, 255, 255, 0.5);
        border-color: rgba(255, 255, 255, 0.12);
      }
      .btn-ghost:hover {
        color: #17150f;
        border-color: rgba(0, 0, 0, 0.22);
      }
      body.dk .btn-ghost:hover {
        color: #fff;
        border-color: rgba(255, 255, 255, 0.3);
      }
      .hero-scroll span {
        color: #17150f;
      }
      body.dk .hero-scroll span {
        color: #fff;
      }
      .scroll-line {
        background: linear-gradient(
          to bottom,
          rgba(23, 21, 15, 0.3),
          transparent
        );
      }
      body.dk .scroll-line {
        background: linear-gradient(to bottom, #fff, transparent);
      }
      .logo {
        color: #17150f;
      }
      body.dk .logo {
        color: #fff;
      }
      nav.s {
        background: rgba(240, 237, 232, 0.88);
        border-bottom-color: rgba(0, 0, 0, 0.06);
      }
      body.dk nav.s {
        background: rgba(14, 13, 9, 0.72);
        border-bottom-color: rgba(255, 255, 255, 0.07);
      }
      .nav-lnk {
        color: rgba(23, 21, 15, 0.45);
      }
      body.dk .nav-lnk {
        color: rgba(255, 255, 255, 0.42);
      }
      .nav-lnk:hover {
        color: #17150f;
        background: rgba(0, 0, 0, 0.04);
      }
      body.dk .nav-lnk:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.08);
      }
      .mode-btn {
        border-color: rgba(0, 0, 0, 0.12);
        color: rgba(23, 21, 15, 0.4);
      }
      body.dk .mode-btn {
        border-color: rgba(255, 255, 255, 0.15);
        color: rgba(255, 255, 255, 0.4);
      }
      .mode-btn:hover {
        color: #17150f;
        background: rgba(0, 0, 0, 0.04);
      }
      body.dk .mode-btn:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.08);
      }
      .nav-cta {
        background: #17150f;
        color: #f0ede8;
      }
      body.dk .nav-cta {
        background: #fff;
        color: #0e0d09;
      }
      @media (max-width: 960px) {
        nav {
          padding: 0 20px;
        }
        .nav-lnk {
          display: none;
        }
        .nav-cta {
          padding: 9px 14px;
          font-size: 10px;
          letter-spacing: 0.05em;
        }
        .hero-kicker {
          font-size: 9px;
          padding: 5px 12px;
          text-align: center;
          white-space: normal;
          line-height: 1.5;
        }
        .hero-device-wrap img {
          height: min(260px, 36vh);
          width: auto;
        }
        .stats-inner {
          flex-wrap: nowrap;
        }
        .stat-item {
          min-width: 140px;
          padding: 14px 18px;
        }
        .sec {
          min-height: 100vh;
          padding: 64px 18px;
        }
        .led-grid {
          grid-template-columns: 1fr 1fr;
        }
        .dg {
          grid-template-columns: 1fr;
        }
        .how-g {
          flex-direction: column;
          gap: 40px;
        }
        .mockup-wrap {
          max-width: 100%;
          flex-wrap: wrap;
          gap: 16px;
        }
        .mockup-phone {
          width: 120px;
        }
        .mockup-browser {
          width: 260px;
        }
        .tod-copy {
          display: none;
        }
        .tod-dev img {
          height: min(200px, 28vh);
          width: auto;
        }
        .tod-badge {
          transform: translateY(calc(-50% - 120px));
        }
        .xsec {
          height: 800vh;
        }
        .xsticky {
          flex-direction: column;
          gap: 12px;
          padding-top: 0;
          align-items: center;
          justify-content: center;
        }
        .xcopy {
          max-width: 100%;
          padding: 0 18px;
          text-align: center;
        }
        .xcopy .eyebrow {
          justify-content: center;
        }
        .xstage3d {
          width: min(340px, 85vw);
          height: min(420px, 52vh);
        }
        .xannos {
          display: none;
        }
        .cta-sec {
          padding: 90px 18px;
        }
        .cta-form {
          flex-direction: column;
        }
        footer {
          padding: 14px 20px;
          flex-direction: column;
          gap: 8px;
          text-align: center;
        }
        .app-sec {
          padding: 80px 6%;
        }
      }
      @media (max-width: 480px) {
        nav {
          padding: 0 14px;
        }
        .nav-cta {
          padding: 8px 12px;
          font-size: 9px;
        }
        .mode-btn {
          width: 30px;
          height: 30px;
          font-size: 13px;
        }
        .hero-kicker {
          font-size: 8.5px;
          max-width: 90vw;
        }
        .hero-h {
          font-size: clamp(40px, 12vw, 52px);
        }
        .hero-sub {
          font-size: 13px;
        }
        .led-grid {
          grid-template-columns: 1fr;
        }
        .hero-cta-row {
          flex-direction: column;
          width: 100%;
          gap: 10px;
        }
        .btn-primary,
        .btn-ghost {
          width: 100%;
          justify-content: center;
          text-align: center;
        }
      }

      /* ── WAITLIST MODAL ── */
      .wl-modal-overlay {
        position: fixed;
        inset: 0;
        z-index: 9000;
        background: rgba(0, 0, 0, 0.55);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 24px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
      }
      .wl-modal-overlay.active {
        opacity: 1;
        visibility: visible;
      }
      .wl-modal {
        position: relative;
        background: #f8f6f2;
        border: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: 24px;
        padding: 56px 52px 48px;
        max-width: 500px;
        width: 100%;
        text-align: center;
        box-shadow: 0 32px 80px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.04);
        transform: translateY(28px) scale(0.95);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .wl-modal-overlay.active .wl-modal {
        transform: translateY(0) scale(1);
      }
      body.dk .wl-modal {
        background: #1a1814;
        border-color: rgba(255, 255, 255, 0.08);
        box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04);
      }
      .wl-modal-close {
        position: absolute;
        top: 18px;
        right: 20px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid rgba(0, 0, 0, 0.08);
        background: transparent;
        cursor: pointer;
        font-size: 22px;
        line-height: 1;
        color: rgba(23, 21, 15, 0.35);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s, color 0.2s;
      }
      .wl-modal-close:hover {
        background: rgba(0, 0, 0, 0.05);
        color: rgba(23, 21, 15, 0.7);
      }
      body.dk .wl-modal-close {
        border-color: rgba(255, 255, 255, 0.1);
        color: rgba(240, 237, 230, 0.4);
      }
      body.dk .wl-modal-close:hover {
        background: rgba(255, 255, 255, 0.06);
        color: rgba(240, 237, 230, 0.7);
      }
      .wl-modal-kicker {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: rgba(23, 21, 15, 0.35);
        margin-bottom: 22px;
      }
      body.dk .wl-modal-kicker {
        color: rgba(240, 237, 230, 0.3);
      }
      .wl-modal-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #39e075;
        box-shadow: 0 0 10px rgba(57, 224, 117, 0.8);
        animation: kpulse 2s ease-in-out infinite;
      }
      .wl-modal-title {
        font-size: clamp(30px, 4.5vw, 40px);
        font-weight: 800;
        line-height: 1.08;
        letter-spacing: -0.04em;
        margin-bottom: 14px;
        color: #17150f;
      }
      body.dk .wl-modal-title {
        color: #f0ede6;
      }
      .wl-modal-title em {
        font-weight: 300;
        font-style: italic;
        color: rgba(23, 21, 15, 0.35);
      }
      body.dk .wl-modal-title em {
        color: rgba(240, 237, 230, 0.32);
      }
      .wl-modal-sub {
        font-size: 15px;
        font-weight: 300;
        line-height: 1.65;
        color: rgba(23, 21, 15, 0.5);
        margin-bottom: 32px;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
      }
      body.dk .wl-modal-sub {
        color: rgba(240, 237, 230, 0.42);
      }
      .wl-modal-form {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .wl-modal-input {
        width: 100%;
        padding: 16px 20px;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        font-family: inherit;
        font-size: 15px;
        color: #17150f;
        outline: none;
        transition: border-color 0.2s, box-shadow 0.2s;
      }
      body.dk .wl-modal-input {
        background: #131110;
        border-color: rgba(255, 255, 255, 0.1);
        color: #f0ede6;
      }
      .wl-modal-input::placeholder {
        color: rgba(23, 21, 15, 0.26);
      }
      body.dk .wl-modal-input::placeholder {
        color: rgba(240, 237, 230, 0.22);
      }
      .wl-modal-input:focus {
        border-color: #39e075;
        box-shadow: 0 0 0 3px rgba(57, 224, 117, 0.12);
      }
      .wl-modal-submit {
        width: 100%;
        padding: 16px 24px;
        background: #17150f;
        color: #f0ede8;
        border: none;
        border-radius: 12px;
        font-family: inherit;
        font-size: 15px;
        font-weight: 700;
        cursor: pointer;
        white-space: nowrap;
        transition: opacity 0.2s, transform 0.2s;
      }
      body.dk .wl-modal-submit {
        background: #f0ede6;
        color: #111009;
      }
      .wl-modal-submit:hover {
        opacity: 0.85;
        transform: translateY(-1px);
      }
      .wl-modal-submit:disabled {
        opacity: 0.38;
        cursor: not-allowed;
        transform: none;
      }
      .wl-modal-note {
        margin-top: 16px;
        font-size: 12px;
        color: rgba(23, 21, 15, 0.24);
      }
      body.dk .wl-modal-note {
        color: rgba(240, 237, 230, 0.2);
      }
      .wl-modal-ok {
        display: none;
        font-size: 16px;
        font-weight: 600;
        color: #1a7a34;
        margin-top: 12px;
      }
      body.dk .wl-modal-ok {
        color: #39e075;
      }
      .wl-modal-launch {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-bottom: 20px;
        padding: 7px 16px;
        border-radius: 100px;
        background: rgba(57, 224, 117, 0.08);
        border: 1px solid rgba(57, 224, 117, 0.18);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.04em;
        color: #1a7a34;
      }
      body.dk .wl-modal-launch {
        background: rgba(57, 224, 117, 0.06);
        border-color: rgba(57, 224, 117, 0.15);
        color: #39e075;
      }
      @media (max-width: 520px) {
        .wl-modal-overlay {
          padding: 16px;
        }
        .wl-modal {
          padding: 44px 28px 36px;
          border-radius: 20px;
        }
        .wl-modal-title {
          font-size: 28px;
        }
      }

      /* ── ACCESSIBILITY ── */
      .skip-link {
        position: fixed;
        top: -100%;
        left: 16px;
        z-index: 9999;
        background: #17150f;
        color: #f0ede6;
        padding: 12px 24px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        transition: top 0.2s;
      }
      .skip-link:focus {
        top: 12px;
      }
      *:focus-visible {
        outline: 2px solid #39e075;
        outline-offset: 3px;
      }
      button:focus-visible,
      a:focus-visible,
      input:focus-visible {
        outline: 2px solid #39e075;
        outline-offset: 3px;
      }
      @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
          animation-duration: 0.01ms !important;
          animation-iteration-count: 1 !important;
          transition-duration: 0.01ms !important;
          scroll-behavior: auto !important;
        }
