:root {
  --paper: #F4F1EA;
  --paper-2: #EFEBE2;
  --card: #FBFAF6;
  --ink: #1B1714;
  --ink-soft: #6F665C;
  --noir: #100E0C;
  --sage: #C8D4B6;
  --gold: #E8DA8A;
  --rose: #E6B1A6;
  --lilac: #C6CCE3;
  --line: rgba(27, 23, 20, .11);
  --line-strong: rgba(27, 23, 20, .2);
  --shadow: 0 24px 80px -48px rgba(27, 23, 20, .45);
  --maxw: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-size: 5.45rem;
  line-height: .94;
  overflow-wrap: normal;
}

h2 {
  font-size: 3.15rem;
  line-height: 1.04;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.18;
}

.wrap {
  width: min(100% - 48px, var(--maxw));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

.eyebrow {
  display: inline-flex;
  color: var(--ink-soft);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: .78rem 1.24rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--noir);
  color: var(--paper);
  box-shadow: 0 14px 35px -22px rgba(16, 14, 12, .85);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}

.btn-ghost:hover {
  background: rgba(27, 23, 20, .045);
}

.btn-paper {
  background: var(--paper);
  color: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(244, 241, 234, .86);
  backdrop-filter: blur(14px) saturate(135%);
}

.site-header.is-scrolled,
.site-header.menu-is-open {
  border-color: var(--line);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: 168px;
  height: auto;
  max-height: 46px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.1rem;
}

.nav-link,
.dropdown-trigger {
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: .95rem;
  font-weight: 600;
}

.nav-link:hover,
.dropdown-trigger:hover {
  color: var(--ink);
}

.nav-link[aria-current="page"] {
  color: var(--ink);
}

.nav-parent {
  position: relative;
}

.nav-subpages {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  margin-left: -.5rem;
  padding-left: .92rem;
  border-left: 1px solid var(--line-strong);
}

.nav-child {
  padding: .32rem .58rem;
  border-radius: 999px;
  font-size: .9rem;
}

.nav-child[aria-current="page"] {
  background: var(--paper-2);
}

.nav-dropdown {
  position: relative;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .7rem .2rem;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: -20px;
  display: grid;
  min-width: 270px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu a {
  display: grid;
  gap: 2px;
  padding: 13px;
  border-radius: 12px;
}

.dropdown-menu a:hover {
  background: var(--paper-2);
}

.dropdown-menu strong {
  font-size: .98rem;
}

.dropdown-menu span {
  color: var(--ink-soft);
  font-size: .83rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  padding: 76px 0 98px;
}

.home-hero {
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
  align-items: center;
  gap: 62px;
}

.hero-grid > *,
.split > *,
.board-card > div,
.message-card > *,
.ai-panel > * {
  min-width: 0;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.lede {
  max-width: 45rem;
  color: var(--ink-soft);
  font-size: 1.2rem;
  line-height: 1.55;
}

.note {
  max-width: 39rem;
  color: var(--ink-soft);
  font-size: .96rem;
}

.strong-note {
  display: inline-flex;
  width: fit-content;
  padding: .75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.action-row.center {
  justify-content: center;
}

.studio-board,
.inbox-demo,
.phone-shell {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.studio-board {
  display: grid;
  gap: 12px;
  padding: 24px;
  overflow: hidden;
}

.board-head,
.demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.board-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 13px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
}

.board-card.active {
  background: var(--sage);
}

.board-card.muted {
  background: var(--paper-2);
}

.board-card strong {
  display: block;
  line-height: 1.25;
}

.board-card p {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: .9rem;
}

.status-dot {
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 50%;
}

.status-dot.sage {
  background: var(--sage);
}

.status-dot.gold {
  background: var(--gold);
}

.status-dot.lilac {
  background: var(--lilac);
}

.mini-badge,
.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 800;
  line-height: 1.2;
}

.mini-badge {
  padding: .35rem .65rem;
  background: var(--card);
}

.mini-badge.soon {
  background: var(--gold);
}

.pill {
  gap: .45rem;
  padding: .45rem .82rem;
  border: 1px solid var(--line);
}

.pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.pill.available {
  background: var(--sage);
  color: var(--ink);
}

.pill.soon {
  background: var(--gold);
  color: var(--ink);
}

.sketch-line {
  position: absolute;
  right: -55px;
  bottom: -65px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(27, 23, 20, .12);
  border-radius: 50%;
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 58px;
  align-items: start;
}

.section-heading {
  display: grid;
  max-width: 780px;
  gap: 16px;
}

.section-heading p,
.editorial-copy {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.editorial-copy {
  display: grid;
  gap: 18px;
}

.plain-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 10px 0 0;
  color: var(--ink);
  list-style: none;
}

.plain-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.product-grid,
.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.product-card,
.plan-card,
.step-card,
.benefit-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--card);
  box-shadow: 0 18px 70px -54px rgba(27, 23, 20, .5);
}

.product-card {
  display: flex;
  min-height: 610px;
  flex-direction: column;
  padding: clamp(26px, 3.3vw, 40px);
}

.product-card h3 {
  margin-top: 12px;
  font-size: 3.2rem;
}

.product-card p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.product-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.chat-card {
  background: var(--noir);
  color: var(--paper);
}

.chat-card p,
.chat-card .product-kicker,
.chat-card .check-list {
  color: rgba(244, 241, 234, .74);
}

.card-top,
.status-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.status-line {
  justify-content: flex-start;
}

.product-kicker {
  color: var(--ink-soft);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 30px;
  color: var(--ink);
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
}

.locked-row {
  width: fit-content;
  margin: 2px 0 28px;
  padding: .65rem .85rem;
  border: 1px dashed rgba(244, 241, 234, .28);
  border-radius: 999px;
  color: rgba(244, 241, 234, .8);
  font-size: .85rem;
  font-weight: 800;
}

.callout,
.partner-panel,
.launch-panel {
  border-radius: 28px;
  background: var(--noir);
  color: var(--paper);
}

.callout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: clamp(30px, 5vw, 58px);
}

.callout .eyebrow,
.partner-panel .eyebrow {
  color: rgba(244, 241, 234, .62);
}

.callout p,
.partner-panel p,
.launch-panel p {
  max-width: 68ch;
  margin-top: 16px;
  color: rgba(244, 241, 234, .72);
}

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

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

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  cursor: pointer;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.28rem;
  line-height: 1.25;
  list-style: none;
}

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

summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: "Instrument Sans", sans-serif;
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 70ch;
  padding: 0 0 24px;
  color: var(--ink-soft);
}

.final-section {
  text-align: center;
}

.final-panel {
  display: grid;
  justify-items: center;
  gap: 20px;
}

.final-panel h2 {
  max-width: 820px;
}

.care-hero h1 {
  max-width: 12ch;
}

.phone-shell {
  width: min(100%, 390px);
  margin-inline: auto;
  padding: 14px;
  border-radius: 38px;
  background: var(--noir);
}

.phone-bar {
  width: 86px;
  height: 7px;
  margin: 4px auto 14px;
  border-radius: 999px;
  background: rgba(244, 241, 234, .28);
}

.phone-screen {
  min-height: 560px;
  padding: 26px;
  border-radius: 27px;
  background: var(--paper);
}

.phone-label {
  color: var(--ink-soft);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.phone-screen h2 {
  margin-top: 8px;
  font-size: 1.7rem;
  line-height: 1.1;
}

.care-step {
  padding: 19px 0;
  border-top: 1px solid var(--line);
}

.care-step:first-of-type {
  margin-top: 22px;
}

.care-step p {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: .94rem;
}

.save-box {
  padding: 14px;
  border: 1px dashed var(--line-strong);
  border-radius: 16px;
  color: var(--ink-soft);
  font-size: .9rem;
}

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

.steps-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card,
.benefit-card {
  padding: 26px;
}

.step-card span {
  display: block;
  color: rgba(27, 23, 20, .28);
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.15rem;
  line-height: 1;
}

.step-card h3,
.benefit-card h3 {
  margin-top: 16px;
}

.step-card p,
.benefit-card p,
.plan-card p {
  margin-top: 10px;
  color: var(--ink-soft);
}

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

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3.2vw, 38px);
}

.plan-card.featured {
  background: var(--noir);
  color: var(--paper);
}

.plan-card.featured p,
.plan-card.featured .check-list {
  color: rgba(244, 241, 234, .74);
}

.plan-card .btn {
  width: fit-content;
  margin-top: auto;
}

.plan-name {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.7rem;
  line-height: 1.1;
}

.price {
  margin-top: 18px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 3.75rem;
  line-height: 1;
}

.price small {
  font-family: "Instrument Sans", sans-serif;
  font-size: .95rem;
  font-weight: 700;
}

.ribbon {
  position: absolute;
  top: -14px;
  left: 28px;
  padding: .42rem .8rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: .75rem;
  font-weight: 900;
}

.compare-table {
  margin-top: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--card);
}

.compare-row {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(80px, .45fr) minmax(80px, .45fr);
  min-height: 58px;
  border-top: 1px solid var(--line);
}

.compare-row:first-child {
  border-top: 0;
}

.compare-row span {
  display: flex;
  align-items: center;
  padding: 14px 18px;
}

.compare-row span:not(:first-child) {
  justify-content: center;
  border-left: 1px solid var(--line);
  font-weight: 900;
}

.compare-row.head {
  background: var(--noir);
  color: var(--paper);
  font-weight: 900;
}

.partner-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .62fr);
  gap: 36px;
  align-items: center;
  padding: clamp(30px, 5vw, 58px);
}

.partner-placeholder {
  display: grid;
  min-height: 260px;
  place-items: center;
  padding: 30px;
  border: 1px dashed rgba(244, 241, 234, .26);
  border-radius: 22px;
  background: rgba(244, 241, 234, .045);
  text-align: center;
}

.partner-placeholder span {
  color: rgba(244, 241, 234, .52);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.partner-placeholder strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
}

.partner-placeholder p {
  margin: 0;
}

.inbox-demo {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.message-card {
  display: grid;
  gap: 13px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  opacity: .62;
  transform: scale(.985);
  transition: opacity .35s ease, transform .35s ease;
}

.message-card.active {
  opacity: 1;
  transform: scale(1);
}

.source-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.source-row span,
.ai-panel span {
  color: var(--ink-soft);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ai-panel {
  display: grid;
  gap: 9px;
  padding: 15px;
  border-radius: 16px;
  background: var(--sage);
}

.ai-panel.warning {
  background: var(--gold);
}

.ai-panel p {
  color: var(--ink-soft);
  font-size: .92rem;
}

.ai-panel b {
  width: fit-content;
  padding: .4rem .65rem;
  border-radius: 999px;
  background: var(--card);
  font-size: .78rem;
}

.confidence-meter {
  display: grid;
  gap: 7px;
}

.confidence-meter i {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(27, 23, 20, .14);
}

.confidence-meter i::before {
  content: "";
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--noir);
}

.confidence-meter.high i::before {
  width: 96%;
}

.confidence-meter.medium i::before {
  width: 62%;
}

.confidence-samples {
  display: grid;
  gap: 10px;
}

.sample {
  display: block;
  width: fit-content;
  padding: .65rem .85rem;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 800;
}

.sample.high {
  background: var(--sage);
}

.sample.medium {
  background: var(--gold);
}

.launch-panel {
  display: grid;
  justify-items: start;
  gap: 18px;
  padding: clamp(30px, 5vw, 58px);
}

.launch-panel h2 {
  font-size: 4.2rem;
}

.site-footer {
  padding: 60px 0 34px;
  background: var(--noir);
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(0, 1fr);
  gap: 42px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(244, 241, 234, .12);
}

.site-footer p {
  max-width: 34ch;
  margin-top: 14px;
  color: rgba(244, 241, 234, .62);
}

.site-footer .brand-logo {
  filter: invert(1);
  mix-blend-mode: screen;
  opacity: .96;
}

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

.footer-cols h3 {
  margin-bottom: 12px;
  color: rgba(244, 241, 234, .48);
  font-family: "Instrument Sans", sans-serif;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-cols a {
  display: block;
  padding: 5px 0;
  color: rgba(244, 241, 234, .78);
  font-size: .94rem;
}

.footer-bottom {
  padding-top: 22px;
  color: rgba(244, 241, 234, .48);
  font-size: .88rem;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  h1 {
    max-width: 12ch;
    font-size: 4.1rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .hero-grid,
  .split,
  .partner-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 42px;
  }

  .steps-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    position: fixed;
    inset: 74px 0 auto;
    z-index: 49;
    display: grid;
    max-height: calc(100vh - 74px);
    gap: 2px;
    overflow-y: auto;
    padding: 18px 24px 26px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 22px 70px -42px rgba(27, 23, 20, .5);
    transform: translateY(-110%);
    transition: transform .24s ease;
  }

  .mobile-nav.is-open {
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 13px 4px;
    color: var(--ink);
    font-weight: 800;
  }

  .mobile-nav a[aria-current="page"] {
    color: var(--ink);
  }

  .mobile-nav .mobile-child {
    position: relative;
    margin-left: 18px;
    padding-left: 18px;
    color: var(--ink-soft);
  }

  .mobile-nav .mobile-child::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 9px;
    height: 1px;
    background: var(--line-strong);
  }

  .mobile-nav .btn {
    margin-top: 8px;
    padding-inline: 1rem;
  }

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

  .section,
  .hero {
    padding: 66px 0;
  }

  .product-grid,
  .plans-grid,
  .benefits-grid,
  .steps-grid,
  .steps-grid.four,
  .footer-grid,
  .footer-cols {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: auto;
  }

  .product-card h3 {
    font-size: 2.75rem;
  }

  .price {
    font-size: 3.25rem;
  }

  .launch-panel h2 {
    font-size: 3.3rem;
  }

  .compare-table {
    overflow-x: auto;
  }

  .compare-row {
    min-width: 560px;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }

  .wrap {
    width: min(100% - 32px, var(--maxw));
  }

  .nav-shell {
    min-height: 68px;
  }

  .brand-logo {
    width: 148px;
  }

  .mobile-nav {
    inset: 68px 0 auto;
    max-height: calc(100vh - 68px);
  }

  h1 {
    max-width: 100%;
    font-size: 2.25rem;
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy,
  .section-heading,
  .editorial-copy,
  .studio-board,
  .inbox-demo,
  .phone-shell,
  .product-card,
  .plan-card,
  .step-card,
  .benefit-card,
  .callout,
  .partner-panel,
  .launch-panel,
  .final-panel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .action-row,
  .card-top,
  .status-line,
  .demo-header,
  .source-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .strong-note {
    display: block;
    width: 100%;
    border-radius: 18px;
  }

  .lede,
  .note,
  .editorial-copy,
  .section-heading p,
  .board-card p,
  .message-card p,
  .ai-panel p,
  .check-list li,
  .plain-list li {
    overflow-wrap: anywhere;
  }

  .lede {
    font-size: 1.08rem;
  }

  .product-card h3 {
    font-size: 2.35rem;
  }

  .price {
    font-size: 2.8rem;
  }

  .launch-panel h2 {
    font-size: 2.7rem;
  }

  .btn {
    width: 100%;
  }

  .studio-board,
  .inbox-demo {
    padding: 16px;
    border-radius: 22px;
  }

  .board-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .board-card .mini-badge {
    grid-column: 2;
  }

  .phone-screen {
    min-height: 500px;
    padding: 21px;
  }

  .plan-card,
  .product-card,
  .step-card,
  .benefit-card {
    border-radius: 18px;
  }

  .compare-row {
    min-width: 0;
    grid-template-columns: minmax(0, 1.35fr) 72px 72px;
  }

  .compare-row span {
    padding: 12px 10px;
    font-size: .9rem;
  }

  .partner-placeholder {
    min-height: 210px;
  }
}

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

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