/* ───────────────────────────────────────────────────────────────────────
   P&L Journal — landing
   Single-theme dark by design: the site is the app's own glassmorphism.
   Tokens mirror Core/DesignSystem exactly.
─────────────────────────────────────────────────────────────────────── */

:root {
  --bg: #05070a;
  --bg-raise: rgba(14, 20, 28, 0.55);
  --text: #eaf2f8;
  --text-2: rgba(226, 236, 245, 0.5);
  --text-3: rgba(226, 236, 245, 0.38);
  --profit: #2fe39b;
  --profit-soft: #7cffc8;
  --loss: #ff5c7a;
  --loss-soft: #ff97ac;
  --accent: #28d9c8;
  --on-accent: #04120c;
  --glass: linear-gradient(158deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  --glass-border: rgba(255, 255, 255, 0.1);
  --radius: 22px;
  --font: "Plus Jakarta Sans", -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

.money { font-variant-numeric: tabular-nums; }

/* ── Ambient glow ─────────────────────────────────────────────────── */

.bg-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.orb { position: absolute; border-radius: 50%; filter: blur(30px); }
.orb-1 {
  top: -60px; left: -80px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(47, 227, 155, 0.22), transparent 68%);
  animation: floatA 18s ease-in-out infinite;
}
.orb-2 {
  top: 340px; right: -120px; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(40, 217, 200, 0.16), transparent 68%);
  animation: floatB 22s ease-in-out infinite;
}
.orb-3 {
  bottom: -80px; left: 15%; width: 480px; height: 420px;
  background: radial-gradient(circle, rgba(120, 90, 255, 0.13), transparent 68%);
  animation: floatA 26s ease-in-out infinite reverse;
}
@keyframes floatA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(26px, -34px) scale(1.12); }
}
@keyframes floatB {
  0%, 100% { transform: translate(0, 0) scale(1.05); }
  50% { transform: translate(-30px, 28px) scale(0.95); }
}

main, .nav, .footer { position: relative; z-index: 1; }

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 22px 24px;
}
.brand { display: flex; align-items: center; gap: 11px; color: var(--text); }
.brand-mark {
  width: 38px; height: 38px; border-radius: 12px;
  background: linear-gradient(155deg, rgba(47, 227, 155, 0.95), rgba(40, 217, 200, 0.72));
  display: grid; place-items: center;
  box-shadow: 0 10px 24px rgba(47, 227, 155, 0.28);
}
.brand-name { font-weight: 800; font-size: 17px; letter-spacing: -0.3px; }
.nav-links { display: flex; gap: 26px; }
.nav-links a { color: var(--text-2); font-size: 14px; font-weight: 600; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font);
  font-weight: 800;
  border-radius: 16px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary {
  background: linear-gradient(150deg, #2fe39b, #28d9c8);
  color: var(--on-accent);
  padding: 15px 26px;
  font-size: 15px;
  box-shadow: 0 16px 34px rgba(47, 227, 155, 0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(47, 227, 155, 0.35); }
.btn .btn-mini { display: block; font-size: 10px; font-weight: 600; opacity: 0.75; line-height: 1.1; }
.btn .btn-strong { display: block; font-size: 15px; line-height: 1.2; }
.btn-store {
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: #05070a;
  padding: 14px 25px;
  font-size: 15px;
  box-shadow: 0 16px 34px rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-store:hover {
  transform: translateY(-2px);
  background: #f4f7fa;
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.18);
}
.btn-store .btn-mini { opacity: 0.6; }
.btn-nav {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  color: var(--text);
  padding: 10px 18px;
  font-size: 13px;
}
.btn-nav:hover { background: rgba(255, 255, 255, 0.1); }
.btn-ghost { color: var(--text-2); font-size: 14px; font-weight: 700; padding: 15px 8px; }
.btn-ghost:hover { color: var(--text); }

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

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 56px 24px 90px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 99px;
  padding: 8px 14px;
}
.eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--profit);
  box-shadow: 0 0 10px rgba(47, 227, 155, 0.8);
}
.hero h1 {
  margin: 22px 0 0;
  font-size: clamp(40px, 5.4vw, 62px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.06;
  text-wrap: balance;
}
.hero h1 .green { color: var(--profit); text-shadow: 0 0 34px rgba(47, 227, 155, 0.35); }
.lede {
  margin: 18px 0 0;
  max-width: 46ch;
  color: var(--text-2);
  font-size: 17px;
  font-weight: 500;
}
.cta-row { display: flex; align-items: center; gap: 18px; margin-top: 30px; flex-wrap: wrap; }
.hero-meta {
  display: flex;
  gap: 28px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}
.hero-meta li { color: var(--text-3); font-size: 13px; font-weight: 600; }
.hero-meta strong { display: block; color: var(--text); font-size: 21px; font-weight: 800; letter-spacing: -0.4px; }
.hero-meta .up { color: var(--profit); }

/* ── Phone mockup (the calendar screen, rebuilt in CSS) ───────────── */

.hero-art { display: grid; place-items: center; }
.phone {
  width: 340px;
  border-radius: 46px;
  padding: 12px;
  background: #0b0f14;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 40px 90px rgba(0, 0, 0, 0.65),
    0 0 80px rgba(47, 227, 155, 0.07);
  transform: rotate(2deg);
}
.screen {
  border-radius: 36px;
  background:
    radial-gradient(120% 60% at 20% 0%, rgba(47, 227, 155, 0.1), transparent 60%),
    #05070a;
  padding: 22px 14px 14px;
  overflow: hidden;
}
.s-head { display: flex; justify-content: space-between; align-items: baseline; padding: 0 4px 12px; }
.s-title { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; }
.s-account { font-size: 9px; font-weight: 600; letter-spacing: 0.16em; color: var(--text-3); }
.s-seg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 4px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 10px;
  font-weight: 700;
}
.s-seg span { text-align: center; padding: 8px 0; color: rgba(226, 236, 245, 0.55); border-radius: 10px; }
.s-seg .on {
  background: linear-gradient(150deg, rgba(47, 227, 155, 0.95), rgba(40, 217, 200, 0.85));
  color: var(--on-accent);
  box-shadow: 0 8px 20px rgba(47, 227, 155, 0.28);
}
.s-nav { display: flex; justify-content: space-between; align-items: center; padding: 12px 4px; font-size: 13px; font-weight: 700; }
.s-nav .chev {
  width: 30px; height: 30px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-2);
  font-size: 12px;
}
.s-hero { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 8px; }
.s-card {
  border-radius: 16px;
  padding: 11px 12px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
}
.s-card.tinted {
  background: linear-gradient(158deg, rgba(47, 227, 155, 0.3), rgba(47, 227, 155, 0.06) 62%, rgba(255, 255, 255, 0.03));
  border-color: rgba(47, 227, 155, 0.32);
  position: relative;
  overflow: hidden;
}
.s-card.tinted::after {
  content: "";
  position: absolute;
  top: -20%; bottom: -20%; width: 46px;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  transform: translateX(-120%) rotate(6deg);
  animation: sheen 5.5s ease-in-out infinite;
}
@keyframes sheen {
  0% { transform: translateX(-140%) rotate(6deg); }
  60%, 100% { transform: translateX(560%) rotate(6deg); }
}
.s-label { font-size: 9.5px; font-weight: 600; color: var(--text-2); display: flex; justify-content: space-between; align-items: center; }
.s-amount { font-size: 21px; font-weight: 800; letter-spacing: -0.8px; color: var(--profit); text-shadow: 0 0 22px rgba(47, 227, 155, 0.35); margin-top: 3px; }
.s-sub { font-size: 8.5px; color: var(--text-3); margin-top: 2px; font-weight: 500; }
.s-goal-track { height: 6px; border-radius: 99px; background: rgba(255, 255, 255, 0.08); margin-top: 12px; overflow: hidden; }
.s-goal-fill {
  height: 100%; width: 66%;
  border-radius: 99px;
  background: linear-gradient(90deg, #2fe39b, #28d9c8);
  box-shadow: 0 0 14px rgba(47, 227, 155, 0.5);
  transform-origin: left;
  animation: growX 0.9s cubic-bezier(0.2, 0.85, 0.3, 1) 0.4s backwards;
}
@keyframes growX { from { transform: scaleX(0); } }
.s-goal-foot { display: flex; justify-content: space-between; font-size: 8.5px; font-weight: 700; margin-top: 6px; }
.s-goal-foot .cur { color: var(--profit); }
.s-goal-foot .tgt { color: var(--text-3); }
.s-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr;
  gap: 1px;
  margin-top: 8px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--glass-border);
}
.s-strip > div { background: rgba(10, 15, 21, 0.72); padding: 8px 10px; }
.s-strip .k { font-size: 7px; font-weight: 700; letter-spacing: 0.12em; color: var(--text-3); }
.s-strip .v { font-size: 10.5px; font-weight: 800; letter-spacing: -0.3px; margin-top: 2px; }
.s-strip .v.up { color: var(--profit); }
.s-dow {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 5px;
  padding: 10px 2px 6px;
  font-size: 7.5px; font-weight: 700; letter-spacing: 0.1em;
  color: rgba(226, 236, 245, 0.34); text-align: center;
}
.s-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 5px; }
.tile {
  border-radius: 12px;
  padding: 6px 7px;
  height: 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.035);
  animation: tilePop 0.5s cubic-bezier(0.2, 0.85, 0.3, 1) backwards;
}
.tile .d { font-size: 7.5px; font-weight: 700; color: rgba(255, 255, 255, 0.55); }
.tile .a { font-size: 8.5px; font-weight: 800; letter-spacing: -0.2px; }
.tile.up { background: linear-gradient(158deg, rgba(47, 227, 155, 0.32), rgba(47, 227, 155, 0.09)); border-color: rgba(47, 227, 155, 0.3); }
.tile.up.soft { background: linear-gradient(158deg, rgba(47, 227, 155, 0.2), rgba(47, 227, 155, 0.05)); }
.tile.up .a { color: var(--profit-soft); }
.tile.down { background: linear-gradient(158deg, rgba(255, 92, 122, 0.3), rgba(255, 92, 122, 0.08)); border-color: rgba(255, 92, 122, 0.3); }
.tile.down.soft { background: linear-gradient(158deg, rgba(255, 92, 122, 0.18), rgba(255, 92, 122, 0.05)); }
.tile.down .a { color: var(--loss-soft); }
@keyframes tilePop {
  from { opacity: 0; transform: translateY(10px) scale(0.92); }
}
.s-tabs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
  margin-top: 12px; padding: 5px;
  border-radius: 18px;
  background: rgba(14, 20, 28, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 8px; font-weight: 700;
}
.s-tabs span { text-align: center; padding: 9px 0; border-radius: 13px; color: rgba(226, 236, 245, 0.48); }
.s-tabs .on {
  background: linear-gradient(158deg, rgba(47, 227, 155, 0.24), rgba(40, 217, 200, 0.1));
  border: 1px solid rgba(47, 227, 155, 0.32);
  color: var(--profit-soft);
}

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

.section { max-width: 1140px; margin: 0 auto; padding: 70px 24px; }
.section-head { max-width: 620px; margin-bottom: 44px; }
.section-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent);
}
.section-head h2 {
  margin: 10px 0 0;
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  text-wrap: balance;
}
.section-head p { margin: 12px 0 0; color: var(--text-2); font-size: 16px; }

/* Feature cards */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.feature {
  border-radius: var(--radius);
  padding: 22px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11), 0 16px 34px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature h3 { margin: 0; font-size: 17px; font-weight: 800; letter-spacing: -0.2px; }
.feature p { margin: 0; color: var(--text-2); font-size: 13.5px; line-height: 1.6; }
.feature .art {
  height: 118px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  overflow: hidden;
}

/* Feature minis */
.mini-heat { display: grid; grid-template-columns: repeat(7, 16px); gap: 4px; }
.mini-heat span { width: 16px; height: 16px; border-radius: 4px; }
.mini-donut { position: relative; width: 86px; height: 86px; }
.mini-donut .pct {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 16px; font-weight: 800; color: var(--profit);
}
.mini-widget {
  width: 150px; border-radius: 16px; padding: 10px 12px;
  background: linear-gradient(158deg, rgba(47, 227, 155, 0.26), rgba(47, 227, 155, 0.05) 62%, rgba(20, 26, 34, 0.96));
  border: 1px solid rgba(47, 227, 155, 0.28);
}
.mini-widget .k { font-size: 7px; font-weight: 800; letter-spacing: 0.14em; color: var(--text-3); }
.mini-widget .v { font-size: 17px; font-weight: 800; letter-spacing: -0.5px; color: var(--profit-soft); margin: 2px 0; }
.mini-widget .bar { height: 4px; border-radius: 99px; background: rgba(255, 255, 255, 0.1); margin-top: 6px; }
.mini-widget .bar i { display: block; height: 100%; width: 50%; border-radius: 99px; background: linear-gradient(90deg, #2fe39b, #28d9c8); }
.mini-share {
  width: 128px; border-radius: 14px; padding: 10px;
  text-align: center;
  background: linear-gradient(158deg, #0f6146, #084430 60%, #04140e);
  border: 1px solid rgba(47, 227, 155, 0.3);
}
.mini-share svg { width: 58px; height: 58px; }
.mini-share .amt { font-size: 13px; font-weight: 800; color: var(--profit-soft); letter-spacing: -0.3px; }
.mini-share .cap { font-size: 6.5px; font-weight: 700; letter-spacing: 0.16em; color: rgba(255, 255, 255, 0.55); }
.mini-doc { display: flex; flex-direction: column; gap: 6px; width: 120px; }
.mini-doc i { display: block; height: 7px; border-radius: 3px; background: rgba(255, 255, 255, 0.1); }
.mini-doc i.g { background: rgba(47, 227, 155, 0.55); width: 60%; }
.mini-doc i.r { background: rgba(255, 92, 122, 0.55); width: 40%; }
.mini-eye {
  font-size: 24px; font-weight: 800; letter-spacing: 4px; color: var(--text-2);
}

/* ── Pro section ──────────────────────────────────────────────────── */

.pro {
  border-radius: 28px;
  background: linear-gradient(150deg, rgba(40, 217, 200, 0.12), rgba(120, 90, 255, 0.07));
  border: 1px solid rgba(40, 217, 200, 0.22);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}
.pro h2 { margin: 0; font-size: clamp(26px, 3.2vw, 36px); font-weight: 800; letter-spacing: -0.025em; }
.pro-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 11px; }
.pro-list li { display: flex; gap: 11px; align-items: center; color: var(--text-2); font-size: 14.5px; font-weight: 600; }
.pro-list .tick {
  width: 22px; height: 22px; border-radius: 8px; flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(47, 227, 155, 0.14);
  color: var(--profit);
  font-size: 12px; font-weight: 800;
}
.price-cards { display: grid; gap: 12px; }
.price {
  border-radius: 18px;
  padding: 20px 22px;
  background: rgba(5, 7, 10, 0.55);
  border: 1px solid var(--glass-border);
  display: flex; justify-content: space-between; align-items: center;
}
.price.best { border-color: rgba(47, 227, 155, 0.45); background: rgba(47, 227, 155, 0.07); }
.price .plan { font-size: 14px; font-weight: 800; }
.price .note { font-size: 11.5px; color: var(--text-3); font-weight: 600; margin-top: 2px; }
.price .cost { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; }
.price .cost small { font-size: 11px; color: var(--text-3); font-weight: 600; letter-spacing: 0; }
.badge {
  display: inline-block;
  font-size: 9px; font-weight: 800; letter-spacing: 0.1em;
  color: var(--profit);
  background: rgba(47, 227, 155, 0.16);
  border-radius: 99px;
  padding: 3px 8px;
  margin-left: 8px;
  vertical-align: 2px;
}

/* ── Download / footer ────────────────────────────────────────────── */

.download { text-align: center; padding-bottom: 90px; }
.download h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.download p { color: var(--text-2); margin: 14px auto 0; max-width: 46ch; }
.download .cta-row { justify-content: center; }

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 30px 24px 44px;
}
.footer-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 18px; flex-wrap: wrap;
  color: var(--text-3); font-size: 13px; font-weight: 500;
}
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: var(--text-2); font-weight: 600; }
.footer-links a:hover { color: var(--text); }

/* ── Legal pages ──────────────────────────────────────────────────── */

.legal { max-width: 720px; margin: 0 auto; padding: 40px 24px 80px; }
.legal h1 { font-size: 32px; font-weight: 800; letter-spacing: -0.03em; }
.legal h2 { font-size: 19px; font-weight: 800; margin-top: 36px; letter-spacing: -0.2px; }
.legal p { color: var(--text-2); font-size: 15px; max-width: 65ch; }
.legal .updated { color: var(--text-3); font-size: 13px; }

/* ── Reveal on scroll ─────────────────────────────────────────────── */

.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease-out, transform 0.5s ease-out; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .orb, .s-goal-fill, .tile, .s-card.tinted::after { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

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

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding-top: 30px; text-align: center; }
  .lede { margin-inline: auto; }
  .cta-row, .hero-meta { justify-content: center; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .pro { grid-template-columns: 1fr; padding: 34px 26px; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .feature-grid { grid-template-columns: 1fr; }
  .cta-row { gap: 12px; }
  .cta-row .btn { flex: 1 1 calc(50% - 6px); justify-content: center; min-width: 168px; }
  .cta-row .btn-ghost { flex-basis: 100%; text-align: center; }
  .phone { width: 300px; transform: none; }
}

/* ── Verify page (Supabase email-confirmation landing) ────────────── */

.verify {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 24px 90px;
  min-height: calc(100vh - 260px);
  display: grid;
  place-items: center;
}
.verify-card {
  width: 100%;
  border-radius: 28px;
  padding: 44px 40px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11), 0 24px 60px rgba(0, 0, 0, 0.45);
  text-align: center;
  animation: cardIn 0.6s cubic-bezier(0.2, 0.85, 0.3, 1) backwards;
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
}
.verify-icon {
  width: 72px; height: 72px; border-radius: 22px;
  margin: 0 auto 22px;
  display: grid; place-items: center;
  animation: iconPop 0.55s cubic-bezier(0.2, 0.85, 0.3, 1) 0.15s backwards;
}
.verify-icon.ok {
  background: linear-gradient(155deg, rgba(47, 227, 155, 0.95), rgba(40, 217, 200, 0.72));
  box-shadow: 0 16px 40px rgba(47, 227, 155, 0.35), 0 0 0 10px rgba(47, 227, 155, 0.08);
}
.verify-icon.bad {
  background: linear-gradient(158deg, rgba(255, 92, 122, 0.45), rgba(255, 92, 122, 0.14));
  border: 1px solid rgba(255, 92, 122, 0.4);
  box-shadow: 0 16px 40px rgba(255, 92, 122, 0.2), 0 0 0 10px rgba(255, 92, 122, 0.06);
}
@keyframes iconPop {
  from { opacity: 0; transform: scale(0.6); }
}
.verify h1 {
  margin: 18px 0 0;
  font-size: clamp(30px, 4.6vw, 44px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}
.verify h1 .green { color: var(--profit); text-shadow: 0 0 34px rgba(47, 227, 155, 0.35); }
.verify .lede { margin: 16px auto 0; font-size: 16px; max-width: 44ch; }
.verify .eyebrow-dot.red { background: var(--loss); box-shadow: 0 0 10px rgba(255, 92, 122, 0.8); }
.verify-steps {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  text-align: left;
}
.verify-steps li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--text-2);
  font-size: 14px; font-weight: 600;
}
.verify-steps .n {
  width: 26px; height: 26px; border-radius: 9px; flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(47, 227, 155, 0.14);
  color: var(--profit);
  font-size: 12px; font-weight: 800;
}
.verify .cta-row { justify-content: center; margin-top: 28px; }
.verify .btn-primary .btn-strong { font-size: 15px; }
.verify-note { margin: 22px 0 0; color: var(--text-3); font-size: 13px; font-weight: 500; }
.verify-detail {
  margin: 14px auto 0;
  display: inline-block;
  padding: 8px 14px;
  border-radius: 99px;
  background: rgba(255, 92, 122, 0.1);
  border: 1px solid rgba(255, 92, 122, 0.25);
  color: var(--loss-soft);
  font-size: 12.5px; font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .verify-card, .verify-icon { animation: none !important; }
}
@media (max-width: 600px) {
  .verify { padding-top: 16px; }
  .verify-card { padding: 34px 22px; border-radius: 24px; }
  .verify .cta-row .btn { flex-basis: 100%; }
}
