/* ================================================================
   SLIMAPP — Design system
   Salmon/coral accents on a predominantly white canvas.
================================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── Brand ── */
  --salmon:        #E98273;
  --salmon-dark:   #C96255;
  --salmon-soft:   #FDF0ED;
  --salmon-lift:   #FFF8F6;
  --line:          #F0D8D3;

  /* ── Text ── */
  --ink:           #252525;
  --muted:         #6B6B6B;
  --faint:         #9A9A9A;
  --white:         #FFFFFF;

  /* ── Neutral structure ── */
  --hair:          #ECECEC;
  --wash:          #FAFAFA;

  /* ── Geometry ── */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-pill: 999px;

  /* ── Elevation: soft and warm, never grey mush ── */
  --sh-xs: 0 1px 2px rgba(37,37,37,.05);
  --sh-sm: 0 2px 8px rgba(37,37,37,.055);
  --sh-md: 0 8px 28px rgba(37,37,37,.075);
  --sh-lg: 0 20px 60px rgba(201,98,85,.13);

  /* ── Type ── */
  --f-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --f-body:    'Inter', system-ui, -apple-system, sans-serif;

  --ease: .28s cubic-bezier(.4, 0, .2, 1);

  /* ── Rhythm ── */
  --gutter: 24px;
  --shell: 1140px;
  --section-y: clamp(72px, 9vw, 128px);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.68;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; }

/* Visible focus for keyboard users, suppressed for mouse */
:focus-visible {
  outline: 2px solid var(--salmon-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--ink); color: #fff;
  padding: 10px 18px; border-radius: var(--r-xs);
  font-size: .875rem; font-weight: 600; z-index: 200;
  transition: top var(--ease);
}
.skip-link:focus { top: 12px; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ================================================================
   LAYOUT
================================================================ */
.shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: var(--section-y) 0; }
.section--tint { background: var(--salmon-lift); }
.section--wash { background: var(--wash); }
.section--hair { border-top: 1px solid var(--hair); }

/* ================================================================
   TYPE
================================================================ */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.16;
  color: var(--ink);
}

.h-display { font-size: clamp(2.3rem, 5.2vw, 3.65rem); letter-spacing: -.035em; line-height: 1.08; }
.h-section  { font-size: clamp(1.8rem, 3.4vw, 2.55rem); }
.h-card     { font-size: 1.0625rem; font-weight: 700; letter-spacing: -.015em; }

.eyebrow {
  display: inline-block;
  font-family: var(--f-display);
  font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--salmon-dark);
  margin-bottom: 14px;
}

.lede {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--muted);
  line-height: 1.72;
  max-width: 62ch;
}

.section-head { max-width: 640px; margin-bottom: clamp(40px, 5vw, 60px); }
.section-head.is-centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.is-centered .lede { margin-left: auto; margin-right: auto; }
.section-head .lede { margin-top: 16px; }

/* ================================================================
   BUTTONS
================================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 9px;
  font-family: var(--f-display);
  font-size: .9375rem; font-weight: 700;
  letter-spacing: -.01em;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  transition: background var(--ease), color var(--ease),
              border-color var(--ease), transform var(--ease),
              box-shadow var(--ease);
  min-height: 48px;            /* comfortable tap target */
  text-align: center;
}
.btn svg { flex-shrink: 0; }

.btn--primary {
  background: var(--salmon);
  color: #fff;
  box-shadow: 0 4px 14px rgba(233,130,115,.32);
}
.btn--primary:hover {
  background: var(--salmon-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(201,98,85,.34);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--hair);
}
.btn--ghost:hover { border-color: var(--line); background: var(--salmon-lift); }

.btn--quiet {
  background: transparent;
  color: var(--salmon-dark);
  padding: 12px 4px;
}
.btn--quiet:hover { color: var(--ink); }

.btn--lg { padding: 17px 34px; font-size: 1rem; min-height: 56px; }
.btn--block { display: flex; width: 100%; }

.btn[disabled], .btn[aria-disabled="true"] {
  opacity: .55; cursor: not-allowed; transform: none; box-shadow: none;
}

/* ================================================================
   HEADER
================================================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.header.is-stuck {
  border-bottom-color: var(--hair);
  box-shadow: 0 1px 12px rgba(37,37,37,.04);
}
.header-inner {
  max-width: var(--shell); margin: 0 auto;
  padding: 0 var(--gutter);
  height: 70px;
  display: flex; align-items: center; gap: 20px;
}

.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-display);
  font-size: 1.135rem; font-weight: 800;
  letter-spacing: -.03em; color: var(--ink);
  margin-right: auto;
  flex-shrink: 0;
}
.brand-mark { width: 30px; height: 30px; flex-shrink: 0; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  font-size: .9rem; font-weight: 500;
  color: var(--muted);
  padding: 8px 14px; border-radius: var(--r-xs);
  transition: color var(--ease), background var(--ease);
  white-space: nowrap;
}
.nav a:hover { color: var(--ink); background: var(--salmon-lift); }
.nav a[aria-current="page"] { color: var(--salmon-dark); font-weight: 600; }

.header .btn { padding: 11px 22px; min-height: 44px; font-size: .875rem; }

.burger {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border-radius: var(--r-xs);
  flex-direction: column; gap: 5px;
}
.burger:hover { background: var(--salmon-lift); }
.burger span {
  display: block; width: 19px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer {
  display: none;
  position: fixed; inset: 70px 0 auto 0;
  background: var(--white);
  border-bottom: 1px solid var(--hair);
  box-shadow: var(--sh-md);
  padding: 10px var(--gutter) 24px;
  z-index: 99;
  max-height: calc(100dvh - 70px);
  overflow-y: auto;
}
.drawer.is-open { display: block; }
.drawer a {
  display: block; padding: 15px 2px;
  font-size: 1rem; font-weight: 500; color: var(--ink);
  border-bottom: 1px solid var(--hair);
}
.drawer a:last-of-type { border-bottom: none; }
.drawer .btn { margin-top: 18px; }

/* ================================================================
   HERO
================================================================ */
.hero {
  position: relative;
  padding: clamp(52px, 7vw, 92px) 0 clamp(64px, 8vw, 104px);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  top: -260px; right: -180px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(233,130,115,.13) 0%, rgba(233,130,115,0) 68%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  gap: clamp(36px, 5vw, 68px);
  align-items: center;
}

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--salmon-soft);
  border: 1px solid var(--line);
  color: var(--salmon-dark);
  font-family: var(--f-display);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 7px 15px; border-radius: var(--r-pill);
  margin-bottom: 24px;
}
.pill-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--salmon); flex-shrink: 0;
}

.hero h1 { margin-bottom: 20px; }
.hero .lede { margin-bottom: 32px; }

.hero-actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  margin-bottom: 22px;
}
.hero-note {
  display: flex; align-items: center; gap: 8px;
  font-size: .855rem; color: var(--faint);
}
.hero-note svg { color: var(--salmon); flex-shrink: 0; }

/* ================================================================
   APP MOCKUP — built in CSS/SVG, no image weight
================================================================ */
.mock {
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  overflow: hidden;
}
.mock-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 13px 18px;
  background: var(--salmon-lift);
  border-bottom: 1px solid var(--line);
}
.mock-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.mock-dot:first-child { background: var(--salmon); }
.mock-url {
  margin-left: 10px;
  font-size: .715rem; color: var(--faint);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 4px 14px;
  font-family: var(--f-body);
}
.mock-body { padding: 22px; }

.mock-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 14px; margin-bottom: 20px;
}
.mock-greet { font-family: var(--f-display); font-weight: 700; font-size: 1.02rem; letter-spacing: -.02em; }
.mock-date { font-size: .765rem; color: var(--faint); margin-top: 2px; }
.mock-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--salmon-soft);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: var(--f-display); font-weight: 700;
  font-size: .78rem; color: var(--salmon-dark);
  flex-shrink: 0;
}

.mock-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 18px; }
.mock-stat {
  background: var(--salmon-lift);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 13px 12px;
}
.mock-stat b {
  display: block;
  font-family: var(--f-display); font-weight: 800;
  font-size: 1.22rem; letter-spacing: -.03em;
  color: var(--salmon-dark); line-height: 1.1;
}
.mock-stat span {
  display: block; margin-top: 3px;
  font-size: .685rem; color: var(--muted);
  letter-spacing: .01em;
}

.mock-panel {
  border: 1px solid var(--hair);
  border-radius: var(--r-sm);
  padding: 15px;
  margin-bottom: 14px;
}
.mock-panel:last-child { margin-bottom: 0; }
.mock-panel-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 13px;
}
.mock-panel-title { font-family: var(--f-display); font-weight: 700; font-size: .83rem; }
.mock-tag {
  font-size: .66rem; font-weight: 600;
  color: var(--salmon-dark); background: var(--salmon-soft);
  border-radius: var(--r-pill); padding: 3px 10px;
}

.mock-task { display: flex; align-items: center; gap: 10px; padding: 7px 0; }
.mock-task + .mock-task { border-top: 1px solid var(--hair); }
.mock-check {
  width: 17px; height: 17px; border-radius: 5px;
  border: 1.5px solid var(--line);
  display: grid; place-items: center; flex-shrink: 0;
}
.mock-check.is-on { background: var(--salmon); border-color: var(--salmon); }
.mock-check svg { width: 10px; height: 10px; color: #fff; }
.mock-task span { font-size: .8rem; color: var(--ink); }
.mock-task.is-done span { color: var(--faint); text-decoration: line-through; }

.mock-bars { display: flex; align-items: flex-end; gap: 7px; height: 62px; }
.mock-bars i {
  flex: 1; display: block;
  background: var(--salmon-soft);
  border-radius: 4px 4px 2px 2px;
  min-height: 8px;
}
.mock-bars i.is-hi { background: var(--salmon); }
.mock-days {
  display: flex; gap: 7px; margin-top: 8px;
}
.mock-days span {
  flex: 1; text-align: center;
  font-size: .625rem; color: var(--faint);
}

/* ================================================================
   CARD GRIDS
================================================================ */
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  padding: 26px 24px;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.card:hover {
  border-color: var(--line);
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
}
.card h3 { margin-bottom: 9px; }
.card p { font-size: .9rem; color: var(--muted); line-height: 1.68; }

.card-icon {
  width: 42px; height: 42px; border-radius: var(--r-sm);
  background: var(--salmon-soft);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 20px; height: 20px; color: var(--salmon-dark); }

/* ================================================================
   STEPS
================================================================ */
.steps {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px; position: relative;
}
.steps::before {
  content: ''; position: absolute;
  top: 27px; left: 14%; right: 14%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--line) 0 7px, transparent 7px 14px);
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; }
.step-num {
  width: 54px; height: 54px; margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--line);
  display: grid; place-items: center;
  font-family: var(--f-display); font-weight: 800;
  font-size: 1.05rem; color: var(--salmon-dark);
  box-shadow: var(--sh-sm);
}
.step h3 { margin-bottom: 9px; }
.step p { font-size: .9rem; color: var(--muted); max-width: 32ch; margin: 0 auto; }

/* ================================================================
   SPLIT (text + visual)
================================================================ */
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 5vw, 68px);
  align-items: center;
}
.split--flip .split-visual { order: -1; }

/* ================================================================
   CHECK LIST
================================================================ */
.checks { display: grid; gap: 14px; }
.checks li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .95rem; color: var(--ink);
}
.checks .tick {
  width: 21px; height: 21px; border-radius: 50%;
  background: var(--salmon-soft);
  display: grid; place-items: center;
  flex-shrink: 0; margin-top: 2px;
}
.checks .tick svg { width: 11px; height: 11px; color: var(--salmon-dark); }
.checks b { font-weight: 600; }
.checks span.note { display: block; font-size: .875rem; color: var(--muted); margin-top: 2px; }

/* ================================================================
   ROUTINE / TIMELINE
================================================================ */
.routine { display: grid; gap: 0; }
.routine-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--hair);
  align-items: start;
}
.routine-item:last-child { border-bottom: none; }
.routine-when {
  font-family: var(--f-display); font-weight: 700;
  font-size: .8rem; color: var(--salmon-dark);
  padding-top: 2px;
}
.routine-what h3 { font-size: 1rem; margin-bottom: 5px; }
.routine-what p { font-size: .9rem; color: var(--muted); }

/* ================================================================
   FAQ
================================================================ */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--hair); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; width: 100%;
  padding: 22px 2px;
  font-family: var(--f-display); font-weight: 700;
  font-size: 1rem; letter-spacing: -.015em;
  color: var(--ink); text-align: left;
  transition: color var(--ease);
}
.faq-q:hover { color: var(--salmon-dark); }
.faq-sign {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--salmon-soft);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background var(--ease), transform var(--ease);
}
.faq-sign svg { width: 11px; height: 11px; color: var(--salmon-dark); }
.faq-q[aria-expanded="true"] .faq-sign { background: var(--salmon); transform: rotate(45deg); }
.faq-q[aria-expanded="true"] .faq-sign svg { color: #fff; }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--ease);
}
.faq-a-inner {
  padding: 0 2px 24px;
  font-size: .945rem; color: var(--muted); line-height: 1.75;
  max-width: 66ch;
}

/* ================================================================
   PRICING
================================================================ */
.price-card {
  max-width: 480px; margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  overflow: hidden;
}
.price-top {
  background: var(--salmon-lift);
  border-bottom: 1px solid var(--line);
  padding: 34px 32px 30px;
  text-align: center;
}
.price-name {
  font-family: var(--f-display); font-weight: 700;
  font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--salmon-dark); margin-bottom: 14px;
}
.price-fig {
  display: flex; align-items: baseline; justify-content: center; gap: 4px;
  font-family: var(--f-display);
  font-weight: 800; letter-spacing: -.045em;
  color: var(--ink);
}
.price-fig .amount { font-size: clamp(3rem, 7vw, 3.85rem); line-height: 1; }
.price-fig .cur { font-size: 1.85rem; }
.price-sub { font-size: .86rem; color: var(--muted); margin-top: 10px; }
.price-body { padding: 30px 32px 34px; }
.price-body .checks { margin-bottom: 26px; }
.price-foot {
  text-align: center; font-size: .8rem; color: var(--faint);
  margin-top: 16px; line-height: 1.6;
}

/* ================================================================
   GUARANTEE
================================================================ */
.guarantee {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--sh-sm);
}
.seal {
  width: 104px; height: 104px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--salmon-soft);
  border: 1.5px dashed var(--line);
  display: grid; place-items: center; text-align: center;
  font-family: var(--f-display);
  color: var(--salmon-dark);
}
.seal b { display: block; font-size: 1.62rem; font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.seal span { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; margin-top: 3px; }
.guarantee h2 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); margin-bottom: 11px; }
.guarantee p { font-size: .945rem; color: var(--muted); max-width: 62ch; }
.guarantee p + p { margin-top: 11px; }

/* ================================================================
   FINAL CTA
================================================================ */
.closer {
  background: var(--salmon-lift);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.closer h2 { margin-bottom: 16px; }
.closer .lede { margin: 0 auto 32px; }
.closer-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ================================================================
   DISCLAIMER STRIP
================================================================ */
.disclaimer-strip {
  background: var(--wash);
  border-top: 1px solid var(--hair);
  padding: 30px 0;
}
.disclaimer-strip .shell {
  display: flex; gap: 14px; align-items: flex-start;
  max-width: 900px;
}
.disclaimer-strip svg { color: var(--salmon-dark); flex-shrink: 0; margin-top: 2px; }
.disclaimer-strip p { font-size: .82rem; color: var(--muted); line-height: 1.7; }
.disclaimer-strip a { color: var(--salmon-dark); text-decoration: underline; text-underline-offset: 2px; }

/* ================================================================
   FOOTER
================================================================ */
.footer {
  background: var(--white);
  border-top: 1px solid var(--hair);
  padding: clamp(48px, 6vw, 70px) 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 40px 28px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--hair);
}
.footer-about .brand { margin-bottom: 14px; }
.footer-about p { font-size: .865rem; color: var(--muted); max-width: 34ch; }
.footer-legalname {
  font-size: .765rem; color: var(--faint);
  margin-top: 14px; line-height: 1.65;
}
.footer h4 {
  font-size: .78rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 15px;
}
.footer-col a {
  display: block; font-size: .875rem; color: var(--muted);
  padding: 6px 0; transition: color var(--ease);
}
.footer-col a:hover { color: var(--salmon-dark); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: space-between; align-items: center;
  padding-top: 26px;
}
.footer-bottom p { font-size: .8rem; color: var(--faint); }
.footer-bottom nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom nav a { font-size: .8rem; color: var(--faint); }
.footer-bottom nav a:hover { color: var(--salmon-dark); }

/* ================================================================
   LEGAL / CONTENT PAGES
================================================================ */
.page-head {
  background: var(--salmon-lift);
  border-bottom: 1px solid var(--line);
  padding: clamp(44px, 6vw, 72px) 0 clamp(36px, 5vw, 56px);
}
.crumb {
  display: flex; align-items: center; gap: 9px;
  font-size: .8rem; color: var(--muted);
  margin-bottom: 16px;
}
.crumb a { color: var(--salmon-dark); }
.crumb a:hover { text-decoration: underline; }
.crumb span[aria-hidden] { color: var(--line); }
.page-head h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 12px; }
.page-head .meta { font-size: .85rem; color: var(--muted); }

.prose {
  max-width: 760px;
  padding: clamp(44px, 6vw, 72px) 0 clamp(56px, 7vw, 88px);
}
.prose h2 {
  font-size: 1.25rem;
  margin: 42px 0 14px;
  padding-top: 26px;
  border-top: 1px solid var(--hair);
}
.prose h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.prose h3 { font-size: 1rem; margin: 24px 0 9px; }
.prose p { font-size: .945rem; color: var(--muted); line-height: 1.78; margin-bottom: 14px; }
.prose ul, .prose ol { margin: 0 0 16px; padding-left: 0; }
.prose li {
  position: relative; padding-left: 22px; margin-bottom: 9px;
  font-size: .945rem; color: var(--muted); line-height: 1.72;
}
.prose ul li::before {
  content: ''; position: absolute; left: 3px; top: .62em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--salmon);
}
.prose ol { counter-reset: n; }
.prose ol li { counter-increment: n; }
.prose ol li::before {
  content: counter(n) '.'; position: absolute; left: 0; top: 0;
  font-weight: 700; color: var(--salmon-dark); font-size: .875rem;
}
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--salmon-dark); text-decoration: underline; text-underline-offset: 2px; }

.callout {
  background: var(--salmon-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 24px;
  margin: 24px 0 28px;
}
.callout h2, .callout h3 { margin: 0 0 10px; padding: 0; border: none; }
.callout p { color: var(--ink); margin-bottom: 8px; }
.callout p:last-child { margin-bottom: 0; }

.info-rows {
  background: var(--wash);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  padding: 20px 22px;
  margin-top: 8px;
}
.info-rows div { font-size: .9rem; color: var(--muted); padding: 5px 0; }
.info-rows strong { color: var(--ink); font-weight: 600; margin-right: 6px; }

.page-nav {
  border-top: 1px solid var(--hair);
  padding: 30px 0 44px;
}
.page-nav-inner { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.page-nav-label {
  font-size: .76rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--faint); margin-right: 6px;
}
.chip {
  font-size: .83rem; color: var(--muted);
  border: 1px solid var(--hair); border-radius: var(--r-pill);
  padding: 8px 16px; transition: all var(--ease);
}
.chip:hover { border-color: var(--line); background: var(--salmon-lift); color: var(--salmon-dark); }

/* ================================================================
   FORMS
================================================================ */
.form-card {
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3.5vw, 36px);
  box-shadow: var(--sh-sm);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--f-display);
  font-size: .8rem; font-weight: 700;
  letter-spacing: .02em; color: var(--ink);
  margin-bottom: 7px;
}
.field .hint { font-weight: 400; color: var(--faint); letter-spacing: 0; }
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: var(--r-sm);
  padding: 13px 15px;
  font-size: .94rem;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--salmon);
  box-shadow: 0 0 0 3px rgba(233,130,115,.14);
}
.field input::placeholder, .field textarea::placeholder { color: #BFBFBF; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-status {
  display: none;
  border-radius: var(--r-sm);
  padding: 14px 16px;
  font-size: .89rem;
  margin-bottom: 18px;
  line-height: 1.6;
}
.form-status.is-shown { display: block; }
.form-status.is-ok { background: var(--salmon-soft); border: 1px solid var(--line); color: var(--ink); }
.form-status.is-err { background: #FFF4F2; border: 1px solid #F3C8C0; color: #8E3B2E; }

/* ================================================================
   SUPPORT TOPICS
================================================================ */
.topic {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  padding: 20px;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.topic:hover { border-color: var(--line); box-shadow: var(--sh-md); transform: translateY(-2px); }
.topic .card-icon { margin-bottom: 0; width: 38px; height: 38px; }
.topic .card-icon svg { width: 17px; height: 17px; }
.topic h3 { font-size: .96rem; margin-bottom: 5px; }
.topic p { font-size: .855rem; color: var(--muted); line-height: 1.6; }

/* ================================================================
   REVEAL ANIMATION
================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s cubic-bezier(.4,0,.2,1), transform .55s cubic-bezier(.4,0,.2,1);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
}

@media (max-width: 860px) {
  .nav, .header .btn { display: none; }
  .burger { display: flex; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split--flip .split-visual { order: 0; }
  .steps { grid-template-columns: 1fr; gap: 30px; }
  .steps::before { display: none; }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .guarantee { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .guarantee p { margin-left: auto; margin-right: auto; }
}

@media (max-width: 620px) {
  :root { --gutter: 18px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .closer-actions { flex-direction: column; }
  .closer-actions .btn { width: 100%; }
  .mock-stats { grid-template-columns: 1fr 1fr; }
  .routine-item { grid-template-columns: 1fr; gap: 6px; }
  .prose h2 { font-size: 1.15rem; }
}

/* ================================================================
   MOTION PREFERENCES
================================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ================================================================
   PRINT — legal pages are the ones people actually print
================================================================ */
@media print {
  .header, .drawer, .footer, .page-nav, .closer, .disclaimer-strip { display: none; }
  body { color: #000; }
  .prose { max-width: none; padding: 0; }
  .prose a { color: #000; text-decoration: none; }
}
