/* ==== Mica · landing page styles ==== */
:root {
  --bg: #0A0709;
  --bg-2: #100C0E;
  --bg-3: #16111400;
  --surface: #161113;
  --surface-2: #1C1518;
  --line: rgba(245, 239, 233, 0.08);
  --line-2: rgba(245, 239, 233, 0.14);
  --fg: #F5EFE9;
  --fg-dim: #C7BFB9;
  --muted: #8A8087;
  --muted-2: #5E5559;

  --coral: #FF6B3D;
  --magenta: #E73C7E;
  --indigo: #5B5EE8;
  --grad: linear-gradient(110deg, var(--coral) 0%, var(--magenta) 50%, var(--indigo) 100%);
  --grad-soft: linear-gradient(110deg, rgba(255,107,61,.18), rgba(231,60,126,.16), rgba(91,94,232,.18));

  --whats-green: #25D366;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-lift: 0 30px 60px -30px rgba(0,0,0,.65), 0 8px 24px -12px rgba(231,60,126,.25);
  --shadow-card: 0 1px 0 rgba(255,255,255,.04) inset, 0 30px 60px -40px rgba(0,0,0,.6);

  --container: 1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--bg); color: var(--fg); }
body {
  font-family: "Geist", ui-sans-serif, system-ui, sans-serif;
  font-feature-settings: "ss01", "ss02", "cv11";
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background:
    radial-gradient(1200px 700px at 70% -10%, rgba(231,60,126,.12), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(255,107,61,.08), transparent 60%),
    var(--bg);
  color: var(--fg);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.mono { font-family: "Geist Mono", ui-monospace, SFMono-Regular, monospace; }
.eyebrow {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--grad);
  margin-right: 10px;
  vertical-align: 2px;
}
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

section { position: relative; }

/* ==== Nav ==== */
.nav-wrap {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 28px;
  display: flex; justify-content: center;
  pointer-events: none;
  transition: padding 280ms ease;
}
.nav-wrap.scrolled { padding: 12px 28px; }
.nav {
  pointer-events: auto;
  display: flex; align-items: center; gap: 28px;
  width: 100%; max-width: var(--container);
  padding: 12px 14px 12px 22px;
  border-radius: 999px;
  background: rgba(16, 12, 14, .55);
  border: 1px solid var(--line);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  transition: background 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}
.nav-wrap.scrolled .nav {
  background: rgba(10, 7, 9, .78);
  border-color: var(--line-2);
  box-shadow: 0 10px 40px -20px rgba(0,0,0,.6);
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; letter-spacing: -0.01em; font-size: 18px;
}
.brand .wordmark {
  height: 26px;
  width: auto;
  display: block;
}
.footer .brand .wordmark { height: 34px; }
.nav-links {
  display: flex; gap: 4px; margin-left: 14px;
}
.nav-links a {
  font-size: 14px; color: var(--fg-dim);
  padding: 8px 12px; border-radius: 999px;
  transition: color 200ms ease, background 200ms ease;
}
.nav-links a:hover { color: var(--fg); background: rgba(255,255,255,.04); }
.nav-spacer { flex: 1; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500;
  padding: 9px 16px; border-radius: 999px;
  background: var(--fg); color: var(--bg);
  border: none;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 30px -10px rgba(245,239,233,.4); }
.nav-ghost {
  font-size: 14px; color: var(--fg-dim);
  padding: 8px 14px; border-radius: 999px;
}
.nav-ghost:hover { color: var(--fg); }

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav { padding: 10px 10px 10px 18px; gap: 12px; }
}

/* ==== Buttons ==== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  font-family: inherit; font-size: 15px; font-weight: 500;
  padding: 14px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 16px 40px -16px rgba(231,60,126,.55);
  position: relative;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 22px 48px -18px rgba(231,60,126,.7); }
.btn-secondary {
  background: rgba(245,239,233,.06);
  color: var(--fg);
  border: 1px solid var(--line-2);
}
.btn-secondary:hover { background: rgba(245,239,233,.1); }
.btn-lg { padding: 16px 26px; font-size: 16px; }

/* ==== Hero ==== */
.hero {
  padding: 160px 0 80px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero { padding: 130px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
}
.hero h1 {
  font-size: clamp(48px, 7.6vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin: 24px 0 28px;
  text-wrap: balance;
}
.hero h1 .accent {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 500;
}
.hero-sub {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.45;
  color: var(--fg-dim);
  max-width: 540px;
  text-wrap: pretty;
}
.hero-ctas { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.hero-meta {
  display: flex; gap: 20px; align-items: center;
  margin-top: 28px;
  font-size: 13px;
  color: var(--muted);
}
.hero-meta .pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(37, 211, 102, .08);
  border: 1px solid rgba(37, 211, 102, .25);
  color: #6BE5A0;
}
.hero-meta .pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--whats-green); box-shadow: 0 0 12px var(--whats-green); }

.hero-phone-wrap {
  position: relative;
  display: flex; justify-content: center;
}
.hero-glow {
  position: absolute; inset: -10% -10% -10% -10%;
  background:
    radial-gradient(50% 40% at 50% 50%, rgba(231,60,126,.35), transparent 70%),
    radial-gradient(40% 50% at 60% 30%, rgba(255,107,61,.25), transparent 70%),
    radial-gradient(40% 60% at 30% 70%, rgba(91,94,232,.32), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

/* ==== Phone / chat ==== */
.phone {
  position: relative; z-index: 1;
  width: 360px;
  border-radius: 44px;
  background: linear-gradient(180deg, #1d1517, #0e0a0c);
  padding: 14px;
  border: 1px solid var(--line-2);
  box-shadow:
    0 50px 100px -40px rgba(0,0,0,.85),
    0 20px 40px -20px rgba(231,60,126,.3),
    inset 0 1px 0 rgba(255,255,255,.08);
}
.phone-screen {
  border-radius: 32px;
  overflow: hidden;
  height: 720px;
  background: var(--bg);
  display: flex; flex-direction: column;
  position: relative;
}
.phone-status {
  display: flex; justify-content: space-between;
  padding: 14px 22px 6px;
  font-family: "Geist", sans-serif;
  font-weight: 600; font-size: 14px;
  color: var(--fg);
}
.phone-status .icons { display: inline-flex; gap: 5px; align-items: center; }
.phone-status .icons span { display: inline-block; }

.chat-header {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 18px 14px;
  border-bottom: 1px solid var(--line);
}
.chat-header .avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--grad);
  display: grid; place-items: center;
  color: #fff; font-weight: 700; font-size: 16px;
  position: relative;
  box-shadow: 0 0 0 2px rgba(255,107,61,.25);
}
.chat-header .who { display: flex; flex-direction: column; line-height: 1.2; flex: 1; }
.chat-header .name { font-weight: 600; font-size: 15px; }
.chat-header .status { font-size: 11px; color: var(--whats-green); display: inline-flex; gap: 6px; align-items: center; }
.chat-header .status .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--whats-green); }
.chat-header .verified {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10px; color: var(--muted);
  padding: 3px 8px; border-radius: 999px;
  border: 1px solid var(--line-2);
  font-family: "Geist Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chat-feed {
  flex: 1; overflow: hidden;
  padding: 16px 14px;
  display: flex; flex-direction: column; gap: 10px;
  background:
    radial-gradient(800px 400px at 50% 110%, rgba(231,60,126,.06), transparent 60%),
    var(--bg);
  position: relative;
}
.chat-day {
  align-self: center;
  font-family: "Geist Mono", monospace;
  font-size: 10px; letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(245,239,233,.04);
  margin-bottom: 4px;
}

.bubble {
  max-width: 78%;
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1.35;
  border-radius: 18px;
  word-wrap: break-word;
  position: relative;
  animation: bubble-in 480ms cubic-bezier(.2,1.3,.4,1) both;
  transform-origin: bottom var(--bubble-origin, left);
}
@keyframes bubble-in {
  0%   { opacity: 0; transform: translateY(10px) scale(.92); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.bubble.them {
  align-self: flex-start;
  background: var(--surface-2);
  color: var(--fg);
  border: 1px solid var(--line);
  border-bottom-left-radius: 6px;
  --bubble-origin: left;
}
.bubble.me {
  align-self: flex-end;
  background: var(--grad);
  color: #fff;
  border-bottom-right-radius: 6px;
  --bubble-origin: right;
  box-shadow: 0 8px 20px -10px rgba(231,60,126,.6);
}
.bubble .time {
  display: inline-block;
  margin-left: 8px;
  font-size: 10px;
  opacity: 0.6;
  font-family: "Geist Mono", monospace;
}
.bubble.me .time { color: rgba(255,255,255,.85); }
.bubble.voice {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  min-width: 220px;
}
.bubble.voice .play {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: grid; place-items: center;
  flex-shrink: 0;
  color: #fff;
}
.bubble.voice .wave {
  flex: 1;
  display: flex; align-items: center; gap: 2px;
  height: 22px;
}
.bubble.voice .wave i {
  display: block;
  width: 2px; border-radius: 2px;
  background: rgba(255,255,255,.85);
}
.bubble.card {
  padding: 0;
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  color: var(--fg);
  align-self: flex-start;
  width: 86%;
  max-width: 86%;
  overflow: hidden;
  border-radius: 18px;
  border-bottom-left-radius: 6px;
}
.bubble.card .card-head {
  padding: 12px 14px 8px;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.bubble.card .card-head .label {
  font-family: "Geist Mono", monospace;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.bubble.card .card-head .stage {
  font-size: 10px;
  padding: 3px 8px; border-radius: 999px;
  background: rgba(255,107,61,.15);
  color: #FFB28C;
  font-family: "Geist Mono", monospace;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.bubble.card .card-body { padding: 10px 14px 14px; }
.bubble.card .card-row {
  display: flex; justify-content: space-between;
  font-size: 12px;
  padding: 5px 0;
}
.bubble.card .card-row .k { color: var(--muted); }
.bubble.card .card-row .v { color: var(--fg); font-weight: 500; }
.bubble.card .card-foot {
  padding: 10px 14px;
  border-top: 1px solid var(--line);
  display: flex; gap: 8px;
  background: rgba(255,255,255,.02);
}
.bubble.card .mini-btn {
  flex: 1;
  font-size: 11px; font-weight: 500;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(245,239,233,.06);
  color: var(--fg);
  border: 1px solid var(--line-2);
  text-align: center;
}
.bubble.card .mini-btn.primary {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
}

.typing {
  align-self: flex-start;
  padding: 12px 16px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  border-bottom-left-radius: 6px;
  display: inline-flex; gap: 4px;
  animation: bubble-in 320ms ease both;
}
.typing i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--muted);
  animation: typing 1.2s infinite ease-in-out;
}
.typing i:nth-child(2) { animation-delay: 0.15s; }
.typing i:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.45; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.chat-input {
  padding: 10px 12px 14px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 8px;
  background: var(--bg);
}
.chat-input .field {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--muted);
}
.chat-input .mic {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--grad);
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(231,60,126,.6);
}

/* ==== Sections (generic) ==== */
.section { padding: 120px 0; }
.section-head { max-width: 760px; margin-bottom: 64px; }
.section-head h2 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 18px 0 18px;
  text-wrap: balance;
}
.section-head p {
  font-size: 19px;
  line-height: 1.45;
  color: var(--fg-dim);
  max-width: 620px;
  text-wrap: pretty;
}

/* ==== Problem stats ==== */
.problem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 16px;
}
@media (max-width: 800px) { .problem-stats { grid-template-columns: 1fr; } }
.problem-stat {
  background: var(--bg);
  padding: 36px 32px;
}
.problem-stat .num {
  font-size: clamp(48px, 5.5vw, 72px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 600;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}
.problem-stat .desc {
  font-size: 15px;
  line-height: 1.45;
  color: var(--fg-dim);
  max-width: 280px;
}
.problem-stat .src {
  margin-top: 14px;
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* ==== Fix cards ==== */
.fix-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}
@media (max-width: 980px) { .fix-grid { grid-template-columns: 1fr; } }
.fix-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  overflow: hidden;
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
  display: flex; flex-direction: column;
  min-height: 460px;
}
.fix-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
  box-shadow: var(--shadow-lift);
}
.fix-card .label {
  font-family: "Geist Mono", monospace;
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.fix-card h3 {
  font-size: 26px; font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 14px 0 14px;
}
.fix-card p {
  font-size: 15px; line-height: 1.5;
  color: var(--fg-dim);
  margin: 0 0 24px;
}
.fix-card .visual {
  margin-top: auto;
  position: relative;
}

/* fix card 1 — whatsapp triple stack */
.fc-stack {
  position: relative;
  height: 220px;
}
.fc-stack .mini {
  position: absolute;
  width: 86%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.3;
  border: 1px solid var(--line-2);
  background: var(--surface-2);
  color: var(--fg-dim);
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; gap: 10px;
}
.fc-stack .mini .ico {
  width: 26px; height: 26px; border-radius: 6px;
  background: rgba(255,107,61,.15);
  color: #FF6B3D;
  display: grid; place-items: center; flex-shrink: 0;
}
.fc-stack .mini.s1 { top: 0; left: 0; transform: rotate(-2deg); }
.fc-stack .mini.s2 { top: 70px; left: 7%; transform: rotate(1.5deg); background: var(--grad); border-color: transparent; color: #fff; }
.fc-stack .mini.s2 .ico { background: rgba(255,255,255,.2); color: #fff; }
.fc-stack .mini.s3 { top: 140px; left: 0; }

/* fix card 2 — score gauge */
.fc-score {
  display: flex; flex-direction: column; gap: 8px;
}
.fc-score .row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  font-size: 13px;
}
.fc-score .row .co { font-weight: 600; flex: 1; }
.fc-score .row .meter {
  width: 80px; height: 6px; border-radius: 999px;
  background: rgba(255,255,255,.08);
  position: relative; overflow: hidden;
}
.fc-score .row .meter span {
  position: absolute; left: 0; top: 0; bottom: 0;
  border-radius: 999px;
  background: var(--grad);
}
.fc-score .row .val {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  color: var(--fg);
  width: 28px; text-align: right;
}

/* fix card 3 — scout */
.fc-scout { display: flex; flex-direction: column; gap: 10px; }
.fc-scout .scout-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  font-size: 13px;
}
.fc-scout .scout-item .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0;
}
.fc-scout .scout-item .ttl { font-weight: 500; flex: 1; }
.fc-scout .scout-item .tag {
  font-family: "Geist Mono", monospace;
  font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ==== Workflow ==== */
.workflow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}
@media (max-width: 980px) {
  .workflow { grid-template-columns: 1fr; gap: 48px; }
}
.workflow-steps {
  position: sticky;
  top: 100px;
  display: flex; flex-direction: column;
  gap: 4px;
}
.wf-step {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: opacity 240ms ease;
}
.wf-step:last-child { border-bottom: none; }
.wf-step .num {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  width: 28px;
  flex-shrink: 0;
  padding-top: 6px;
}
.wf-step .content { flex: 1; }
.wf-step h4 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--muted-2);
  transition: color 240ms ease;
}
.wf-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted-2);
  max-height: 0;
  overflow: hidden;
  transition: max-height 360ms ease, color 240ms ease, margin-top 240ms ease;
}
.wf-step.active h4 { color: var(--fg); }
.wf-step.active h4 .accent {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.wf-step.active p { color: var(--fg-dim); max-height: 200px; margin-top: 8px; }
.wf-step:hover h4 { color: var(--fg-dim); }
.wf-step.active:hover h4 { color: var(--fg); }

.workflow-visual {
  position: relative;
  min-height: 540px;
}

/* ==== Under the hood ==== */
.hood {
  padding: 80px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hood-head {
  text-align: center;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
}
.hood-row {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 56px 64px;
  align-items: center;
  filter: grayscale(1);
  opacity: 0.7;
}
.hood-item {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg-dim);
  transition: opacity 240ms ease, filter 240ms ease;
}
.hood-row:hover { filter: grayscale(0); opacity: 1; }
.hood-item .logo-mark {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  color: var(--fg-dim);
}

/* ==== Pricing ==== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color 240ms ease, transform 240ms ease;
}
.price-card:hover { border-color: var(--line-2); }
.price-card.featured {
  background: linear-gradient(180deg, rgba(231,60,126,.08), transparent 50%), var(--surface);
  border-color: rgba(231,60,126,.35);
  box-shadow: 0 30px 80px -40px rgba(231,60,126,.35);
}
.price-card .tier-tag {
  font-family: "Geist Mono", monospace;
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.price-card.featured .tier-tag .accent {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  margin-left: 8px;
}
.price-card h3 {
  font-size: 28px; font-weight: 600;
  letter-spacing: -0.02em;
  margin: 14px 0 8px;
}
.price-card .blurb {
  font-size: 14px; line-height: 1.5;
  color: var(--muted);
  margin-bottom: 22px;
  min-height: 42px;
}
.price-card .price {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 4px;
}
.price-card .price .cur {
  font-size: 14px;
  color: var(--muted);
  font-family: "Geist Mono", monospace;
}
.price-card .price .amt {
  font-size: 56px; font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-card .price .unit {
  font-size: 14px;
  color: var(--muted);
}
.price-card .credits {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.price-card ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.price-card li {
  display: flex; gap: 10px;
  font-size: 14px; line-height: 1.4;
  color: var(--fg-dim);
}
.price-card li svg { flex-shrink: 0; margin-top: 2px; color: var(--coral); }
.price-card .price-cta {
  margin-top: auto;
  display: block; text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 15px;
  background: rgba(245,239,233,.06);
  color: var(--fg);
  border: 1px solid var(--line-2);
  transition: background 200ms ease;
}
.price-card .price-cta:hover { background: rgba(245,239,233,.12); }
.price-card.featured .price-cta {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
}

/* ==== FAQ ==== */
.faq-list {
  border-top: 1px solid var(--line);
  max-width: 820px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 0;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  color: var(--fg);
  transition: color 200ms ease;
  gap: 24px;
}
.faq-q:hover { color: var(--fg); }
.faq-q .plus {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  transition: transform 300ms ease, background 200ms ease;
  color: var(--muted);
}
.faq-item.open .plus { transform: rotate(45deg); background: var(--grad); color: #fff; border-color: transparent; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 360ms ease;
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-dim);
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 0 28px;
}

/* ==== CTA strip ==== */
.cta-strip {
  position: relative;
  padding: 140px 0 160px;
  overflow: hidden;
  text-align: center;
}
.cta-strip::before {
  content: "";
  position: absolute; inset: 20% 10% -10%;
  background:
    radial-gradient(60% 80% at 50% 50%, rgba(231,60,126,.4), transparent 70%),
    radial-gradient(40% 60% at 30% 30%, rgba(255,107,61,.3), transparent 70%),
    radial-gradient(40% 60% at 70% 70%, rgba(91,94,232,.4), transparent 70%);
  filter: blur(80px);
  z-index: 0;
}
.cta-strip h2 {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  font-weight: 600;
  margin: 0 0 24px;
  position: relative; z-index: 1;
  text-wrap: balance;
}
.cta-strip h2 .accent {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 500;
}
.cta-strip p {
  font-size: 19px;
  color: var(--fg-dim);
  max-width: 540px;
  margin: 0 auto 36px;
  position: relative; z-index: 1;
}
.cta-strip .btn { position: relative; z-index: 1; }

/* ==== Footer ==== */
.footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
.footer-col h5 {
  font-family: "Geist Mono", monospace;
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col li a { color: var(--fg-dim); font-size: 14px; }
.footer-col li a:hover { color: var(--fg); }
.footer-tag {
  color: var(--muted); font-size: 13px;
  max-width: 280px; line-height: 1.5;
  margin-top: 18px;
}
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
  font-family: "Geist Mono", monospace;
  letter-spacing: 0.06em;
  flex-wrap: wrap; gap: 12px;
}
.popia-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 10px; border-radius: 999px;
  border: 1px solid var(--line-2);
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase;
}
.popia-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #6BE5A0;
  box-shadow: 0 0 8px #6BE5A0;
}

/* ==== Floating ambient glow ==== */
.ambient {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(800px 600px at 80% 100%, rgba(91,94,232,.06), transparent 60%);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
