/* =========================================================
   TemKeep, landing styles
   Brand: fresh teal-green "safe" primary, warm amber accent,
   cool slate neutrals. Display: Fraunces. Body: Plus Jakarta Sans.
   ========================================================= */

:root {
  /* Brand, fresh teal/green "safe" */
  --brand-50:  #ecfdf7;
  --brand-100: #d1faec;
  --brand-200: #a7f0d8;
  --brand-300: #6fe0bf;
  --brand-400: #34c9a3;
  --brand-500: #14ad8a;
  --brand-600: #0c8c72;
  --brand-700: #0f766e; /* primary */
  --brand-800: #115e56;
  --brand-900: #134e48;

  /* Warm accent, amber (also the "warn" state) */
  --accent:      #fbbf24;
  --accent-deep: #f59e0b;
  --accent-soft: #fef3c7;

  /* Status */
  --pass: #16a34a;
  --warn: #d97706;
  --fail: #dc2626;

  /* Neutrals, cool slate */
  --ink-900: #0c1f1c;
  --ink-800: #14302b;
  --ink-700: #2c4a44;
  --ink-500: #5b766f;
  --ink-400: #7d958e;
  --ink-300: #aebcb7;
  --line:    #e2ebe7;
  --surface: #ffffff;
  --surface-2: #f4f8f6;
  --surface-3: #eaf3ef;
  --cream:   #fbfdfb;

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Shape */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  /* Shadows, soft, layered */
  --sh-sm: 0 1px 2px rgba(12, 31, 28, .06), 0 2px 6px rgba(12, 31, 28, .05);
  --sh-md: 0 4px 14px rgba(12, 31, 28, .08), 0 14px 30px rgba(12, 31, 28, .07);
  --sh-lg: 0 10px 30px rgba(12, 31, 28, .10), 0 30px 70px rgba(15, 118, 110, .14);
  --sh-brand: 0 10px 26px rgba(15, 118, 110, .28);

  --maxw: 1140px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  color: var(--ink-800);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* Focus visibility for keyboard users */
:focus-visible {
  outline: 3px solid var(--brand-500);
  outline-offset: 2px;
  border-radius: 4px;
}

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }

.visually-hidden, .skip-link {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; top: 12px; left: 12px; z-index: 200;
  width: auto; height: auto; clip: auto; margin: 0;
  padding: 10px 16px; background: var(--brand-700); color: #fff;
  border-radius: var(--r-pill); box-shadow: var(--sh-md);
}

/* Honeypot — kept in the DOM for bots but off-screen and unfocusable for
   humans. Avoid display:none, which some bots skip; off-screen positioning
   still gets filled by naive form-stuffers. */
.hp-field {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}

/* Turnstile widget spacing inside the lead forms. */
.lead-turnstile { margin: 6px 0 2px; min-height: 1px; }
.lead-form-center .lead-turnstile { display: flex; justify-content: center; }
.lead-form.is-done .lead-turnstile { display: none; }

/* ---------- type ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; color: var(--ink-900); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--brand-700);
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.eyebrow-center { justify-content: center; width: 100%; text-align: center; }

.section-title { font-size: clamp(1.85rem, 4vw, 3rem); }
.section-title-center { text-align: center; }
.title-soft { color: var(--brand-600); font-style: italic; font-weight: 500; }
.section-lead { font-size: 1.12rem; color: var(--ink-500); max-width: 56ch; }
.section-lead-center { text-align: center; margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-weight: 700; font-size: 1rem; line-height: 1;
  padding: 14px 22px; border-radius: var(--r-pill); border: 1.5px solid transparent;
  transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  white-space: nowrap;
}
.btn-sm { padding: 9px 16px; font-size: .9rem; }
.btn-lg { padding: 16px 26px; font-size: 1.04rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--brand-700); color: #fff; box-shadow: var(--sh-brand); }
.btn-primary:hover { background: var(--brand-800); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(15,118,110,.36); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost { background: transparent; color: var(--brand-700); border-color: var(--brand-200); }
.btn-ghost:hover { background: var(--brand-50); border-color: var(--brand-300); transform: translateY(-2px); }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 253, 251, .82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 18px; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); }
.brand-mark { filter: drop-shadow(0 3px 6px rgba(15,118,110,.25)); flex-shrink: 0; }
.brand-word { font-size: 1.42rem; font-weight: 700; letter-spacing: -.02em; color: var(--ink-900); }
.brand-word-accent { color: var(--brand-700); }

.header-nav { display: flex; gap: 26px; margin-left: 14px; }
.header-nav a { font-size: .96rem; font-weight: 600; color: var(--ink-700); position: relative; padding: 4px 0; }
.header-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--brand-500); border-radius: 2px; transition: width .25s var(--ease);
}
.header-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; margin-left: auto; }

/* region toggle, segmented control */
.region-toggle {
  position: relative; display: inline-flex; align-items: center;
  background: var(--surface-3); border: 1px solid var(--line);
  border-radius: var(--r-pill); padding: 4px;
}
.region-toggle-track {
  position: absolute; top: 4px; left: 4px;
  width: calc(50% - 4px); height: calc(100% - 8px);
  background: var(--surface); border-radius: var(--r-pill);
  box-shadow: var(--sh-sm);
  transition: transform .32s var(--ease);
}
html[data-region="US"] .region-toggle-track { transform: translateX(100%); }
.region-btn {
  position: relative; z-index: 1; background: none; border: 0;
  font-size: .9rem; font-weight: 700; color: var(--ink-500);
  padding: 7px 16px; border-radius: var(--r-pill);
  display: inline-flex; align-items: center; gap: 5px;
  transition: color .25s;
}
.region-btn[aria-pressed="true"] { color: var(--brand-700); }
.region-btn .flag { font-size: 1rem; line-height: 1; }

/* ============ HERO ============ */
.hero { position: relative; padding: 64px 0 0; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 78% 8%, rgba(52,201,163,.20), transparent 70%),
    radial-gradient(50% 45% at 8% 30%, rgba(251,191,36,.16), transparent 70%),
    linear-gradient(180deg, var(--brand-50) 0%, var(--cream) 60%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(15,118,110,.07) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 70%);
  mask-image: linear-gradient(180deg, #000 0%, transparent 70%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.08fr .92fr;
  gap: 50px; align-items: center; padding-bottom: 30px;
}
.hero-copy { max-width: 620px; }
.hero-headline {
  font-size: clamp(2.35rem, 5.2vw, 4rem);
  font-weight: 600; letter-spacing: -.022em; margin: 18px 0 18px;
}
.hero-subhead { font-size: 1.18rem; color: var(--ink-500); max-width: 54ch; }

.hero-trust {
  list-style: none; padding: 0; margin: 22px 0 0;
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  font-size: .95rem; color: var(--ink-700);
}
.hero-trust li { display: flex; align-items: center; gap: 8px; }
.hero-trust li::before {
  content: "✓"; display: inline-grid; place-items: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--brand-100); color: var(--brand-700);
  font-size: .72rem; font-weight: 800;
}
.hero-trust strong { color: var(--ink-900); }

/* lead form */
.lead-form { margin-top: 28px; }
.lead-form-row {
  display: flex; gap: 10px; background: var(--surface);
  padding: 8px; border-radius: var(--r-pill);
  border: 1.5px solid var(--line); box-shadow: var(--sh-md);
  transition: border-color .2s, box-shadow .2s;
}
.lead-form-row:focus-within { border-color: var(--brand-300); box-shadow: 0 0 0 4px var(--brand-100), var(--sh-md); }
.lead-input {
  flex: 1; min-width: 0; border: 0; background: transparent;
  font-family: inherit; font-size: 1.02rem; color: var(--ink-900);
  padding: 10px 16px; border-radius: var(--r-pill);
}
.lead-input::placeholder { color: var(--ink-400); }
.lead-input:focus { outline: none; }
.lead-form .btn { flex-shrink: 0; }

.form-msg { font-size: .94rem; font-weight: 600; margin-top: 12px; min-height: 1.2em; }
.form-msg.is-error { color: var(--fail); }
.form-msg.is-success { color: var(--brand-700); }
.form-fineprint { font-size: .88rem; color: var(--ink-400); margin-top: 10px; max-width: 50ch; }
.form-fineprint-light { color: rgba(255,255,255,.78); }

/* success state */
.lead-form.is-done .lead-form-row,
.lead-form.is-done .form-fineprint { display: none; }
.lead-success {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface); border: 1.5px solid var(--brand-200);
  border-radius: var(--r-lg); padding: 18px 22px; box-shadow: var(--sh-md);
  animation: pop .4s var(--ease);
}
.lead-form-center .lead-success { justify-content: center; text-align: left; max-width: 460px; margin-inline: auto; }
.lead-success-ico {
  flex-shrink: 0; display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--brand-600); color: #fff; font-size: 1.2rem;
}
.lead-success-text strong { display: block; color: var(--ink-900); font-size: 1.05rem; }
.lead-success-text span { font-size: .92rem; color: var(--ink-500); }
@keyframes pop { from { opacity: 0; transform: scale(.96) translateY(6px); } to { opacity: 1; transform: none; } }

/* ----- phone device mockup ----- */
.hero-device { position: relative; display: grid; place-items: center; min-height: 540px; }
.device-glow {
  position: absolute; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(52,201,163,.35), transparent 65%);
  filter: blur(20px); z-index: 0;
}
.phone {
  position: relative; z-index: 2;
  width: 290px; height: 580px;
  background: #0c1f1c; border-radius: 42px;
  padding: 12px; box-shadow: var(--sh-lg), inset 0 0 0 2px rgba(255,255,255,.06);
}
.phone-notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 116px; height: 26px; background: #0c1f1c; border-radius: 0 0 16px 16px; z-index: 3;
}
.phone-screen {
  width: 100%; height: 100%; background: linear-gradient(180deg, var(--brand-50), #fff 24%);
  border-radius: 32px; overflow: hidden; padding: 16px 14px; position: relative;
}
.app-statusbar { display: flex; justify-content: space-between; font-size: .68rem; font-weight: 700; color: var(--ink-700); padding: 2px 6px 10px; }
.app-statusbar-icons { letter-spacing: 1px; }
.app-header { display: flex; align-items: center; justify-content: space-between; padding: 4px 6px 14px; }
.app-greeting { font-size: .72rem; color: var(--ink-400); font-weight: 600; }
.app-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--ink-900); line-height: 1; }
.app-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--brand-700); color: #fff; display: grid; place-items: center; font-size: .78rem; font-weight: 800; }
.app-section-label { display: flex; align-items: center; gap: 8px; font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-500); padding: 0 6px 8px; }
.app-badge { display: grid; place-items: center; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px; background: var(--accent); color: #5a3d00; font-size: .68rem; font-weight: 800; }

.check-card {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 16px; padding: 11px 12px; margin-bottom: 9px;
  box-shadow: 0 2px 8px rgba(12,31,28,.04);
}
.check-due { animation: cardIn .5s var(--ease) backwards; }
.check-due:nth-child(4) { animation-delay: .05s; }
.check-due:nth-child(5) { animation-delay: .1s; }
@keyframes cardIn { from { opacity: 0; transform: translateY(8px); } }
.check-ico { width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center; font-size: .95rem; flex-shrink: 0; }
.check-ico[data-state="due"] { background: var(--brand-50); }
.check-ico[data-state="pass"] { background: #dcfce7; color: var(--pass); font-weight: 800; }
.check-ico[data-state="warn"] { background: var(--accent-soft); color: var(--warn); font-weight: 800; }
.check-body { flex: 1; min-width: 0; }
.check-name { font-size: .86rem; font-weight: 700; color: var(--ink-900); }
.check-meta { font-size: .72rem; color: var(--ink-400); }
.check-meta-pass { color: var(--pass); }
.check-log { background: var(--brand-700); color: #fff; border: 0; font-size: .74rem; font-weight: 700; padding: 7px 13px; border-radius: var(--r-pill); }
.result-pill { font-size: .66rem; font-weight: 800; padding: 5px 9px; border-radius: var(--r-pill); text-transform: uppercase; letter-spacing: .03em; flex-shrink: 0; }
.result-pass { background: #dcfce7; color: var(--pass); }
.result-warn { background: var(--accent-soft); color: var(--warn); }
.app-export {
  margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(120deg, var(--brand-700), var(--brand-600));
  color: #fff; font-size: .82rem; font-weight: 700; padding: 13px; border-radius: 16px;
  box-shadow: var(--sh-brand);
}
.app-export-ico { font-size: .95rem; }

/* floating proof chips */
.device-float {
  position: absolute; z-index: 3;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 9px 13px; font-size: .8rem; font-weight: 600; color: var(--ink-700);
  box-shadow: var(--sh-md);
  display: flex; align-items: center; gap: 8px;
  animation: floaty 5s ease-in-out infinite;
}
.device-float-a { top: 16%; left: -4%; }
.device-float-b { bottom: 14%; right: -6%; animation-delay: -2.5s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (prefers-reduced-motion: reduce) {
  .device-float, .check-due { animation: none; }
}

/* hero marquee */
.hero-marquee {
  margin-top: 26px; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.4); overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; gap: 28px; align-items: center; width: max-content;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; font-style: italic; color: var(--brand-700);
  animation: marquee 26s linear infinite;
}
.marquee-track span:not([aria-hidden]) { white-space: nowrap; }
.marquee-track span[aria-hidden] { color: var(--accent-deep); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ============ SECTIONS ============ */
.section { padding: 88px 0; }

/* problem */
.problem { background: var(--surface-2); }
.problem .section-title { max-width: 18ch; margin-bottom: 44px; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.problem-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px 26px; box-shadow: var(--sh-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.problem-num {
  display: inline-block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  color: var(--brand-300); margin-bottom: 14px;
}
.problem-card p { font-size: 1.08rem; color: var(--ink-700); }
.problem-card p span[data-copy] { color: var(--brand-700); font-weight: 600; }

/* how it works */
.how { background: var(--cream); }
.how .section-title-center { margin: 8px auto 56px; }
.steps { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { position: relative; }
.step-rail { display: flex; align-items: center; margin-bottom: 18px; }
.step-rail::after { content: ""; flex: 1; height: 2px; background: linear-gradient(90deg, var(--brand-200), transparent); margin-left: 10px; }
.step:last-child .step-rail::after { background: linear-gradient(90deg, var(--accent), transparent); }
.step-dot {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem;
  background: var(--brand-700); color: #fff; box-shadow: var(--sh-brand);
}
.step-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px 26px; height: 100%; box-shadow: var(--sh-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: var(--brand-200); }
.step-ico { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; background: var(--brand-50); color: var(--brand-700); margin-bottom: 18px; }
.step-card h3 { font-size: 1.32rem; margin-bottom: 8px; }
.step-card p { color: var(--ink-500); }
.step-card p span[data-copy] { color: var(--brand-700); font-weight: 600; }

/* features */
.features { background: var(--brand-900); color: #eaf6f2; position: relative; overflow: hidden; }
.features::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background: radial-gradient(50% 40% at 85% 0%, rgba(52,201,163,.22), transparent 70%),
              radial-gradient(45% 40% at 5% 100%, rgba(251,191,36,.12), transparent 70%);
}
.features-head { position: relative; max-width: 720px; margin-bottom: 48px; }
.features .section-title { color: #fff; }
.features .title-soft { color: var(--brand-300); }
.features .section-lead { color: rgba(234,246,242,.72); margin-top: 14px; }
.features .section-lead span[data-copy] { color: var(--accent); font-weight: 600; }

.features-grid { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.feature-card {
  grid-column: span 2;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg); padding: 28px 26px;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: transform .25s var(--ease), background .25s, border-color .25s;
}
.feature-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.09); border-color: rgba(52,201,163,.4); }
.feature-wide { grid-column: span 3; }
.feature-accent { background: linear-gradient(135deg, rgba(20,173,138,.28), rgba(15,118,110,.12)); border-color: rgba(52,201,163,.35); }
.feature-ico {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(52,201,163,.18); color: var(--brand-300); margin-bottom: 18px;
}
.feature-accent .feature-ico { background: var(--accent); color: var(--brand-900); }
.feature-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: 8px; }
.feature-card p { color: rgba(234,246,242,.74); font-size: 1rem; }
.feature-card p span[data-copy] { color: var(--accent); font-weight: 600; }

/* built for */
.built-for { background: var(--surface-2); }
.built-for-inner { max-width: 880px; margin-inline: auto; text-align: center; }
.built-for .section-title { max-width: 20ch; margin: 0 auto; }
.built-for-list {
  list-style: none; padding: 0; margin: 34px 0 20px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.built-for-list li {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 11px 20px; font-weight: 600; font-size: .98rem; color: var(--ink-700);
  box-shadow: var(--sh-sm); transition: transform .2s var(--ease), border-color .2s, color .2s;
}
.built-for-list li:hover { transform: translateY(-3px); border-color: var(--brand-300); color: var(--brand-700); }
.built-for-note { color: var(--ink-500); font-size: 1.08rem; max-width: 48ch; margin: 0 auto; }
.testimonial {
  margin: 46px auto 0; max-width: 640px;
  background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--accent);
  border-radius: var(--r-lg); padding: 30px 32px; box-shadow: var(--sh-md);
}
.testimonial p { font-family: var(--font-display); font-style: italic; font-size: 1.35rem; color: var(--ink-900); line-height: 1.4; }
.testimonial footer { margin-top: 14px; font-size: .92rem; color: var(--ink-400); font-weight: 600; }
.testimonial-tag { color: var(--accent-deep); }

/* lead magnet */
.magnet { background: var(--cream); }
.magnet-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.magnet-copy .section-title { margin: 14px 0 16px; }
.magnet-copy .section-lead span[data-copy] { color: var(--brand-700); font-weight: 600; }
.magnet-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.magnet-art { position: relative; height: 380px; display: grid; place-items: center; }
.paper {
  position: absolute; width: 320px; background: #fff; border: 1px solid var(--line);
  border-radius: 12px; box-shadow: var(--sh-lg);
}
.paper-1 { z-index: 3; padding: 20px; transform: rotate(-3deg); }
.paper-2 { z-index: 2; height: 380px; transform: rotate(4deg) translate(20px, 8px); }
.paper-3 { z-index: 1; height: 380px; transform: rotate(8deg) translate(40px, 16px); background: var(--surface-3); }
.paper-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 12px; border-bottom: 2px solid var(--ink-900); margin-bottom: 12px; }
.paper-title { font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--ink-900); }
.paper-sub { font-size: .7rem; font-weight: 800; letter-spacing: .08em; color: var(--brand-700); text-transform: uppercase; }
.paper-row { display: grid; grid-template-columns: 1fr 1.3fr .7fr .5fr; gap: 6px; padding: 9px 4px; font-size: .82rem; color: var(--ink-700); border-bottom: 1px solid var(--surface-3); }
.paper-row-head { font-weight: 800; color: var(--ink-900); font-size: .72rem; text-transform: uppercase; letter-spacing: .04em; }
.paper-row .tick { color: var(--pass); font-weight: 800; }
.paper-row-empty { height: 32px; }

/* pricing */
.pricing { background: var(--surface-2); }
.pricing .section-title-center { margin: 8px auto 6px; }
.pricing .section-lead-center { margin-bottom: 44px; }
.price-card {
  position: relative; max-width: 460px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 40px 36px 34px; box-shadow: var(--sh-lg); overflow: hidden;
}
.price-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--brand-600), var(--brand-400), var(--accent));
}
.price-ribbon {
  display: inline-block; background: var(--accent-soft); color: var(--accent-deep);
  font-size: .82rem; font-weight: 800; letter-spacing: .02em;
  padding: 7px 15px; border-radius: var(--r-pill); margin-bottom: 18px;
}
.price-amount { display: flex; align-items: baseline; gap: 2px; font-family: var(--font-display); }
.price-currency { font-size: 1.8rem; font-weight: 600; color: var(--ink-900); }
.price-value { font-size: 3.6rem; font-weight: 600; color: var(--ink-900); line-height: 1; letter-spacing: -.02em; }
.price-period { font-size: 1.1rem; font-weight: 500; color: var(--ink-400); font-family: var(--font-body); margin-left: 4px; }
.price-annual { margin-top: 8px; color: var(--ink-500); }
.price-annual strong { color: var(--brand-700); }
.price-list { list-style: none; padding: 24px 0; margin: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; gap: 13px; }
.price-list li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--ink-700); }
.price-list li::before {
  content: "✓"; display: grid; place-items: center; flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%; background: var(--brand-100); color: var(--brand-700);
  font-size: .75rem; font-weight: 800;
}
.price-foot { text-align: center; font-size: .86rem; color: var(--ink-400); margin-top: 14px; }

/* faq */
.faq { background: var(--cream); }
.faq-inner { max-width: 760px; margin-inline: auto; }
.faq .section-title { text-align: center; margin-bottom: 40px; }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden; transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] { border-color: var(--brand-200); box-shadow: var(--sh-sm); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 24px;
  font-weight: 700; font-size: 1.08rem; color: var(--ink-900);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq-chevron::before, .faq-chevron::after {
  content: ""; position: absolute; top: 7px; width: 10px; height: 2px; background: var(--brand-600); border-radius: 2px; transition: transform .3s var(--ease);
}
.faq-chevron::before { left: 0; transform: rotate(45deg); }
.faq-chevron::after { right: 0; transform: rotate(-45deg); }
.faq-item[open] .faq-chevron::before { transform: rotate(-45deg); }
.faq-item[open] .faq-chevron::after { transform: rotate(45deg); }
.faq-answer { padding: 0 24px 22px; }
.faq-answer p { color: var(--ink-500); }
.faq-answer p span[data-copy] { color: var(--brand-700); font-weight: 600; }

/* final cta */
.final-cta { position: relative; padding: 96px 0; overflow: hidden; color: #fff; text-align: center; }
.final-cta-bg {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, var(--brand-800), var(--brand-700) 55%, var(--brand-600));
}
.final-cta-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(40% 60% at 85% 20%, rgba(251,191,36,.25), transparent 60%),
    radial-gradient(40% 50% at 10% 90%, rgba(52,201,163,.3), transparent 60%);
}
.final-cta-title { font-size: clamp(2rem, 5vw, 3.4rem); color: #fff; }
.final-cta-sub { font-size: 1.18rem; color: rgba(255,255,255,.82); margin: 14px auto 0; max-width: 46ch; }
.lead-form-center { max-width: 580px; margin: 30px auto 0; }
.lead-form-center .form-msg { text-align: center; color: #fff; }
.lead-form-center .form-msg.is-error { color: #fecaca; }
.lead-form-center .form-msg.is-success { color: #fff; }
.lead-form-center .form-fineprint { text-align: center; margin-inline: auto; }

/* ============ FOOTER ============ */
.site-footer { background: var(--ink-900); color: rgba(234,246,242,.7); padding: 56px 0 32px; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 28px; justify-content: space-between; align-items: flex-start; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.1); }
.brand-footer .brand-word { color: #fff; }
.brand-footer .brand-word-accent { color: var(--brand-300); }
.footer-tagline { margin-top: 12px; font-size: .94rem; max-width: 30ch; }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-links a { font-weight: 600; font-size: .95rem; transition: color .2s; }
.footer-links a:hover { color: var(--brand-300); }
.disclaimer {
  margin-top: 26px; font-size: .9rem; line-height: 1.6; color: rgba(234,246,242,.6);
  max-width: 80ch; padding: 16px 18px; background: rgba(255,255,255,.04);
  border-left: 3px solid var(--accent); border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.disclaimer strong { color: rgba(255,255,255,.92); }
.copyright { margin-top: 18px; font-size: .85rem; color: rgba(234,246,242,.45); }

/* ============ SCROLL REVEAL ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-device { order: -1; min-height: 480px; }
  .phone { transform: scale(.92); }
  .features-grid { grid-template-columns: repeat(4, 1fr); }
  .feature-card { grid-column: span 2; }
  .feature-wide { grid-column: span 4; }
  .magnet-inner { grid-template-columns: 1fr; gap: 36px; }
  .magnet-art { order: -1; height: 320px; }
}
@media (max-width: 760px) {
  .header-nav { display: none; }
  .header-cta { display: none; }
  .problem-grid, .steps { grid-template-columns: 1fr; gap: 16px; }
  .step-rail::after { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-wide { grid-column: span 1; }
  .section { padding: 64px 0; }
  .lead-form-row { flex-direction: column; padding: 12px; border-radius: var(--r-lg); }
  .lead-form .btn { width: 100%; }
  .lead-input { text-align: center; }
}
@media (max-width: 420px) {
  body { font-size: 16px; }
  .header-actions { gap: 8px; }
  .brand-word { font-size: 1.25rem; }
  .container { padding-inline: 18px; }
}
