/* ============================================================
   makethemcall.com — design language
   Lavender→peach gradient hero, floating pain-cards,
   navy pill buttons, soft white rounded cards.
   ============================================================ */

:root {
  /* canvas gradient (hero, /start/, /checkout/) */
  --canvas-top:        #E8E4F5;
  --canvas-mid:        #F2DCE0;
  --canvas-bottom:     #FBE6DD;

  /* ink + accents */
  --ink:               #1A1A2E;
  --ink-soft:          #34344A;
  --muted:             #6B6B7B;
  --muted-soft:        #9C9CA8;

  --accent:            #FF6B5B;          /* coral, used sparingly */
  --accent-soft:       #FFE8E3;
  --accent-deep:       #E0503F;

  --surface:           #FFFFFF;
  --surface-soft:      #FAF7F2;          /* cream alt section */
  --surface-sunk:      #F4EEE7;          /* pricing inset */
  --border:            #ECE7DF;
  --border-soft:       #F4F0EA;

  --ring:              0 0 0 4px rgba(26, 26, 46, 0.08);
  --shadow-card:       0 24px 60px -24px rgba(26, 26, 46, 0.18),
                       0 2px 4px -2px rgba(26, 26, 46, 0.05);
  --shadow-card-soft:  0 12px 32px -16px rgba(26, 26, 46, 0.10);
  --shadow-float:      0 30px 50px -28px rgba(26, 26, 46, 0.22),
                       0 4px 12px -6px rgba(26, 26, 46, 0.08);
  --shadow-pill:       0 8px 24px -10px rgba(26, 26, 46, 0.30);

  --radius-pill:       9999px;
  --radius-card:       24px;
  --radius-card-sm:    18px;
  --radius-input:      14px;

  --max:               1180px;
  --max-narrow:        760px;
  --max-centerpiece:   720px;
}

/* ─── base ───────────────────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--surface);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
}
a { color: inherit; }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; }
[hidden] { display: none !important; }

.container        { max-width: var(--max);        margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: var(--max-narrow); margin: 0 auto; padding: 0 1.25rem; }

/* eyebrow label — appears above every section H2 */
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 1rem; height: 2px;
  background: var(--accent);
  transform: translateY(-50%);
}

/* utility — small italic emphasis in headings */
em.glyph {
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  position: relative;
}
em.glyph::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 0.18em;
  background: var(--accent-soft);
  z-index: -1;
  border-radius: 4px;
}

/* ─── nav ────────────────────────────────────────────────────── */
.site-nav {
  padding: 1.5rem 0;
  position: relative;
  z-index: 10;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-pill);
  padding: 0.6rem 0.6rem 0.6rem 1.5rem;
  box-shadow: var(--shadow-card-soft);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--ink);
}
.logo-mark {
  height: 2rem;
  width: auto;
  display: block;
  flex: none;
}
.footer-brand .logo-mark { height: 2.25rem; }
.nav-inner nav { display: flex; gap: 0.25rem; align-items: center; }
.nav-inner nav a:not(.btn) {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-pill);
  transition: color .15s, background .15s;
}
.nav-inner nav a:not(.btn):hover { color: var(--ink); background: rgba(26, 26, 46, 0.05); }
.nav-inner nav a.btn { margin-left: 0.4rem; }
@media (max-width: 760px) {
  .nav-inner { padding: 0.5rem 0.5rem 0.5rem 1.1rem; }
  .nav-inner nav a:not(.btn) { display: none; }
}

/* ─── buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.005em;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform .18s cubic-bezier(.2,.8,.3,1),
              box-shadow .18s cubic-bezier(.2,.8,.3,1),
              background .15s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: #FAF7F2;
  box-shadow: var(--shadow-pill);
}
.btn-primary:hover  { transform: translateY(-1px); background: var(--ink-soft); box-shadow: 0 12px 30px -10px rgba(26, 26, 46, 0.45); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #FAF7F2; }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.88rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ─── hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  margin: 1rem 1rem 0;
  padding: 4rem 1.5rem 6rem;
  border-radius: 32px;
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(255, 224, 213, 0.85), transparent 70%),
    radial-gradient(50% 60% at 10% 20%, rgba(220, 210, 240, 0.75), transparent 70%),
    linear-gradient(180deg, var(--canvas-top) 0%, var(--canvas-mid) 55%, var(--canvas-bottom) 100%);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  /* subtle grain to take the edge off the gradient */
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(26, 26, 46, 0.04) 1px, transparent 0);
  background-size: 6px 6px;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}
.hero-stage {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  min-height: 540px;
}

.hero-centerpiece {
  position: relative;
  z-index: 2;
  max-width: var(--max-centerpiece);
  margin: 0 auto;
  text-align: center;
}
.hero .eyebrow {
  background: rgba(255, 255, 255, 0.6);
  padding: 0.45rem 0.9rem 0.45rem 1.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero .eyebrow::before {
  left: 0.85rem;
  width: 0.6rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.028em;
  font-weight: 600;
  color: var(--ink);
  margin: 1.25rem auto 2.25rem;
  max-width: 14ch;
}
.hero h1 em.glyph { font-size: 1em; }

/* slot that holds either the initial CTA or the form */
.hero-cta-slot {
  min-height: 64px;
  display: flex;
  justify-content: center;
}
.hero-cta-slot > .btn { animation: cta-pop .35s cubic-bezier(.2,.8,.3,1) both; }
@keyframes cta-pop {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* hero form card — the centerpiece */
.hero-form-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  border: 1px solid rgba(26, 26, 46, 0.06);
  box-shadow: var(--shadow-card);
  padding: 0.65rem 0.65rem 0.65rem 1.5rem;
  max-width: 540px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-align: left;
  position: relative;
}
.hero-form-card form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}
.hero-form-card .input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}
.hero-form-card .input-globe {
  flex: none;
  color: var(--muted-soft);
}
.hero-form-card input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  padding: 0.85rem 0;
}
.hero-form-card input::placeholder { color: var(--muted-soft); }
.hero-form-card input:focus { outline: none; }
.hero-form-card .btn { flex: none; }
.hero-form-card.has-error { border-color: #DC2626; }
.hero-form-card.is-submitting { opacity: 0.7; }
.hero-form-card.is-revealing { animation: form-reveal .35s cubic-bezier(.2,.8,.3,1) both; }
@keyframes form-reveal {
  from { opacity: 0; transform: translateY(-6px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-form-msg {
  margin: 0.85rem auto 0;
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
  max-width: 540px;
}
.hero-form-msg .ok    { color: #15803D; font-weight: 600; }
.hero-form-msg .error { color: #DC2626; font-weight: 600; }

.hero-secondary {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  transition: background .15s, color .15s;
}
.hero-secondary:hover { background: rgba(255, 255, 255, 0.6); color: var(--ink); }
.hero-secondary svg { transform: translateY(1px); }

/* floating peripheral pain-cards */
.float-card {
  position: absolute;
  background: var(--surface);
  border-radius: var(--radius-card-sm);
  box-shadow: var(--shadow-float);
  padding: 0.95rem 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 200px;
  max-width: 240px;
  z-index: 1;
  border: 1px solid rgba(26, 26, 46, 0.04);
}
.float-card .fc-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  flex: none;
  background: var(--surface-soft);
  color: var(--ink);
}
.float-card .fc-icon.danger    { background: #FFEAE6; color: var(--accent-deep); }
.float-card .fc-icon.warning   { background: #FFF4E0; color: #B86F00; }
.float-card .fc-icon.muted     { background: #EFEAFF; color: #5147AA; }
.float-card .fc-icon.cool      { background: #E5F0FF; color: #2C5BBE; }

.float-card .fc-body { min-width: 0; }
.float-card .fc-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}
.float-card .fc-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}
.float-card .fc-pulse {
  position: absolute;
  top: -4px; right: -4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--surface);
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 107, 91, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(255, 107, 91, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 107, 91, 0); }
}

/* floating card positions — large desktop only */
.float-card.fc-1 { top: 1rem;   left: 2%;   transform: rotate(-3deg); }
.float-card.fc-2 { top: 3rem;   right: 2%;  transform: rotate(4deg); }
.float-card.fc-3 { bottom: 5rem; left: 4%;  transform: rotate(-2deg); }
.float-card.fc-4 { bottom: 1rem; right: 4%; transform: rotate(3deg); }

/* hide pain-cards under 1100px */
@media (max-width: 1099px) {
  .float-card { display: none; }
}

/* entry animation: stagger reveal */
.hero-centerpiece > * { opacity: 0; transform: translateY(12px); animation: reveal .8s cubic-bezier(.2,.8,.3,1) forwards; }
.hero-centerpiece > *:nth-child(1) { animation-delay: 0.05s; }
.hero-centerpiece > *:nth-child(2) { animation-delay: 0.18s; }
.hero-centerpiece > *:nth-child(3) { animation-delay: 0.30s; }
.hero-centerpiece > *:nth-child(4) { animation-delay: 0.42s; }
.hero-centerpiece > *:nth-child(5) { animation-delay: 0.54s; }
.float-card { opacity: 0; transform-origin: center; animation: floatIn .9s cubic-bezier(.2,.8,.3,1) forwards; }
.float-card.fc-1 { animation-delay: 0.55s; }
.float-card.fc-2 { animation-delay: 0.70s; }
.float-card.fc-3 { animation-delay: 0.85s; }
.float-card.fc-4 { animation-delay: 1.00s; }

@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floatIn {
  0% { opacity: 0; transform: scale(0.92) rotate(var(--rot, 0deg)); }
  100% { opacity: 1; }
}
.float-card.fc-1 { --rot: -3deg; }
.float-card.fc-2 { --rot: 4deg; }
.float-card.fc-3 { --rot: -2deg; }
.float-card.fc-4 { --rot: 3deg; }

/* mobile hero form layout */
@media (max-width: 600px) {
  .hero { margin: 0.5rem 0.5rem 0; padding: 3rem 1.25rem 4rem; border-radius: 24px; }
  .hero-form-card {
    flex-direction: column;
    padding: 0.85rem;
    align-items: stretch;
  }
  .hero-form-card form { flex-direction: column; gap: 0.75rem; }
  .hero-form-card input { padding: 0.85rem; background: var(--surface-soft); border-radius: var(--radius-input); }
  .hero-form-card .input-wrap { background: var(--surface-soft); border-radius: var(--radius-input); padding: 0 0.85rem; }
  .hero-form-card .btn { width: 100%; }
  .hero h1 { max-width: none; }
}

/* ─── what / features section ─────────────────────────────────── */
.how { padding: 6rem 0 5rem; }
/* A second paragraph in a prose section should read as the same thought, not a
   new section. */
.how .container > .how-sub + .how-sub { margin-top: 0.85rem; }
/* The 3rem below a sub is the gap to the grid it introduces. In a prose-only
   section there is no grid, so it lands on top of the section's own padding and
   reads as a hole. */
.how .container > .how-sub:last-child { margin-bottom: 0; }
/* A sub that FOLLOWS the grid is a footnote to it and has no gap of its own,
   since `.how-sub` only ever carried a bottom margin. */
.how .container > .feature-grid + .how-sub { margin-top: 1.75rem; }
.how .container > .eyebrow,
.how .container > h2,
.how .container > .how-sub { text-align: center; }
.how .container > .eyebrow { display: block; margin: 0 auto 1rem; width: max-content; }
.how h2, .pricing h2, .examples h2, .faq h2 {
  font-size: clamp(1.85rem, 3.8vw, 2.65rem);
  letter-spacing: -0.02em;
  text-align: center;
  font-weight: 600;
  margin-bottom: 0.85rem;
  line-height: 1.1;
}
.how-sub, .examples-sub, .pricing-sub {
  text-align: center;
  color: var(--muted);
  margin: 0 auto 3rem;
  max-width: 38rem;
  font-size: 1.02rem;
}

/* 4-feature grid */
.feature-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 640px) { .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
/* auto-fit, not a fixed count: this grid held four cards and now holds three,
   and a hardcoded `repeat(4, 1fr)` left an empty column with the row pinned to
   the left. Sizing from the items means the section stays composed whatever
   goes in it. */
@media (min-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
}
.feature-grid li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-card-soft);
  transition: transform .25s cubic-bezier(.2,.8,.3,1), box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.feature-grid li:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.feature-grid li::after {
  /* corner accent ribbon */
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 60px;
  background: radial-gradient(ellipse at top right, rgba(255, 107, 91, 0.08), transparent 70%);
  pointer-events: none;
}
.feature-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--accent-soft), #FFD9D0);
  color: var(--accent-deep);
  margin-bottom: 1.25rem;
}
.feature-grid h3 {
  font-size: 1.1rem; font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.45rem;
}
.feature-grid p { color: var(--muted); font-size: 0.95rem; line-height: 1.55; }

/* ─── examples (before/after) ─────────────────────────────────── */
.examples {
  padding: 6rem 0 7rem;
  background: var(--surface-soft);
}
.examples h2 { margin-bottom: 0.85rem; }
.examples-sub { margin-bottom: 3.5rem; }
.examples .eyebrow { display: block; margin: 0 auto 1rem; width: max-content; }
.ba-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 800px) {
  .ba-list { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}
.ba-item figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem 0.75rem;
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.ba-caption-name { color: var(--ink); font-weight: 600; }
.ba-caption-meta { color: var(--muted); }
.ba-live {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform .15s, background .15s;
}
.ba-live:hover { transform: translateY(-1px); background: var(--ink); color: #FAF7F2; }
.examples-foot {
  text-align: center;
  color: var(--muted);
  margin-top: 3rem;
  font-size: 0.95rem;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}
.ba {
  position: relative;
  aspect-ratio: 1400 / 900;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  cursor: ew-resize;
  user-select: none;
  background: var(--surface);
  touch-action: none;
}
.ba-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}
.ba-before-wrap {
  position: absolute; inset: 0;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
  will-change: clip-path;
}
.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos);
  width: 2px;
  background: white;
  transform: translateX(-1px);
  box-shadow: 0 0 0 1px rgba(26, 26, 46, 0.18);
  pointer-events: none;
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: var(--pos);
  transform: translate(-50%, -50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ink);
  border: 3px solid white;
  box-shadow: 0 8px 22px -6px rgba(26, 26, 46, 0.5);
  color: white;
  display: grid; place-items: center;
  cursor: ew-resize;
  transition: transform .15s, box-shadow .15s;
}
.ba-handle:hover  { transform: translate(-50%, -50%) scale(1.06); }
.ba-handle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.ba-handle svg { display: block; }
.ba-label {
  position: absolute;
  top: 0.9rem;
  padding: 0.3rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
}
.ba-label-before {
  left: 0.9rem;
  background: rgba(26, 26, 46, 0.75);
  color: white;
}
.ba-label-after {
  right: 0.9rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

/* ─── how-you-get-it (3 steps) ────────────────────────────────── */
section.how + section.examples,
section.how + section.examples + section.how {
  /* second .how section (the demoted steps) gets a tinted background */
}
/* The tint is what alternates sections, and it is independent of what a section
   holds — steps, prose, anything. Keeping it on its own modifier is why the
   who-it's-for block could stop borrowing `.about`, which is a two-column strip
   and left-aligned its heading under centred prose. */
section.how.tinted,
section.how.steps-section { background: var(--surface-soft); padding: 6rem 0; }
section.how.steps-section .eyebrow,
section.how.steps-section h2,
section.how.steps-section .how-sub { text-align: center; }
section.how.steps-section .eyebrow { display: block; margin: 0 auto 1rem; width: max-content; }

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
/* Four steps in a three-column grid orphaned the fourth on its own row. Two
   across on tablet, four across once there is room, so a row is always full. */
@media (min-width: 800px) { .steps { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; } }
@media (min-width: 1100px) { .steps { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; max-width: 1150px; } }

.steps li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-card-soft);
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 1.1rem;
  letter-spacing: -0.02em;
}
.steps h3 {
  font-size: 1.08rem; font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}
.steps p { color: var(--muted); font-size: 0.96rem; line-height: 1.55; }

/* ─── pricing ─────────────────────────────────────────────────── */
.pricing {
  padding: 7rem 0;
  background: var(--surface);
}
.pricing .container > .eyebrow {
  display: block; margin: 0 auto 1rem; width: max-content;
}
.pricing-sub { margin-bottom: 3rem; }

.price-card {
  max-width: 480px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-soft) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 2.5rem 2.25rem 2.25rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.price-card::before {
  /* decorative gradient blob */
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 80%; height: 80%;
  background: radial-gradient(circle, rgba(255, 107, 91, 0.10), transparent 60%);
  pointer-events: none;
}
.price { text-align: center; margin-bottom: 1.5rem; position: relative; }
.price-kicker {
  display: inline-block;
  background: var(--ink);
  color: var(--surface-soft);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}
.price .currency {
  font-size: 1.6rem; color: var(--muted);
  vertical-align: top;
  position: relative; top: 0.85rem;
  font-weight: 500;
}
.price .amount {
  font-size: clamp(3.5rem, 8vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--ink);
  font-feature-settings: 'tnum';
}
.price .period { font-size: 1rem; color: var(--muted); margin-left: 0.15rem; }
.features { list-style: none; margin: 1.75rem 0; }
.features li {
  padding: 0.7rem 0 0.7rem 2rem;
  position: relative;
  color: var(--ink);
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.96rem;
}
.features li:last-child { border-bottom: 0; }
.features li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1.25rem; height: 1.25rem;
  border-radius: 50%;
  background: var(--ink);
  background-image:
    linear-gradient(45deg, transparent 35%, white 35%, white 45%, transparent 45%),
    linear-gradient(135deg, transparent 50%, white 50%, white 65%, transparent 65%);
  background-size: 0.7rem 0.7rem, 0.7rem 0.7rem;
  background-position: 0.27rem 0.4rem, 0.27rem 0.4rem;
  background-repeat: no-repeat;
}
.guarantee {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin: 1.25rem 0 0;
  padding: 0.95rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card-sm);
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.guarantee svg { flex: none; color: var(--ink); margin-top: 0.1rem; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.trust-row li {
  white-space: nowrap;
  padding: 0.4rem 0.85rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-weight: 600;
}

/* ─── about strip ─────────────────────────────────────────────── */
.about {
  padding: 6rem 0;
  background: var(--surface-soft);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.about h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.25rem);
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0 0 1.5rem;
  line-height: 1.15;
}
.about p { line-height: 1.65; margin: 0 0 1rem; color: var(--ink-soft); }
.about-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.85rem 1.85rem;
  box-shadow: var(--shadow-card-soft);
}
.about-card h4 {
  margin: 0 0 1.25rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-deep);
  position: relative;
  padding-left: 1.5rem;
}
.about-card h4::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 1rem; height: 2px;
  background: var(--accent);
  transform: translateY(-50%);
}
.about-card ul { list-style: none; padding: 0; }
.about-card li {
  padding: 0.65rem 0 0.65rem 1.85rem;
  position: relative;
  font-size: 0.94rem;
  color: var(--ink-soft);
  line-height: 1.5;
  border-bottom: 1px solid var(--border-soft);
}
.about-card li:last-child { border-bottom: 0; }
.about-card li::before {
  content: '→';
  position: absolute;
  left: 0; top: 0.65rem;
  color: var(--accent);
  font-weight: 600;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ─── FAQ ─────────────────────────────────────────────────────── */
.faq { padding: 6rem 0 7rem; background: var(--surface); }
.faq h2 { margin: 0 0 0.75rem; }
.faq .container-narrow > .eyebrow { display: block; margin: 0 auto 1rem; width: max-content; }
.faq .container-narrow > .eyebrow,
.faq h2 { text-align: center; }
.faq-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.65rem; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card-sm);
  padding: 0;
  transition: border-color .2s, box-shadow .2s;
}
.faq details[open] {
  border-color: rgba(26, 26, 46, 0.18);
  box-shadow: var(--shadow-card-soft);
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--surface-soft);
  background-image:
    linear-gradient(to right, var(--ink) 40%, transparent 40%),
    linear-gradient(to bottom, var(--ink) 40%, transparent 40%);
  background-size: 12px 2px, 2px 12px;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  transition: transform .25s cubic-bezier(.2,.8,.3,1);
}
.faq details[open] summary::after {
  background-image: linear-gradient(to right, var(--ink) 40%, transparent 40%);
  background-size: 12px 2px;
  transform: rotate(180deg);
}
.faq details p { margin: 0 1.35rem 1.25rem; color: var(--muted); line-height: 1.65; font-size: 0.96rem; }
.faq details a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }

/* ─── /start page ─────────────────────────────────────────────── */
.start-main {
  padding: 4rem 1rem 5rem;
  min-height: 70vh;
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(255, 224, 213, 0.6), transparent 70%),
    radial-gradient(50% 60% at 10% 20%, rgba(220, 210, 240, 0.5), transparent 70%),
    linear-gradient(180deg, var(--canvas-top) 0%, var(--canvas-bottom) 100%);
}
.start-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid rgba(26, 26, 46, 0.06);
  border-radius: var(--radius-card);
  padding: 2.75rem 2.25rem 2.25rem;
  box-shadow: var(--shadow-card);
}
.start-card .eyebrow { margin-bottom: 0.9rem; }
.start-card h1 {
  font-size: clamp(1.7rem, 3.2vw, 2.15rem);
  letter-spacing: -0.02em;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 0.9rem;
}
.start-card .lede {
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
  font-size: 1rem;
  line-height: 1.55;
}
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-input);
  transition: border-color .15s, box-shadow .15s, background .15s;
  -webkit-appearance: none;
}
.field input::placeholder { color: var(--muted-soft); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--surface);
  box-shadow: var(--ring);
}
.field input.has-error,
.field textarea.has-error {
  border-color: #DC2626;
  background: #FFF6F5;
}
.field-error {
  display: block;
  min-height: 1.2em;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: #DC2626;
}
.form-error {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: #FFF6F5;
  color: #DC2626;
  border: 1px solid #FDC8C8;
  border-radius: var(--radius-input);
  font-size: 0.92rem;
  text-align: center;
}
.start-card .fine-print {
  margin-top: 1rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}
.fine-print { font-size: 0.85rem; color: var(--muted); margin-top: 0.85rem; }

.start-success { text-align: center; }
.success-check {
  width: 64px; height: 64px;
  margin: 0 auto 1.25rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--accent-soft), #FFD9D0);
  color: var(--accent-deep);
}
.start-success .btn { margin-top: 1rem; }

/* ─── checkout page ───────────────────────────────────────────── */
.checkout-main {
  padding: 4rem 1rem 5rem;
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(255, 224, 213, 0.6), transparent 70%),
    radial-gradient(50% 60% at 10% 20%, rgba(220, 210, 240, 0.5), transparent 70%),
    linear-gradient(180deg, var(--canvas-top) 0%, var(--canvas-bottom) 100%);
  min-height: 70vh;
}
.checkout-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.checkout-grid > * { min-width: 0; }
.checkout-copy { max-width: 560px; }
.checkout-copy .eyebrow { margin-bottom: 1rem; }
.checkout-copy h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.checkout-copy .lede {
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 34rem;
  line-height: 1.55;
}
.checkout-summary {
  width: 100%;
  min-width: 0;
  background: var(--surface);
  border: 1px solid rgba(26, 26, 46, 0.06);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}
.checkout-summary h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.summary-rows { border-top: 1px solid var(--border-soft); }
.summary-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--border-soft);
}
.summary-row span { display: block; color: var(--ink); font-weight: 600; }
.summary-row p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  margin-top: 0.2rem;
}
.summary-row strong { color: var(--ink); font-size: 1.08rem; }
.summary-row-strong strong { font-size: 1.35rem; }
.checkout-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 1.5rem 0 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--ink);
  color: white;
  border-radius: var(--radius-card-sm);
}
.checkout-total span { color: rgba(255, 255, 255, 0.7); font-weight: 600; font-size: 0.92rem; }
.checkout-total strong { color: white; font-size: 1.75rem; letter-spacing: -0.02em; }
.checkout-note { color: var(--muted); font-size: 0.92rem; line-height: 1.5; margin-bottom: 1.25rem; }

@media (min-width: 840px) {
  .checkout-main { padding-top: 5rem; }
  .checkout-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 460px);
    gap: 4rem;
  }
  .checkout-summary { position: sticky; top: 1.5rem; padding: 2.25rem; }
  .summary-row { grid-template-columns: 1fr auto; align-items: start; }
  .summary-row strong { text-align: right; }
}

/* ─── contact page ────────────────────────────────────────────── */
.contact-main {
  padding: 3rem 1rem 4rem;
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(255, 224, 213, 0.45), transparent 70%),
    radial-gradient(50% 60% at 10% 20%, rgba(220, 210, 240, 0.4), transparent 70%),
    linear-gradient(180deg, var(--canvas-top) 0%, #F8EFE9 100%);
  min-height: 70vh;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-info .eyebrow { margin-bottom: 1rem; }
.contact-info h1 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  letter-spacing: -0.025em;
  font-weight: 600;
  margin: 0 0 1rem;
  line-height: 1.15;
}
.contact-info .lede {
  color: var(--ink-soft);
  margin: 0 0 2.5rem;
  font-size: 1.05rem;
  line-height: 1.55;
}
.info-block { margin: 1.5rem 0; }
.info-block h3 {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0 0 0.5rem;
}
.info-block address { font-style: normal; line-height: 1.6; color: var(--ink); }
.info-block a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; font-weight: 500; }
.info-hint { color: var(--muted); font-size: 0.85rem; margin: 0.35rem 0 0; }
.contact-card {
  background: var(--surface);
  border: 1px solid rgba(26, 26, 46, 0.06);
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}
.contact-card textarea { resize: vertical; min-height: 7rem; font-family: inherit; }
.contact-card .fine-print { text-align: center; margin: 1rem 0 0; }
.contact-success { text-align: center; }
.contact-success h2 { font-size: 1.6rem; margin: 0 0 0.5rem; letter-spacing: -0.02em; }
.contact-success .lede { color: var(--muted); margin: 0 0 1.5rem; }

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ─── legal pages ─────────────────────────────────────────────── */
.legal-main {
  padding: 3rem 1rem 5rem;
  background: var(--surface);
}
.legal h1 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.025em;
  font-weight: 600;
}
.legal .legal-sub { color: var(--muted); margin: 0 0 2.5rem; font-size: 1.05rem; }
.legal h2 {
  margin: 2.75rem 0 0.85rem;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.legal h3 { margin: 1.75rem 0 0.5rem; font-size: 1.05rem; font-weight: 600; }
.legal p, .legal ul, .legal ol { line-height: 1.7; color: var(--ink-soft); }
.legal ul, .legal ol { padding-left: 1.25rem; margin: 0.5rem 0 1rem; }
.legal a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.legal table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.5rem 0 2rem;
  font-size: 0.94rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-card-sm);
  overflow: hidden;
}
.legal th, .legal td { padding: 0.7rem 0.9rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--border); }
.legal tr:last-child td { border-bottom: 0; }
.legal th { background: var(--surface-soft); font-weight: 600; }
.legal-meta { margin-top: 3rem; padding-top: 1.25rem; border-top: 1px solid var(--border); color: var(--muted); font-size: 0.85rem; }

/* ─── footer ──────────────────────────────────────────────────── */
footer {
  margin-top: 0;
  padding: 4rem 0 1.75rem;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand .logo {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: white;
}
.footer-brand .logo::before { color: var(--accent); }
.footer-tagline { color: rgba(255, 255, 255, 0.55); margin: 0.35rem 0 0.6rem; max-width: 26ch; line-height: 1.55; }
.footer-made { color: rgba(255, 255, 255, 0.35); font-size: 0.78rem; }
.footer-col h4 {
  margin: 0 0 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { padding: 0.2rem 0; }
.footer-address address { font-style: normal; line-height: 1.65; color: rgba(255, 255, 255, 0.7); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom-right { opacity: 0.7; }
footer a { text-decoration: none; color: rgba(255, 255, 255, 0.7); transition: color .15s; }
footer a:hover { color: white; }
.todo {
  background: #fff3cd;
  color: #664d03;
  padding: 0 0.25rem;
  border-radius: 0.2rem;
  font-size: 0.85em;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, monospace;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
}

/* ─── reduced motion ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .float-card { opacity: 1; transform: rotate(var(--rot, 0deg)); }
  .hero-centerpiece > * { opacity: 1; transform: none; }
}
