
    /* ─── TOKENS ─────────────────────────────────────────────── */
    :root {
      --bg:        #ffffff;
      --bg-1:      #f7f7f8;
      --bg-2:      #ededee;
      --border:    #e4e4e7;
      --border-2:  #d1d1d6;
      --primary:   #ff7113;
      --primary-d: #d45c0a;
      --primary-g: rgba(255,113,19,.10);
      --primary-g2:rgba(255,113,19,.05);
      --text:      #111113;
      --text-2:    #5a5a66;
      --text-3:    #a0a0ab;
      --mono:      'DM Mono', monospace;
      --sans:      'DM Sans', sans-serif;
      --display:   'DM Sans', sans-serif;
      --radius:    12px;
      --radius-lg: 20px;
      --transition: 0.22s cubic-bezier(.4,0,.2,1);
    }

    /* ─── RESET ──────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--sans);
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    button { cursor: pointer; border: none; background: none; font: inherit; }

    /* ─── SCROLLBAR ──────────────────────────────────────────── */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 3px; }
    ::-webkit-scrollbar-thumb:hover { background: var(--primary); }

    /* ─── GRID TEXTURE ───────────────────────────────────────── */
    .grid-texture {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
      background-size: 60px 60px;
      opacity: .5;
    }
    .grid-texture::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 0%, transparent 40%, var(--bg) 100%);
    }

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

    /* ─── GLOW ORBS ──────────────────────────────────────────── */
    .orb {
      position: fixed;
      border-radius: 50%;
      filter: blur(100px);
      pointer-events: none;
      z-index: 0;
    }
    .orb-1 {
      width: 600px; height: 600px;
      top: -200px; left: -100px;
      background: radial-gradient(circle, rgba(255,113,19,.18) 0%, transparent 70%);
      animation: orbFloat 12s ease-in-out infinite;
    }
    .orb-2 {
      width: 500px; height: 500px;
      top: 40%; right: -150px;
      background: radial-gradient(circle, rgba(255,113,19,.1) 0%, transparent 70%);
      animation: orbFloat 16s ease-in-out infinite reverse;
    }
    @keyframes orbFloat {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(30px, -40px) scale(1.05); }
      66% { transform: translate(-20px, 20px) scale(.96); }
    }

    /* ─── LAYOUT ─────────────────────────────────────────────── */
    .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

    /* ─── NAVBAR ─────────────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 0 24px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid transparent;
      transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
    }
    nav.scrolled {
      background: rgba(255,255,255,.88);
      border-color: var(--border);
      backdrop-filter: blur(20px);
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 18px;
    }
    .nav-logo-name {
      font-family: var(--display);
      font-size: 20px;
      font-weight: 800;
      letter-spacing: -.5px;
      color: var(--text);
    }
    .nav-logo-image {
      width: 200px;
    }
    .nav-logo-name span { color: var(--primary); }
    .nav-logo-by {
      font-family: var(--mono);
      font-size: 10px;
      color: var(--text-3);
      letter-spacing: .06em;
      text-transform: uppercase;
      border: 1px solid var(--border-2);
      padding: 2px 7px;
      border-radius: 4px;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }
    .nav-links a {
      font-size: 14px;
      color: var(--text-2);
      transition: color var(--transition);
      font-weight: 500;
    }
    .nav-links a:hover { color: var(--text); }
    .nav-cta {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 22px;
      border-radius: var(--radius);
      font-size: 14px;
      font-weight: 600;
      font-family: var(--sans);
      transition: all var(--transition);
      position: relative;
      overflow: hidden;
    }
    .btn::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0);
      transition: background var(--transition);
    }
    .btn:hover::after { background: rgba(255,255,255,.06); }
    .btn-ghost {
      color: var(--text-2);
      border: 1px solid var(--border-2);
    }
    .btn-ghost:hover { color: var(--text); border-color: var(--border-2); }
    .btn-primary {
      background: var(--primary);
      color: #fff;
      box-shadow: 0 0 0 0 rgba(255,113,19,0);
    }
    .btn-primary:hover {
      background: var(--primary-d);
      box-shadow: 0 4px 24px rgba(255,113,19,.35);
      transform: translateY(-1px);
    }
    .btn-primary:active { transform: translateY(0); }
    .btn-lg { padding: 14px 32px; font-size: 15px; border-radius: var(--radius-lg); }
    .btn-icon { width: 38px; height: 38px; padding: 0; justify-content: center; border-radius: 10px; }

    /* ─── HERO ───────────────────────────────────────────────── */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 120px 0 80px;
      position: relative;
      overflow: hidden;
    }
    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      border: 1px solid rgba(255,113,19,.3);
      background: var(--primary-g2);
      border-radius: 100px;
      font-family: var(--mono);
      font-size: 11px;
      color: var(--primary);
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 28px;
      animation: fadeUp .6s ease both;
    }
    .hero-badge-dot {
      width: 6px; height: 6px;
      background: var(--primary);
      border-radius: 50%;
      animation: pulse 2s ease infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: .5; transform: scale(.7); }
    }
    .hero-title {
      font-family: var(--display);
      font-size: clamp(42px, 5.5vw, 72px);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -2px;
      margin-bottom: 24px;
      animation: fadeUp .6s .1s ease both;
    }
    .hero-title .accent { color: var(--primary); }
    .hero-title .underline-wavy {
      position: relative;
      white-space: nowrap;
    }
    .hero-title .underline-wavy::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: -2px;
      right: -2px;
      height: 35%; /* Sits behind the bottom half of the text */
      background: var(--primary); /* Your orange */
      opacity: 0.3;
      z-index: -1;
      border-radius: 2px;
      transform: rotate(-1deg); /* Gives it that "human" imperfect feel */
    }
    .hero-sub {
      font-size: 17px;
      color: var(--text-2);
      line-height: 1.7;
      margin-bottom: 40px;
      max-width: 480px;
      animation: fadeUp .6s .2s ease both;
    }
    .hero-actions {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      animation: fadeUp .6s .3s ease both;
    }
    .hero-stat-row {
      display: flex;
      gap: 32px;
      margin-top: 48px;
      padding-top: 32px;
      border-top: 1px solid var(--border);
      animation: fadeUp .6s .4s ease both;
    }
    .hero-stat-val {
      font-family: var(--display);
      font-size: 28px;
      font-weight: 800;
      color: var(--text);
    }
    .hero-stat-val span { color: var(--primary); }
    .hero-stat-label {
      font-size: 12px;
      color: var(--text-3);
      font-family: var(--mono);
      letter-spacing: .06em;
      text-transform: uppercase;
      margin-top: 2px;
    }

    /* ─── RESULTS CARD ──────────────────────────────────────── */
    .upload-card {
      background: var(--bg-1);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      position: relative;
      animation: fadeUp .6s .15s ease both;
    }
    .upload-card::before {
      content: '';
      position: absolute;
      inset: -1px;
      border-radius: var(--radius-lg);
      background: linear-gradient(135deg, rgba(255,113,19,.2), transparent 50%);
      pointer-events: none;
      z-index: 0;
    }
    .upload-card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px;
      border-bottom: 1px solid var(--border);
      position: relative;
      z-index: 1;
    }
    .upload-card-dots {
      display: flex;
      gap: 6px;
    }
    .upload-card-dots span {
      width: 10px; height: 10px;
      border-radius: 50%;
    }
    .dot-r { background: #ff5f57; }
    .dot-y { background: #febc2e; }
    .dot-g { background: #28c840; }
    .upload-card-label {
      font-family: var(--mono);
      font-size: 11px;
      color: var(--text-3);
      letter-spacing: .06em;
    }
    .upload-zone {
      padding: 32px 24px;
      position: relative;
      z-index: 1;
    }
    .dropzone {
      border: 2px dashed var(--border-2);
      border-radius: var(--radius);
      padding: 40px 24px;
      text-align: center;
      cursor: pointer;
      transition: all var(--transition);
      background: var(--bg-2);
      position: relative;
      overflow: hidden;
    }
    .dropzone::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--primary-g);
      opacity: 0;
      transition: opacity var(--transition);
    }
    .dropzone:hover, .dropzone.drag-over {
      border-color: var(--primary);
    }
    .dropzone:hover::before, .dropzone.drag-over::before { opacity: 1; }
    .dropzone-icon {
      width: 56px; height: 56px;
      margin: 0 auto 16px;
      background: var(--primary-g);
      border: 1px solid rgba(255,113,19,.2);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      transition: all var(--transition);
    }
    .dropzone:hover .dropzone-icon {
      background: rgba(255,113,19,.2);
      transform: scale(1.08) translateY(-2px);
    }
    .dropzone-title {
      font-family: var(--display);
      font-weight: 700;
      font-size: 16px;
      margin-bottom: 6px;
    }
    .dropzone-sub {
      font-size: 13px;
      color: var(--text-3);
    }
    .dropzone-sub span { color: var(--primary); font-weight: 600; }
    .format-chips {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 16px;
      justify-content: center;
    }
    .chip {
      padding: 4px 11px;
      border-radius: 6px;
      font-family: var(--mono);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: .04em;
      border: 1px solid var(--border-2);
      color: var(--text-3);
      transition: all var(--transition);
    }
    .chip.active {
      border-color: rgba(255,113,19,.4);
      color: var(--primary);
      background: var(--primary-g2);
    }
    .upload-options {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-top: 20px;
    }
    .option-toggle {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 14px;
      background: var(--bg-2);
      border: 1px solid var(--border);
      border-radius: 10px;
      transition: all var(--transition);
      cursor: pointer;
    }
    .option-toggle:hover { border-color: var(--border-2); }
    .option-toggle.active {
      border-color: rgba(255,113,19,.3);
      background: var(--primary-g2);
    }
    .toggle-check {
      width: 16px; height: 16px;
      border-radius: 4px;
      border: 2px solid var(--border-2);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: all var(--transition);
    }
    .option-toggle.active .toggle-check {
      background: var(--primary);
      border-color: var(--primary);
    }
    .toggle-label {
      font-size: 12px;
      font-weight: 500;
      color: var(--text-2);
    }
    .option-toggle.active .toggle-label { color: var(--text); }
    .upload-submit {
      width: 100%;
      margin-top: 16px;
      padding: 14px;
      background: var(--primary);
      color: #fff;
      border-radius: var(--radius);
      font-family: var(--sans);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: .02em;
      transition: all var(--transition);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    .upload-submit:hover {
      background: var(--primary-d);
      box-shadow: 0 6px 28px rgba(255,113,19,.4);
      transform: translateY(-1px);
    }
    .upload-submit:active { transform: translateY(0); }

    /* ─── SECTION HEADER ─────────────────────────────────────── */
    .section { padding: 100px 0; position: relative; z-index: 2; }
    .section-label {
      font-family: var(--mono);
      font-size: 11px;
      color: var(--primary);
      letter-spacing: .14em;
      text-transform: uppercase;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .section-label::before {
      content: '';
      display: block;
      width: 20px; height: 2px;
      background: var(--primary);
      border-radius: 1px;
    }
    .section-title {
      font-family: var(--display);
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 800;
      letter-spacing: -1.5px;
      line-height: 1.1;
      margin-bottom: 16px;
    }
    .section-sub {
      font-size: 16px;
      color: var(--text-2);
      max-width: 520px;
      line-height: 1.7;
    }
    .section-header { margin-bottom: 64px; }

    /* ─── FEATURES ───────────────────────────────────────────── */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .feature-card {
      background: var(--bg-1);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 32px 28px;
      position: relative;
      overflow: hidden;
      transition: all var(--transition);
      cursor: default;
    }
    .feature-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: var(--primary);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .4s cubic-bezier(.4,0,.2,1);
    }
    .feature-card:hover {
      border-color: var(--border-2);
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0,0,0,.1);
    }
    .feature-card:hover::before { transform: scaleX(1); }
    .feature-card-glow {
      position: absolute;
      top: -60px; right: -60px;
      width: 160px; height: 160px;
      background: radial-gradient(circle, var(--primary-g) 0%, transparent 70%);
      opacity: 0;
      transition: opacity var(--transition);
      pointer-events: none;
    }
    .feature-card:hover .feature-card-glow { opacity: 1; }
    .feature-icon {
      width: 52px; height: 52px;
      background: var(--primary-g);
      border: 1px solid rgba(255,113,19,.15);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      margin-bottom: 24px;
    }
    .feature-title {
      font-family: var(--display);
      font-size: 20px;
      font-weight: 700;
      letter-spacing: -.5px;
      margin-bottom: 10px;
    }
    .feature-desc {
      font-size: 14px;
      color: var(--text-2);
      line-height: 1.7;
    }
    .feature-tag {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      margin-top: 20px;
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--primary);
      background: var(--primary-g2);
      border: 1px solid rgba(255,113,19,.15);
      padding: 4px 10px;
      border-radius: 6px;
    }

    /* ─── STATS BAND ─────────────────────────────────────────── */
    .stats-band {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: var(--bg-1);
      padding: 48px 0;
      position: relative;
      z-index: 2;
      overflow: hidden;
    }
    .stats-band::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      width: 600px; height: 200px;
      background: radial-gradient(ellipse, rgba(255,113,19,.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }
    .stat-item {
      padding: 0 40px;
      text-align: center;
      border-right: 1px solid var(--border);
      position: relative;
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: var(--display);
      font-size: 44px;
      font-weight: 800;
      letter-spacing: -2px;
      color: var(--text);
      line-height: 1;
    }
    .stat-num .accent { color: var(--primary); }
    .stat-desc {
      font-size: 13px;
      color: var(--text-3);
      margin-top: 6px;
      font-family: var(--mono);
      letter-spacing: .04em;
    }

    /* ─── HOW IT WORKS ───────────────────────────────────────── */
    .how-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      position: relative;
    }
    .how-grid::before {
      content: '';
      position: absolute;
      top: 32px;
      left: calc(16.66% + 32px);
      right: calc(16.66% + 32px);
      height: 1px;
      background: linear-gradient(90deg, var(--primary) 0%, rgba(255,113,19,.3) 50%, var(--primary) 100%);
      z-index: 0;
    }
    .how-step {
      padding: 0 32px;
      text-align: center;
      position: relative;
      z-index: 1;
    }
    .how-num {
      width: 64px; height: 64px;
      border-radius: 50%;
      background: var(--bg-2);
      border: 2px solid var(--border-2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--display);
      font-size: 22px;
      font-weight: 800;
      color: var(--text-2);
      margin: 0 auto 28px;
      transition: all var(--transition);
      position: relative;
    }
    .how-step:hover .how-num {
      border-color: var(--primary);
      color: var(--primary);
      background: var(--primary-g);
      box-shadow: 0 0 0 6px var(--primary-g2);
    }
    .how-step-title {
      font-family: var(--display);
      font-size: 20px;
      font-weight: 700;
      letter-spacing: -.5px;
      margin-bottom: 10px;
    }
    .how-step-desc {
      font-size: 14px;
      color: var(--text-2);
      line-height: 1.7;
    }

    /* ─── FORMAT TABS ────────────────────────────────────────── */
    .formats-section { padding: 100px 0; position: relative; z-index: 2; }
    .tab-bar {
      display: flex;
      gap: 4px;
      background: var(--bg-1);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 4px;
      width: fit-content;
      margin-bottom: 40px;
    }
    .tab-btn {
      padding: 9px 22px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-3);
      transition: all var(--transition);
      font-family: var(--sans);
    }
    .tab-btn.active {
      background: var(--primary);
      color: #fff;
      box-shadow: 0 2px 12px rgba(255,113,19,.3);
    }
    .tab-btn:not(.active):hover { color: var(--text-2); background: var(--bg-2); }
    .tab-panel { display: none; }
    .tab-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
    .tab-content-title {
      font-family: var(--display);
      font-size: 36px;
      font-weight: 800;
      letter-spacing: -1px;
      margin-bottom: 16px;
    }
    .tab-content-desc {
      font-size: 15px;
      color: var(--text-2);
      line-height: 1.75;
      margin-bottom: 24px;
    }
    .tab-feature-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .tab-feature-list li {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 14px;
      color: var(--text-2);
    }
    .tab-feature-list li::before {
      content: '';
      width: 18px; height: 18px;
      border-radius: 50%;
      background: var(--primary-g);
      border: 1px solid rgba(255,113,19,.3);
      flex-shrink: 0;
      background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23ff7113' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
    }
    .format-visual {
      background: var(--bg-1);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 32px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .format-bar {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .format-bar-label {
      font-family: var(--mono);
      font-size: 11px;
      color: var(--text-3);
      width: 60px;
      flex-shrink: 0;
    }
    .format-bar-track {
      flex: 1;
      height: 8px;
      background: var(--bg-2);
      border-radius: 4px;
      overflow: hidden;
    }
    .format-bar-fill {
      height: 100%;
      border-radius: 4px;
      background: linear-gradient(90deg, var(--primary), #ff9a52);
      animation: barGrow 1s ease both;
    }
    @keyframes barGrow {
      from { width: 0 !important; }
    }
    .format-bar-val {
      font-family: var(--mono);
      font-size: 12px;
      color: var(--text);
      width: 36px;
      text-align: right;
    }

    /* ─── CTA SECTION ────────────────────────────────────────── */
    .cta-section {
      padding: 80px 0 120px;
      position: relative;
      z-index: 2;
    }
    .cta-card {
      background: var(--bg-1);
      border: 1px solid var(--border);
      border-radius: 28px;
      padding: 80px 64px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 80% at 50% 100%, rgba(255,113,19,.1) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-card::after {
      content: '';
      position: absolute;
      top: -1px; left: 20%; right: 20%;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--primary), transparent);
    }
    .cta-title {
      font-family: var(--display);
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 800;
      letter-spacing: -1.5px;
      margin-bottom: 16px;
      position: relative;
      z-index: 1;
    }
    .cta-sub {
      font-size: 16px;
      color: var(--text-2);
      max-width: 440px;
      margin: 0 auto 40px;
      line-height: 1.7;
      position: relative;
      z-index: 1;
    }
    .cta-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      position: relative;
      z-index: 1;
      flex-wrap: wrap;
    }
    .cta-note {
      margin-top: 20px;
      font-size: 12px;
      color: var(--text-3);
      font-family: var(--mono);
      position: relative;
      z-index: 1;
    }

    /* ─── FOOTER ─────────────────────────────────────────────── */
    footer {
      border-top: 1px solid var(--border);
      padding: 40px 0;
      position: relative;
      z-index: 2;
    }
    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }
    .footer-logo {
      font-family: var(--display);
      font-weight: 800;
      font-size: 16px;
      letter-spacing: -.5px;
    }
    .footer-logo img {
      width: 200px;
    }
    .footer-logo span { color: var(--primary); }
    .footer-copy {
      font-size: 13px;
      color: var(--text-3);
      font-family: var(--mono);
    }
    .footer-links {
      display: flex;
      gap: 24px;
      list-style: none;
    }
    .footer-links a {
      font-size: 13px;
      color: var(--text-3);
      transition: color var(--transition);
    }
    .footer-links a:hover { color: var(--text); }

    /* ─── ANIMATIONS ─────────────────────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ─── LIVE FEED ROWS ─────────────────────────────────────── */
    #results-list {
      position: relative;
      /* height set by JS once ROW_H is known */
      overflow: hidden;
    }
    .rrow {
      position: absolute;
      left: 0; right: 0;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 0 12px;
      background: var(--bg-1);
      border: 1px solid var(--border);
      border-radius: 10px;
      /* height + top set by JS */
    }
    .shimmer {
      background: linear-gradient(90deg, var(--bg-2) 25%, var(--border) 50%, var(--bg-2) 75%);
      background-size: 200% 100%;
      animation: shimmer 1.2s ease infinite;
      border-radius: 4px;
    }
    @keyframes shimmer {
      0%   { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }
    .count-bump {
      animation: bump .25s cubic-bezier(.34,1.56,.64,1);
    }
    @keyframes bump {
      0%   { transform: scale(1); }
      50%  { transform: scale(1.18); }
      100% { transform: scale(1); }
    }

    /* ─── RESPONSIVE ─────────────────────────────────────────── */
    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; gap: 48px; }
      .features-grid { grid-template-columns: 1fr; }
      .how-grid { grid-template-columns: 1fr; gap: 40px; }
      .how-grid::before { display: none; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stat-item { padding: 20px; border-right: none; border-bottom: 1px solid var(--border); }
      .stat-item:last-child { border-bottom: none; }
      .tab-panel.active { grid-template-columns: 1fr; }
      .nav-links { display: none; }
      .cta-card { padding: 48px 24px; }
    }