/* IgniteConvo — Landing Page v2 "After Dark"
   A cinematic, animation-heavy landing experience. */

:root {
  --bg: #0F0D0B;
  --bg-raised: #17140F;
  --bg-card: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.08);
  --card-border-hover: rgba(255, 135, 102, 0.35);
  --text: #F7F2EC;
  --text-secondary: #A89F96;
  --text-faint: #6E655D;
  --accent: #FF5733;
  --accent-soft: #FF8566;
  --accent-glow: rgba(255, 87, 51, 0.15);
  --ember: #FFB08A;
  --purple: #A78BFA;
  --green: #34D399;
  --blue: #60A5FA;
  --gold: #FBBF24;
  --bubble-them: rgba(255, 255, 255, 0.07);
  --bubble-you: linear-gradient(135deg, #FF5733, #FF7A45);
  --radius: 24px;
  --radius-sm: 14px;
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: white; }

/* ── Backdrop: aurora blobs + ember canvas + grain ────────── */

.backdrop {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}

.aurora {
  position: absolute; border-radius: 50%;
  filter: blur(110px); opacity: 0.5;
  will-change: transform;
}
.aurora-1 {
  width: 60vw; height: 60vw; top: -25vw; right: -18vw;
  background: radial-gradient(circle, rgba(255, 87, 51, 0.35), transparent 65%);
  animation: drift1 26s ease-in-out infinite alternate;
}
.aurora-2 {
  width: 48vw; height: 48vw; top: 45vh; left: -22vw;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.22), transparent 65%);
  animation: drift2 32s ease-in-out infinite alternate;
}
.aurora-3 {
  width: 42vw; height: 42vw; bottom: -18vw; right: 8vw;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.16), transparent 65%);
  animation: drift3 38s ease-in-out infinite alternate;
}

@keyframes drift1 { from { transform: translate(0, 0) scale(1); } to { transform: translate(-8vw, 10vh) scale(1.15); } }
@keyframes drift2 { from { transform: translate(0, 0) scale(1); } to { transform: translate(10vw, -8vh) scale(1.1); } }
@keyframes drift3 { from { transform: translate(0, 0) scale(1); } to { transform: translate(-6vw, -10vh) scale(1.2); } }

#embers { position: absolute; inset: 0; }

.grain {
  position: fixed; inset: 0; z-index: 999; pointer-events: none;
  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='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

main { position: relative; z-index: 1; }

/* ── Scroll progress spark ────────────────────────────────── */

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  z-index: 200; border-radius: 0 3px 3px 0;
  box-shadow: 0 0 12px rgba(255, 87, 51, 0.8);
}

/* ── Nav ──────────────────────────────────────────────────── */

nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  z-index: 100; width: min(1100px, calc(100% - 32px));
  padding: 10px 12px 10px 20px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(20, 17, 13, 0.6);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--card-border);
  border-radius: 100px;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s, background 0.45s;
  animation: navDrop 0.9s var(--ease-out) both;
}
nav.scrolled { box-shadow: 0 12px 40px rgba(0,0,0,0.45); background: rgba(20, 17, 13, 0.85); }
nav.hidden-nav { transform: translateX(-50%) translateY(-130%); }

@keyframes navDrop { from { opacity: 0; transform: translateX(-50%) translateY(-24px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }

.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.15rem; letter-spacing: -0.02em;
  text-decoration: none; color: var(--text);
}
.logo-icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, #FF5733, #FF8A3D);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; box-shadow: 0 0 20px rgba(255, 87, 51, 0.4);
  animation: logoFlicker 4s ease-in-out infinite;
}
@keyframes logoFlicker {
  0%, 100% { box-shadow: 0 0 20px rgba(255,87,51,0.4); }
  50% { box-shadow: 0 0 32px rgba(255,87,51,0.65); }
}

.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a:not(.btn-primary) {
  text-decoration: none; color: var(--text-secondary);
  font-weight: 500; font-size: 0.9rem; position: relative;
  transition: color 0.25s;
}
.nav-links a:not(.btn-primary)::after {
  content: ''; position: absolute; left: 0; bottom: -5px; height: 2px; width: 0;
  background: var(--accent); border-radius: 2px; transition: width 0.3s var(--ease-out);
}
.nav-links a:not(.btn-primary):hover { color: var(--text); }
.nav-links a:not(.btn-primary):hover::after { width: 100%; }

/* ── Buttons ──────────────────────────────────────────────── */

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; color: white; border: none;
  background: linear-gradient(135deg, #FF5733, #FF7A45);
  border-radius: 100px; font-family: 'Outfit', sans-serif; font-weight: 600;
  font-size: 0.95rem; cursor: pointer; text-decoration: none;
  position: relative; overflow: hidden;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s;
  box-shadow: 0 4px 24px rgba(255, 87, 51, 0.35), inset 0 1px 0 rgba(255,255,255,0.25);
  will-change: transform;
}
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -80%;
  width: 60%; height: 100%; transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  animation: shimmer 3.2s ease-in-out infinite;
}
@keyframes shimmer { 0%, 55%, 100% { left: -80%; } 75% { left: 130%; } }
.btn-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 40px rgba(255, 87, 51, 0.55), inset 0 1px 0 rgba(255,255,255,0.25); }
.btn-primary:active { transform: translateY(0) scale(0.98); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; background: transparent; color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.18); border-radius: 100px;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.95rem;
  cursor: pointer; text-decoration: none;
  transition: all 0.3s var(--ease-out);
}
.btn-secondary:hover { border-color: var(--accent-soft); color: var(--accent-soft); background: var(--accent-glow); transform: translateY(-2px); }

.nav-cta { padding: 10px 20px; font-size: 0.88rem; }
.nav-cta::before { display: none; }

/* ── Hero ─────────────────────────────────────────────────── */

.hero {
  padding: 170px 40px 80px; max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px;
  align-items: center; min-height: 100vh;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 18px; border-radius: 100px;
  background: rgba(255, 87, 51, 0.09);
  border: 1px solid rgba(255, 87, 51, 0.25);
  font-size: 0.82rem; font-weight: 600; color: var(--accent-soft);
  margin-bottom: 28px;
  animation: fadeUp 0.7s var(--ease-out) 0.1s both;
}
.hero-badge .spark { animation: sparkSpin 2.6s ease-in-out infinite; display: inline-block; }
@keyframes sparkSpin { 0%, 100% { transform: rotate(0) scale(1); } 50% { transform: rotate(18deg) scale(1.25); } }

h1 {
  font-family: 'Fraunces', serif; font-weight: 560;
  font-size: clamp(2.9rem, 5.4vw, 4.6rem); line-height: 1.05;
  letter-spacing: -0.03em; margin-bottom: 26px;
}
h1 .word {
  display: inline-block; overflow: hidden; vertical-align: bottom;
}
h1 .word > span {
  display: inline-block; transform: translateY(110%);
  animation: wordRise 0.85s var(--ease-out) both;
}
h1 .accent-word > span {
  background: linear-gradient(100deg, #FF5733, #FFB08A, #FF5733);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: wordRise 0.85s var(--ease-out) both, gradientSlide 5s linear infinite;
  font-style: italic; padding-right: 0.06em;
}
@keyframes wordRise { to { transform: translateY(0); } }
@keyframes gradientSlide { to { background-position: -200% 0; } }

.hero-subtitle {
  font-size: 1.15rem; line-height: 1.65; color: var(--text-secondary);
  margin-bottom: 36px; max-width: 480px;
  animation: fadeUp 0.7s var(--ease-out) 0.55s both;
}

.hero-buttons {
  display: flex; gap: 14px; align-items: center; margin-bottom: 44px; flex-wrap: wrap;
  animation: fadeUp 0.7s var(--ease-out) 0.7s both;
}

.social-proof {
  display: flex; align-items: center; gap: 14px;
  animation: fadeUp 0.7s var(--ease-out) 0.85s both;
}
.avatar-stack { display: flex; }
.avatar-stack span {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2.5px solid var(--bg); margin-left: -11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; background: var(--bg-raised);
  transition: transform 0.3s var(--ease-spring);
}
.avatar-stack span:first-child { margin-left: 0; }
.avatar-stack:hover span { transform: translateY(-4px); }
.avatar-stack:hover span:nth-child(2) { transition-delay: 0.04s; }
.avatar-stack:hover span:nth-child(3) { transition-delay: 0.08s; }
.avatar-stack:hover span:nth-child(4) { transition-delay: 0.12s; }
.avatar-stack:hover span:nth-child(5) { transition-delay: 0.16s; }
.social-proof-text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.45; }
.social-proof-text strong { color: var(--text); font-weight: 600; }

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

/* ── Phone demo ───────────────────────────────────────────── */

.hero-visual {
  display: flex; justify-content: center; perspective: 1400px;
  animation: fadeUp 0.9s var(--ease-out) 0.5s both;
}

.phone-frame {
  width: 340px; border-radius: 42px; padding: 14px;
  background: linear-gradient(160deg, rgba(255,255,255,0.09), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 30px 90px rgba(0,0,0,0.6), 0 0 60px rgba(255,87,51,0.12);
  position: relative;
  transform-style: preserve-3d;
  animation: phoneFloat 7s ease-in-out infinite;
  will-change: transform;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotateY(-6deg) rotateX(2deg); }
  50% { transform: translateY(-14px) rotateY(-2deg) rotateX(-1deg); }
}

.phone-screen {
  background: #131009; border-radius: 32px; overflow: hidden;
  display: flex; flex-direction: column; height: 560px;
  border: 1px solid rgba(255,255,255,0.06);
}
.phone-notch {
  width: 110px; height: 26px; background: #000; border-radius: 100px;
  margin: 10px auto 4px; flex-shrink: 0;
}

.chat-header {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 18px 14px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.chat-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #FF8A3D, #FF5733);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.chat-name { font-weight: 600; font-size: 0.92rem; }
.chat-status { font-size: 0.75rem; color: var(--green); font-weight: 500; }
.chat-status::before {
  content: ''; display: inline-block; width: 7px; height: 7px;
  background: var(--green); border-radius: 50%; margin-right: 5px;
  animation: statusPulse 2s infinite;
}
@keyframes statusPulse { 0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(52,211,153,0.5); } 50% { opacity: 0.6; box-shadow: 0 0 0 5px rgba(52,211,153,0); } }

.chat-messages {
  flex: 1; display: flex; flex-direction: column; gap: 10px;
  padding: 16px; overflow: hidden; justify-content: flex-end;
}

.msg {
  max-width: 85%; padding: 11px 15px; font-size: 0.85rem; line-height: 1.5;
  animation: msgPop 0.5s var(--ease-spring) both;
  transform-origin: bottom left;
}
.msg-them { background: var(--bubble-them); border-radius: 18px 18px 18px 5px; align-self: flex-start; color: var(--text); }
.msg-you { background: var(--bubble-you); border-radius: 18px 18px 5px 18px; align-self: flex-end; color: white; transform-origin: bottom right; }
.msg-coach {
  background: rgba(167, 139, 250, 0.1);
  border: 1px solid rgba(167, 139, 250, 0.3); border-radius: 16px;
  align-self: center; max-width: 94%; color: var(--text);
  transform-origin: center bottom;
}
.coach-label {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.68rem; font-weight: 700; color: var(--purple);
  text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 4px;
}
@keyframes msgPop { from { opacity: 0; transform: translateY(14px) scale(0.85); } to { opacity: 1; transform: translateY(0) scale(1); } }

.typing-bubble { display: inline-flex; gap: 5px; padding: 13px 16px; }
.typing-bubble .dot {
  width: 7px; height: 7px; background: var(--text-faint); border-radius: 50%;
  animation: dotBounce 1.3s infinite both;
}
.typing-bubble .dot:nth-child(2) { animation-delay: 0.15s; }
.typing-bubble .dot:nth-child(3) { animation-delay: 0.3s; }
@keyframes dotBounce { 0%, 80%, 100% { transform: translateY(0); opacity: 0.4; } 40% { transform: translateY(-5px); opacity: 1; } }

.phone-input {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px 20px; border-top: 1px solid rgba(255,255,255,0.07);
}
.phone-input .field {
  flex: 1; background: rgba(255,255,255,0.06); border-radius: 100px;
  padding: 10px 16px; font-size: 0.82rem; color: var(--text-faint);
  white-space: nowrap; overflow: hidden;
}
.phone-input .field .caret {
  display: inline-block; width: 2px; height: 0.95em; background: var(--accent-soft);
  vertical-align: text-bottom; margin-left: 1px;
  animation: caretBlink 0.9s step-end infinite;
}
@keyframes caretBlink { 50% { opacity: 0; } }
.phone-input .send {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #FF5733, #FF7A45);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 15px;
}

/* ── Marquee ──────────────────────────────────────────────── */

.marquee-section { padding: 30px 0 10px; overflow: hidden; position: relative; }
.marquee-section::before, .marquee-section::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.marquee-section::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee-section::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }

.marquee { display: flex; gap: 14px; width: max-content; animation: marqueeScroll 36s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee-row-2 { animation-direction: reverse; animation-duration: 42s; margin-top: 14px; }
@keyframes marqueeScroll { to { transform: translateX(-50%); } }

.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 100px; white-space: nowrap;
  background: var(--bg-card); border: 1px solid var(--card-border);
  font-size: 0.88rem; font-weight: 500; color: var(--text-secondary);
  transition: all 0.3s;
}
.chip:hover { border-color: var(--card-border-hover); color: var(--text); background: var(--accent-glow); }

/* ── Sections ─────────────────────────────────────────────── */

.section { padding: 110px 40px; max-width: 1180px; margin: 0 auto; position: relative; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--accent-soft); margin-bottom: 16px;
}
.section-label::before {
  content: ''; width: 24px; height: 1.5px; background: var(--accent); border-radius: 2px;
}
.section-title {
  font-family: 'Fraunces', serif; font-weight: 560;
  font-size: clamp(2.1rem, 3.8vw, 3.2rem); line-height: 1.12;
  letter-spacing: -0.02em; margin-bottom: 18px;
}
.section-title em { font-style: italic; color: var(--accent-soft); }
.section-subtitle {
  font-size: 1.08rem; color: var(--text-secondary); max-width: 560px;
  line-height: 1.65; margin-bottom: 60px;
}

/* ── Scroll reveal ────────────────────────────────────────── */

.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ── Stats ────────────────────────────────────────────────── */

.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  padding: 40px; max-width: 1180px; margin: 40px auto 0;
}
.stat {
  text-align: center; padding: 34px 20px;
  background: var(--bg-card); border: 1px solid var(--card-border);
  border-radius: var(--radius); position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease-spring), border-color 0.4s;
}
.stat:hover { transform: translateY(-6px); border-color: var(--card-border-hover); }
.stat::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(120px circle at 50% 0%, var(--accent-glow), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.stat:hover::after { opacity: 1; }
.stat h3 {
  font-family: 'Fraunces', serif; font-weight: 560; font-size: 2.9rem;
  background: linear-gradient(135deg, var(--accent-soft), var(--gold));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 6px; font-variant-numeric: tabular-nums;
}
.stat p { font-size: 0.88rem; color: var(--text-secondary); font-weight: 500; position: relative; }

/* ── Convo cards ──────────────────────────────────────────── */

.convos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.convo-card {
  background: var(--bg-card); border-radius: var(--radius); padding: 28px;
  border: 1px solid var(--card-border);
  transition: transform 0.45s var(--ease-spring), border-color 0.45s, box-shadow 0.45s;
  position: relative; overflow: hidden;
  transform-style: preserve-3d; will-change: transform;
}
.convo-card:hover { border-color: var(--card-border-hover); box-shadow: 0 24px 70px rgba(0,0,0,0.45), 0 0 40px rgba(255,87,51,0.07); }
.convo-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; opacity: 0.9; }
.convo-card:nth-child(1)::before { background: linear-gradient(90deg, transparent, var(--accent), transparent); }
.convo-card:nth-child(2)::before { background: linear-gradient(90deg, transparent, var(--purple), transparent); }
.convo-card:nth-child(3)::before { background: linear-gradient(90deg, transparent, var(--blue), transparent); }

.convo-scenario {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600; margin-bottom: 20px;
}
.convo-card:nth-child(1) .convo-scenario { background: rgba(255, 87, 51, 0.1); color: var(--accent-soft); border: 1px solid rgba(255,87,51,0.2); }
.convo-card:nth-child(2) .convo-scenario { background: rgba(167, 139, 250, 0.1); color: var(--purple); border: 1px solid rgba(167,139,250,0.2); }
.convo-card:nth-child(3) .convo-scenario { background: rgba(96, 165, 250, 0.1); color: var(--blue); border: 1px solid rgba(96,165,250,0.2); }

.convo-messages { display: flex; flex-direction: column; gap: 8px; }
.convo-messages .msg { animation: none; font-size: 0.84rem; padding: 10px 14px; opacity: 0; transform: translateY(10px) scale(0.94); transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-spring); }
.convo-card.in .convo-messages .msg { opacity: 1; transform: translateY(0) scale(1); }
.convo-card.in .convo-messages .msg:nth-child(1) { transition-delay: 0.15s; }
.convo-card.in .convo-messages .msg:nth-child(2) { transition-delay: 0.3s; }
.convo-card.in .convo-messages .msg:nth-child(3) { transition-delay: 0.45s; }
.convo-card.in .convo-messages .msg:nth-child(4) { transition-delay: 0.6s; }
.convo-card.in .convo-messages .msg:nth-child(5) { transition-delay: 0.75s; }
.convo-messages .msg-coach { margin-top: 6px; }

.convo-result {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--card-border);
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 500; color: var(--green);
}

/* ── Features ─────────────────────────────────────────────── */

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.feature-card {
  padding: 36px; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--card-border);
  position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease-spring), border-color 0.4s;
}
.feature-card::after {
  content: ''; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 135, 102, 0.08), transparent 70%);
  transition: opacity 0.4s; pointer-events: none;
}
.feature-card:hover { transform: translateY(-5px); border-color: var(--card-border-hover); }
.feature-card:hover::after { opacity: 1; }

.feature-icon {
  width: 54px; height: 54px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 25px; margin-bottom: 22px;
  transition: transform 0.4s var(--ease-spring);
}
.feature-card:hover .feature-icon { transform: scale(1.12) rotate(-6deg); }
.feature-card:nth-child(1) .feature-icon { background: rgba(255,87,51,0.12); }
.feature-card:nth-child(2) .feature-icon { background: rgba(167,139,250,0.12); }
.feature-card:nth-child(3) .feature-icon { background: rgba(52,211,153,0.12); }
.feature-card:nth-child(4) .feature-icon { background: rgba(96,165,250,0.12); }
.feature-card:nth-child(5) .feature-icon { background: rgba(251,191,36,0.12); }
.feature-card:nth-child(6) .feature-icon { background: rgba(255,87,51,0.12); }

.feature-card h3 { font-weight: 700; font-size: 1.08rem; margin-bottom: 9px; letter-spacing: -0.01em; }
.feature-card p { font-size: 0.9rem; line-height: 1.65; color: var(--text-secondary); }

/* ── How it works ─────────────────────────────────────────── */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.step-card {
  background: var(--bg-card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 36px 30px; position: relative;
  transition: transform 0.4s var(--ease-spring), border-color 0.4s;
}
.step-card:hover { transform: translateY(-5px); border-color: var(--card-border-hover); }

.step-num {
  font-family: 'Fraunces', serif; font-size: 4.4rem; line-height: 1; font-weight: 560;
  background: linear-gradient(160deg, rgba(255,135,102,0.85), rgba(255,135,102,0.1));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
}
.step-card h3 { font-weight: 700; font-size: 1.12rem; margin-bottom: 10px; }
.step-card p { font-size: 0.92rem; line-height: 1.65; color: var(--text-secondary); }
.step-arrow {
  position: absolute; top: 42px; right: -22px; z-index: 2;
  color: var(--accent-soft); font-size: 1.3rem; opacity: 0.7;
  animation: arrowNudge 2s ease-in-out infinite;
}
@keyframes arrowNudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(5px); } }

/* ── Pricing ──────────────────────────────────────────────── */

.billing-toggle-wrap { display: flex; justify-content: center; margin-bottom: 40px; }
.billing-toggle {
  display: inline-flex; background: var(--bg-card); border-radius: 100px;
  padding: 4px; border: 1px solid var(--card-border);
}
.billing-toggle-btn {
  border: none; background: transparent; padding: 9px 22px;
  font-size: 0.9rem; font-weight: 600; border-radius: 100px; cursor: pointer;
  color: var(--text-secondary); font-family: 'Outfit', sans-serif;
  transition: all 0.3s var(--ease-out); display: inline-flex; align-items: center;
}
.billing-toggle-btn.active {
  background: linear-gradient(135deg, #FF5733, #FF7A45); color: white;
  box-shadow: 0 4px 18px rgba(255,87,51,0.35);
}
.save-tag {
  background: var(--green); color: #06281B; font-size: 0.63rem; font-weight: 800;
  padding: 2px 7px; border-radius: 100px; margin-left: 6px; letter-spacing: 0.02em;
}

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 960px; margin: 0 auto; align-items: stretch;
}

.pricing-card {
  background: var(--bg-card); border-radius: var(--radius); padding: 38px 34px;
  border: 1px solid var(--card-border); text-align: center;
  transition: transform 0.4s var(--ease-spring), border-color 0.4s, box-shadow 0.4s;
  position: relative; display: flex; flex-direction: column;
}
.pricing-card:hover { transform: translateY(-6px); border-color: var(--card-border-hover); box-shadow: 0 24px 70px rgba(0,0,0,0.4); }

.pricing-card.popular {
  border: 1.5px solid rgba(255, 87, 51, 0.55);
  background: linear-gradient(180deg, rgba(255,87,51,0.07), rgba(255,255,255,0.02));
  box-shadow: 0 12px 50px rgba(255,87,51,0.15);
}
.pricing-card.popular:hover { box-shadow: 0 24px 80px rgba(255,87,51,0.25); }

.pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #FF5733, #FF8A3D); color: white;
  font-size: 0.72rem; font-weight: 700; padding: 5px 16px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap;
  box-shadow: 0 4px 18px rgba(255,87,51,0.4);
  animation: badgeGlow 2.5s ease-in-out infinite;
}
@keyframes badgeGlow { 0%, 100% { box-shadow: 0 4px 18px rgba(255,87,51,0.4); } 50% { box-shadow: 0 4px 28px rgba(255,87,51,0.7); } }

.pricing-card h3 { font-weight: 700; font-size: 1.1rem; margin-bottom: 10px; }
.pricing-price {
  font-family: 'Fraunces', serif; font-weight: 560; font-size: 3.1rem;
  line-height: 1; margin-bottom: 6px; font-variant-numeric: tabular-nums;
  transition: opacity 0.25s, transform 0.25s;
}
.pricing-price.swapping { opacity: 0; transform: translateY(8px); }
.pricing-price span { font-family: 'Outfit', sans-serif; font-size: 0.95rem; color: var(--text-secondary); font-weight: 400; }
.pricing-desc { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 26px; min-height: 2.4em; }

.pricing-features { list-style: none; text-align: left; margin-bottom: 30px; flex: 1; }
.pricing-features li {
  font-size: 0.9rem; color: var(--text-secondary); padding: 7px 0;
  display: flex; align-items: center; gap: 10px;
}
.pricing-features li::before {
  content: '✓'; color: var(--green); font-weight: 700; font-size: 0.85rem; flex-shrink: 0;
}

.btn-pricing {
  display: block; width: 100%; padding: 13px; border-radius: 100px;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.95rem;
  cursor: pointer; text-decoration: none; text-align: center;
  transition: all 0.35s var(--ease-spring); border: none;
}
.btn-pricing-primary {
  background: linear-gradient(135deg, #FF5733, #FF7A45); color: white;
  box-shadow: 0 4px 22px rgba(255,87,51,0.35);
}
.btn-pricing-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 10px 34px rgba(255,87,51,0.5); }
.btn-pricing-outline {
  background: transparent; color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.16);
}
.btn-pricing-outline:hover { border-color: var(--accent-soft); color: var(--accent-soft); background: var(--accent-glow); }

/* ── CTA ──────────────────────────────────────────────────── */

.cta-section { padding: 60px 40px 130px; max-width: 1180px; margin: 0 auto; }

.cta-card {
  border-radius: 32px; padding: 90px 60px; text-align: center;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #1D1611, #241207);
  border: 1px solid rgba(255, 135, 102, 0.2);
}
.cta-card::before {
  content: ''; position: absolute; top: -180px; left: 50%; transform: translateX(-50%);
  width: 720px; height: 420px;
  background: radial-gradient(ellipse, rgba(255,87,51,0.3) 0%, transparent 65%);
  animation: ctaGlow 5s ease-in-out infinite; pointer-events: none;
}
@keyframes ctaGlow { 0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); } 50% { opacity: 1; transform: translateX(-50%) scale(1.15); } }

.cta-card h2 {
  font-family: 'Fraunces', serif; font-weight: 560;
  font-size: clamp(2.1rem, 4vw, 3.3rem); line-height: 1.12;
  margin-bottom: 18px; position: relative;
}
.cta-card h2 em { font-style: italic; color: var(--accent-soft); }
.cta-card p { color: var(--text-secondary); font-size: 1.1rem; margin-bottom: 40px; position: relative; }
.cta-card .btn-primary { font-size: 1.05rem; padding: 17px 40px; position: relative; }

/* ── Footer ───────────────────────────────────────────────── */

footer {
  padding: 44px 40px; max-width: 1180px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--card-border);
}
footer p { font-size: 0.85rem; color: var(--text-faint); }
.footer-links { display: flex; gap: 26px; list-style: none; }
.footer-links a { font-size: 0.85rem; color: var(--text-secondary); text-decoration: none; transition: color 0.25s; }
.footer-links a:hover { color: var(--accent-soft); }

/* ── Reduced motion ───────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .convo-messages .msg { opacity: 1; transform: none; }
  #embers { display: none; }
}

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 960px) {
  nav { padding: 8px 10px 8px 16px; }
  .nav-links li:not(:last-child) { display: none; }
  .hero { grid-template-columns: 1fr; padding: 130px 22px 50px; gap: 52px; min-height: auto; }
  .hero-visual { order: 2; }
  .phone-frame { width: min(320px, 88vw); }
  .phone-screen { height: 520px; }
  .convos-grid, .features-grid, .steps { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 30px 22px; }
  .section { padding: 70px 22px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .cta-section { padding: 40px 22px 90px; }
  .cta-card { padding: 60px 28px; }
  footer { flex-direction: column; gap: 18px; text-align: center; padding: 36px 22px; }
}
