:root {
  --paper: #f5f3ee;
  --paper-soft: #faf9f6;
  --white: #ffffff;
  --ink: #18171a;
  --ink-soft: #5b5660;
  --ink-muted: #68616d;
  --night: #18171a;
  --app-blue: #4f8cc4;
  --app-blue-deep: #356ea5;
  --app-blue-hover: #2f6397;
  --app-amber: #8c4e15;
  --pastel-pink: #fbe6e9;
  --pastel-pink-2: #f6d5dc;
  --pastel-blue: #e3eef7;
  --pastel-blue-2: #cfdff0;
  --pastel-cream: #f7e7d0;
  --pastel-cream-2: #f1d6b6;
  --pastel-lav: #ebe5f1;
  --line: rgba(24, 23, 26, 0.13);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 26px 70px -42px rgba(24, 23, 26, 0.45);
  --shell: 1180px;
  --gutter: 28px;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p, ul { margin: 0; }
ul { padding: 0; list-style: none; }
button, summary, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid var(--app-blue-deep);
  outline-offset: 4px;
  border-radius: 8px;
}

::selection { background: var(--app-blue-deep); color: var(--white); }

.skip-link {
  position: fixed;
  left: 20px;
  top: 14px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
}

.skip-link:focus { transform: translateY(0); }

.privacy-section :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--pastel-blue-2);
}

.shell {
  width: min(100% - (var(--gutter) * 2), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 243, 238, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-shell {
  width: min(100% - (var(--gutter) * 2), var(--shell));
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.brand img { border-radius: 10px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a,
.mobile-links a,
.footer-links a { transition: color 160ms ease; }
.nav-links a:hover,
.mobile-links a:hover,
.footer-links a:hover { color: var(--app-blue-deep); }

.mobile-links { display: none; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -20px rgba(24, 23, 26, 0.6);
}

.button-small {
  min-height: 42px;
  padding: 11px 17px;
  border-radius: 12px;
  font-size: 14px;
}

.button-primary { background: var(--app-blue-deep); color: var(--white); }
.button-primary:hover { background: var(--app-blue-hover); }
.button-dark { background: var(--night); color: var(--white); }
.button-dark:hover { background: #050507; }
.button-light { background: var(--white); color: var(--night); }
.button-wide { width: 100%; }

.hero {
  position: relative;
  min-height: 750px;
  overflow: hidden;
  isolation: isolate;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  pointer-events: none;
  z-index: -1;
}

.hero-glow-one {
  width: 620px;
  height: 620px;
  right: -110px;
  top: -160px;
  background: rgba(227, 238, 247, 0.94);
}

.hero-glow-two {
  width: 420px;
  height: 420px;
  left: -190px;
  bottom: -180px;
  background: rgba(251, 230, 233, 0.9);
}

.hero-grid {
  min-height: 750px;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  align-items: center;
  gap: 48px;
  padding-block: 70px 54px;
}

.hero-copy { max-width: 650px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  color: var(--night);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--app-blue);
  box-shadow: 0 0 0 6px rgba(79, 140, 196, 0.15);
}

.hero h1 {
  max-width: 670px;
  font-size: clamp(56px, 6.8vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.058em;
  font-weight: 900;
}

.hero h1 span {
  color: var(--app-blue-deep);
  font-family: var(--sans);
  font-style: normal;
  font-weight: 650;
  letter-spacing: -0.06em;
}

.hero-lede {
  max-width: 600px;
  margin-top: 30px;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  letter-spacing: -0.015em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 800;
}

.text-link:hover { border-color: var(--ink); }

.hero-note {
  margin-top: 18px;
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 650;
}

.hero-product {
  position: relative;
  height: 610px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.hero-product::before {
  content: "";
  position: absolute;
  inset: 60px 26px 20px;
  border-radius: 48% 52% 46% 54%;
  background: linear-gradient(145deg, rgba(251, 230, 233, 0.86), rgba(227, 238, 247, 0.96) 50%, rgba(235, 229, 241, 0.92));
  transform: rotate(-5deg);
}

.hero-product > img {
  position: relative;
  z-index: 2;
  width: 326px;
  filter: drop-shadow(0 32px 34px rgba(24, 23, 26, 0.18));
}

.hero-card-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 12px;
  color: var(--ink-muted);
}

.hero-card-note span:last-child { display: grid; }
.hero-card-note strong { color: var(--ink); font-size: 13px; }
.note-private { left: -4px; top: 150px; }
.note-offline { right: -8px; bottom: 90px; }

.note-icon {
  width: 30px;
  height: 34px;
  border: 2px solid var(--app-blue-deep);
  border-radius: 14px 14px 16px 16px;
  position: relative;
}

.note-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 7px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--app-blue-deep);
  border-radius: 50%;
  transform: translateX(-50%);
}

.pulse-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--app-blue);
  box-shadow: 0 0 0 7px rgba(79, 140, 196, 0.15);
}

.proof-strip {
  background: var(--night);
  color: var(--white);
}

.proof-grid {
  min-height: 102px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.proof-item {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  border-right: 1px solid var(--line-light);
  font-size: 13px;
  line-height: 1.35;
}

.proof-item:first-child { padding-left: 0; }
.proof-item:last-child { padding-right: 0; border-right: 0; }
.proof-item span { color: var(--pastel-pink-2); font-size: 11px; font-weight: 900; letter-spacing: 0.12em; }

.section { padding-block: 118px; }

.kicker {
  margin-bottom: 16px;
  color: var(--app-amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section h2,
.closing-section h2 {
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 54px;
}

.section-heading > p {
  max-width: 470px;
  padding-bottom: 8px;
  color: var(--ink-soft);
  font-size: 18px;
}

.workflow { background: var(--paper-soft); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.step-card {
  min-width: 0;
  overflow: hidden;
  border-radius: 30px;
}

.step-rose { background: var(--pastel-pink); }
.step-blue { background: var(--pastel-blue); }
.step-gold { background: var(--pastel-cream); }

.step-copy { min-height: 240px; padding: 30px 30px 18px; }

.step-number {
  display: inline-flex;
  margin-bottom: 30px;
  color: rgba(24, 23, 26, 0.62);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.step-copy h3 {
  margin-bottom: 12px;
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.step-copy p { color: var(--ink-soft); font-size: 15px; }

.step-screen {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.step-screen img {
  position: absolute;
  left: 50%;
  top: 16px;
  width: min(78%, 286px);
  max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 24px 30px rgba(24, 23, 26, 0.18));
}

.ask-section { background: var(--paper); }

.ask-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 94px;
  align-items: center;
}

.ask-visual {
  position: relative;
  min-height: 560px;
  padding: 46px 38px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--pastel-blue), var(--pastel-lav));
  border-radius: 36px;
}

.question {
  position: relative;
  z-index: 2;
  width: max-content;
  max-width: 84%;
  margin-bottom: 14px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: 0 12px 32px -25px rgba(24, 23, 26, 0.7);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 750;
}

.question-two { margin-left: auto; }
.question-three { margin-left: 30px; }

.answer-card {
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 42px;
  z-index: 2;
  padding: 28px;
  background: var(--white);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.answer-label,
.answer-source {
  color: var(--app-amber);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.answer-card p {
  margin-block: 13px 18px;
  font-family: var(--sans);
  font-size: 23px;
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.answer-source { color: var(--ink-muted); letter-spacing: 0.04em; text-transform: none; }

.ask-copy h2 { margin-bottom: 28px; }
.ask-copy > p:not(.kicker) { color: var(--ink-soft); font-size: 19px; }

.check-list { display: grid; gap: 15px; margin-top: 28px; }
.check-list li,
.price-features li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-soft);
  font-weight: 650;
}

.check-list li::before,
.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 21px;
  height: 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--night);
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
}

.privacy-section { padding-block: 26px; }

.privacy-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 86px;
  align-items: center;
  padding: 78px;
  overflow: hidden;
  background: var(--night);
  color: var(--white);
  border-radius: 42px;
}

.kicker-light { color: var(--pastel-cream-2); }
.privacy-copy h2 { margin-bottom: 25px; }
.privacy-copy > p:not(.kicker) { color: rgba(255, 255, 255, 0.74); font-size: 18px; }
.privacy-actions { margin-top: 30px; }

.privacy-proof {
  padding: 26px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line-light);
  border-radius: 30px;
}

.phone-boundary {
  padding: 24px;
  background: rgba(8, 7, 10, 0.72);
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: 24px;
}

.phone-boundary-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.boundary-dot {
  width: 11px;
  height: 11px;
  background: var(--app-blue);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(79, 140, 196, 0.16);
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.data-grid span {
  padding: 11px 13px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 11px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 700;
}

.zero-upload {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-top: 21px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.zero-upload strong { color: var(--pastel-blue-2); font-size: 32px; line-height: 1; }

.setup-note {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 13px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.setup-note strong { display: block; margin-bottom: 4px; color: var(--white); font-size: 14px; }
.setup-arrow { color: var(--pastel-cream-2); font-size: 22px; }

.tradeoff { padding-block: 112px 90px; }

.tradeoff-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 92px;
  align-items: center;
}

.tradeoff-card {
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.tradeoff-lead {
  margin-bottom: 20px;
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 650;
  line-height: 1.25;
  color: var(--night);
}

.tradeoff-card ul { display: grid; gap: 12px; }
.tradeoff-card li { position: relative; padding-left: 19px; color: var(--ink-soft); }
.tradeoff-card li::before { content: ""; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; background: var(--app-blue); border-radius: 50%; }

.pricing-section { background: var(--pastel-blue); }

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
  gap: 90px;
  align-items: center;
}

.pricing-copy > p:not(.kicker) { max-width: 610px; margin-top: 24px; color: var(--ink-soft); font-size: 18px; }

.good-to-know {
  max-width: 610px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(24, 23, 26, 0.16);
}

.good-to-know h3 { margin-bottom: 16px; font-size: 15px; }
.good-to-know ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 20px; }
.good-to-know li { position: relative; padding-left: 15px; color: var(--ink-soft); font-size: 13px; }
.good-to-know li::before { content: ""; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; background: var(--app-amber); border-radius: 50%; }

.price-card {
  position: relative;
  padding: 42px;
  background: var(--paper-soft);
  border: 1px solid rgba(24, 23, 26, 0.1);
  border-radius: 32px;
  box-shadow: 0 34px 70px -44px rgba(24, 23, 26, 0.55);
}

.price-badge {
  position: absolute;
  right: 28px;
  top: 28px;
  padding: 7px 11px;
  background: var(--pastel-cream);
  border-radius: 999px;
  color: var(--app-amber);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-plan { font-weight: 850; }

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 20px;
}

.price strong { font-size: 62px; line-height: 0.9; letter-spacing: -0.06em; }
.price span { color: var(--ink-muted); font-weight: 650; }
.price-equivalent { margin-top: 12px; color: var(--app-amber); font-size: 13px; font-weight: 800; }
.price-features { display: grid; gap: 13px; margin-block: 30px; }
.price-features li { font-size: 14px; }
.monthly-option { margin-top: 15px; color: var(--ink-muted); text-align: center; font-size: 12px; }

.faq-section { background: var(--paper-soft); }

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(440px, 1.2fr);
  gap: 100px;
  align-items: start;
}

.faq-heading { position: sticky; top: 135px; }
.faq-heading h2 { font-size: clamp(38px, 4vw, 56px); }
.faq-heading > p:not(.kicker) { margin-top: 24px; color: var(--ink-soft); }
.faq-heading a { color: var(--app-blue-deep); font-weight: 800; border-bottom: 1px solid rgba(53, 110, 165, 0.35); }

.faq-list { border-top: 1px solid var(--line); }

.faq-list details { border-bottom: 1px solid var(--line); }

.faq-list summary {
  position: relative;
  padding: 24px 46px 24px 0;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 7px; top: 20px; color: var(--app-blue-deep); font-family: var(--sans); font-size: 27px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 620px; padding: 0 46px 25px 0; color: var(--ink-soft); }

.closing-section { padding: 42px 0 118px; background: var(--paper-soft); }

.closing-card {
  padding: 82px 40px;
  background: linear-gradient(145deg, var(--pastel-pink), var(--pastel-cream) 48%, var(--pastel-blue));
  border-radius: 40px;
  text-align: center;
}

.closing-card img { margin: 0 auto 23px; border-radius: 18px; box-shadow: 0 15px 30px -18px rgba(24, 23, 26, 0.5); }
.closing-card h2 { max-width: 790px; margin-inline: auto; }
.closing-card > p:not(.kicker) { margin-block: 20px 28px; color: var(--ink-soft); }

.site-footer {
  background: var(--night);
  color: var(--white);
}

.footer-inner {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-brand {
  flex: 0 0 auto;
  color: var(--white);
}

.footer-brand img {
  border-radius: 9px;
  box-shadow: 0 8px 24px -12px rgba(0, 0, 0, 0.8);
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(20px, 3vw, 36px);
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 650;
  transition: color 160ms ease;
}

.footer-nav a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-block: 19px 28px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.52);
  font-size: 12.5px;
}

.mobile-cta { display: none; }

@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(360px, 0.74fr); gap: 28px; }
  .hero-card-note { display: none; }
  .privacy-panel { gap: 54px; padding: 60px 48px; }
  .pricing-grid { gap: 54px; }
  .faq-grid { gap: 64px; }
}

@media (max-width: 880px) {
  :root { --gutter: 22px; }
  html { scroll-padding-top: 136px; }
  .nav-links { display: none; }
  .nav-shell { min-height: 68px; }
  .nav-shell > .button { margin-left: auto; }
  .mobile-links {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 9px var(--gutter) 11px;
    border-top: 1px solid rgba(24, 23, 26, 0.06);
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 750;
    scrollbar-width: none;
  }
  .mobile-links::-webkit-scrollbar { display: none; }
  .hero { min-height: auto; }
  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 38px;
    padding-block: 72px 46px;
  }
  .hero-copy { max-width: 720px; }
  .hero-product { height: 580px; }
  .hero-product::before { inset: 50px 15% 10px; }
  .hero-product > img { width: 310px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); padding-block: 14px; }
  .proof-item { min-height: 54px; padding: 0 20px; }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(3) { padding-left: 0; }
  .section { padding-block: 86px; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .step-card:last-child { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
  .step-card:last-child .step-screen { height: 500px; }
  .ask-grid,
  .tradeoff-grid,
  .pricing-grid,
  .faq-grid { grid-template-columns: 1fr; gap: 54px; }
  .ask-visual { min-height: 520px; }
  .privacy-panel { grid-template-columns: 1fr; border-radius: 30px; }
  .pricing-grid { max-width: 700px; }
  .faq-heading { position: static; }
}

@media (max-width: 620px) {
  :root { --gutter: 17px; }
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .nav-shell > .button { display: none; }
  .hero-grid { padding-block: 54px 34px; }
  .hero h1 { font-size: clamp(49px, 15vw, 72px); }
  .hero-lede { font-size: 18px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 10px; }
  .hero-actions .button { width: 100%; }
  .text-link { align-self: center; justify-content: center; border-bottom: 0; }
  .hero-note { text-align: center; }
  .hero-product { height: 500px; }
  .hero-product::before { inset: 36px 2% 10px; border-radius: 40px; }
  .hero-product > img { width: 275px; }
  .proof-grid { grid-template-columns: 1fr; padding-block: 12px; }
  .proof-item,
  .proof-item:first-child,
  .proof-item:nth-child(3) { min-height: 46px; padding: 0; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .proof-item:last-child { border-bottom: 0; }
  .section { padding-block: 72px; }
  .section h2,
  .closing-section h2 { font-size: clamp(39px, 12vw, 54px); }
  .section-heading { margin-bottom: 36px; }
  .section-heading > p { font-size: 16px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card:last-child { grid-column: auto; display: block; }
  .step-copy { min-height: 0; padding: 26px 24px 18px; }
  .step-number { margin-bottom: 20px; }
  .step-screen,
  .step-card:last-child .step-screen { height: 350px; }
  .step-screen img { width: 235px; }
  .ask-visual { min-height: 480px; padding: 26px 20px; border-radius: 26px; }
  .question { max-width: 92%; font-size: 12px; }
  .question-three { margin-left: 8px; }
  .answer-card { left: 20px; right: 20px; bottom: 24px; padding: 23px; }
  .answer-card p { font-size: 20px; }
  .ask-copy > p:not(.kicker) { font-size: 17px; }
  .privacy-section { padding-block: 0; background: var(--night); }
  .privacy-panel { width: 100%; padding: 66px var(--gutter); border-radius: 0; }
  .privacy-proof { padding: 15px; }
  .phone-boundary { padding: 18px; }
  .data-grid { gap: 7px; }
  .data-grid span { padding: 10px; font-size: 11px; }
  .tradeoff { padding-block: 72px; }
  .tradeoff-card { padding: 26px; }
  .good-to-know ul { grid-template-columns: 1fr; }
  .price-card { padding: 34px 24px; }
  .price strong { font-size: 52px; }
  .price-badge { top: 23px; right: 22px; }
  .faq-list summary { font-size: 16px; }
  .closing-section { padding: 16px 0 72px; }
  .closing-card { width: 100%; padding: 68px 20px; border-radius: 0; }
  .footer-inner {
    min-height: 0;
    padding-block: 38px 30px;
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }
  .footer-nav { justify-content: flex-start; gap: 14px 26px; }
  .footer-bottom { padding-block: 18px 26px; flex-direction: column; gap: 5px; }
  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 10px max(14px, env(safe-area-inset-left)) calc(10px + env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-right));
    background: rgba(255, 255, 255, 0.94);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 30px -24px rgba(24, 23, 26, 0.7);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
  .mobile-cta > span { display: grid; line-height: 1.15; }
  .mobile-cta small { margin-top: 3px; color: var(--ink-muted); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
