  :root {
    --bg:        #060608;
    --bg2:       #0a0c10;
    --surface:   #0f1218;
    --border:    #1c2333;
    --border2:   #242f42;
    --red:       #ff3b3b;
    --red-2:     #ff6a3d;
    --red-dim:   rgba(255,59,59,0.08);
    --red-glow:  rgba(255,59,59,0.2);
    --red-glow-strong: rgba(255,59,59,0.38);
    --green:     #2dde98;
    --green-dim: rgba(45,222,152,0.08);
    --amber:     #f5a623;
    --text:      #c9d1d9;
    --text2:     #7d8fa8;
    --text3:     #3d4f62;
    --white:     #f0f4f8;
    --mono:      'IBM Plex Mono', monospace;
    --body:      'IBM Plex Sans', sans-serif;
    --display:   'Space Grotesk', sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background:
      radial-gradient(900px 500px at 78% 6%, rgba(255,59,59,0.11), transparent 62%),
      var(--bg);
    color: var(--text);
    font-family: var(--body);
    font-size: clamp(16px, 1.05vw, 18px);
    line-height: 1.75;
    letter-spacing: 0.01em;
    overflow-x: hidden;
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,59,59,0.015) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,59,59,0.015) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
    z-index: 0;
  }

  .z1 { position: relative; z-index: 1; }

  .sticky-alert {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 120;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: linear-gradient(90deg, #371515 0%, #5f1e1e 45%, #3a1515 100%);
    border-bottom: 1px solid rgba(255,59,59,0.45);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: #ffd8cf;
    text-transform: uppercase;
  }

  .sticky-alert .pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff4f4f;
    box-shadow: 0 0 0 0 rgba(255,79,79,0.7);
    animation: pulseDot 1.6s infinite;
  }

  .sticky-alert strong {
    color: #fff4ef;
    font-weight: 700;
  }

  .sticky-alert .timer {
    color: #ffd4b9;
    font-weight: 700;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 42px; left: 0; right: 0;
    z-index: 100;
    background: rgba(6,6,8,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
  }

  .nav-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 32px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .logo-hex {
    width: 30px; height: 30px;
    background: var(--red);
    clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; color: white;
  }

  .logo-name {
    font-family: var(--display);
    font-size: 19px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
  }

  .logo-name span { color: var(--red); }

  .nav-cta {
    padding: 10px 24px;
    background: var(--red);
    color: white;
    text-decoration: none;
    font-family: var(--display);
    font-size: 15px;
    font-weight: 700;
    transition: all 0.2s;
    clip-path: polygon(0 0,calc(100% - 7px) 0,100% 7px,100% 100%,7px 100%,0 calc(100% - 7px));
  }

  .nav-cta:hover {
    background: #ff5f5f;
    box-shadow: 0 4px 24px var(--red-glow);
  }

  /* CONTAINER */
  .wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
  }

  /* HERO */
  .hero {
    min-height: 82vh;
    display: flex;
    align-items: center;
    padding: 148px 0 76px;
    position: relative;
  }

  .hero::after {
    content: '';
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 42px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,59,59,0.45), transparent);
    pointer-events: none;
  }

  .hero-glow {
    position: absolute;
    top: 15%; right: -8%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(255,59,59,0.055) 0%, transparent 60%);
    pointer-events: none;
  }

  .terminal-widget {
    background: var(--bg2);
    border: 1px solid var(--border2);
    font-size: 11px;
    color: var(--text2);
    margin-bottom: 40px;
    max-width: 600px;
    overflow: hidden;
    opacity: 0;
    animation: fadeUp 0.5s ease 0.1s forwards;
  }

  .terminal-bar {
    background: var(--surface);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-bottom: 1px solid var(--border);
  }

  .term-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
  }

  .term-dot.red { background: #ff4a4a; }
  .term-dot.red { background: var(--red); animation: blink-red 2s ease infinite; }
  .term-dot.amber { background: var(--amber); }
  .term-dot.green { background: var(--green); }

  @keyframes blink-red {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }

  .term-title {
    flex: 1;
    text-align: center;
    font-size: 10px;
    color: var(--text3);
    letter-spacing: 0.1em;
  }

  .terminal-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: var(--mono);
    font-size: 11px;
  }

  .tl {
    display: flex;
    gap: 8px;
    color: var(--text2);
  }

  .tl-time {
    color: var(--text3);
    font-size: 11px;
    flex-shrink: 0;
  }

  .tl-level-error {
    color: var(--red);
    font-weight: 600;
  }

  .tl-level-warn {
    color: var(--amber);
    font-weight: 600;
  }

  .tl-level-info {
    color: var(--green);
    font-weight: 600;
  }

  .tl-ai {
    color: var(--red);
  }

  .tl-msg {
    color: var(--text2);
  }

  .tl-analyzing {
    color: var(--amber);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
  }

  .spinner {
    width: 10px;
    height: 10px;
    border: 1px solid var(--amber);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    flex-shrink: 0;
  }

  /* BEFORE / AFTER BADGE */
  .pain-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255,59,59,0.09);
    border: 1px solid rgba(255,59,59,0.34);
    font-family: var(--mono);
    font-size: 12px;
    color: #ff9f86;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.5s ease 0.05s forwards;
  }

  .pain-badge::before {
    content: '⚠';
  }

  h1 {
    font-family: var(--display);
    font-size: clamp(36px, 5.6vw, 64px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
    max-width: 760px;
    text-wrap: balance;
    text-shadow: 0 10px 44px rgba(0,0,0,0.42);
    opacity: 0;
    animation: fadeUp 0.5s ease 0.12s forwards;
  }

  h1 .red {
    color: transparent;
    background: linear-gradient(100deg, var(--red) 0%, var(--red-2) 65%, #ffb08a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 0 18px var(--red-glow));
  }
  h1 .strike {
    text-decoration: line-through;
    color: var(--text3);
    font-weight: 400;
    display: inline-block;
    margin-top: 4px;
  }

  .hero-desc {
    font-size: clamp(19px, 2vw, 23px);
    color: var(--text2);
    max-width: 620px;
    line-height: 1.72;
    margin-bottom: 34px;
    font-weight: 500;
    opacity: 0;
    animation: fadeUp 0.5s ease 0.2s forwards;
  }

  .hero-desc strong { color: var(--white); font-weight: 600; }

  /* FORM */
  .form-wrap {
    opacity: 0;
    animation: fadeUp 0.5s ease 0.28s forwards;
  }

  .waitlist-row {
    display: flex;
    gap: 0;
    max-width: 560px;
    margin-bottom: 16px;
    border: 1px solid rgba(255,59,59,0.26);
    box-shadow: 0 0 0 1px rgba(255,59,59,0.1), 0 18px 44px rgba(0,0,0,0.35);
    clip-path: polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px));
  }

  .email-input {
    flex: 1;
    padding: 15px 20px;
    background: var(--surface);
    border: 1px solid var(--border2);
    border-right: 1px solid rgba(255,59,59,0.22);
    color: var(--white);
    font-family: var(--body);
    font-size: 16px;
    font-weight: 500;
    outline: none;
    transition: border-color 0.2s;
  }

  .email-input::placeholder { color: var(--text3); }
  .email-input:focus { border-color: var(--red); }

  .submit-btn {
    padding: 15px 34px;
    background: var(--red);
    color: white;
    border: none;
    font-family: var(--body);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    box-shadow: inset 0 -2px 0 rgba(0,0,0,0.2);
    animation: pulseGlow 1.8s ease-in-out infinite;
  }

  .submit-btn:hover {
    background: #ff694f;
    box-shadow: 0 0 34px var(--red-glow-strong);
    transform: translateY(-1px);
  }

  .hero-trust {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
    margin-bottom: 12px;
  }

  .beta-counter {
    margin-top: 16px;
    max-width: 560px;
    padding: 14px 16px 16px;
    background: rgba(255,59,59,0.05);
    border: 1px solid rgba(255,59,59,0.22);
    box-shadow: 0 10px 30px rgba(0,0,0,0.28);
  }

  .beta-counter-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
  }

  .beta-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.09em;
    color: #f2bcb0;
    text-transform: uppercase;
  }

  .beta-count {
    font-family: var(--display);
    font-size: 24px;
    color: var(--white);
    font-weight: 700;
    line-height: 1;
  }

  .beta-count strong {
    color: #ff9f86;
    font-size: 30px;
  }

  .beta-meter {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.08);
    border-radius: 999px;
    overflow: hidden;
  }

  .beta-meter-fill {
    width: var(--beta-fill, 68%);
    height: 100%;
    background: linear-gradient(90deg, #ff4f4f 0%, #ff8b60 100%);
    box-shadow: 0 0 18px rgba(255,79,79,0.4);
    transform-origin: left center;
    animation: meterGrow 1s ease 0.4s both;
  }

  .beta-sub {
    margin-top: 8px;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text3);
    letter-spacing: 0.04em;
  }

  .trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    background: rgba(255,59,59,0.06);
    border: 1px solid rgba(255,59,59,0.2);
    font-family: var(--mono);
    font-size: 11px;
    color: #f0c3b8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .form-note {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--text3);
  }

  .form-note span { color: var(--green); }

  .success-box {
    display: none;
    max-width: 500px;
    padding: 16px 20px;
    background: var(--green-dim);
    border: 1px solid rgba(45,222,152,0.2);
    font-family: var(--mono);
    font-size: 13px;
    color: var(--green);
  }

  /* SOCIAL PROOF */
  .proof-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 56px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
    border-image: linear-gradient(90deg, transparent, rgba(255,59,59,0.5), transparent) 1;
    opacity: 1;
  }

  .proof-item {
    flex: 1;
    min-width: 130px;
    opacity: 0;
    transform: translateY(26px) scale(0.94);
    filter: blur(2px);
    transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
  }

  .proof-item.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }

  .proof-item.visible .proof-num {
    animation: proofPop 0.55s cubic-bezier(0.18, 0.84, 0.24, 1.08);
  }

  .proof-item:first-child .proof-num {
    filter: drop-shadow(0 0 10px rgba(255,59,59,0.3));
  }

  .proof-num {
    font-family: var(--display);
    font-size: clamp(40px, 4vw, 48px);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
  }

  .proof-num em { color: var(--red); font-style: normal; font-size: 24px; }

  .proof-label {
    font-family: var(--body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text2);
    line-height: 1.5;
  }

  /* SECTION */
  .section {
    padding: 96px 0;
    border-top: 1px solid var(--border);
  }

  .eyebrow {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--red);
    letter-spacing: 0.17em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .eyebrow::before { content: '//'; color: var(--text3); }

  h2 {
    font-family: var(--display);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.06;
    margin-bottom: 16px;
  }

  .section-sub {
    font-family: var(--body);
    font-size: clamp(18px, 1.9vw, 21px);
    font-weight: 500;
    color: var(--text2);
    max-width: 620px;
    line-height: 1.72;
    margin-bottom: 56px;
  }

  /* PROBLEM SECTION */
  .problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-bottom: 16px;
  }

  .problem-card {
    background: var(--bg2);
    padding: 32px;
    transition: background 0.2s, transform 0.22s ease, box-shadow 0.22s ease;
  }

  .problem-card:hover {
    background: var(--surface);
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(0,0,0,0.36);
  }

  .problem-emoji {
    font-size: 28px;
    margin-bottom: 16px;
    display: block;
  }

  .problem-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .problem-desc {
    font-family: var(--body);
    font-size: 15px;
    font-weight: 500;
    color: var(--text2);
    line-height: 1.74;
  }

  /* BEFORE / AFTER */
  .ba-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }

  .ba-col { padding: 40px; }

  .ba-col.before { background: var(--bg2); }
  .ba-col.after {
    background: var(--bg2);
    position: relative;
  }

  .ba-col.after::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--green);
  }

  .ba-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .ba-label.bad { color: var(--amber); }
  .ba-label.good { color: var(--green); }

  .ba-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.6;
  }

  .ba-icon { flex-shrink: 0; font-size: 16px; margin-top: 2px; }

  .ba-item.bad-item { color: var(--text2); }
  .ba-item.bad-item .ba-icon { color: var(--amber); }

  .ba-item.good-item { color: var(--white); }
  .ba-item.good-item .ba-icon { color: var(--green); }

  /* HOW SECTION */
  .steps-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
  }

  .step-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0;
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
    transition: background 0.2s;
  }

  .step-row:last-child { border-bottom: none; }
  .step-row:hover { background: var(--surface); }

  .step-num-col {
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--border);
    padding: 28px 0;
  }

  .step-circle {
    width: 36px; height: 36px;
    border: 1px solid var(--red);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--mono);
    font-size: 13px;
    color: var(--red);
    font-weight: 600;
  }

  .step-content {
    padding: 28px 32px;
  }

  .step-title {
    font-size: 21px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.2;
  }

  .step-desc {
    font-family: var(--body);
    font-size: 15px;
    font-weight: 500;
    color: var(--text2);
    line-height: 1.74;
    max-width: 580px;
  }

  /* TESTIMONIAL / QUOTE */
  .quote-block {
    background: var(--surface);
    border: 1px solid var(--border2);
    border-left: 3px solid var(--red);
    padding: 40px 48px;
    position: relative;
  }

  .quote-text {
    font-size: clamp(22px, 2.3vw, 29px);
    color: var(--white);
    line-height: 1.48;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
  }

  .quote-author {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--text3);
    letter-spacing: 0.08em;
  }

  /* WHO SECTION */
  .who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
  }

  .who-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    padding: 32px;
    transition: all 0.2s;
  }

  .who-card:hover {
    border-color: var(--red);
    background: var(--red-dim);
  }

  .who-emoji { font-size: 28px; margin-bottom: 16px; display: block; }

  .who-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .who-problem {
    font-family: var(--body);
    font-size: 15px;
    font-weight: 500;
    color: var(--text2);
    line-height: 1.72;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
  }

  .who-benefit {
    font-family: var(--body);
    font-size: 15px;
    font-weight: 500;
    color: var(--green);
    line-height: 1.72;
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }

  .who-benefit::before { content: '→'; flex-shrink: 0; }

  /* FAQ */
  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
  }

  .faq-item {
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
  }

  .faq-item:last-child { border-bottom: none; }

  .faq-q {
    padding: 24px 32px;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.2s;
    user-select: none;
  }

  .faq-q:hover { color: var(--red); }

  .faq-icon {
    color: var(--red);
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 0.3s;
  }

  .faq-item.open .faq-icon { transform: rotate(45deg); }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    font-family: var(--body);
    font-size: 15px;
    font-weight: 500;
    color: var(--text2);
    line-height: 1.74;
  }

  .faq-item.open .faq-a { max-height: 200px; }

  .faq-a-inner { padding: 0 32px 24px; }

  /* CTA FINAL */
  .cta-final {
    background: var(--bg2);
    border: 1px solid rgba(255,59,59,0.34);
    padding: 84px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-final::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center top, rgba(255,59,59,0.07) 0%, transparent 55%);
    pointer-events: none;
  }

  .cta-final h2 { margin-bottom: 16px; }

  .cta-final .section-sub {
    margin: 0 auto 40px;
    text-align: center;
  }

  .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
  }

  .btn-red {
    padding: 17px 40px;
    background: var(--red);
    color: white;
    border: none;
    font-family: var(--body);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    clip-path: polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,8px 100%,0 calc(100% - 8px));
  }

  .btn-red:hover {
    background: #ff5f5f;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px var(--red-glow-strong);
  }

  .btn-ghost {
    padding: 16px 36px;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border2);
    font-family: var(--body);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    clip-path: polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,8px 100%,0 calc(100% - 8px));
  }

  .btn-ghost:hover {
    border-color: var(--red);
    color: var(--red);
    background: var(--red-dim);
  }

  .cta-note {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--text3);
  }

  .cta-note span { color: var(--green); }

  /* FOOTER */
  footer {
    padding: 32px 0;
    border-top: 1px solid var(--border);
  }

  footer .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-left {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .footer-copy {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--text3);
  }

  .footer-by {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--text3);
  }

  .footer-by a {
    color: var(--text2);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-by a:hover { color: var(--red); }

  .footer-links {
    display: flex; gap: 20px;
  }

  .footer-links a {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--text3);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--red); }

  .mobile-sticky-cta {
    display: none;
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @keyframes pulseGlow {
    0% { box-shadow: inset 0 -2px 0 rgba(0,0,0,0.2), 0 0 0 rgba(255,59,59,0); }
    50% { box-shadow: inset 0 -2px 0 rgba(0,0,0,0.2), 0 0 26px rgba(255,59,59,0.24); }
    100% { box-shadow: inset 0 -2px 0 rgba(0,0,0,0.2), 0 0 0 rgba(255,59,59,0); }
  }

  @keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(255,79,79,0.7); }
    70% { box-shadow: 0 0 0 9px rgba(255,79,79,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,79,79,0); }
  }

  @keyframes meterGrow {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
  }

  @keyframes proofPop {
    0% { transform: scale(0.9); }
    70% { transform: scale(1.08); }
    100% { transform: scale(1); }
  }

  @keyframes spin {
    to { transform: rotate(360deg); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* RESPONSIVE */
  @media (max-width: 700px) {
    body { padding-bottom: 78px; }
    .sticky-alert {
      height: 38px;
      font-size: 10px;
      gap: 10px;
      padding: 0 8px;
      text-align: center;
    }
    nav { top: 38px; }
    .hero {
      min-height: auto;
      padding-top: 136px;
      padding-bottom: 58px;
    }
    .terminal-widget { margin-bottom: 24px; }
    .hero::after { left: 24px; right: 24px; bottom: 30px; }
    .ba-grid { grid-template-columns: 1fr; }
    .waitlist-row { flex-direction: column; }
    .email-input { border-right: 1px solid var(--border2); border-bottom: 1px solid rgba(255,59,59,0.22); }
    h1 { font-size: clamp(32px, 10.8vw, 48px); }
    .hero-desc { font-size: 18px; }
    .section-sub { font-size: 17px; }
    .beta-counter-top { flex-direction: column; align-items: flex-start; gap: 6px; }
    .beta-count { font-size: 22px; }
    .beta-count strong { font-size: 27px; }
    .quote-text { font-size: 22px; }
    .faq-q { font-size: 17px; }
    .cta-final { padding: 48px 24px; }
    .step-row { grid-template-columns: 56px 1fr; }

    .mobile-sticky-cta {
      position: fixed;
      left: 10px;
      right: 10px;
      bottom: 10px;
      z-index: 140;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 56px;
      padding: 12px 16px;
      background: linear-gradient(100deg, #ff3b3b 0%, #ff6a3d 100%);
      border: 1px solid rgba(255,255,255,0.16);
      color: #fff;
      text-decoration: none;
      font-family: var(--display);
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0.01em;
      box-shadow: 0 14px 32px rgba(0,0,0,0.45), 0 0 20px rgba(255,59,59,0.35);
      clip-path: polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px));
    }
  }