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

:root {
  --bg: #08080F;
  --bg2: #0E0D1A;
  --bg3: #131228;
  --bg4: #181736;
  --border: rgba(255,255,255,0.07);
  --border-h: rgba(255,255,255,0.14);
  --text: #F2F0FF;
  --text2: #C0BDD8;
  --muted: #8480A0;
  --accent: #7C5CFC;
  --accent2: #A183FF;
  --accent-glow: rgba(124,92,252,0.3);
  --accent-soft: rgba(124,92,252,0.1);
  --pink: #F472B6;
  --pink-glow: rgba(244,114,182,0.25);
  --pink-soft: rgba(244,114,182,0.1);
  --amber: #FBBF24;
  --amber-glow: rgba(251,191,36,0.25);
  --amber-soft: rgba(251,191,36,0.1);
  --green: #34D399;
  --green-glow: rgba(52,211,153,0.25);
  --green-soft: rgba(52,211,153,0.1);
  --mono: 'JetBrains Mono', monospace;
  --display: 'Bricolage Grotesque', sans-serif;
  --body: 'DM Sans', sans-serif;
  --r: 12px;
  --r2: 20px;
}

html { scroll-behavior: smooth; scroll-padding-top: 60px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── SCROLL REVEAL ── */
body.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
body.js .reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 60px;
  background: rgba(7,7,10,0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: var(--mono); font-size: 14px; font-weight: 500;
  color: var(--text); display: flex; align-items: center; gap: 8px; text-decoration: none;
}
.logo b { color: var(--accent); }
.logo-icon {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(124,92,252,0.45);
  border-radius: 9px;
  background: rgba(124,92,252,0.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.logo:hover .logo-icon { border-color: rgba(124,92,252,0.7); background: rgba(124,92,252,0.14); }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.nav-mid { display: flex; gap: 28px; }
.nav-mid a { font-family: var(--mono); font-size: 12px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.nav-mid a:hover { color: var(--text); }
.nav-btn {
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  padding: 8px 18px; background: var(--accent); color: #fff;
  border: none; border-radius: 99px; cursor: pointer; text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.nav-btn:hover { background: var(--accent2); transform: translateY(-1px); box-shadow: 0 8px 24px var(--accent-glow); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 130px 24px 100px;
  text-align: center;
  position: relative; overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(108,79,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108,79,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 40%, transparent 100%);
}
.orb { position: absolute; pointer-events: none; border-radius: 50%; filter: blur(80px); }
.orb1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(108,79,255,0.14) 0%, transparent 70%);
  top: -180px; left: 50%; transform: translateX(-50%);
}
.orb2 {
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(52,211,153,0.09) 0%, transparent 70%);
  top: 20%; right: -130px;
}
.orb3 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(251,191,36,0.08) 0%, transparent 70%);
  bottom: 5%; left: -90px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  padding: 6px 16px;
  background: rgba(108,79,255,0.08);
  border: 1px solid rgba(108,79,255,0.22);
  border-radius: 99px; color: var(--accent2);
  margin-bottom: 44px; letter-spacing: 0.04em;
}
.badge-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 6px var(--green-glow);
  animation: blink 1.8s infinite;
}

.hero-kicker {
  font-family: var(--mono); font-size: 13px;
  color: var(--muted); margin-bottom: 28px;
  display: flex; align-items: center; justify-content: center;
  gap: 6px; flex-wrap: wrap;
}
.hero-kicker kbd {
  font-family: var(--mono); font-size: 12px;
  padding: 3px 10px; border-radius: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-h);
  box-shadow: 0 2px 0 var(--border-h);
  color: var(--accent2);
}

.hero-quote {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(50px, 9.5vw, 118px);
  line-height: 0.95; letter-spacing: -1.5px;
  margin-bottom: 36px; max-width: 960px;
}
.hero-quote .q1 { display: block; color: var(--text); }
.hero-quote .q2 {
  display: block;
  background: linear-gradient(110deg, var(--accent) 0%, var(--accent2) 45%, var(--pink) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-truth { font-size: clamp(16px, 2vw, 20px); color: var(--text2); margin-bottom: 10px; line-height: 1.6; }
.hero-truth b { color: var(--text); font-weight: 600; }
.hero-said {
  font-size: 16px;
  color: var(--muted); margin-bottom: 56px; line-height: 1.85;
}

/* ── HERO TERMINAL ── */
.hero-terminal {
  font-family: var(--mono); font-size: 12px; line-height: 2;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-h);
  border-radius: var(--r);
  padding: 16px 24px;
  text-align: left;
  display: inline-block;
  min-width: 340px;
}
.ht-prompt { color: rgba(255,255,255,0.2); }
.ht-cmd { color: var(--accent2); }
.ht-out { color: var(--pink); }
.ht-sug { color: var(--muted); }
.ht-acc { color: var(--green); }

/* WAITLIST */
.wl { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.wl-hero { padding-top: 44px; }
.wl-row { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.wl-input {
  font-family: var(--mono); font-size: 13px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-h);
  border-radius: 10px; color: var(--text);
  width: 290px; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.wl-input::placeholder { color: var(--muted); }
.wl-input:focus {
  background: rgba(255,255,255,0.06);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(108,79,255,0.18);
}
.wl-btn {
  font-family: var(--mono); font-size: 13px; font-weight: 500;
  padding: 14px 26px;
  background: var(--accent); color: #fff;
  border: none; border-radius: 10px; cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.wl-btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.1), transparent);
  pointer-events: none;
}
.wl-btn:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 12px 32px var(--accent-glow); }
.wl-ok {
  display: none; font-family: var(--mono); font-size: 13px; color: var(--green);
  background: rgba(39,201,111,0.08); border: 1px solid rgba(39,201,111,0.2);
  padding: 13px 24px; border-radius: 10px;
}
.wl-note { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.wl-note b { color: var(--green); }

.platforms {
  display: flex; align-items: center; gap: 16px; margin-top: 44px;
  font-family: var(--mono); font-size: 11px; color: var(--muted);
}
.platform { display: flex; align-items: center; gap: 6px; }
.pdiv { width: 1px; height: 14px; background: var(--border-h); }

/* ── STATS STRIP ── */
.stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.stat { padding: 40px 28px; text-align: center; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat-n {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -2px; line-height: 1; margin-bottom: 10px;
}
.stat-n.cp { color: var(--pink); }
.stat-n.ca { color: var(--accent); }
.stat-n.cam { color: var(--amber); }
.stat-l { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── TICKER ── */
.ticker-outer {
  overflow: hidden; background: var(--bg2);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.ticker-outer::before, .ticker-outer::after {
  content: ''; position: absolute; top: 0; bottom: 0; z-index: 2; width: 140px; pointer-events: none;
}
.ticker-outer::before { left: 0; background: linear-gradient(to right, var(--bg2), transparent); }
.ticker-outer::after { right: 0; background: linear-gradient(to left, var(--bg2), transparent); }
.ticker-track { display: flex; width: max-content; animation: roll 40s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
.tick {
  font-family: var(--mono); font-size: 14px; color: var(--muted); white-space: nowrap;
  padding: 16px 40px; border-right: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
  transition: color 0.2s, background 0.2s;
}
.tick:hover { color: var(--text); background: rgba(255,255,255,0.02); }
.tick .sep { color: rgba(255,255,255,0.1); }
@keyframes roll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── GUILT GRID ── */
.guilt { max-width: 1120px; margin: 0 auto; padding: 64px 32px; }
.section-lbl {
  font-family: var(--mono); font-size: 14px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 48px; display: flex; align-items: center; gap: 14px;
}
.section-lbl::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.guilt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.g-card {
  background: var(--bg2); padding: 36px 32px;
  position: relative; overflow: hidden;
  transition: background 0.3s, box-shadow 0.35s; cursor: default;
}
.g-card:hover { background: var(--bg3); }
.g-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; }
.g-card.c1::before { background: var(--pink); }
.g-card.c2::before { background: var(--amber); }
.g-card.c3::before { background: var(--accent); }
.g-card.c4::before { background: var(--green); }
.g-card.c5::before { background: var(--pink); }
.g-card.c6::before { background: var(--amber); }
.g-card.c1:hover, .g-card.c5:hover { box-shadow: 0 0 48px -12px var(--pink-glow), inset 0 0 40px -20px var(--pink-soft); }
.g-card.c2:hover, .g-card.c6:hover { box-shadow: 0 0 48px -12px var(--amber-glow), inset 0 0 40px -20px var(--amber-soft); }
.g-card.c3:hover { box-shadow: 0 0 48px -12px var(--accent-glow), inset 0 0 40px -20px var(--accent-soft); }
.g-card.c4:hover { box-shadow: 0 0 48px -12px var(--green-glow), inset 0 0 40px -20px var(--green-soft); }
.g-em {
  margin-bottom: 24px; display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border: 1.5px solid rgba(124,92,252,0.4);
  border-radius: 12px;
  background: rgba(124,92,252,0.08);
}

/* ── ICON LIBRARY ── */
.cp-icons-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.cp-icon { display: block; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; overflow: visible; }
.g-em .cp-icon { width: 32px; height: 32px; }
.notif-app-icon .cp-icon { width: 22px; height: 22px; stroke-width: 2; }
.check-ico .cp-icon { width: 12px; height: 12px; stroke: currentColor; stroke-width: 2.5; }
.wl-check-ico { display: inline-block; vertical-align: middle; width: 13px; height: 13px; stroke: currentColor; stroke-width: 2.5; margin-right: 2px; }
.wl-note .wl-check-ico { color: var(--green); }
.back-top .cp-icon { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; }
.g-confession {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(16px, 1.8vw, 20px); line-height: 1.25;
  color: var(--text); margin-bottom: 12px;
}
.g-confession::before { content: '"'; color: var(--muted); margin-right: 2px; }
.g-confession::after { content: '"'; color: var(--muted); margin-left: 2px; }
.g-reality { font-size: 14px; color: var(--muted); line-height: 1.75; }
.g-reality b { color: var(--pink); font-weight: 500; }
.g-card.c2 .g-reality b, .g-card.c6 .g-reality b { color: var(--amber); }
.g-card.c3 .g-reality b { color: var(--accent); }
.g-card.c4 .g-reality b { color: var(--green); }
.g-card.c5 .g-reality b { color: var(--pink); }

/* ── HOW IT WORKS ── */
.how { max-width: 1120px; margin: 0 auto; padding: 64px 32px; border-top: 1px solid var(--border); }
.how-head {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(34px, 5vw, 64px); letter-spacing: -1px; line-height: 1.05;
  margin-bottom: 72px;
}
.how-head em { color: var(--accent); font-style: normal; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.step {
  background: var(--bg2); padding: 44px 36px;
  position: relative; overflow: hidden;
  transition: background 0.25s;
}
.step:hover { background: var(--bg3); }
.step-num {
  position: absolute; top: 20px; right: 24px;
  font-family: var(--display); font-weight: 800;
  font-size: 72px; letter-spacing: -4px; line-height: 1;
  color: rgba(108,79,255,0.2);
  transition: color 0.25s; pointer-events: none;
}
.step:hover .step-num { color: rgba(108,79,255,0.35); }
.step h3 {
  font-family: var(--display); font-weight: 800;
  font-size: 22px; color: var(--text);
  margin-bottom: 12px; letter-spacing: -0.3px;
}
.step p { font-size: 15px; color: var(--muted); line-height: 1.85; }
.step-tag {
  display: inline-block; margin-top: 18px;
  font-family: var(--mono); font-size: 10px;
  padding: 4px 10px; border-radius: 5px; letter-spacing: 0.04em;
  background: var(--accent-soft); color: var(--accent2);
}

/* ── NOTIFICATION DEMO ── */
.demo { max-width: 1120px; margin: 0 auto; padding: 64px 32px; border-top: 1px solid var(--border); }
.demo-inner {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 2px;
  border: 1px solid var(--border); border-radius: var(--r2);
  overflow: hidden; background: var(--border);
}
.demo-left {
  background: var(--bg2); padding: 56px 52px;
  display: flex; flex-direction: column; justify-content: center;
}
.demo-left h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.05; letter-spacing: -1.5px; margin-bottom: 16px;
}
.demo-left h2 em { color: var(--accent); font-style: normal; }
.demo-left p { font-size: 15px; color: var(--muted); line-height: 1.85; max-width: 340px; margin-bottom: 32px; }
.check-list { display: flex; flex-direction: column; gap: 10px; list-style: none; padding: 0; margin: 0; }
.check {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--text2);
}
.check-ico {
  width: 20px; height: 20px; border-radius: 5px;
  background: var(--green-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); flex-shrink: 0;
}

.demo-right {
  background: var(--bg3); padding: 48px 40px;
  display: flex; flex-direction: column; gap: 14px; justify-content: center;
  position: relative; overflow: hidden;
}
.demo-right::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(transparent, transparent 23px, rgba(255,255,255,0.013) 23px, rgba(255,255,255,0.013) 24px);
  pointer-events: none;
}

/* OS-style notification cards */
.notif {
  background: rgba(22,22,35,0.96);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex; gap: 12px; align-items: flex-start;
  animation: slideIn 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
  box-shadow: 0 8px 36px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.3);
  position: relative; z-index: 1; backdrop-filter: blur(12px);
}
.notif:nth-child(1) { animation-delay: 0.15s; }
.notif:nth-child(2) { animation-delay: 0.38s; }
.notif:nth-child(3) { animation-delay: 0.62s; }
@keyframes slideIn { from { opacity: 0; transform: translateX(20px) scale(0.97); } to { opacity: 1; transform: none; } }

.notif-app-icon {
  width: 38px; height: 38px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(124,92,252,0.4);
  background: rgba(124,92,252,0.08);
}

.notif-content { flex: 1; min-width: 0; }
.notif-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 3px; }
.notif-app { font-family: var(--mono); font-size: 10px; color: var(--muted); font-weight: 500; letter-spacing: 0.04em; }
.notif-time { font-family: var(--mono); font-size: 10px; color: var(--muted); }
.notif-title { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 3px; line-height: 1.4; }
.notif-msg { font-size: 12px; color: var(--text2); line-height: 1.55; }
.notif-actions { display: flex; gap: 6px; margin-top: 10px; }
.notif-act {
  font-family: var(--mono); font-size: 10px;
  padding: 5px 11px; border-radius: 6px; cursor: pointer;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.notif-act:hover { opacity: 0.8; }
.notif-act.sec { background: rgba(255,255,255,0.07); color: var(--muted); border: 1px solid var(--border); }
.notif-act.pri { background: var(--accent); color: #fff; border: none; }

/* ── MID QUOTE ── */
.midquote {
  padding: 56px 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.midquote-inner {
  display: flex; flex-direction: column; align-items: center; gap: 32px;
  max-width: none; margin: 0 auto; text-align: center;
}
.midquote-text {
  font-family: var(--display); font-weight: 800;
  font-size: 5.5vw;
  letter-spacing: -2px; line-height: 1.05;
  color: var(--text);
  white-space: nowrap;
}
.midquote-text em {
  font-style: normal;
  background: linear-gradient(110deg, var(--accent), var(--pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── STORY ── */
.story { max-width: 740px; margin: 0 auto; padding: 64px 32px; text-align: center; border-top: 1px solid var(--border); }
.story-kicker {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 32px;
}
.story h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(32px, 5vw, 58px);
  letter-spacing: -1px; line-height: 1.05; margin-bottom: 52px;
}
.story h2 em { color: var(--pink); font-style: normal; }

.story-cards {
  display: flex; flex-direction: column; gap: 2px;
  text-align: left; margin-bottom: 48px;
  border: 1px solid var(--border); border-radius: var(--r); overflow: hidden;
}
.s-card {
  background: var(--bg2); padding: 22px 28px;
  font-size: 15px; color: var(--muted); line-height: 1.9;
  border-left: 3px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}
.s-card:hover { background: var(--bg3); border-left-color: var(--accent); }
.s-card b { color: var(--text); font-weight: 500; }

.story-stamp { display: flex; justify-content: center; margin-top: 16px; }
.stamp-card {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  padding: 36px 48px;
  background: linear-gradient(var(--bg2), var(--bg2)) padding-box,
              linear-gradient(135deg, var(--accent), var(--pink)) border-box;
  border: 1.5px solid transparent;
  border-radius: 20px;
  text-align: center;
}
.stamp-mark {
  width: 64px; height: 64px; border-radius: 18px; flex-shrink: 0;
  background: rgba(124,92,252,0.08);
  border: 1.5px solid rgba(124,92,252,0.45);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px var(--accent-glow);
}
.stamp-text { text-align: center; }
.stamp-name {
  font-family: var(--display); font-size: 26px; font-weight: 700;
  color: var(--text); display: block; margin-bottom: 10px; letter-spacing: -0.5px;
}
.stamp-name b {
  background: linear-gradient(110deg, var(--accent), var(--pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stamp-sub { font-family: var(--mono); font-size: 12px; color: var(--muted); line-height: 2; letter-spacing: 0.02em; }

/* ── FEATURES ── */
.features { max-width: 1120px; margin: 0 auto; padding: 64px 32px; border-top: 1px solid var(--border); }
.feat-head {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(34px, 5vw, 62px);
  letter-spacing: -1px; line-height: 1.05; margin-bottom: 56px;
}
.feat-head em { color: var(--accent); font-style: normal; }

.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.feat {
  background: var(--bg2); padding: 40px 34px;
  transition: background 0.2s; position: relative; overflow: hidden;
}
.feat:hover { background: var(--bg3); }
.feat-num {
  position: absolute; top: 20px; right: 24px;
  font-family: var(--display); font-weight: 800;
  font-size: 64px; letter-spacing: -2px; line-height: 1;
  color: rgba(124,92,252,0.18);
  transition: color 0.25s; pointer-events: none; user-select: none;
}
.feat:hover .feat-num { color: rgba(124,92,252,0.32); }
.feat::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.feat:hover::before { transform: scaleX(1); }
.feat h3 { font-family: var(--display); font-weight: 800; font-size: 19px; color: var(--text); margin-bottom: 10px; letter-spacing: -0.2px; }
.feat p { font-size: 15px; color: var(--muted); line-height: 1.85; }
.feat-pill {
  display: inline-block; margin-top: 18px;
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  padding: 4px 10px; border-radius: 5px; letter-spacing: 0.04em;
}
.pill-only { background: var(--pink-soft); color: var(--pink); }
.pill-core { background: var(--accent-soft); color: var(--accent2); }
.pill-soon { background: var(--amber-soft); color: var(--amber); }

/* ── FINAL CTA ── */
.final {
  text-align: center; padding: 80px 24px;
  position: relative; overflow: hidden;
  border-top: 1px solid var(--border);
}
.final-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 60% at 50% 110%, rgba(108,79,255,0.14) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 50% -20%, rgba(255,61,127,0.06) 0%, transparent 60%);
}
.final-kicker {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 24px; position: relative;
}
.final h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(42px, 8.5vw, 100px);
  letter-spacing: -1.5px; line-height: 1;
  margin-bottom: 24px; position: relative;
}
.final h2 .l1 { display: block; color: var(--text); }
.final h2 .l2 {
  display: block;
  background: linear-gradient(110deg, var(--accent), var(--pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.final-sub { font-size: 16px; color: var(--muted); margin-bottom: 52px; position: relative; line-height: 1.75; }
.final .wl { position: relative; }
.final .wl-note { margin-top: 8px; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 36px 40px;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.foot-logo { font-family: var(--mono); font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.foot-logo b { color: var(--accent); }
.foot-logo-icon {
  width: 28px; height: 28px; border-radius: 7px; flex-shrink: 0;
  background: rgba(124,92,252,0.08);
  border: 1px solid rgba(124,92,252,0.3);
  display: flex; align-items: center; justify-content: center;
}
.foot-links { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.foot-links a {
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  text-decoration: none; transition: color 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.foot-links a:hover { color: var(--text); }
.foot-ico { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.75; flex-shrink: 0; }
.foot-social {
  width: 32px; height: 32px; border-radius: 8px;
  border: 1.5px solid color-mix(in srgb, currentColor 35%, transparent);
  background: color-mix(in srgb, currentColor 6%, transparent);
  display: inline-flex !important; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.foot-social:hover { border-color: color-mix(in srgb, currentColor 60%, transparent) !important; background: color-mix(in srgb, currentColor 12%, transparent) !important; }
.foot-copy {
  width: 100%; font-family: var(--mono); font-size: 11px;
  color: var(--muted); text-align: center; margin-top: 8px;
}

/* ── BACK TO TOP ── */
.back-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 300;
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(124,92,252,0.08); color: var(--accent2);
  border: 1.5px solid rgba(124,92,252,0.4); cursor: pointer; font-size: 16px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(12px);
  opacity: 0; pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s, border-color 0.2s, background 0.2s;
}
.back-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-top:hover { border-color: rgba(124,92,252,0.7); background: rgba(124,92,252,0.14); }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .nav-mid { display: none; }
  .guilt-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step-num { font-size: 56px; }
  .demo-inner { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  nav { padding: 0 20px; }
  .hero { padding: 100px 20px 80px; }
  .hero-quote { letter-spacing: -2px; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .guilt { padding: 40px 16px; }
  .guilt-grid { grid-template-columns: 1fr; }
  .how { padding: 40px 16px; }
  .demo { padding: 40px 16px; }
  .demo-left { padding: 28px 20px; }
  .demo-right { padding: 28px 20px; }
  .story { padding: 40px 20px; }
  .features { padding: 40px 16px; }
  .feat-grid { grid-template-columns: 1fr; }
  .final { padding: 60px 20px; }
  .hero-terminal { min-width: unset; width: 100%; }
  .midquote-text { white-space: normal; font-size: clamp(28px, 7vw, 44px); letter-spacing: -1px; }
  footer { padding: 28px 20px; flex-direction: column; align-items: flex-start; }
}
