/* Home and translated homepage layout. */
:root {
  --container: 1240px;
  --radius: 22px;
}

*,
      *::before,
      *::after {
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
        scroll-padding-top: 80px; /* clear the 64px sticky nav + breathing room */
      }
      @media (prefers-reduced-motion: reduce) {
        html {
          scroll-behavior: auto;
        }
        *,
        *::before,
        *::after {
          animation-duration: 0.001ms !important;
          animation-iteration-count: 1 !important;
          transition-duration: 0.001ms !important;
          scroll-behavior: auto !important;
        }
      }
      body {
        margin: 0;
        background:
          radial-gradient(
            ellipse 60% 40% at 15% 0%,
            rgba(102, 126, 234, 0.2),
            transparent 60%
          ),
          radial-gradient(
            ellipse 50% 35% at 85% 8%,
            rgba(255, 107, 157, 0.14),
            transparent 60%
          ),
          radial-gradient(
            circle at top left,
            #1b1d34 0,
            var(--bg-soft) 45%,
            var(--bg) 100%
          );
        color: var(--text);
        font-family: var(--font-sans);
        font-size: 1.05rem;
        line-height: 1.65;
        -webkit-font-smoothing: antialiased;
      }
      img {
        display: block;
        max-width: 100%;
      }
      a {
        color: inherit;
      }
      h1,
      h2,
      h3,
      h4 {
        font-weight: 800;
        margin: 0;
        text-wrap: balance;
        letter-spacing: -0.01em;
      }
      p {
        margin: 0;
      }
      ul {
        margin: 0;
        padding: 0;
        list-style: none;
      }
      button {
        font: inherit;
      }
      ::selection {
        background: var(--primary);
        color: #fff;
      }

      .wrap {
        max-width: var(--container);
        margin: 0 auto;
        padding-inline: var(--sp-4);
      }
      @media (max-width: 640px) {
        .wrap {
          padding-inline: var(--sp-3);
        }
      }

      .eyebrow {
        font-family: var(--font-mono);
        font-size: 0.72rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--primary);
        display: inline-flex;
        align-items: center;
        gap: 0.5em;
      }
      .eyebrow::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 8px 2px rgba(255, 107, 157, 0.7);
      }

      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5em;
        padding: 0.9em 1.7em;
        border-radius: 999px;
        font-size: 0.95rem;
        font-weight: 700;
        text-decoration: none;
        border: 1px solid transparent;
        cursor: pointer;
        transition:
          transform 0.2s ease,
          box-shadow 0.2s ease,
          border-color 0.2s ease,
          background 0.2s ease;
        white-space: nowrap;
      }
      .btn:focus-visible {
        outline: 3px solid var(--accent);
        outline-offset: 3px;
      }
      .btn-primary {
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: #fff;
        box-shadow: 0 15px 35px rgba(102, 126, 234, 0.45);
      }
      .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 20px 45px rgba(102, 126, 234, 0.6);
      }
      .btn-ghost {
        background: rgba(255, 255, 255, 0.04);
        color: var(--text);
        border-color: var(--border-strong);
      }
      .btn-ghost:hover {
        border-color: var(--primary);
        background: rgba(102, 126, 234, 0.1);
      }

      /* ---------- orbit blobs ---------- */
      .orbit {
        position: absolute;
        border-radius: 999px;
        filter: blur(60px);
        pointer-events: none;
        z-index: 0;
      }
      .orbit-primary {
        background: radial-gradient(
          circle,
          rgba(102, 126, 234, 0.55),
          transparent 65%
        );
      }
      .orbit-secondary {
        background: radial-gradient(
          circle,
          rgba(118, 75, 162, 0.5),
          transparent 65%
        );
      }
      .orbit-accent {
        background: radial-gradient(
          circle,
          rgba(255, 107, 157, 0.45),
          transparent 70%
        );
      }

      /* ---------- Nav ---------- */
      /* backdrop-filter lives on ::before, not the element itself — a filter/backdrop-filter
     on header would make it a containing block for position:fixed descendants (the mobile
     nav panel), breaking its full-viewport sizing. */
      header {
        position: sticky;
        top: 0;
        z-index: 100;
        border-bottom: 1px solid var(--border);
      }
      header::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        background: rgba(5, 5, 10, 0.72);
        backdrop-filter: blur(16px);
      }
      .nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-block: 1.1rem;
      }
      .wordmark {
        display: flex;
        align-items: center;
        gap: 0.65rem;
        text-decoration: none;
        color: var(--text);
      }
      .wordmark svg,
      .wordmark img {
        width: 32px;
        height: 32px;
        flex: none;
        border-radius: 8px;
      }
      .wordmark span {
        font-size: 1.3rem;
        font-weight: 800;
        letter-spacing: -0.01em;
      }
      .nav-links {
        display: flex;
        align-items: center;
        gap: var(--sp-4);
      }
      .nav-links a {
        font-size: 0.92rem;
        font-weight: 600;
        text-decoration: none;
        color: var(--text-soft);
      }
      .nav-links a:hover {
        color: var(--text);
      }
      .nav-links li:has(.btn-primary) {
        display: none;
      }
      .nav-actions {
        display: flex;
        align-items: center;
        gap: var(--sp-2);
      }
      .nav-burger {
        display: none;
        background: none;
        border: none;
        color: var(--text);
        cursor: pointer;
        padding: 0.4rem;
      }
      .nav-burger svg {
        width: 24px;
        height: 24px;
      }

      .lang-menu {
        position: relative;
      }
      .lang-toggle {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.5em 0.85em;
        border-radius: 999px;
        border: 1px solid var(--border-strong);
        background: rgba(255, 255, 255, 0.04);
        color: var(--text);
        cursor: pointer;
        font-size: 0.82rem;
        font-weight: 700;
      }
      .lang-toggle:hover {
        border-color: var(--primary);
      }
      .lang-toggle:focus-visible {
        outline: 2px solid var(--accent);
        outline-offset: 2px;
      }
      .lang-icon {
        width: 15px;
        height: 15px;
        flex: none;
      }
      .lang-menu-list {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        z-index: 120;
        background: var(--surface-strong);
        border: 1px solid var(--border-strong);
        border-radius: 14px;
        padding: 0.4rem;
        min-width: 150px;
        box-shadow: 0 20px 45px -15px rgba(0, 0, 0, 0.7);
        display: flex;
        flex-direction: column;
        gap: 0.15rem;
        backdrop-filter: blur(16px);
      }
      .lang-menu-list[hidden] {
        display: none;
      }
      .lang-menu-item {
        display: block;
        padding: 0.55em 0.8em;
        border-radius: 9px;
        color: var(--text-soft);
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 600;
      }
      .lang-menu-item:hover {
        background: rgba(255, 255, 255, 0.07);
        color: var(--text);
      }
      .lang-menu-item.is-active {
        color: var(--accent);
      }
      @media (max-width: 860px) {
        .nav-links {
          position: fixed;
          inset: 64px 0 0 0;
          background: var(--bg);
          z-index: 99;
          flex-direction: column;
          align-items: flex-start;
          padding: var(--sp-4);
          gap: var(--sp-3);
          transform: translateY(-8px);
          opacity: 0;
          pointer-events: none;
          transition: all 0.25s ease;
          border-top: 1px solid var(--border);
        }
        .nav-links.open {
          transform: translateY(0);
          opacity: 1;
          pointer-events: auto;
        }
        .nav-links a {
          font-size: 1.1rem;
        }
        .nav-burger {
          display: block;
        }
        .nav-actions .btn-primary {
          display: none;
        }
        .nav-links .btn-primary {
          display: inline-flex;
          margin-top: 0.5rem;
        }
      }

      section {
        position: relative;
        padding-block: var(--sp-16);
      }
      @media (max-width: 640px) {
        section {
          padding-block: var(--sp-8);
        }
      }

      .section-head {
        max-width: 60ch;
        margin-bottom: var(--sp-6);
      }
      .section-head h2 {
        font-size: clamp(1.9rem, 3.4vw, 2.7rem);
        margin-top: 0.6rem;
      }
      .section-head p {
        color: var(--text-muted);
        margin-top: var(--sp-2);
        font-size: 1.1rem;
      }
      .section-head.center {
        margin-inline: auto;
        text-align: center;
      }

      .badge-mark {
        display: flex;
        justify-content: center;
        margin-bottom: var(--sp-4);
      }
      .badge-mark img {
        width: min(340px, 70vw);
        height: auto;
        filter: drop-shadow(0 0 60px rgba(102, 126, 234, 0.35));
      }

      .social-proof {
        padding-block: 0 var(--sp-8);
      }
      .social-proof .wrap {
        display: flex;
        justify-content: center;
      }
      .social-proof img {
        width: min(300px, 60vw);
        height: auto;
        border-radius: 20px;
      }

      .reveal {
        transition:
          opacity 0.7s ease,
          transform 0.7s ease;
      }
      .reveal.pending {
        opacity: 0;
        transform: translateY(20px);
      }
      .reveal.in {
        opacity: 1;
        transform: none;
      }

      /* ---------- console frame (screenshot bezel) ---------- */
      .console {
        position: relative;
        border-radius: 20px;
        border: 1px solid var(--border-strong);
        background: linear-gradient(
          180deg,
          rgba(255, 255, 255, 0.06),
          rgba(255, 255, 255, 0.01)
        );
        box-shadow:
          0 40px 90px -30px rgba(0, 0, 0, 0.8),
          0 0 0 1px rgba(255, 255, 255, 0.03) inset;
        overflow: hidden;
      }
      .console-bar {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.7rem 1rem;
        border-bottom: 1px solid var(--border);
        background: rgba(255, 255, 255, 0.03);
      }
      .console-dot {
        width: 9px;
        height: 9px;
        border-radius: 50%;
      }
      .console-bar .console-label {
        margin-left: auto;
        font-family: var(--font-mono);
        font-size: 0.68rem;
        letter-spacing: 0.08em;
        color: var(--text-muted);
        display: flex;
        align-items: center;
        gap: 0.4em;
      }
      .console-bar .console-label::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--success);
        box-shadow: 0 0 6px 1px rgba(40, 199, 111, 0.8);
      }
      .console img {
        width: 100%;
        height: auto;
        display: block;
        cursor: zoom-in;
        transition: filter 0.25s ease;
      }
      .console img:hover,
      .console img:focus-visible {
        filter: brightness(1.06);
      }
      .console img:focus-visible {
        outline: 2px solid var(--accent);
        outline-offset: -2px;
      }
      .console-glow {
        position: absolute;
        inset: -40px;
        z-index: -1;
        filter: blur(50px);
        opacity: 0.55;
        background: linear-gradient(
          120deg,
          var(--primary),
          var(--secondary) 50%,
          var(--accent)
        );
      }

      /* ---------- Live demo banner ---------- */
      .demo-banner {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.65em;
        padding: 0.85em 1.5em;
        background: linear-gradient(
          90deg,
          rgba(102, 126, 234, 0.16),
          rgba(255, 107, 157, 0.16)
        );
        border-bottom: 1px solid var(--border);
        color: var(--text);
        text-decoration: none;
        font-size: 0.92rem;
        font-weight: 600;
        text-align: center;
        transition: background 0.2s ease;
      }
      .demo-banner:hover {
        background: linear-gradient(
          90deg,
          rgba(102, 126, 234, 0.26),
          rgba(255, 107, 157, 0.26)
        );
      }
      .demo-banner strong {
        background: linear-gradient(
          100deg,
          var(--primary),
          var(--secondary) 55%,
          var(--accent)
        );
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
      }
      .demo-banner-dot {
        width: 8px;
        height: 8px;
        flex: none;
        border-radius: 50%;
        background: var(--success);
        box-shadow: 0 0 0 0 rgba(40, 199, 111, 0.65);
        animation: demo-pulse 1.8s ease-out infinite;
      }
      @keyframes demo-pulse {
        0% {
          box-shadow: 0 0 0 0 rgba(40, 199, 111, 0.65);
        }
        70% {
          box-shadow: 0 0 0 10px rgba(40, 199, 111, 0);
        }
        100% {
          box-shadow: 0 0 0 0 rgba(40, 199, 111, 0);
        }
      }
      @media (prefers-reduced-motion: reduce) {
        .demo-banner-dot {
          animation: none;
        }
      }
      .demo-banner-arrow {
        flex: none;
      }
      @media (max-width: 640px) {
        .demo-banner {
          font-size: 0.85rem;
          padding: 0.7em 1em;
        }
      }

      /* ---------- Hero ---------- */
      .hero {
        padding-top: var(--sp-12);
        overflow: hidden;
      }
      .hero .orbit-primary {
        width: 420px;
        height: 420px;
        top: -140px;
        left: -120px;
      }
      .hero .orbit-accent {
        width: 320px;
        height: 320px;
        top: 120px;
        right: -100px;
      }
      .hero-inner {
        position: relative;
        z-index: 1;
        text-align: center;
        max-width: 840px;
        margin: 0 auto;
      }
      .hero h1 {
        font-size: clamp(2.6rem, 6vw, 4.6rem);
        line-height: 1.05;
        margin-top: var(--sp-3);
      }
      .hero h1 .grad {
        background: linear-gradient(
          100deg,
          var(--primary),
          var(--secondary) 55%,
          var(--accent)
        );
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
      }
      .hero .lede {
        margin-top: var(--sp-3);
        font-size: 1.2rem;
        color: var(--text-soft);
        max-width: 60ch;
        margin-inline: auto;
        line-height: 1.7;
      }
      .hero-ctas {
        display: flex;
        flex-wrap: wrap;
        gap: var(--sp-2);
        justify-content: center;
        margin-top: var(--sp-4);
      }
      .hero-note {
        margin-top: var(--sp-3);
        font-family: var(--font-mono);
        font-size: 0.7rem;
        letter-spacing: 0.1em;
        color: var(--text-muted);
      }

      .hero-console {
        margin-top: var(--sp-8);
        position: relative;
        z-index: 1;
        max-width: 1080px;
        margin-inline: auto;
      }
      .hero-console .console-glow {
        opacity: 0.4;
      }

      /* ---------- FOMO / network section ---------- */
      .network {
        background: linear-gradient(
          180deg,
          transparent,
          rgba(102, 126, 234, 0.05) 30%,
          rgba(255, 107, 157, 0.04) 70%,
          transparent
        );
      }
      .network-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--sp-8);
        align-items: center;
      }
      @media (max-width: 960px) {
        .network-grid {
          grid-template-columns: 1fr;
        }
      }
      .network-copy p {
        color: var(--text-soft);
        font-size: 1.08rem;
        line-height: 1.75;
      }
      .network-copy p + p {
        margin-top: 1.1rem;
      }
      .network-copy strong {
        color: var(--text);
      }
      .pillars-mini {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--sp-2);
        margin-top: var(--sp-4);
      }
      @media (max-width: 560px) {
        .pillars-mini {
          grid-template-columns: 1fr;
        }
      }
      .pillar-mini {
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.03);
      }
      .pillar-mini .t {
        font-weight: 700;
        font-size: 0.95rem;
      }
      .pillar-mini .d {
        color: var(--text-muted);
        font-size: 0.85rem;
        margin-top: 0.3rem;
      }

      .netviz {
        position: relative;
        aspect-ratio: 1/1;
        max-width: 480px;
        margin-inline: auto;
      }
      .netviz svg {
        width: 100%;
        height: 100%;
      }
      .netviz .node-label {
        font-family: var(--font-mono);
        font-size: 10px;
        fill: var(--text-soft);
        text-anchor: middle;
      }
      .netviz .ghost-label {
        fill: var(--text-muted);
      }
      .netviz .pulse {
        stroke-dasharray: 4 8;
        animation: dash 2.4s linear infinite;
      }
      @keyframes dash {
        to {
          stroke-dashoffset: -24;
        }
      }

      /* ---------- Problem ---------- */
      .scatter {
        display: flex;
        flex-wrap: wrap;
        gap: 0.6rem;
      }
      .scatter li {
        font-family: var(--font-mono);
        font-size: 0.78rem;
        padding: 0.55em 1em;
        border: 1px dashed var(--border-strong);
        border-radius: 8px;
        color: var(--text-muted);
        text-decoration: line-through;
        text-decoration-color: rgba(255, 76, 81, 0.5);
      }
      .problem-grid {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: var(--sp-8);
        align-items: center;
      }
      @media (max-width: 900px) {
        .problem-grid {
          grid-template-columns: 1fr;
        }
      }
      .unify {
        border-radius: var(--radius);
        background: linear-gradient(
          135deg,
          rgba(102, 126, 234, 0.18),
          rgba(118, 75, 162, 0.18)
        );
        border: 1px solid var(--border-strong);
        padding: var(--sp-4);
      }
      .unify h3 {
        font-size: 1.3rem;
      }
      .unify p {
        color: var(--text-soft);
        margin-top: 0.7rem;
      }
      .unify .tag {
        font-family: var(--font-mono);
        font-size: 0.72rem;
        color: var(--accent);
        margin-top: var(--sp-2);
        display: block;
        letter-spacing: 0.05em;
      }

      /* ---------- Spotlights ---------- */
      .spotlight {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--sp-8);
        align-items: center;
        padding-block: var(--sp-8);
      }
      .spotlight + .spotlight {
        border-top: 1px solid var(--border);
      }
      @media (max-width: 960px) {
        .spotlight {
          grid-template-columns: 1fr;
        }
      }
      .spotlight.reverse .spot-copy {
        order: 2;
      }
      .spotlight.reverse .spot-visual {
        order: 1;
      }
      @media (max-width: 960px) {
        .spotlight.reverse .spot-copy,
        .spotlight.reverse .spot-visual {
          order: 0;
        }
      }
      .spot-copy h3 {
        font-size: clamp(1.4rem, 2.4vw, 1.9rem);
        margin-top: 0.6rem;
      }
      .spot-copy p {
        color: var(--text-muted);
        margin-top: 0.9rem;
        font-size: 1.02rem;
        line-height: 1.7;
      }
      .spot-visual {
        position: relative;
      }

      /* ---------- Stat callout ---------- */
      .stat-callout {
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        padding-block: var(--sp-8);
      }
      .stat-callout .wrap {
        max-width: 780px;
      }
      .stat-callout h3 {
        font-size: clamp(1.4rem, 2.6vw, 1.9rem);
        margin-top: 0.6rem;
      }
      .stat-callout p {
        color: var(--text-soft);
        margin-top: 1.1rem;
        font-size: 1.05rem;
        line-height: 1.75;
      }
      .stat-figure {
        margin-top: var(--sp-4);
        text-align: center;
        padding: var(--sp-4);
        border-radius: var(--radius);
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border-strong);
      }
      .stat-figure .amount {
        display: block;
        font-size: clamp(1.8rem, 5vw, 3rem);
        font-weight: 800;
        letter-spacing: -0.01em;
        background: linear-gradient(
          100deg,
          var(--primary),
          var(--secondary) 55%,
          var(--accent)
        );
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
      }
      .stat-figure .caption {
        display: block;
        margin-top: 0.6rem;
        color: var(--text-muted);
        font-size: 0.92rem;
        line-height: 1.6;
      }
      .stat-figure a {
        color: var(--primary);
        font-weight: 600;
        text-decoration: none;
      }
      .stat-figure a:hover {
        text-decoration: underline;
      }

      /* ---------- Permit verification filmstrip ---------- */
      .showcase {
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        padding-block: var(--sp-8);
      }
      .showcase-head {
        max-width: 64ch;
      }
      .showcase-head .badge-new {
        display: inline-flex;
        align-items: center;
        font-family: var(--font-mono);
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #fff;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        padding: 0.3em 0.7em;
        border-radius: 999px;
        margin-left: 0.6em;
        vertical-align: middle;
      }
      .showcase-head h3 {
        font-size: clamp(1.4rem, 2.6vw, 1.9rem);
        margin-top: 0.6rem;
      }
      .showcase-head p {
        color: var(--text-muted);
        margin-top: 0.9rem;
        font-size: 1.02rem;
        line-height: 1.7;
        max-width: 62ch;
      }
      .showcase-head--split {
        max-width: none;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: var(--sp-6);
      }
      .showcase-head-copy {
        max-width: 64ch;
      }
      .showcase-qr {
        flex: 0 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.7rem;
      }
      .showcase-qr img {
        width: 180px;
        height: auto;
        border-radius: var(--radius);
        border: 1px solid var(--border-strong);
      }
      .showcase-qr-cta {
        max-width: 20ch;
        color: var(--text-muted);
        font-size: 0.88rem;
        line-height: 1.5;
      }
      .showcase-qr-link {
        display: none;
      }
      @media (max-width: 900px) {
        .showcase-head--split {
          flex-direction: column;
        }
        .showcase-qr {
          align-self: flex-start;
          flex-direction: row;
          flex-wrap: wrap;
          text-align: left;
          max-width: none;
        }
        .showcase-qr img {
          width: 150px;
        }
        .showcase-qr-cta {
          max-width: 32ch;
        }
        .showcase-qr-link {
          display: block;
          flex-basis: 100%;
          color: var(--primary);
          font-weight: 600;
          font-size: 0.92rem;
          text-decoration: none;
        }
        .showcase-qr-link:hover {
          text-decoration: underline;
        }
      }

      .fmd-shots {
        margin-top: var(--sp-4);
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--sp-4);
      }
      @media (max-width: 900px) {
        .fmd-shots {
          grid-template-columns: 1fr;
        }
      }
      .fmd-copy-grid {
        margin-top: var(--sp-6);
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--sp-4);
      }
      .fmd-copy-grid h4 {
        font-size: 1.05rem;
      }
      .fmd-copy-grid p {
        margin-top: 0.5rem;
        color: var(--text-muted);
        font-size: 0.95rem;
        line-height: 1.65;
      }
      @media (max-width: 900px) {
        .fmd-copy-grid {
          grid-template-columns: 1fr;
        }
      }
      .fmd-downloads {
        margin-top: var(--sp-6);
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: var(--sp-3);
      }
      .fmd-downloads-label {
        color: var(--text-muted);
        font-size: 0.92rem;
        margin-right: 0.3rem;
      }
      @media (max-width: 480px) {
        .fmd-downloads .btn {
          white-space: normal;
          text-align: center;
          width: 100%;
        }
      }
      .fmd-inbox {
        margin-top: var(--sp-4);
        display: flex;
        align-items: center;
        gap: var(--sp-4);
        flex-wrap: wrap;
      }
      .console-mini {
        width: 220px;
        flex: 0 0 auto;
      }
      .fmd-inbox-note {
        flex: 1 1 320px;
        color: var(--text-muted);
        font-size: 0.95rem;
        line-height: 1.65;
        font-style: italic;
      }
      @media (max-width: 640px) {
        .console-mini {
          width: 100%;
          max-width: 280px;
        }
      }

      .regulatory-extra {
        padding-bottom: var(--sp-8);
        border-bottom: 1px solid var(--border);
      }

      .market-extra {
        padding-bottom: var(--sp-8);
        border-bottom: 1px solid var(--border);
      }

      .academy-extra {
        padding-bottom: var(--sp-8);
      }
      .academy-extra > p {
        max-width: 74ch;
        color: var(--text-muted);
        font-size: 1.02rem;
        line-height: 1.7;
        margin-top: 1rem;
      }
      .academy-body {
        margin-top: var(--sp-6);
        display: flex;
        flex-direction: column;
        gap: var(--sp-6);
      }
      .academy-section {
        max-width: 74ch;
      }
      .academy-section h4 {
        font-size: 1.15rem;
      }
      .academy-section > p {
        margin-top: 0.7rem;
        color: var(--text-muted);
        font-size: 1rem;
        line-height: 1.7;
      }
      .academy-list {
        margin-top: 0.9rem;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.55rem 2rem;
        list-style: none;
        padding: 0;
      }
      .academy-list li {
        position: relative;
        padding-left: 1.5em;
        color: var(--text-soft);
        font-size: 0.97rem;
        line-height: 1.6;
      }
      .academy-list li::before {
        content: "✓";
        position: absolute;
        left: 0;
        top: 0;
        color: var(--accent);
        font-weight: 700;
      }
      @media (max-width: 760px) {
        .academy-list {
          grid-template-columns: 1fr;
        }
      }
      .academy-closing {
        margin-top: 1.2rem;
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--text);
        line-height: 1.6;
      }

      .filmstrip {
        margin-top: var(--sp-4);
        background: #050507;
        border: 1px solid var(--border-strong);
        border-radius: var(--radius);
        padding: 0 0 0.2rem;
        overflow: hidden;
      }
      .filmstrip-perf {
        height: 12px;
        background-image: radial-gradient(
          circle,
          rgba(255, 255, 255, 0.3) 2.2px,
          transparent 2.4px
        );
        background-size: 20px 12px;
        background-position: center;
      }
      .filmstrip-frames {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2px;
        background: #000;
      }
      @media (max-width: 760px) {
        .filmstrip-frames {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      .frame {
        position: relative;
        display: block;
        padding: 0;
        margin: 0;
        border: none;
        background: #000;
        cursor: zoom-in;
        aspect-ratio: 4/3;
        overflow: hidden;
      }
      .frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        filter: saturate(0.92) contrast(1.05);
        transition:
          transform 0.4s ease,
          filter 0.4s ease;
      }
      .frame:hover img,
      .frame:focus-visible img {
        transform: scale(1.06);
        filter: saturate(1.05) contrast(1.05);
      }
      .frame:focus-visible {
        outline: 2px solid var(--accent);
        outline-offset: -2px;
      }
      .frame-num {
        position: absolute;
        top: 0.6em;
        left: 0.6em;
        font-family: var(--font-mono);
        font-size: 0.68rem;
        letter-spacing: 0.06em;
        color: #fff;
        background: rgba(0, 0, 0, 0.55);
        padding: 0.2em 0.55em;
        border-radius: 999px;
      }
      .frame-cap {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 1.6em 0.7em 0.55em;
        font-size: 0.8rem;
        color: #fff;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent);
        text-align: left;
        font-weight: 600;
      }

      .lightbox {
        position: fixed;
        inset: 0;
        z-index: 200;
        background: rgba(2, 2, 6, 0.92);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: var(--sp-4);
      }
      .lightbox[hidden] {
        display: none;
      }
      .lightbox img {
        max-width: min(92vw, 1200px);
        max-height: 88vh;
        border-radius: 12px;
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
      }
      .lightbox-close {
        position: absolute;
        top: var(--sp-3);
        right: var(--sp-3);
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1px solid var(--border-strong);
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
        cursor: pointer;
      }
      .lightbox-close svg {
        width: 18px;
        height: 18px;
      }
      .lightbox-close:hover {
        background: rgba(255, 255, 255, 0.16);
      }
      .lightbox-close:focus-visible {
        outline: 2px solid var(--accent);
        outline-offset: 2px;
      }

      /* ---------- Global / built to travel ---------- */
      .chip-row {
        display: flex;
        flex-wrap: wrap;
        gap: 0.6rem;
      }
      .chip {
        font-family: var(--font-mono);
        font-size: 0.76rem;
        letter-spacing: 0.02em;
        padding: 0.55em 1.1em;
        border: 1px solid var(--border-strong);
        border-radius: 999px;
        color: var(--text-soft);
        background: rgba(255, 255, 255, 0.03);
      }

      /* ---------- Value chain ---------- */
      .chain-cloud {
        display: flex;
        flex-wrap: wrap;
        gap: 0.7rem;
      }
      .chain-cloud li {
        font-size: 0.92rem;
        font-weight: 600;
        padding: 0.65em 1.2em;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid var(--border);
      }

      /* ---------- Farmer-led ---------- */
      .ethos {
        text-align: center;
      }
      .ethos h2 {
        font-size: clamp(1.8rem, 3.6vw, 2.6rem);
        max-width: 28ch;
        margin-inline: auto;
        margin-top: 0.6rem;
        text-align: left;
      }
      .ethos p {
        margin-top: var(--sp-3);
        color: var(--text-soft);
        max-width: 64ch;
        margin-inline: auto;
        font-size: 1.1rem;
        text-align: justify;
      }

      /* ---------- Early access ---------- */
      .early {
        text-align: center;
      }
      .early .wrap {
        max-width: 720px;
      }
      .early-card {
        border-radius: var(--radius);
        border: 1px solid var(--border-strong);
        background: linear-gradient(
          160deg,
          rgba(102, 126, 234, 0.12),
          rgba(255, 107, 157, 0.08)
        );
        padding: var(--sp-6) var(--sp-4);
        text-align: left;
      }
      .early-card .section-head {
        margin-inline: auto;
        text-align: center;
        max-width: 52ch;
      }
      .early-form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-top: var(--sp-4);
      }
      @media (max-width: 640px) {
        .early-form {
          grid-template-columns: 1fr;
        }
      }
      .early-form .full {
        grid-column: 1/-1;
      }
      .field label {
        display: block;
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--text-soft);
        margin-bottom: 0.4rem;
      }
      .field input,
      .field select,
      .field textarea {
        width: 100%;
        font: inherit;
        font-size: 0.95rem;
        padding: 0.85em 1em;
        border-radius: 12px;
        border: 1px solid var(--border-strong);
        background: rgba(5, 5, 10, 0.5);
        color: var(--text);
      }
      .field input:focus-visible,
      .field select:focus-visible,
      .field textarea:focus-visible {
        outline: 2px solid var(--primary);
        outline-offset: 1px;
      }
      .field textarea {
        resize: vertical;
        min-height: 80px;
      }
      .early-submit {
        margin-top: var(--sp-3);
        display: flex;
        align-items: center;
        gap: var(--sp-2);
        flex-wrap: wrap;
      }
      .early-status {
        font-size: 0.9rem;
        color: var(--text-muted);
      }
      .early-domains {
        margin-top: var(--sp-4);
        display: flex;
        gap: var(--sp-2);
        justify-content: center;
        flex-wrap: wrap;
      }

      /* ---------- Footer ---------- */
      footer {
        border-top: 1px solid var(--border);
        padding-block: var(--sp-8) var(--sp-4);
      }
      .footer-top {
        display: flex;
        justify-content: space-between;
        gap: var(--sp-6);
        flex-wrap: wrap;
        padding-bottom: var(--sp-6);
        border-bottom: 1px solid var(--border);
      }
      .footer-brand p {
        margin-top: 0.8rem;
        color: var(--text-muted);
        font-size: 0.92rem;
        max-width: 34ch;
      }
      .footer-cols {
        display: flex;
        gap: var(--sp-8);
        flex-wrap: wrap;
      }
      .footer-col h4 {
        font-family: var(--font-mono);
        font-size: 0.7rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: var(--sp-2);
      }
      .footer-col ul {
        display: flex;
        flex-direction: column;
        gap: 0.55rem;
      }
      .footer-col a {
        font-size: 0.92rem;
        color: var(--text-muted);
        text-decoration: none;
      }
      .footer-col a:hover {
        color: var(--text);
      }
      /* ---------- Levy-impact section ---------- */
      .levy {        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
      }
      .levy .wrap {
        max-width: 800px;
      }
      .levy h2 {
        font-size: clamp(1.9rem, 3.8vw, 2.8rem);
        margin-top: 0.6rem;
        letter-spacing: -0.02em;
      }
      .levy h3 {
        font-size: 1.15rem;
        margin-top: var(--sp-6);
        color: var(--text);
      }
      .levy p {
        margin-top: var(--sp-3);
        color: var(--text-soft);
        font-size: 1.05rem;
        line-height: 1.75;
      }
      .levy-stat-grid {
        margin-top: var(--sp-4);
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: var(--sp-3);
      }
      .levy-stat {
        background: rgba(255,255,255,0.03);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: var(--sp-3) var(--sp-3);
      }
      .levy-stat-figure {
        font-size: 1.45rem;
        font-weight: 800;
        color: var(--primary);
        letter-spacing: -0.02em;
        display: block;
      }
      .levy-stat-label {
        display: block;
        margin-top: 0.25rem;
        font-size: 0.82rem;
        color: var(--text-muted);
        font-family: var(--font-mono);
        text-transform: uppercase;
        letter-spacing: 0.08em;
      }
      .levy-image-frame {
        margin-top: var(--sp-6);
        border-radius: var(--radius);
        overflow: hidden;
        border: 1px solid var(--border);
        max-width: 560px;
        margin-inline: auto;
      }
      .levy-image-frame img {
        width: 100%;
        height: auto;
        display: block;
      }
      .levy-image-caption {
        text-align: center;
        font-size: 0.82rem;
        color: var(--text-muted);
        font-family: var(--font-mono);
        margin-top: 0.75rem;
        letter-spacing: 0.04em;
      }
      .levy-blockquote {
        margin: var(--sp-6) 0 0;
        border-left: 3px solid var(--accent);
        padding: var(--sp-3) var(--sp-4);
        background: rgba(255,107,157,0.06);
        border-radius: 0 12px 12px 0;
        color: var(--text-soft);
        font-size: 1.08rem;
        font-style: italic;
        line-height: 1.75;
      }
      .levy-privacy {
        margin-top: var(--sp-6);
        background: rgba(102,126,234,0.07);
        border: 1px solid var(--border-strong);
        border-radius: 14px;
        padding: var(--sp-3) var(--sp-4);
        font-size: 0.92rem;
        color: var(--text-muted);
        line-height: 1.65;
      }
      .levy-privacy strong {
        color: var(--text-soft);
      }
      .levy-ctas {
        margin-top: var(--sp-5);
        display: flex;
        flex-wrap: wrap;
        gap: var(--sp-2);
        align-items: center;
      }
      .levy-ctas .btn {
        gap: 0.6em;
      }
      .btn-outline {
        background: transparent;
        color: var(--text);
        border-color: var(--border-strong);
      }
      .btn-outline:hover {
        border-color: var(--primary);
        background: rgba(102,126,234,0.08);
      }
      .btn-outline span,
      .btn-ghost span {
        font-size: 0.78rem;
        font-weight: 400;
        opacity: 0.6;
        font-family: var(--font-mono);
      }
      @media (max-width: 600px) {
        .levy-ctas {
          flex-direction: column;
          align-items: stretch;
        }
        .levy-ctas .btn {
          justify-content: center;
          white-space: normal;
          text-align: center;
        }
        .levy-stat-grid {
          grid-template-columns: 1fr;
        }
      }

      .footer-placeholder {
        font-size: 0.92rem;
        color: rgba(255, 255, 255, 0.3);
      }
      .footer-bottom {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: var(--sp-2);
        padding-top: var(--sp-4);
        font-size: 0.72rem;
        color: var(--text-muted);
        font-family: var(--font-mono);
        letter-spacing: 0.04em;
      }
