:root {
  --cream: #fff8ed;
  --cream-strong: #f6ead8;
  --paper: #ffffff;
  --blue-50: #eaf5fb;
  --blue-100: #d5ebf6;
  --blue-600: #2f7fa3;
  --teal: #1b9388;
  --teal-dark: #0d625c;
  --coral: #f47c65;
  --coral-soft: #ffe5df;
  --slate: #243142;
  --slate-soft: #5f6e7d;
  --line: #dce6ec;
  --shadow: 0 18px 55px rgba(36, 49, 66, 0.12);
  --shadow-soft: 0 12px 32px rgba(36, 49, 66, 0.08);
  --radius: 8px;
  --nav-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--slate);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 14.8ch;
  margin-bottom: 22px;
  font-size: clamp(2.42rem, 5.6vw, 4.55rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
}

p {
  color: var(--slate-soft);
}

.shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
  scroll-margin-top: calc(var(--nav-height) + 20px);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(220, 230, 236, 0.86);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  min-height: var(--nav-height);
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(27, 147, 136, 0.22);
  border-radius: 8px;
  color: var(--teal-dark);
  background: var(--blue-50);
  font-size: 0.82rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--slate-soft);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: var(--slate);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--slate);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #ffffff;
  background: var(--teal);
  box-shadow: 0 12px 24px rgba(27, 147, 136, 0.22);
}

.button-primary:hover {
  background: var(--teal-dark);
}

.button-secondary {
  color: var(--slate);
  border-color: rgba(36, 49, 66, 0.14);
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(36, 49, 66, 0.08);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.92rem;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - var(--nav-height) - 86px);
  padding: 46px 0 48px;
  background: var(--cream);
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 36%;
  background: var(--blue-50);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.88fr);
}

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

.eyebrow {
  margin-bottom: 14px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 28px;
  color: #445467;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(47, 127, 163, 0.2);
  border-radius: 999px;
  padding: 8px 12px;
  color: #446074;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 536px;
}

.phone-mockup {
  position: relative;
  z-index: 3;
  width: min(100%, 348px);
  margin-left: auto;
  border: 1px solid rgba(36, 49, 66, 0.1);
  border-radius: 28px;
  padding: 16px;
  color: var(--slate);
  background: #f9fcfd;
  box-shadow: var(--shadow);
}

.phone-topbar {
  display: flex;
  height: 26px;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px 10px;
}

.phone-topbar span:first-child {
  width: 66px;
  height: 5px;
  border-radius: 99px;
  background: #d3e0e8;
}

.phone-topbar span:last-child {
  width: 22px;
  height: 22px;
  border: 1px solid #d3e0e8;
  border-radius: 50%;
}

.app-header,
.status-strip,
.mock-section,
.visit-note {
  border: 1px solid rgba(36, 49, 66, 0.08);
  border-radius: 8px;
  background: #ffffff;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
}

.app-header p,
.app-header h2,
.visit-note p {
  margin: 0;
}

.app-header p {
  color: var(--slate-soft);
  font-size: 0.8rem;
  font-weight: 700;
}

.app-header h2 {
  font-size: 1.42rem;
}

.profile-chip,
.mini-pill {
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--teal-dark);
  background: var(--blue-50);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.status-strip {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  margin: 12px 0;
  padding: 14px;
  background: var(--cream);
}

.status-strip strong,
.status-strip span {
  display: block;
}

.status-strip strong {
  margin-bottom: 2px;
  font-size: 0.78rem;
}

.status-strip span {
  color: var(--slate-soft);
  font-size: 0.78rem;
}

.mock-section {
  margin-bottom: 12px;
  padding: 14px;
}

.mock-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--slate-soft);
  font-size: 0.8rem;
  font-weight: 800;
}

.info-row,
.med-item {
  display: flex;
  align-items: center;
  gap: 11px;
}

.info-row {
  border-radius: 8px;
  padding: 12px;
  background: var(--coral-soft);
}

.row-dot {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--coral);
}

.info-row strong,
.info-row small,
.med-item strong,
.med-item small {
  display: block;
}

.info-row small,
.med-item small {
  color: var(--slate-soft);
  font-size: 0.76rem;
}

.med-list {
  display: grid;
  gap: 8px;
}

.med-item {
  border-radius: 8px;
  padding: 10px;
  background: #f4f9fb;
}

.med-item > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: var(--blue-600);
  background: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
}

.visit-note {
  padding: 16px;
  background: var(--slate);
}

.visit-note span {
  display: block;
  margin-bottom: 8px;
  color: #bde5e0;
  font-size: 0.8rem;
  font-weight: 800;
}

.visit-note p {
  color: #ffffff;
  font-size: 0.95rem;
}

.desktop-mockup {
  position: absolute;
  right: -54px;
  bottom: 0;
  z-index: 1;
  display: grid;
  width: 340px;
  min-height: 214px;
  grid-template-columns: 78px 1fr;
  border: 1px solid rgba(36, 49, 66, 0.08);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.desktop-sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
  background: var(--slate);
}

.desktop-sidebar span {
  height: 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.desktop-panel {
  display: grid;
  align-content: end;
  padding: 22px;
  background: var(--blue-50);
}

.chart-line {
  height: 82px;
  border: 1px solid rgba(47, 127, 163, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, transparent 0 26%, rgba(27, 147, 136, 0.18) 26% 29%, transparent 29% 44%, rgba(244, 124, 101, 0.24) 44% 47%, transparent 47% 100%),
    #ffffff;
}

.timeline-dots {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.timeline-dots span {
  height: 8px;
  flex: 1;
  border-radius: 99px;
  background: #c1ddea;
}

.two-column {
  display: grid;
  align-items: start;
  gap: 48px;
  grid-template-columns: 0.86fr 1fr;
}

.section-lede {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.problem-section,
.pricing-section {
  background: var(--paper);
}

.features-section,
.faq-section {
  background: var(--blue-50);
}

.steps-section {
  background: var(--cream);
}

.trust-section,
.waitlist-section {
  background: var(--slate);
}

.trust-section .eyebrow,
.waitlist-section .eyebrow {
  color: #bde5e0;
}

.trust-section h2,
.trust-section p,
.waitlist-section h2,
.waitlist-section p {
  color: #ffffff;
}

.trust-section .section-lede,
.waitlist-section p {
  color: rgba(255, 255, 255, 0.78);
}

.section-heading {
  max-width: 760px;
  text-align: center;
}

.section-heading p:last-child {
  margin-bottom: 0;
  font-size: 1.06rem;
}

.card-grid {
  display: grid;
  gap: 20px;
}

.problem-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 44px;
}

.card {
  position: relative;
  border: 1px solid rgba(36, 49, 66, 0.08);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.problem-card,
.feature-card {
  padding: 26px;
}

.problem-card p,
.feature-card p,
.step p {
  margin-bottom: 0;
}

.card-accent {
  display: block;
  width: 44px;
  height: 6px;
  margin-bottom: 22px;
  border-radius: 999px;
}

.card-accent.blue {
  background: var(--blue-600);
}

.card-accent.coral {
  background: var(--coral);
}

.card-accent.teal {
  background: var(--teal);
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  background: var(--blue-50);
}

.feature-icon::before,
.feature-icon::after {
  content: "";
  display: block;
}

.feature-icon.profile::before {
  width: 22px;
  height: 22px;
  border: 3px solid var(--teal);
  border-radius: 50%;
}

.feature-icon.notes::before,
.feature-icon.forms::before {
  width: 24px;
  height: 28px;
  border: 3px solid var(--blue-600);
  border-radius: 5px;
  background:
    linear-gradient(#ffffff 0 0) 6px 8px / 12px 2px no-repeat,
    linear-gradient(#ffffff 0 0) 6px 15px / 9px 2px no-repeat,
    var(--blue-600);
}

.feature-icon.forms {
  background: var(--cream);
}

.feature-icon.forms::before {
  border-color: var(--coral);
  background:
    linear-gradient(#ffffff 0 0) 6px 8px / 12px 2px no-repeat,
    linear-gradient(#ffffff 0 0) 6px 15px / 9px 2px no-repeat,
    var(--coral);
}

.feature-icon.timeline::before {
  width: 28px;
  height: 20px;
  border-bottom: 3px solid var(--teal);
  border-left: 3px solid var(--teal);
  transform: skew(-18deg);
}

.feature-icon.emergency::before {
  width: 26px;
  height: 26px;
  clip-path: polygon(50% 0, 100% 43%, 81% 100%, 19% 100%, 0 43%);
  background: var(--coral);
}

.feature-icon.sharing::before {
  width: 30px;
  height: 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 6px 9px, var(--blue-600) 0 5px, transparent 6px),
    radial-gradient(circle at 24px 9px, var(--teal) 0 5px, transparent 6px);
}

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

.step {
  border-top: 1px solid rgba(36, 49, 66, 0.16);
  padding-top: 24px;
}

.step span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--coral);
  font-size: 0.86rem;
  font-weight: 800;
}

.trust-layout {
  display: grid;
  align-items: center;
  gap: 46px;
  grid-template-columns: 1fr 0.95fr;
}

.trust-badges {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}

.trust-badge {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 18px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  font-weight: 800;
}

.pricing-grid {
  display: grid;
  align-items: start;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 860px;
  margin-top: 44px;
}

.pricing-card {
  padding: 30px;
}

.pricing-card-featured {
  border-color: rgba(27, 147, 136, 0.28);
  box-shadow: 0 24px 60px rgba(27, 147, 136, 0.18);
}

.plan-label {
  display: inline-flex;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--teal-dark);
  background: var(--blue-50);
  font-size: 0.78rem;
  font-weight: 800;
}

.pricing-top {
  margin-bottom: 22px;
}

.pricing-top h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.pricing-top p {
  margin-bottom: 0;
  color: var(--slate-soft);
}

.pricing-top span {
  color: var(--slate);
  font-size: 2.65rem;
  font-weight: 800;
  line-height: 1;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--slate-soft);
}

.check-list li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--teal);
  content: "";
}

.check-list li::after {
  position: absolute;
  top: 0.43em;
  left: 5px;
  width: 7px;
  height: 4px;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  content: "";
  transform: rotate(-45deg);
}

.waitlist-layout {
  display: grid;
  align-items: start;
  gap: 48px;
  grid-template-columns: 0.86fr 1fr;
}

.waitlist-copy {
  position: sticky;
  top: calc(var(--nav-height) + 32px);
}

.waitlist-form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  color: var(--slate);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid #cfdce3;
  border-radius: 8px;
  color: var(--slate);
  background: #ffffff;
  outline: none;
  transition: border 160ms ease, box-shadow 160ms ease;
}

.form-row input,
.form-row select {
  min-height: 50px;
  padding: 0 14px;
}

.form-row textarea {
  min-height: 138px;
  padding: 14px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(27, 147, 136, 0.14);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin-bottom: 0;
  color: var(--slate-soft);
  font-size: 0.9rem;
}

.form-note.success {
  color: var(--teal-dark);
  font-weight: 700;
}

.hidden-field {
  display: none;
}

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

.contact-layout {
  display: grid;
  align-items: start;
  gap: 48px;
  grid-template-columns: 0.86fr 1fr;
}

.contact-copy {
  position: sticky;
  top: calc(var(--nav-height) + 32px);
}

.contact-note {
  border-left: 4px solid var(--coral);
  border-radius: 8px;
  padding: 16px 18px;
  color: var(--slate);
  background: var(--coral-soft);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(36, 49, 66, 0.08);
  border-radius: 8px;
  padding: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.thanks-hero {
  min-height: calc(100svh - var(--nav-height));
  background: var(--cream);
}

.thanks-layout {
  display: grid;
  align-items: start;
  gap: 48px;
  grid-template-columns: 0.9fr 1fr;
}

.thanks-copy {
  position: sticky;
  top: calc(var(--nav-height) + 32px);
}

.thanks-copy h1 {
  max-width: 12ch;
}

.starter-interest-form {
  border-color: rgba(27, 147, 136, 0.18);
  box-shadow: var(--shadow);
}

.starter-form-heading h2 {
  margin-bottom: 12px;
  font-size: 1.7rem;
}

.starter-form-heading p:last-child {
  margin-bottom: 0;
}

.option-list {
  display: grid;
  gap: 10px;
  margin: 0;
  border: 0;
  padding: 0;
}

.option-list legend {
  margin-bottom: 8px;
  color: var(--slate);
  font-size: 0.9rem;
  font-weight: 800;
}

.radio-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid #cfdce3;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--slate);
  background: #ffffff;
  font-weight: 700;
  cursor: pointer;
}

.radio-option input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--teal);
}

.faq-layout {
  display: grid;
  gap: 42px;
  grid-template-columns: 0.7fr 1fr;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid rgba(36, 49, 66, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

summary::after {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  content: "";
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

details[open] summary::after {
  transform: rotate(225deg);
}

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.site-footer {
  padding: 38px 0;
  color: rgba(255, 255, 255, 0.76);
  background: #192433;
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand {
  margin-bottom: 12px;
  color: #ffffff;
}

.site-footer p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer small {
  display: block;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.58);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-weight: 700;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
}

.legal-hero {
  padding: 74px 0 64px;
  background: var(--cream);
}

.legal-hero-copy {
  max-width: 780px;
}

.legal-hero h1 {
  max-width: none;
  margin-bottom: 18px;
}

.legal-hero p {
  max-width: 700px;
  font-size: 1.08rem;
}

.legal-updated {
  margin-bottom: 0;
  color: var(--teal-dark);
  font-size: 0.92rem;
  font-weight: 800;
}

.legal-section {
  background: #ffffff;
}

.legal-layout {
  display: grid;
  align-items: start;
  gap: 42px;
  grid-template-columns: 0.42fr 1fr;
}

.legal-summary {
  position: sticky;
  top: calc(var(--nav-height) + 28px);
  border: 1px solid rgba(36, 49, 66, 0.08);
  border-radius: 8px;
  padding: 24px;
  background: var(--blue-50);
}

.legal-summary h2 {
  margin-bottom: 12px;
  font-size: 1.18rem;
}

.legal-summary p {
  margin-bottom: 0;
}

.legal-content {
  display: grid;
  gap: 34px;
}

.legal-content section {
  border-bottom: 1px solid var(--line);
  padding-bottom: 30px;
}

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

.legal-content h2 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

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

.legal-content a {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content ul {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
  padding-left: 20px;
  color: var(--slate-soft);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 16px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
    background: var(--cream);
  }

  .hero::before {
    display: none;
  }

  .hero-grid,
  .two-column,
  .trust-layout,
  .waitlist-layout,
  .contact-layout,
  .thanks-layout,
  .faq-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 36px;
  }

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

  .phone-mockup {
    margin: 0 auto;
  }

  .desktop-mockup {
    right: 50%;
    bottom: 0;
    width: min(330px, 86vw);
    transform: translateX(62%);
  }

  .problem-grid,
  .feature-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .waitlist-copy,
  .contact-copy,
  .thanks-copy {
    position: static;
  }

  .legal-summary {
    position: static;
  }
}

@media (max-width: 720px) {
  :root {
    --nav-height: 66px;
  }

  .shell {
    width: min(100% - 28px, 1120px);
  }

  .section {
    padding: 70px 0;
  }

  h1 {
    max-width: 100%;
    font-size: 2.18rem;
  }

  .hero {
    padding: 44px 0 52px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    display: none;
  }

  .hero-visual {
    min-height: auto;
  }

  .phone-mockup {
    border-radius: 20px;
    padding: 12px;
    transform: scale(0.92);
    transform-origin: top center;
    margin-bottom: -54px;
  }

  .desktop-mockup {
    display: none;
  }

  .status-strip {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .feature-grid,
  .steps,
  .pricing-grid,
  .trust-badges {
    grid-template-columns: 1fr;
  }

  .section-heading {
    text-align: left;
  }

  .problem-card,
  .feature-card,
  .pricing-card,
  .waitlist-form,
  .contact-form {
    padding: 22px;
  }

  .thanks-copy h1 {
    max-width: 100%;
  }

  .footer-layout {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .button {
    width: 100%;
    white-space: normal;
  }

  .mock-section-title {
    align-items: flex-start;
    flex-direction: column;
  }
}
