:root {
  --background: #f6f3ee;
  --surface: #fcfaf7;
  --primary: #294d50;
  --primary-dark: #173b3d;
  --primary-soft: #dde8e8;
  --high: #567c56;
  --mid: #c89a45;
  --low: #b66a5a;
  --text: #1f2423;
  --text-secondary: #626a64;
  --text-tertiary: #929892;
  --divider: #e7e1d9;
  --white: #fffefa;
  --shadow: 0 24px 70px rgba(31, 36, 35, .12);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.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;
}

.section-shell {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1240px, calc(100% - 32px));
  min-height: 76px;
  padding: 10px 14px;
  margin: 12px auto 0;
  border: 1px solid transparent;
  border-radius: 18px;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
  border-color: rgba(231, 225, 217, .85);
  background: rgba(252, 250, 247, .86);
  box-shadow: 0 8px 32px rgba(31, 36, 35, .06);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.025em;
}

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

.site-header nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--text-secondary);
}

.site-header nav a {
  transition: color .2s ease;
}

.site-header nav a:hover {
  color: var(--primary);
}

.site-header > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  color: white;
  font-size: 15px;
  font-weight: 650;
  border: 0;
  border-radius: 14px;
  background: var(--primary);
  box-shadow: 0 10px 24px rgba(41, 77, 80, .18);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button svg,
.waitlist-form button svg {
  width: 18px;
  height: 18px;
  transition: transform .2s ease;
}

.button:hover,
.waitlist-form button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(41, 77, 80, .24);
}

.button:hover svg,
.waitlist-form button:hover svg {
  transform: translateX(3px);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 11px;
  font-size: 13px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 19px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.eyebrow.centered {
  justify-content: center;
}

.eyebrow.light {
  color: #a9c9c8;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.045em;
}

h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(56px, 6.4vw, 92px);
  line-height: .98;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 14px;
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -.03em;
}

.hero {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  min-height: calc(100vh - 88px);
  padding-block: 72px 92px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-subhead {
  max-width: 630px;
  margin-bottom: 34px;
  color: var(--text-secondary);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-actions p {
  max-width: 190px;
  margin: 0;
  color: var(--text-tertiary);
  font-size: 12px;
  line-height: 1.45;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 38px;
  color: var(--text-secondary);
  font-size: 13px;
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-row svg {
  width: 17px;
  height: 17px;
  color: var(--primary);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 680px;
}

.hero-phone {
  position: relative;
  z-index: 3;
  width: 282px;
  transform: rotate(1.2deg);
}

.phone-card {
  overflow: hidden;
  border-radius: 48px;
  box-shadow: var(--shadow);
}

.phone-card img {
  width: 100%;
}

.halo {
  position: absolute;
  border: 1px solid rgba(41, 77, 80, .12);
  border-radius: 50%;
}

.halo-one {
  width: 520px;
  height: 520px;
}

.halo-two {
  width: 410px;
  height: 410px;
  background: rgba(221, 232, 232, .46);
}

.floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 220px;
  padding: 13px 15px;
  border: 1px solid rgba(231, 225, 217, .9);
  border-radius: 14px;
  background: rgba(252, 250, 247, .92);
  box-shadow: 0 14px 40px rgba(31, 36, 35, .1);
  backdrop-filter: blur(12px);
  animation: float 5s ease-in-out infinite;
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note strong {
  margin-bottom: 3px;
  color: var(--text);
  font-size: 12px;
}

.floating-note span {
  color: var(--text-secondary);
  font-size: 10px;
}

.floating-note svg {
  width: 25px;
  height: 25px;
  color: var(--high);
}

.note-icon {
  display: grid !important;
  place-items: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  color: white !important;
  font-size: 13px !important;
  font-weight: 800;
  border-radius: 50%;
  background: var(--primary);
}

.note-top {
  top: 128px;
  right: -20px;
}

.note-bottom {
  bottom: 118px;
  left: -22px;
  animation-delay: -2.2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.recognition {
  padding-block: 130px;
  text-align: center;
  border-top: 1px solid var(--divider);
}

.overview {
  padding-block: 54px 28px;
}

.overview-heading {
  max-width: 860px;
  margin-bottom: 42px;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.overview-grid article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--divider);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.68), rgba(252,250,247,.96)),
    var(--surface);
}

.overview-grid h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -.03em;
}

.overview-grid p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.recognition h2 {
  max-width: 800px;
  margin-inline: auto;
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
  text-align: left;
}

.recognition-grid article {
  position: relative;
  min-height: 186px;
  padding: 34px 30px;
  overflow: hidden;
  border: 1px solid var(--divider);
  border-radius: 20px;
  background: var(--surface);
}

.quote-mark {
  position: absolute;
  top: -18px;
  right: 18px;
  color: var(--primary-soft);
  font-family: Georgia, serif;
  font-size: 120px;
  line-height: 1;
}

.recognition-grid p {
  position: relative;
  z-index: 1;
  margin: 36px 0 0;
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.35;
}

.recognition-close {
  max-width: 660px;
  margin: 42px auto 0;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.65;
}

.how {
  padding-block: 130px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 90px;
}

.section-heading > p:last-child {
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.6;
}

.feature-row {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 100px;
  min-height: 760px;
  padding-block: 78px;
  border-top: 1px solid var(--divider);
}

.feature-row.reverse {
  grid-template-columns: 1.08fr .92fr;
}

.feature-row.reverse .feature-copy {
  order: 2;
}

.feature-row.reverse .feature-visual {
  order: 1;
}

.feature-copy {
  max-width: 480px;
}

.step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 30px;
  margin-bottom: 28px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 750;
  border: 1px solid #cbd9d9;
  border-radius: 99px;
  background: var(--primary-soft);
}

.feature-copy h3 {
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -.04em;
}

.feature-copy > p {
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.65;
}

.feature-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--text-secondary);
  font-size: 14px;
}

.feature-list li::before {
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  color: white;
  font-size: 11px;
  content: "✓";
  border-radius: 50%;
  background: var(--high);
}

.feature-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--divider);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .95), rgba(221, 232, 232, .45) 50%, rgba(246, 243, 238, .2) 72%),
    var(--surface);
}

.feature-visual::before,
.feature-visual::after {
  position: absolute;
  width: 430px;
  height: 430px;
  content: "";
  border: 1px solid rgba(41, 77, 80, .09);
  border-radius: 50%;
}

.feature-visual::after {
  width: 330px;
  height: 330px;
}

.feature-visual .phone-card {
  position: relative;
  z-index: 2;
  width: 252px;
  border-radius: 43px;
  transform: translateY(70px);
}

.visual-label {
  position: absolute;
  top: 30px;
  left: 32px;
  z-index: 3;
  color: var(--primary);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.feedback-example {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 17px;
  margin-top: 30px;
  border: 1px solid var(--divider);
  border-radius: 15px;
  background: var(--surface);
}

.feedback-letter {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  color: white;
  font-size: 12px;
  font-weight: 750;
  border-radius: 50%;
  background: var(--primary);
}

.feedback-example p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.5;
}

.feedback-example strong {
  display: block;
  margin-bottom: 3px;
  color: var(--text);
}

.difference {
  padding-block: 140px;
  color: #f1efea;
  background: var(--primary-dark);
}

.difference-heading {
  max-width: 790px;
}

.difference-heading > p:last-child {
  max-width: 650px;
  color: #a9b8b5;
  font-size: 18px;
  line-height: 1.65;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 68px;
}

.difference-grid article {
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  background: rgba(255,255,255,.035);
}

.difference-grid h3 {
  margin-top: 26px;
  color: #f1efea;
  font-size: 19px;
}

.difference-grid p {
  color: #a9b8b5;
  font-size: 14px;
  line-height: 1.65;
}

.difference-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #a9c9c8;
  border-radius: 14px;
  background: rgba(125, 166, 167, .13);
}

.difference-icon svg {
  width: 24px;
  height: 24px;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 80px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  background: rgba(255,255,255,.1);
}

.comparison > div {
  padding: 34px;
  background: #173739;
}

.comparison .comparison-better {
  background: #204547;
}

.comparison-label {
  margin-bottom: 24px;
  color: #a9c9c8;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.comparison ul {
  display: grid;
  gap: 17px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.comparison li {
  display: flex;
  gap: 11px;
  color: #b8c4c1;
  font-size: 15px;
}

.comparison li span {
  color: #738783;
  font-weight: 800;
}

.comparison-better li {
  color: #edf2ef;
}

.comparison-better li span {
  color: #9bc79a;
}

.for-you {
  padding-block: 140px;
}

.for-you > div:first-child {
  max-width: 780px;
}

.section-intro {
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.65;
}

.compare-shell {
  padding-top: 26px;
}

.compare-hero {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 46px;
  align-items: center;
  min-height: 540px;
  padding-block: 42px 86px;
}

.compare-hero-copy {
  max-width: 760px;
}

.compare-hero-card,
.compare-card,
.compare-note {
  border: 1px solid var(--divider);
  border-radius: 24px;
  background: var(--surface);
}

.compare-hero-card {
  padding: 30px;
  box-shadow: var(--shadow);
}

.compare-hero-card h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 3vw, 42px);
}

.compare-hero-card p,
.compare-card p,
.compare-note p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

.compare-section {
  padding-block: 34px 96px;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.compare-card {
  min-height: 220px;
  padding: 28px;
}

.compare-card h3,
.compare-note h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -.03em;
}

.compare-band {
  padding-top: 110px;
}

.compare-note {
  margin-top: 28px;
  padding: 26px 28px;
  color: var(--text);
  background: rgba(255,255,255,.96);
}

.compare-note h3 {
  color: var(--primary-dark);
  font-size: 26px;
}

.compare-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.compare-list li {
  padding: 20px 22px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  border: 1px solid var(--divider);
  border-radius: 18px;
  background: var(--surface);
}

.page-link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-link.light {
  color: #edf2ef;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 70px;
}

.audience-grid article {
  padding: 30px;
  border-top: 1px solid var(--divider);
}

.audience-number {
  color: var(--text-tertiary);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .1em;
}

.audience-grid h3 {
  margin-top: 44px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.audience-grid article > p:last-child {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
}

.faq {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
  padding-block: 130px;
  border-top: 1px solid var(--divider);
}

.faq .section-heading {
  margin-bottom: 0;
}

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

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

.faq summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 25px 0;
  font-size: 16px;
  font-weight: 650;
  list-style: none;
  cursor: pointer;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary span {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.faq summary span::before,
.faq summary span::after {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 1.5px;
  content: "";
  background: var(--primary);
  transition: transform .2s ease;
}

.faq summary span::after {
  transform: rotate(90deg);
}

.faq details[open] summary span::after {
  transform: rotate(0);
}

.faq details p {
  max-width: 650px;
  padding: 0 36px 25px 0;
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

.final-cta {
  padding: 28px;
}

.final-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 620px;
  padding: 86px 24px;
  text-align: center;
  color: #f1efea;
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 0, rgba(125,166,167,.28), transparent 45%),
    var(--primary-dark);
}

.final-cta-inner > img {
  margin-bottom: 28px;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(0,0,0,.18);
}

.final-cta h2 {
  max-width: 800px;
}

.final-cta-inner > p:not(.eyebrow):not(.form-note) {
  color: #b8c4c1;
  font-size: 17px;
}

.waitlist-form {
  display: flex;
  width: min(100%, 520px);
  padding: 5px;
  margin-top: 26px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  background: rgba(255,255,255,.08);
}

.waitlist-form input {
  min-width: 0;
  flex: 1;
  padding: 0 16px;
  color: white;
  border: 0;
  outline: none;
  background: transparent;
}

.waitlist-form input::placeholder {
  color: #93a7a4;
}

.waitlist-form button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  color: var(--primary-dark);
  font-weight: 700;
  border: 0;
  border-radius: 11px;
  background: #f1efea;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.waitlist-form button:hover {
  color: white;
}

.form-note {
  min-height: 18px;
  margin-top: 13px;
  color: #8ea09d;
  font-size: 11px;
}

.form-note.success {
  color: #a8d2a8;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1160px, calc(100% - 48px));
  min-height: 130px;
  margin-inline: auto;
  color: var(--text-tertiary);
  font-size: 12px;
}

footer > p:nth-child(2) {
  justify-self: center;
}

footer > p:last-child {
  justify-self: end;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 18px;
}

.footer-legal a {
  color: var(--text-secondary);
  transition: color .2s ease;
}

.footer-legal a:hover {
  color: var(--primary);
}

.footer-legal p {
  margin: 0;
}

.footer-brand {
  font-size: 15px;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1160px, calc(100% - 48px));
  min-height: 88px;
  margin-inline: auto;
  border-bottom: 1px solid var(--divider);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  transition: color .2s ease;
}

.legal-back:hover {
  color: var(--primary);
}

.legal-back svg {
  width: 18px;
  height: 18px;
}

.legal-shell {
  width: min(820px, calc(100% - 48px));
  margin-inline: auto;
  padding-block: 100px 120px;
}

.legal-title {
  padding-bottom: 64px;
  border-bottom: 1px solid var(--divider);
}

.legal-title h1 {
  margin-bottom: 18px;
  font-size: clamp(54px, 8vw, 82px);
}

.legal-updated {
  margin-bottom: 38px;
  color: var(--text-tertiary);
  font-size: 14px;
}

.legal-intro {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 20px;
  line-height: 1.65;
}

.legal-intro strong {
  color: var(--text);
}

.legal-content section {
  padding-block: 50px;
  border-bottom: 1px solid var(--divider);
}

.legal-content section:last-child {
  border-bottom: 0;
}

.legal-content h2 {
  margin-bottom: 24px;
  font-family: var(--sans);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -.025em;
}

.legal-content p,
.legal-content li {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.75;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content ul {
  display: grid;
  gap: 17px;
  padding-left: 22px;
  margin: 0;
}

.legal-content li {
  padding-left: 6px;
}

.legal-content strong {
  color: var(--text);
}

.legal-content a {
  color: var(--primary);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgba(41, 77, 80, .3);
  text-underline-offset: 3px;
}

.legal-content a:hover {
  text-decoration-color: var(--primary);
}

.legal-table-wrap {
  margin: 8px 0 24px;
  overflow-x: auto;
  border: 1px solid var(--divider);
  border-radius: 16px;
  background: var(--surface);
}

.legal-content table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  text-align: left;
}

.legal-content th,
.legal-content td {
  padding: 16px 18px;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.5;
  border-bottom: 1px solid var(--divider);
}

.legal-content th {
  color: var(--text);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--primary-soft);
}

.legal-content tr:last-child td {
  border-bottom: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1000px) {
  .site-header nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 90px;
    text-align: center;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-visual {
    margin-top: 50px;
  }

  .compare-hero,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .overview-grid {
    grid-template-columns: 1fr;
  }

  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 760px) {
  .section-shell {
    width: min(100% - 32px, 620px);
  }

  .site-header {
    width: calc(100% - 20px);
    min-height: 66px;
    margin-top: 8px;
  }

  .brand {
    font-size: 16px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .site-header .button-small {
    min-height: 38px;
    padding: 0 13px;
    font-size: 12px;
  }

  h1 {
    font-size: clamp(49px, 14vw, 68px);
  }

  h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .hero {
    padding-top: 70px;
  }

  .hero-subhead {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions p {
    max-width: none;
  }

  .trust-row {
    justify-content: center;
    gap: 14px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .compare-shell {
    padding-top: 12px;
  }

  .compare-hero {
    min-height: auto;
    padding-block: 20px 70px;
  }

  .hero-phone {
    width: 254px;
  }

  .halo-one {
    width: 390px;
    height: 390px;
  }

  .halo-two {
    width: 310px;
    height: 310px;
  }

  .floating-note {
    min-width: 190px;
  }

  .note-top {
    top: 86px;
    right: -4px;
  }

  .note-bottom {
    bottom: 80px;
    left: -4px;
  }

  .recognition,
  .overview,
  .compare-section,
  .how,
  .for-you,
  .faq {
    padding-block: 90px;
  }

  .recognition-grid,
  .overview-grid,
  .compare-grid,
  .difference-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .recognition-grid article,
  .overview-grid article,
  .compare-card {
    min-height: 140px;
  }

  .recognition-grid p {
    margin-top: 20px;
  }

  .section-heading {
    margin-bottom: 52px;
  }

  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
    gap: 44px;
    min-height: auto;
    padding-block: 70px;
  }

  .feature-row.reverse .feature-copy,
  .feature-row.reverse .feature-visual {
    order: initial;
  }

  .feature-copy {
    max-width: none;
  }

  .feature-visual {
    min-height: 570px;
  }

  .feature-visual .phone-card {
    width: 230px;
  }

  .difference {
    padding-block: 100px;
  }

  .difference-grid article {
    min-height: auto;
  }

  .comparison {
    grid-template-columns: 1fr;
  }

  .audience-grid article {
    padding-inline: 4px;
  }

  .audience-grid h3 {
    margin-top: 25px;
  }

  .final-cta {
    padding: 12px;
  }

  .final-cta-inner {
    min-height: 580px;
    padding-inline: 18px;
    border-radius: 26px;
  }

  .waitlist-form {
    flex-direction: column;
    gap: 6px;
    padding: 7px;
  }

  .waitlist-form input {
    min-height: 48px;
    text-align: center;
  }

  .waitlist-form button {
    justify-content: center;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-block: 35px;
    text-align: center;
  }

  footer > *,
  footer > p:nth-child(2),
  footer > p:last-child,
  .footer-legal {
    justify-self: center;
    margin: 0;
  }

  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }

  .legal-header {
    width: calc(100% - 32px);
    min-height: 74px;
  }

  .legal-header .brand {
    font-size: 15px;
  }

  .legal-back {
    font-size: 12px;
  }

  .legal-shell {
    width: calc(100% - 32px);
    padding-block: 70px 90px;
  }

  .legal-title {
    padding-bottom: 48px;
  }

  .legal-intro {
    font-size: 17px;
  }

  .legal-content section {
    padding-block: 40px;
  }

  .legal-content h2 {
    font-size: 22px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 15px;
  }
}

@media (max-width: 430px) {
  .hero-visual {
    min-height: 560px;
  }

  .hero-phone {
    width: 235px;
  }

  .floating-note {
    min-width: 170px;
    max-width: 190px;
    padding: 10px 12px;
  }

  .note-top {
    right: -22px;
  }

  .note-bottom {
    left: -22px;
  }

  .trust-row {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
