    :root {
      --bg: #080c10;
      --bg2: #0d1219;
      --bg3: #111822;
      --surface: #141c26;
      --surface2: #1a2535;
      --border: rgba(255,255,255,0.07);
      --accent: #00d4aa;
      --accent2: #0097ff;
      --accent3: #ff6b35;
      --text: #e8edf4;
      --text2: #8fa3bc;
      --text3: #4d6480;
      --gold: #f0b429;
      --red: #ff4d4d;
      --green: #00d4aa;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ── NOISE OVERLAY ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.4;
    }

    /* ── SCROLLBAR ── */
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

    /* ══════════════════════════════
       NAV
    ══════════════════════════════ */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5vw;
      height: 68px;
      background: rgba(8,12,16,0.85);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.2rem;
      letter-spacing: -0.02em;
      color: var(--text);
    }
    .nav-logo-image {
      display: block;
      width: 128px;
      height: 42px;
      object-fit: contain;
      object-position: center;
      border-radius: 8px;
      mix-blend-mode: screen;
      filter: drop-shadow(0 0 14px rgba(0, 212, 255, 0.16));
      opacity: 0.94;
    }
    .logo-text {
      display: flex;
      align-items: baseline;
      gap: 4px;
      white-space: nowrap;
    }
    .logo-mark {
      width: 34px; height: 34px;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      border-radius: 8px;
      display: grid;
      place-items: center;
      font-size: 0.85rem;
      font-weight: 800;
      color: #fff;
    }
    .logo span { color: var(--accent); }

    .nav-links {
      display: flex;
      gap: 2px;
      list-style: none;
    }
    .nav-links a {
      display: block;
      padding: 7px 16px;
      border-radius: 6px;
      color: var(--text2);
      text-decoration: none;
      font-size: 0.875rem;
      font-weight: 500;
      transition: color .2s, background .2s;
    }
    .nav-links a:hover, .nav-links a.active {
      color: var(--text);
      background: var(--surface);
    }

    .nav-cta {
      display: flex;
      gap: 10px;
      align-items: center;
      min-width: 42px;
      justify-content: flex-end;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 20px;
      border-radius: 7px;
      font-size: 0.875rem;
      font-weight: 500;
      cursor: pointer;
      text-decoration: none;
      transition: all .2s;
      border: none;
    }
    .btn-ghost {
      background: transparent;
      border: 1px solid var(--border);
      color: var(--text2);
    }
    .btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
    .btn-primary {
      background: var(--accent);
      color: #000;
      font-weight: 600;
    }
    .btn-primary:hover { background: #00efc0; transform: translateY(-1px); }

    /* hamburger */
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
    .hamburger span { display: block; width: 22px; height: 2px; background: var(--text2); border-radius: 2px; transition: all .3s; }

    /* ══════════════════════════════
       PAGE SECTIONS
    ══════════════════════════════ */
    .page { display: none; padding-top: 68px; min-height: 100vh; }
    .page.active { display: block; }

    /* ══════════════════════════════
       HERO
    ══════════════════════════════ */
    .hero {
      position: relative;
      min-height: calc(100vh - 68px);
      display: flex;
      align-items: center;
      padding: 80px 5vw 60px;
      overflow: hidden;
    }

    /* Animated gradient orbs */
    .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.18;
      animation: float 12s ease-in-out infinite;
    }
    .orb-1 { width: 600px; height: 600px; background: var(--accent); top: -200px; right: -100px; animation-delay: 0s; }
    .orb-2 { width: 400px; height: 400px; background: var(--accent2); bottom: -100px; left: 10%; animation-delay: -4s; }
    .orb-3 { width: 300px; height: 300px; background: var(--accent3); top: 30%; right: 20%; animation-delay: -8s; }

    @keyframes float {
      0%, 100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-30px) scale(1.05); }
    }

    /* grid lines bg */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
    }

    .hero-content {
      position: relative;
      max-width: 760px;
      z-index: 2;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 5px 14px 5px 8px;
      background: rgba(0,212,170,0.1);
      border: 1px solid rgba(0,212,170,0.25);
      border-radius: 100px;
      font-size: 0.78rem;
      font-weight: 500;
      color: var(--accent);
      margin-bottom: 28px;
      animation: fadeUp .6s ease forwards;
    }
    .hero-badge .dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }

    .hero h1 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 800;
      line-height: 1.06;
      letter-spacing: -0.03em;
      margin-bottom: 24px;
      animation: fadeUp .6s ease .1s both;
    }
    .hero h1 em { font-style: normal; color: var(--accent); }
    .hero h1 .line2 { color: var(--text2); }

    .hero p {
      font-size: 1.15rem;
      color: var(--text2);
      line-height: 1.7;
      max-width: 560px;
      margin-bottom: 40px;
      font-weight: 300;
      animation: fadeUp .6s ease .2s both;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      animation: fadeUp .6s ease .3s both;
    }
    .btn-lg { padding: 14px 28px; font-size: 0.95rem; border-radius: 9px; }

    @keyframes fadeUp { from{opacity:0;transform:translateY(20px);} to{opacity:1;transform:translateY(0);} }

    /* TICKER */
    .ticker-wrap {
      margin-top: 72px;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 14px 0;
      overflow: hidden;
      position: relative;
      animation: fadeUp .6s ease .5s both;
    }
    .ticker-wrap::before, .ticker-wrap::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      width: 80px;
      z-index: 2;
    }
    .ticker-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
    .ticker-wrap::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }

    .ticker {
      display: flex;
      gap: 48px;
      white-space: nowrap;
      animation: ticker 30s linear infinite;
      width: max-content;
    }
    @keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

    .ticker-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.85rem;
      font-weight: 500;
    }
    .ticker-item .sym { color: var(--text2); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
    .ticker-item .val { color: var(--text); font-weight: 600; }
    .ticker-item .chg { font-size: 0.78rem; padding: 2px 7px; border-radius: 4px; }
    .up { background: rgba(0,212,170,0.15); color: var(--green); }
    .dn { background: rgba(255,77,77,0.15); color: var(--red); }

    /* ══════════════════════════════
       CINEMATIC TRCON HERO
    ══════════════════════════════ */
    .tr-hero {
      min-height: calc(100vh - 68px);
      padding: 0 5vw 84px;
      justify-content: center;
      isolation: isolate;
      background:
        radial-gradient(circle at 18% 12%, rgba(200,150,12,0.16), transparent 28%),
        radial-gradient(circle at 82% 78%, rgba(0,212,255,0.12), transparent 26%),
        linear-gradient(180deg, #020408 0%, #050b14 54%, var(--bg) 100%);
    }
    .tr-hero::before { display: none; }
    .tr-neural-canvas,
    .tr-grid-overlay,
    .tr-scan-lines,
    .tr-hero-glow,
    .tr-corner {
      position: absolute;
      pointer-events: none;
    }
    .tr-neural-canvas {
      inset: 0;
      z-index: 0;
    }
    .tr-grid-overlay {
      inset: 0;
      z-index: 1;
      background-image:
        linear-gradient(rgba(0,212,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,212,255,0.06) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 78% at 50% 50%, black 30%, transparent 100%);
    }
    .tr-scan-lines {
      inset: 0;
      z-index: 2;
      background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.08) 2px, rgba(0,0,0,0.08) 4px);
      opacity: 0.8;
    }
    .tr-hero-glow {
      border-radius: 50%;
      filter: blur(80px);
      z-index: 0;
    }
    .tr-glow-1 {
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(200,150,12,0.13), transparent 70%);
      top: -110px;
      left: -110px;
      animation: trOrbDrift 15s ease-in-out infinite alternate;
    }
    .tr-glow-2 {
      width: 420px;
      height: 420px;
      background: radial-gradient(circle, rgba(0,212,255,0.10), transparent 70%);
      right: -120px;
      bottom: -110px;
      animation: trOrbDrift 18s ease-in-out infinite alternate-reverse;
    }
    .tr-glow-3 {
      width: 280px;
      height: 280px;
      background: radial-gradient(circle, rgba(200,150,12,0.08), transparent 70%);
      right: 12%;
      top: 38%;
      animation: trOrbDrift 22s ease-in-out infinite alternate;
    }
    @keyframes trOrbDrift {
      from { transform: translate(0, 0) scale(1); }
      to { transform: translate(54px, 38px) scale(1.08); }
    }
    .tr-status-bar {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 44px;
      z-index: 5;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 28px;
      background: rgba(2,4,8,0.72);
      border-bottom: 1px solid rgba(200,150,12,0.22);
      backdrop-filter: blur(10px);
      animation: trFadeIn 1.2s ease both;
    }
    .tr-status-brand {
      font-family: 'Orbitron', monospace;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 4px;
      color: #ffd700;
    }
    .tr-status-items {
      display: flex;
      align-items: center;
      gap: 28px;
    }
    .tr-status-item,
    .tr-status-time {
      font-family: 'Share Tech Mono', monospace;
      font-size: 10px;
      letter-spacing: 1px;
      color: rgba(240,244,255,0.58);
      white-space: nowrap;
    }
    .tr-status-time {
      color: #c8960c;
      letter-spacing: 2px;
    }
    .tr-status-dot {
      width: 6px;
      height: 6px;
      display: inline-block;
      margin-right: 7px;
      border-radius: 50%;
      background: #00ff88;
      box-shadow: 0 0 8px #00ff88;
      animation: pulse 2s ease-in-out infinite;
    }
    .tr-corner {
      width: 60px;
      height: 60px;
      z-index: 4;
      animation: trFadeIn 1.6s ease both;
    }
    .tr-corner svg { width: 100%; height: 100%; }
    .tr-corner.tl { top: 58px; left: 18px; }
    .tr-corner.tr { top: 58px; right: 18px; transform: scaleX(-1); }
    .tr-corner.bl { bottom: 48px; left: 18px; transform: scaleY(-1); }
    .tr-corner.br { bottom: 48px; right: 18px; transform: scale(-1); }
    .tr-stage {
      position: relative;
      z-index: 3;
      width: min(980px, 100%);
      min-height: calc(100vh - 190px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding-top: 44px;
    }
    .tr-logo-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      animation: trLogoReveal 1.35s cubic-bezier(0.16, 1, 0.3, 1) both;
    }
    @keyframes trLogoReveal {
      from { opacity: 0; transform: translateY(36px) scale(0.94); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }
    @keyframes trFadeIn {
      to { opacity: 1; }
    }
    .tr-hex-icon {
      position: relative;
      width: clamp(108px, 13vw, 140px);
      height: clamp(108px, 13vw, 140px);
      margin-bottom: 28px;
      animation: trHexFloat 6s ease-in-out infinite;
    }
    @keyframes trHexFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    .tr-hex-svg {
      width: 100%;
      height: 100%;
      filter: drop-shadow(0 0 20px rgba(200,150,12,0.6)) drop-shadow(0 0 50px rgba(200,150,12,0.3));
    }
    .tr-hex-inner-text {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      font-family: 'Orbitron', monospace;
      font-weight: 900;
      font-size: 28px;
      letter-spacing: 1px;
      color: #ffd700;
      text-shadow: 0 0 20px #c8960c, 0 0 40px rgba(200,150,12,0.5);
    }
    .tr-ring {
      position: absolute;
      border-radius: 50%;
      border: 1px solid transparent;
    }
    .tr-ring-1 {
      width: 114%;
      height: 114%;
      inset: -7%;
      border-top-color: #c8960c;
      border-right-color: #8b6914;
      animation: trSpin 8s linear infinite;
    }
    .tr-ring-2 {
      width: 132%;
      height: 132%;
      inset: -16%;
      border-bottom-color: #00d4ff;
      border-left-color: #006880;
      animation: trSpinReverse 12s linear infinite;
    }
    .tr-ring-3 {
      width: 150%;
      height: 150%;
      inset: -25%;
      border-top-color: rgba(200,150,12,0.3);
      border-bottom-color: rgba(0,212,255,0.3);
      animation: trSpin 20s linear infinite;
    }
    @keyframes trSpin { to { transform: rotate(360deg); } }
    @keyframes trSpinReverse { to { transform: rotate(-360deg); } }
    .tr-wordmark {
      font-family: 'Orbitron', monospace;
      font-weight: 900;
      font-size: clamp(3.25rem, 8vw, 5.5rem);
      line-height: 1;
      letter-spacing: clamp(8px, 1.5vw, 16px);
      text-transform: uppercase;
    }
    .tr-wordmark-tr {
      color: #ffd700;
      text-shadow: 0 0 10px #c8960c, 0 0 30px rgba(200,150,12,0.62), 0 0 70px rgba(200,150,12,0.32);
    }
    .tr-wordmark-con {
      color: #f0f4ff;
      text-shadow: 0 0 10px rgba(240,244,255,0.5), 0 0 30px rgba(0,212,255,0.32);
    }
    .tr-tagline-bar {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 18px;
      animation: fadeUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
      animation-delay: 0.35s;
      opacity: 0;
    }
    .tr-tag-line {
      width: 50px;
      height: 1px;
      background: linear-gradient(90deg, transparent, #c8960c);
    }
    .tr-tag-line.right {
      background: linear-gradient(90deg, #c8960c, transparent);
    }
    .tr-tagline-text,
    .tr-full-name {
      font-family: 'Rajdhani', sans-serif;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .tr-tagline-text {
      font-weight: 600;
      font-size: clamp(0.7rem, 1.5vw, 0.9rem);
      letter-spacing: 4px;
      color: #c8960c;
    }
    .tr-full-name {
      margin-top: 8px;
      font-weight: 300;
      font-size: clamp(0.66rem, 1.2vw, 0.82rem);
      letter-spacing: 3px;
      color: rgba(200,150,12,0.58);
      animation: fadeUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
      animation-delay: 0.55s;
      opacity: 0;
    }
    .tr-hero-copy {
      width: min(680px, 92vw);
      margin-top: 24px;
      color: rgba(232,237,244,0.78);
      font-size: clamp(1rem, 1.8vw, 1.18rem);
      line-height: 1.65;
      font-weight: 300;
      animation: fadeUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
      animation-delay: 0.75s;
      opacity: 0;
    }
    .tr-actions {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
      animation: fadeUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
      animation-delay: 0.95s;
      opacity: 0;
    }
    .tr-divider {
      width: min(600px, 80vw);
      height: 1px;
      margin: 40px 0 34px;
      background: linear-gradient(90deg, transparent, #006880, #c8960c, #006880, transparent);
      position: relative;
      animation: fadeUp 1.4s ease both;
      animation-delay: 1.05s;
      opacity: 0;
    }
    .tr-divider::before,
    .tr-divider::after {
      content: '';
      position: absolute;
      top: -3px;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #c8960c;
      box-shadow: 0 0 10px #c8960c;
    }
    .tr-divider::before { left: 0; }
    .tr-divider::after { right: 0; }
    .tr-pillars {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: clamp(18px, 4vw, 54px);
      animation: fadeUp 1.4s ease both;
      animation-delay: 1.15s;
      opacity: 0;
    }
    .tr-pillar {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      transition: transform .25s ease;
    }
    .tr-pillar:hover { transform: translateY(-5px); }
    .tr-pillar-icon {
      width: 48px;
      height: 48px;
      border: 1px solid #8b6914;
      border-radius: 8px;
      display: grid;
      place-items: center;
      background: rgba(200,150,12,0.06);
      position: relative;
      overflow: hidden;
    }
    .tr-pillar:hover .tr-pillar-icon {
      border-color: #c8960c;
      box-shadow: 0 0 20px rgba(200,150,12,0.3), inset 0 0 20px rgba(200,150,12,0.05);
    }
    .tr-pillar-icon svg {
      width: 24px;
      height: 24px;
      stroke: #c8960c;
      fill: none;
      stroke-width: 1.5;
    }
    .tr-pillar-label {
      font-family: 'Rajdhani', sans-serif;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 2px;
      line-height: 1.25;
      text-transform: uppercase;
      color: rgba(200,150,12,0.76);
      text-align: center;
    }
    .tr-hero .ticker-wrap {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 38px;
      margin-top: 0;
      padding: 0;
      display: flex;
      align-items: center;
      background: rgba(2,4,8,0.92);
      border-color: rgba(200,150,12,0.25);
      z-index: 5;
    }
    .tr-hero .ticker-wrap::before { background: linear-gradient(90deg, #020408, transparent); }
    .tr-hero .ticker-wrap::after { background: linear-gradient(-90deg, #020408, transparent); }
    .tr-hero .ticker {
      gap: 0;
      animation-duration: 32s;
    }
    .tr-hero .ticker-item {
      gap: 8px;
      padding: 0 24px;
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.72rem;
      color: rgba(240,244,255,0.62);
      letter-spacing: 1px;
    }
    .tr-hero .ticker-item .sym {
      color: rgba(240,244,255,0.62);
      font-size: 0.68rem;
      letter-spacing: 1.5px;
    }
    .tr-hero .ticker-item .val {
      color: #c8960c;
      font-weight: 500;
    }
    .tr-data-node {
      position: absolute;
      z-index: 2;
      font-family: 'Share Tech Mono', monospace;
      font-size: 9px;
      color: rgba(0,212,255,0.42);
      letter-spacing: 1px;
      pointer-events: none;
      animation: trNodeFloat linear forwards;
    }
    @keyframes trNodeFloat {
      0% { opacity: 0; transform: translateY(0); }
      10%, 88% { opacity: 1; }
      100% { opacity: 0; transform: translateY(-120px); }
    }

    /* ══════════════════════════════
       SECTIONS COMMONS
    ══════════════════════════════ */
    section {
      padding: 80px 5vw;
    }
    .section-label {
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--accent);
      margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.025em;
      margin-bottom: 16px;
    }
    .section-sub {
      color: var(--text2);
      font-size: 1.05rem;
      line-height: 1.7;
      max-width: 560px;
      font-weight: 300;
    }
    .divider { height: 1px; background: var(--border); margin: 0; }

    /* ══════════════════════════════
       CARDS GRID
    ══════════════════════════════ */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 16px;
      margin-top: 48px;
    }
    .card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 28px;
      transition: border-color .25s, transform .25s;
      cursor: default;
    }
    .card:hover {
      border-color: rgba(0,212,170,0.3);
      transform: translateY(-3px);
    }
    .card-icon {
      width: 44px; height: 44px;
      border-radius: 10px;
      display: grid;
      place-items: center;
      font-size: 1.25rem;
      margin-bottom: 18px;
    }
    .card h3 {
      font-family: 'Syne', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .card p {
      color: var(--text2);
      font-size: 0.9rem;
      line-height: 1.65;
      font-weight: 300;
    }
    .card-tag {
      display: inline-block;
      margin-top: 16px;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--accent);
    }

    /* ══════════════════════════════
       MARKET INSIGHTS (HOME)
    ══════════════════════════════ */
    .insights-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 48px;
    }
    @media(max-width:768px){ .insights-grid{grid-template-columns:1fr;} }

    .insight-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 28px;
      transition: border-color .25s;
    }
    .insight-card:hover { border-color: rgba(0,212,170,0.25); }
    .insight-card.featured {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      align-items: center;
      background: linear-gradient(135deg, var(--surface), var(--surface2));
    }
    @media(max-width:600px){ .insight-card.featured{grid-template-columns:1fr;} }

    .insight-tag {
      font-size: 0.72rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: 3px 10px;
      border-radius: 4px;
      display: inline-block;
      margin-bottom: 14px;
    }
    .tag-green { background: rgba(0,212,170,0.15); color: var(--accent); }
    .tag-blue { background: rgba(0,151,255,0.15); color: var(--accent2); }
    .tag-orange { background: rgba(255,107,53,0.15); color: var(--accent3); }
    .tag-gold { background: rgba(240,180,41,0.15); color: var(--gold); }

    .insight-card h3 {
      font-family: 'Syne', sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 10px;
    }
    .insight-card p {
      color: var(--text2);
      font-size: 0.88rem;
      line-height: 1.65;
      font-weight: 300;
    }
    .insight-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 18px;
      font-size: 0.78rem;
      color: var(--text3);
    }
    .insight-meta span { display: flex; align-items: center; gap: 5px; }
    .content-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 18px;
      color: var(--accent);
      font-size: 0.82rem;
      font-weight: 600;
      text-decoration: none;
      transition: color .2s, transform .2s;
    }
    .content-link:hover {
      color: #00efc0;
      transform: translateX(2px);
    }

    /* Mini chart bars */
    .mini-chart {
      display: flex;
      align-items: flex-end;
      gap: 4px;
      height: 60px;
    }
    .bar {
      flex: 1;
      border-radius: 3px 3px 0 0;
      transition: opacity .2s;
    }
    .bar:hover { opacity: 0.8; }

    /* ══════════════════════════════
       MARKET TABLE
    ══════════════════════════════ */
    .market-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 32px;
      font-size: 0.9rem;
    }
    .market-table th {
      text-align: left;
      padding: 10px 16px;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text3);
      border-bottom: 1px solid var(--border);
    }
    .market-table td {
      padding: 14px 16px;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      color: var(--text2);
    }
    .market-table tr:hover td { background: rgba(255,255,255,0.02); }
    .market-table .asset-name { color: var(--text); font-weight: 500; }
    .market-table .rec {
      font-size: 0.78rem;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 4px;
    }
    .rec-buy { background: rgba(0,212,170,0.15); color: var(--accent); }
    .rec-watch { background: rgba(240,180,41,0.15); color: var(--gold); }
    .rec-avoid { background: rgba(255,77,77,0.15); color: var(--red); }
    .market-status {
      margin-top: 20px;
      padding: 16px 18px;
      background: rgba(0,212,170,0.08);
      border: 1px solid rgba(0,212,170,0.18);
      border-radius: 10px;
      color: var(--text2);
      font-size: 0.9rem;
      line-height: 1.6;
    }
    .market-status strong { color: var(--text); }
    .market-disclaimer {
      margin-top: 14px;
      padding: 14px 16px;
      background: rgba(240,180,41,0.12);
      border: 1px solid rgba(240,180,41,0.3);
      border-radius: 8px;
      color: var(--gold);
      font-size: 0.82rem;
      font-weight: 600;
      line-height: 1.5;
    }
    .data-updated {
      margin-top: 10px;
      color: var(--text3);
      font-size: 0.74rem;
    }
    .loading-row {
      color: var(--text3);
      font-size: 0.9rem;
      padding: 18px 16px;
    }

    /* ══════════════════════════════
       RECIPE SECTION
    ══════════════════════════════ */
    .recipe-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 16px;
      margin-top: 40px;
    }
    .recipe-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      transition: transform .25s, border-color .25s;
    }
    .recipe-card:hover { transform: translateY(-4px); border-color: rgba(240,180,41,0.3); }
    .recipe-thumb {
      height: 160px;
      display: grid;
      place-items: center;
      font-size: 4rem;
    }
    .recipe-body { padding: 20px; }
    .recipe-body h4 {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      margin-bottom: 8px;
      font-size: 1rem;
    }
    .recipe-body p { color: var(--text2); font-size: 0.85rem; line-height: 1.6; font-weight: 300; }
    .recipe-meta { display: flex; gap: 14px; margin-top: 14px; }
    .recipe-meta span { font-size: 0.75rem; color: var(--text3); display: flex; align-items: center; gap: 4px; }
    .recipe-body .content-link {
      color: var(--gold);
      font-size: 0.78rem;
    }
    .recipe-body .content-link:hover { color: #ffd66b; }

    /* ══════════════════════════════
       QUEM SOMOS
    ══════════════════════════════ */
    .about-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      margin-top: 60px;
    }
    @media(max-width:768px){ .about-split{grid-template-columns:1fr;} }

    .about-visual {
      position: relative;
      height: 420px;
      border-radius: 16px;
      overflow: hidden;
      background: var(--surface);
      border: 1px solid var(--border);
      display: grid;
      place-items: center;
    }
    .about-visual-inner {
      text-align: center;
      padding: 40px;
    }
    .big-number {
      font-family: 'Syne', sans-serif;
      font-size: 5rem;
      font-weight: 800;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
      margin-bottom: 8px;
    }

    .about-text h2 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -0.025em;
      margin-bottom: 20px;
    }
    .about-text p {
      color: var(--text2);
      font-size: 0.95rem;
      line-height: 1.75;
      font-weight: 300;
      margin-bottom: 16px;
    }

    .pillar-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 28px;
    }
    .pillar {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 16px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 10px;
    }
    .pillar-icon { font-size: 1.4rem; line-height: 1; }
    .pillar h4 { font-weight: 600; font-size: 0.9rem; margin-bottom: 4px; }
    .pillar p { color: var(--text2); font-size: 0.82rem; line-height: 1.55; font-weight: 300; }

    /* ══════════════════════════════
       PRODUTOS
    ══════════════════════════════ */
    .subpage-tr-hero {
      position: relative;
      overflow: hidden;
      min-height: calc(100svh - 68px);
      display: grid;
      place-items: center;
      padding: 84px 5vw 74px;
      border-bottom: 1px solid rgba(0, 212, 170, 0.12);
      background:
        radial-gradient(circle at 50% 30%, rgba(0, 212, 255, 0.13), transparent 32%),
        radial-gradient(circle at 42% 45%, rgba(240, 180, 41, 0.16), transparent 24%),
        linear-gradient(180deg, rgba(5, 9, 14, 0.99), rgba(7, 11, 16, 0.96));
    }

    .subpage-tr-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.08) 50%, transparent 100%),
        repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 4px);
      opacity: 0.42;
      pointer-events: none;
    }

    .subpage-tr-hero .tr-neural-canvas {
      opacity: 0.72;
    }

    .subpage-tr-grid {
      position: absolute;
      inset: 0;
      opacity: 0.34;
      background-image:
        linear-gradient(rgba(0, 212, 170, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 170, 0.12) 1px, transparent 1px);
      background-size: 54px 54px;
      mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
    }

    .subpage-tr-stage {
      position: relative;
      width: min(1060px, 100%);
      text-align: center;
      z-index: 1;
    }

    .subpage-tr-status {
      position: absolute;
      top: 22px;
      left: 5vw;
      right: 5vw;
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: rgba(228, 245, 255, 0.62);
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.68rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      z-index: 2;
    }

    .subpage-tr-status span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .subpage-tr-status span::before {
      content: '';
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: var(--accent);
      box-shadow: 0 0 12px var(--accent);
    }

    .subpage-tr-corner {
      position: absolute;
      width: 64px;
      height: 64px;
      border-color: rgba(0, 212, 255, 0.42);
      z-index: 1;
    }

    .subpage-tr-corner.tl { top: 78px; left: 5vw; border-top: 1px solid; border-left: 1px solid; }
    .subpage-tr-corner.tr { top: 78px; right: 5vw; border-top: 1px solid; border-right: 1px solid; }
    .subpage-tr-corner.bl { bottom: 58px; left: 5vw; border-bottom: 1px solid; border-left: 1px solid; }
    .subpage-tr-corner.br { bottom: 58px; right: 5vw; border-bottom: 1px solid; border-right: 1px solid; }

    .subpage-tr-logo {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: min(500px, 84vw);
      margin-bottom: 24px;
      isolation: isolate;
    }

    .subpage-tr-logo::before {
      content: '';
      position: absolute;
      inset: 12% 8%;
      z-index: -1;
      background:
        radial-gradient(ellipse at 34% 48%, rgba(240, 180, 41, 0.24), transparent 48%),
        radial-gradient(ellipse at 68% 48%, rgba(0, 212, 255, 0.22), transparent 52%);
      filter: blur(28px);
      opacity: 0.72;
    }

    .subpage-tr-logo img {
      width: 100%;
      max-height: 220px;
      object-fit: contain;
      mix-blend-mode: screen;
      opacity: 0.88;
      mask-image: radial-gradient(ellipse 76% 64% at 50% 52%, black 48%, rgba(0,0,0,0.72) 68%, transparent 100%);
      filter:
        saturate(1.12)
        contrast(1.04)
        drop-shadow(0 0 22px rgba(0, 212, 255, 0.22))
        drop-shadow(0 0 18px rgba(240, 180, 41, 0.12));
    }

    .subpage-tr-kicker {
      display: block;
      color: var(--accent);
      font-size: 0.74rem;
      font-weight: 800;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .subpage-tr-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2rem, 5.8vw, 4.7rem);
      font-weight: 900;
      line-height: 1;
      letter-spacing: 0;
      margin: 0;
    }

    .subpage-tr-title em {
      color: var(--gold);
      font-style: normal;
    }

    .subpage-tr-copy {
      max-width: 680px;
      margin: 22px auto 0;
      color: var(--text2);
      font-size: clamp(0.98rem, 1.5vw, 1.12rem);
      line-height: 1.75;
      font-weight: 300;
    }

    .subpage-tr-divider {
      width: min(520px, 72vw);
      height: 1px;
      margin: 28px auto 0;
      background: linear-gradient(90deg, transparent, rgba(240, 180, 41, 0.72), rgba(0, 212, 255, 0.45), transparent);
    }

    .product-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 20px;
      padding: 0 5vw 80px;
    }

    .product-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 36px;
      position: relative;
      overflow: hidden;
      transition: border-color .25s, transform .25s;
    }
    .product-card:hover { border-color: rgba(0,212,170,0.35); transform: translateY(-4px); }

    .product-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), var(--accent2));
    }

    .product-card.blue::before { background: linear-gradient(90deg, var(--accent2), #a855f7); }
    .product-card.orange::before { background: linear-gradient(90deg, var(--accent3), var(--gold)); }

    .product-badge {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: 3px 10px;
      border-radius: 4px;
      margin-bottom: 20px;
    }
    .badge-beta { background: rgba(0,212,170,0.15); color: var(--accent); }
    .badge-dev { background: rgba(240,180,41,0.15); color: var(--gold); }
    .badge-soon { background: rgba(168,85,247,0.15); color: #a855f7; }

    .product-card h3 {
      font-family: 'Syne', sans-serif;
      font-size: 1.4rem;
      font-weight: 800;
      margin-bottom: 12px;
      letter-spacing: -0.02em;
    }
    .product-card p {
      color: var(--text2);
      font-size: 0.9rem;
      line-height: 1.7;
      font-weight: 300;
      margin-bottom: 24px;
    }

    .feature-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 28px;
    }
    .feature-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.85rem;
      color: var(--text2);
    }
    .feature-item::before { content: '✓'; color: var(--accent); font-weight: 700; }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      border-radius: 7px;
      border: 1px solid var(--border);
      color: var(--text);
      font-size: 0.875rem;
      font-weight: 500;
      text-decoration: none;
      transition: all .2s;
      cursor: pointer;
      background: transparent;
    }
    .btn-outline:hover { border-color: var(--accent); color: var(--accent); }
    .btn-outline-primary {
      border-color: var(--accent);
      color: var(--accent);
    }
    .btn-outline-primary:hover { background: rgba(0,212,170,0.1); }

    .waitlist-section {
      padding-top: 72px;
    }

    .waitlist-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
      gap: 30px;
      align-items: start;
    }

    .waitlist-note {
      background: rgba(0, 212, 170, 0.08);
      border: 1px solid rgba(0, 212, 170, 0.18);
      border-radius: 12px;
      padding: 18px;
      color: var(--text2);
      font-size: 0.92rem;
      line-height: 1.65;
      margin-top: 24px;
    }

    .waitlist-form {
      background: var(--surface);
      border: 1px solid rgba(0, 212, 170, 0.18);
      border-radius: 16px;
      padding: 30px;
    }

    .field-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .waitlist-form label {
      display: flex;
      flex-direction: column;
      gap: 8px;
      color: var(--text2);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .waitlist-form .full-field {
      grid-column: 1 / -1;
    }

    .waitlist-form input,
    .waitlist-form select,
    .waitlist-form textarea {
      width: 100%;
      border: 1px solid var(--border);
      border-radius: 8px;
      background: rgba(5, 10, 15, 0.76);
      color: var(--text);
      font: inherit;
      font-size: 0.95rem;
      letter-spacing: 0;
      padding: 13px 14px;
      outline: none;
      transition: border-color .2s, box-shadow .2s;
    }

    .waitlist-form textarea {
      min-height: 112px;
      resize: vertical;
    }

    .waitlist-form input:focus,
    .waitlist-form select:focus,
    .waitlist-form textarea:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
    }

    .waitlist-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 20px;
    }

    .waitlist-success {
      margin-top: 18px;
      padding: 18px;
      border-radius: 12px;
      background: rgba(240, 180, 41, 0.1);
      border: 1px solid rgba(240, 180, 41, 0.24);
    }

    .waitlist-success[hidden] { display: none; }
    .waitlist-success strong { display: block; margin-bottom: 6px; color: var(--gold); }
    .waitlist-success p { color: var(--text2); font-size: 0.9rem; line-height: 1.6; margin-bottom: 14px; }

    /* ══════════════════════════════
       CLIENTES
    ══════════════════════════════ */
    .clients-hero {
      text-align: center;
      padding: 80px 5vw 60px;
    }
    .audience-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 16px;
      padding: 0 5vw 80px;
    }
    .audience-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 32px;
      text-align: center;
      transition: border-color .25s, transform .25s;
    }
    .audience-card:hover { border-color: rgba(0,212,170,0.3); transform: translateY(-3px); }
    .audience-emoji { font-size: 2.5rem; display: block; margin-bottom: 16px; }
    .audience-card h3 {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 1.05rem;
      margin-bottom: 10px;
    }
    .audience-card p { color: var(--text2); font-size: 0.87rem; line-height: 1.65; font-weight: 300; }

    .cta-band {
      margin: 0 5vw 80px;
      background: linear-gradient(135deg, var(--surface), var(--surface2));
      border: 1px solid rgba(0,212,170,0.2);
      border-radius: 20px;
      padding: 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-band::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(0,212,170,0.1), transparent 60%);
    }
    .cta-band h2 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 800;
      margin-bottom: 14px;
      position: relative;
    }
    .cta-band p { color: var(--text2); font-size: 1rem; margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; position: relative; font-weight: 300; }
    .cta-band .btn-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

    /* ══════════════════════════════
       FOOTER
    ══════════════════════════════ */
    footer {
      border-top: 1px solid var(--border);
      padding: 48px 5vw 32px;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    @media(max-width:768px){ .footer-top{grid-template-columns:1fr 1fr;} }
    @media(max-width:480px){ .footer-top{grid-template-columns:1fr;} }

    .footer-brand p { color: var(--text2); font-size: 0.87rem; line-height: 1.7; margin-top: 14px; max-width: 280px; font-weight: 300; }
    .footer-col h5 {
      font-weight: 600;
      font-size: 0.85rem;
      margin-bottom: 14px;
      color: var(--text);
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .footer-col ul a {
      text-decoration: none;
      color: var(--text2);
      font-size: 0.85rem;
      transition: color .2s;
    }
    .footer-col ul a:hover { color: var(--accent); }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 24px;
      border-top: 1px solid var(--border);
      gap: 16px;
      flex-wrap: wrap;
    }
    .footer-bottom p { color: var(--text3); font-size: 0.8rem; }
    .footer-links { display: flex; gap: 20px; }
    .footer-links a { color: var(--text3); font-size: 0.8rem; text-decoration: none; transition: color .2s; }
    .footer-links a:hover { color: var(--accent); }

    /* ══════════════════════════════
       MOBILE
    ══════════════════════════════ */
    @media(max-width:768px){
      nav { padding: 0 20px; }
      .nav-logo-image {
        width: 96px;
        height: 36px;
      }
      .logo-text {
        font-size: 0.95rem;
      }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .hero { padding: 60px 20px 40px; }
      .tr-hero {
        min-height: calc(100svh - 68px);
        padding: 0 18px 72px;
      }
      .tr-stage {
        min-height: calc(100svh - 168px);
        padding-top: 58px;
      }
      .tr-status-bar {
        height: 42px;
        padding: 0 16px;
      }
      .tr-status-items {
        display: none;
      }
      .tr-corner {
        width: 42px;
        height: 42px;
      }
      .tr-corner.tl,
      .tr-corner.tr {
        top: 50px;
      }
      .tr-corner.bl,
      .tr-corner.br {
        bottom: 44px;
      }
      .tr-wordmark {
        font-size: clamp(2.55rem, 14vw, 4rem);
        letter-spacing: clamp(5px, 2vw, 9px);
      }
      .tr-tagline-bar {
        gap: 10px;
      }
      .tr-tag-line {
        width: 28px;
      }
      .tr-tagline-text {
        letter-spacing: 2px;
        white-space: normal;
      }
      .tr-full-name {
        letter-spacing: 2px;
      }
      .tr-hero-copy {
        margin-top: 18px;
        font-size: 0.98rem;
      }
      .tr-actions {
        margin-top: 22px;
      }
      .tr-divider {
        margin: 28px 0 24px;
      }
      .tr-pillars {
        gap: 14px 24px;
      }
      .tr-pillar-icon {
        width: 42px;
        height: 42px;
      }
      .tr-pillar-label {
        font-size: 0.62rem;
        letter-spacing: 1.4px;
      }
      section { padding: 60px 20px; }
      .subpage-tr-hero {
        min-height: calc(100svh - 68px);
        padding: 82px 20px 54px;
      }
      .subpage-tr-status {
        left: 20px;
        right: 20px;
        font-size: 0.58rem;
        letter-spacing: 0.09em;
      }
      .subpage-tr-status span:last-child {
        display: none;
      }
      .subpage-tr-corner {
        width: 42px;
        height: 42px;
      }
      .subpage-tr-corner.tl,
      .subpage-tr-corner.tr { top: 72px; }
      .subpage-tr-corner.bl,
      .subpage-tr-corner.br { bottom: 42px; }
      .subpage-tr-logo {
        width: min(360px, 88vw);
        margin-bottom: 18px;
      }
      .subpage-tr-title {
        font-size: clamp(1.85rem, 10vw, 3rem);
      }
      .product-cards, .audience-grid { padding: 0 20px 60px; }
      .waitlist-layout,
      .field-grid {
        grid-template-columns: 1fr;
      }
      .waitlist-form {
        padding: 22px;
      }
      .cta-band { margin: 0 20px 60px; padding: 40px 24px; }
      footer { padding: 40px 20px 24px; }
      .insights-grid { gap: 12px; }
      .insight-card.featured { grid-column: auto; grid-template-columns: 1fr; }
    }

    /* Mobile nav drawer */
    .mobile-nav {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(8,12,16,0.97);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      text-decoration: none;
      font-family: 'Syne', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      color: var(--text2);
      transition: color .2s;
    }
    .mobile-nav a:hover, .mobile-nav a.active { color: var(--accent); }
    .mobile-close {
      position: absolute;
      top: 22px; right: 22px;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--text2);
      background: none;
      border: none;
    }
