@import url("https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700,900&display=swap");

:root {
  --rose: #e66f84;
  --rose-strong: #d94f70;
  --rose-soft: #fff0f4;
  --ink: #23151a;
  --muted: #76636b;
  --paper: #fffafc;
  --panel: #ffffff;
  --mint: #247c73;
  --mint-soft: #e8f4f1;
  --gold: #bf8a34;
  --gold-soft: #fff6e6;
  --line: rgba(35, 21, 26, 0.12);
  --shadow: 0 22px 70px rgba(111, 50, 68, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Satoshi, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, #fff8fb 0%, #fff1f5 44%, #ffffff 44%, #ffffff 100%);
}

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

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 5vw, 70px);
  background: rgba(255, 250, 252, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: auto;
  min-width: 210px;
}

.brand-text {
  display: grid;
  gap: 4px;
  align-items: center;
}

.brand-wordmark {
  display: block;
  width: 132px;
}

.brand-icon,
.menu-button {
  display: none;
}

.brand-name {
  display: none;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 36px);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

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

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

.active-link,
.mobile-menu-cta {
  display: none;
}

.menu-button {
  position: relative;
  justify-self: end;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(35, 21, 26, 0.08);
  padding: 0;
  appearance: none;
  font: inherit;
}

.menu-button span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transform: translate(-50%, -50%);
}

.menu-button span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 7px));
}

.menu-button span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 7px));
}

.nav-cta {
  justify-self: end;
  display: inline-grid;
  place-items: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--rose-strong);
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(217, 79, 112, 0.12);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 74px);
  min-height: calc(82svh - 78px);
  padding: clamp(28px, 4vw, 48px) clamp(20px, 6vw, 72px) clamp(24px, 3.4vw, 40px);
  overflow: hidden;
}

.hero-bg-mark {
  position: absolute;
  right: -7vw;
  bottom: -12vw;
  z-index: -1;
  width: clamp(520px, 56vw, 920px);
  max-width: none;
  opacity: 0.08;
  pointer-events: none;
}

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

.trust-pill,
.eyebrow {
  margin: 0 0 16px;
  color: var(--rose-strong);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(230, 111, 132, 0.22);
  border-radius: 999px;
  background: #ffffff;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: 0 12px 30px rgba(230, 111, 132, 0.1);
}

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

h1 {
  max-width: 720px;
  margin-bottom: 16px;
  font-size: clamp(2.55rem, 3.35vw, 3rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

h1 span {
  color: var(--rose-strong);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 2.5vw, 2.25rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 700;
}

.hero-subtitle {
  max-width: 640px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.18vw, 1.12rem);
  line-height: 1.58;
}

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

.button {
  display: inline-grid;
  place-items: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button-primary {
  background: var(--rose);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(230, 111, 132, 0.32);
}

.button-secondary {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
}

.hero-benefits article {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(230, 111, 132, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 44px rgba(35, 21, 26, 0.06);
}

.hero-benefits span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: var(--rose-soft);
  color: var(--rose-strong);
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-benefits svg,
.feature-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-benefits strong,
.hero-benefits p {
  display: block;
}

.hero-benefits strong {
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: 700;
}

.hero-benefits p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.app-showcase {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(360px, 38vw, 500px);
  width: min(100%, 720px);
  justify-self: center;
}

.app-showcase::before {
  content: "";
  position: absolute;
  inset: 18% 0 3%;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 54% 48%, rgba(230, 111, 132, 0.22), transparent 58%),
    radial-gradient(ellipse at 55% 78%, rgba(255, 255, 255, 0.95), transparent 64%);
  filter: blur(8px);
}

.app-showcase::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 8%;
  bottom: 4%;
  z-index: -1;
  height: 18%;
  border-radius: 50%;
  background: rgba(35, 21, 26, 0.16);
  filter: blur(22px);
}

.hero-product-shot {
  display: block;
  width: auto;
  max-width: min(108%, 700px);
  height: clamp(480px, 51vw, 690px);
  border-radius: 0;
  filter:
    drop-shadow(0 34px 34px rgba(35, 21, 26, 0.18))
    drop-shadow(0 12px 12px rgba(230, 111, 132, 0.1));
}

.phone {
  position: absolute;
  width: clamp(210px, 19vw, 270px);
  aspect-ratio: 0.52;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 34px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.1)),
    linear-gradient(145deg, #1c171a 0%, #4d4046 48%, #0f0d0e 100%);
  box-shadow:
    0 32px 70px rgba(35, 21, 26, 0.28),
    0 10px 22px rgba(35, 21, 26, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.36);
  transform-style: preserve-3d;
}

.phone::before {
  content: "";
  position: absolute;
  inset: 10px 4px 10px auto;
  width: 5px;
  border-radius: 0 28px 28px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(0, 0, 0, 0.26));
  transform: translateX(5px) translateZ(-8px);
}

.phone::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 14px;
  z-index: 3;
  width: 70px;
  height: 18px;
  border-radius: 999px;
  background: #171315;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.18);
  transform: translateX(-50%);
}

.phone-left {
  left: 10%;
  top: 7%;
  z-index: 2;
  transform: rotateY(18deg) rotateX(5deg) rotateZ(-7deg);
}

.phone-right {
  right: 7%;
  top: 12%;
  z-index: 1;
  transform: rotateY(-18deg) rotateX(5deg) rotateZ(7deg);
}

.phone-screen {
  position: relative;
  height: 100%;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 27px;
  background: #fff7fa;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    inset 0 0 16px rgba(0, 0, 0, 0.08);
}

.phone-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(105deg, transparent 0 47%, rgba(255, 255, 255, 0.42) 48%, rgba(255, 255, 255, 0.12) 60%, transparent 61%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 28%);
  mix-blend-mode: screen;
}

.phone-shot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.dashboard-phone .phone-shot {
  object-position: top center;
}

.calendar-phone .phone-shot {
  object-position: top center;
}

.mock-brand-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.mock-brand-row img {
  width: 74px;
}

.mock-brand-row span {
  color: #b88595;
  font-size: 0.58rem;
  font-weight: 700;
  white-space: nowrap;
}

.app-topbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.app-topbar strong {
  display: block;
  max-width: 170px;
  font-size: 0.92rem;
  line-height: 1.16;
}

.mini-label,
.metric-strip span,
.schedule-row span,
.panel-title strong,
.finance-card span,
.client-note span {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
}

.status-pill {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  height: 30px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--mint-soft);
  color: var(--mint);
  font-size: 0.68rem;
  font-weight: 700;
}

.status-pill.rose {
  background: var(--rose-soft);
  color: var(--rose-strong);
}

.status-pill.gold {
  background: var(--gold-soft);
  color: var(--gold);
}

.metric-strip,
.calendar-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
  padding: 12px;
  border-radius: 18px;
  background: #f7edf1;
}

.metric-strip strong {
  display: block;
  margin-top: 4px;
  font-size: 0.88rem;
}

.quick-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.quick-preview span {
  display: grid;
  place-items: center;
  min-height: 42px;
  border-radius: 15px;
  background: #fff0f4;
  color: #b85772;
  font-size: 0.62rem;
  font-weight: 700;
}

.quick-preview span:nth-child(2) {
  background: var(--mint-soft);
  color: var(--mint);
}

.quick-preview span:nth-child(3) {
  background: var(--gold-soft);
  color: var(--gold);
}

.schedule-panel {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
}

.panel-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-weight: 700;
}

.schedule-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.schedule-row:first-of-type {
  border-top: 0;
}

.schedule-row strong,
.schedule-row span {
  display: block;
}

.time {
  color: var(--rose-strong);
}

.date-chip {
  display: grid;
  place-items: center;
  min-height: 46px;
  border: 1px solid rgba(230, 111, 132, 0.22);
  border-radius: 14px;
  background: #fff5f8;
  color: #bf6c82;
  font-size: 0.48rem;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
}

.date-chip b {
  color: var(--ink);
  font-size: 0.95rem;
}

.calendar-phone .phone-screen {
  background: linear-gradient(180deg, #fbfcff 0%, #fff8fb 100%);
}

.calendar-summary {
  background: #fff7fa;
  border: 1px solid rgba(230, 111, 132, 0.14);
}

.calendar-summary span {
  display: grid;
  place-items: center;
  min-height: 50px;
  border-radius: 14px;
  background: #fff0f4;
  color: var(--muted);
  font-size: 0.54rem;
  font-weight: 700;
  text-align: center;
}

.calendar-summary b {
  color: var(--rose-strong);
  font-size: 1rem;
}

.calendar-summary span:nth-child(3) {
  background: var(--gold-soft);
}

.calendar-summary span:nth-child(3) b {
  color: var(--gold);
}

.calendar-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
}

.month-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.month-row span {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.month-row strong {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--rose-soft);
  color: var(--rose-strong);
  font-size: 0.56rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}

.calendar-grid span {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
}

.calendar-grid .today {
  border-color: rgba(230, 111, 132, 0.44);
  color: var(--rose-strong);
}

.calendar-grid .job {
  position: relative;
  color: var(--gold);
}

.calendar-grid .job::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.agenda-pill {
  display: grid;
  gap: 3px;
  margin-top: 12px;
  padding: 12px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.agenda-pill strong {
  font-size: 0.75rem;
}

.agenda-pill span {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
}

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

.quick-grid span {
  display: grid;
  place-items: center;
  min-height: 60px;
  border-radius: 20px;
  background: var(--rose-soft);
  color: var(--rose-strong);
  font-size: 0.72rem;
  font-weight: 700;
}

.quick-grid span:nth-child(2) {
  background: var(--mint-soft);
  color: var(--mint);
}

.quick-grid span:nth-child(3) {
  background: var(--gold-soft);
  color: var(--gold);
}

.finance-card,
.client-note {
  padding: 14px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.finance-card {
  margin-bottom: 12px;
}

.finance-card strong {
  display: block;
  margin: 5px 0 13px;
  font-size: 1rem;
}

.bar-chart {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 8px;
  height: 52px;
}

.bar-chart i {
  display: block;
  border-radius: 999px 999px 6px 6px;
  background: var(--rose);
}

.bar-chart i:nth-child(1) {
  height: 36%;
  background: var(--gold);
}

.bar-chart i:nth-child(2) {
  height: 58%;
  background: var(--mint);
}

.bar-chart i:nth-child(3) {
  height: 76%;
}

.bar-chart i:nth-child(4) {
  height: 48%;
  background: #2b1a20;
}

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

.story-section,
.about-section,
.feature-section,
.steps-section,
.pricing-section,
.waitlist-section,
.faq-section,
.download-section {
  padding: clamp(46px, 7vw, 88px) clamp(20px, 6vw, 72px);
}

.story-section {
  background: #ffffff;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  background: var(--paper);
}

.vision-grid {
  display: grid;
  gap: 16px;
}

.vision-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 18px 54px rgba(35, 21, 26, 0.05);
}

.vision-grid span {
  display: inline-grid;
  place-items: center;
  min-height: 34px;
  margin-bottom: 26px;
  padding: 0 13px;
  border-radius: 999px;
  background: var(--rose-soft);
  color: var(--rose-strong);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.vision-grid article:nth-child(2) span {
  background: var(--mint-soft);
  color: var(--mint);
}

.vision-grid p {
  color: var(--muted);
  line-height: 1.68;
}

.section-copy {
  max-width: 880px;
  margin-bottom: clamp(24px, 4vw, 42px);
}

.section-copy.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.section-copy.centered p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

.feature-section {
  background: #ffffff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 220px;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 0 16px 48px rgba(35, 21, 26, 0.04);
}

.feature-icon,
.steps-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
}

.feature-card:nth-child(2) .feature-icon,
.steps-grid article:nth-child(2) span {
  background: var(--mint);
}

.feature-card:nth-child(3) .feature-icon,
.steps-grid article:nth-child(3) span {
  background: var(--gold);
}

.feature-card:nth-child(4) .feature-icon {
  background: var(--rose);
}

.feature-card p,
.steps-grid p,
.pricing-card p,
.faq-list p,
.download-section p {
  color: var(--muted);
  line-height: 1.68;
}

.steps-section {
  background: #f7edf1;
}

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

.steps-grid article {
  min-height: 200px;
  padding: 24px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.store-availability {
  display: grid;
  justify-items: start;
  gap: 10px;
  margin-top: 24px;
}

.store-kicker {
  margin: 0;
  color: var(--rose);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.store-badge {
  display: inline-flex;
  width: clamp(170px, 16vw, 214px);
  max-width: 100%;
}

.store-badge img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 22px rgba(35, 21, 26, 0.1));
}

.pricing-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  background: #ffffff;
}

.pricing-card {
  display: grid;
  gap: 14px;
  padding: 26px;
  border-radius: 34px;
  background: var(--ink);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.pricing-card img {
  width: 78px;
}

.pricing-card span {
  color: #f4bcc8;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-card strong {
  font-size: clamp(2rem, 3.35vw, 3rem);
  line-height: 1;
}

.pricing-card p {
  color: rgba(255, 255, 255, 0.72);
}

.pricing-card .button {
  width: fit-content;
}

.waitlist-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  background:
    linear-gradient(180deg, rgba(255, 240, 244, 0.72), rgba(255, 250, 252, 1)),
    var(--paper);
}

.waitlist-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(35, 21, 26, 0.08);
}

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

.trap-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-field-wide,
.form-submit,
.form-note {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.form-field input {
  min-height: 48px;
  padding: 0 14px;
}

.form-field textarea {
  resize: vertical;
  min-height: 92px;
  padding: 13px 14px;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(230, 111, 132, 0.72);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(230, 111, 132, 0.12);
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.waitlist-form.is-submitted {
  border-color: rgba(36, 124, 115, 0.34);
  box-shadow: 0 20px 60px rgba(36, 124, 115, 0.1);
}

.waitlist-form.is-submitted .form-note {
  color: var(--mint);
  font-weight: 700;
}

.waitlist-form.is-error {
  border-color: rgba(217, 79, 112, 0.4);
}

.waitlist-form.is-error .form-note {
  color: var(--rose-strong);
  font-weight: 700;
}

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

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
}

.faq-list summary {
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
}

.faq-list p {
  margin: 14px 0 0;
}

.download-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  background: var(--ink);
  color: #ffffff;
}

.download-section h2 {
  max-width: 820px;
  margin-bottom: 14px;
}

.download-section p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.download-badges {
  justify-items: end;
  margin-top: 0;
}

.download-badges .store-kicker {
  color: #ffffff;
  opacity: 0.78;
}

.download-badges .store-badge img {
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.26));
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(2, minmax(150px, 0.35fr));
  gap: 28px;
  padding: 38px clamp(20px, 6vw, 72px) 24px;
  background: #ffffff;
  color: var(--muted);
}

.site-footer img {
  width: 145px;
  margin-bottom: 12px;
}

.site-footer strong,
.copyright {
  color: var(--ink);
  font-weight: 700;
}

.site-footer div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.legal-main {
  background: #ffffff;
}

.legal-hero {
  padding: clamp(40px, 6vw, 72px) clamp(20px, 6vw, 72px) clamp(28px, 4vw, 44px);
  background:
    linear-gradient(180deg, rgba(255, 240, 244, 0.78), rgba(255, 255, 255, 1)),
    var(--paper);
}

.legal-hero h1 {
  max-width: 920px;
  font-size: clamp(2.45rem, 4vw, 3.75rem);
}

.legal-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.legal-content {
  display: grid;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(32px, 5.5vw, 64px) clamp(20px, 5vw, 40px) clamp(54px, 7vw, 82px);
}

.legal-card {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
}

.legal-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.18;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.75;
}

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

.legal-card ul {
  padding-left: 20px;
}

.site-footer a:hover {
  color: var(--rose-strong);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 44px;
  }

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

  .app-showcase {
    min-height: 460px;
    width: min(100%, 680px);
  }

  .phone-left {
    left: 12%;
  }

  .phone-right {
    right: 8%;
  }

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

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 90px;
    padding: 14px 20px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand-wordmark {
    display: block;
    width: 106px;
  }

  .brand-icon {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .brand-icon img {
    width: 100%;
    max-width: none;
  }

  .brand-name {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    z-index: 40;
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid rgba(35, 21, 26, 0.08);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 22px 60px rgba(35, 21, 26, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
    backdrop-filter: blur(18px);
  }

  .site-header.menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header.menu-open .menu-button span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .site-header.menu-open .menu-button span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .menu-button span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .menu-button span {
    transition:
      opacity 150ms ease,
      transform 150ms ease;
  }

  .nav-links a {
    display: block;
    padding: 13px 16px;
    border-radius: 15px;
    color: var(--ink);
    font-size: 1.04rem;
    font-weight: 700;
    text-align: left;
  }

  .nav-links .active-link {
    background: var(--rose-soft);
    color: var(--rose-strong);
  }

  .nav-links .mobile-menu-cta {
    display: grid;
    place-items: center;
    min-height: 48px;
    margin-top: 8px;
    background: var(--rose);
    color: #ffffff;
    font-weight: 700;
    text-align: center;
  }

  .pricing-section,
  .download-section,
  .about-section,
  .waitlist-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .download-section .button,
  .pricing-card .button {
    width: fit-content;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 78px;
    padding: 12px 14px;
  }

  .brand {
    width: auto;
  }

  .brand-icon {
    width: 38px;
    height: 38px;
  }

  .brand-icon img {
    width: 100%;
  }

  .brand-wordmark {
    width: 96px;
  }

  .brand-tagline {
    max-width: 178px;
    font-size: 0.54rem;
    white-space: nowrap;
  }

  .menu-button {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .menu-button span {
    width: 18px;
  }

  .hero {
    gap: 16px;
    min-height: auto;
    padding: 24px 14px 0;
  }

  .hero-bg-mark {
    right: -46vw;
    bottom: 14vw;
    width: 116vw;
    opacity: 0.07;
  }

  .trust-pill {
    max-width: 100%;
    min-height: 30px;
    padding: 0 11px;
    font-size: 0.66rem;
  }

  h1 {
    max-width: 360px;
    margin-bottom: 12px;
    font-size: 2rem;
    line-height: 2.25rem;
  }

  h2 {
    font-size: 1.65rem;
    line-height: 2rem;
  }

  .hero-subtitle {
    margin-bottom: 14px;
    font-size: 0.86rem;
    line-height: 1.48;
  }

  .hero-actions .button {
    min-height: 46px;
    padding: 0 14px;
    font-size: 0.86rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
  }

  .hero-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .hero-benefits article {
    min-height: 82px;
    padding: 10px 8px;
    border-radius: 16px;
  }

  .hero-benefits span {
    width: 24px;
    height: 24px;
    margin-bottom: 8px;
    border-radius: 9px;
    font-size: 0.6rem;
  }

  .hero-benefits strong {
    font-size: 0.78rem;
  }

  .hero-benefits p {
    font-size: 0.66rem;
  }

  .app-showcase {
    position: relative;
    min-height: 0;
    height: 356px;
    margin: 6px -14px 0;
    overflow: hidden;
  }

  .app-showcase::before {
    inset: 44px -20px 0;
    border-radius: 50%;
  }

  .hero-product-shot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: auto;
    max-width: none;
    height: 360px;
    transform: translate(-50%, -50%);
    border-radius: 0;
    filter:
      drop-shadow(0 20px 20px rgba(35, 21, 26, 0.16))
      drop-shadow(0 8px 8px rgba(230, 111, 132, 0.08));
  }

  .phone {
    width: 160px;
    padding: 5px;
    border-radius: 22px;
  }

  .phone::before {
    inset: 8px 5px 8px auto;
    width: 4px;
    transform: translateX(4px) translateZ(-6px);
  }

  .phone::after {
    top: 8px;
    width: 38px;
    height: 10px;
  }

  .phone-left {
    left: 18px;
    top: 46px;
    transform: rotateY(14deg) rotateX(4deg) rotateZ(-7deg);
  }

  .phone-right {
    right: 18px;
    top: 20px;
    bottom: auto;
    transform: rotateY(-14deg) rotateX(4deg) rotateZ(7deg);
  }

  .phone-screen {
    padding: 0;
    border-radius: 18px;
  }

  .app-topbar {
    margin-bottom: 8px;
  }

  .app-topbar strong {
    max-width: 80px;
    font-size: 0.52rem;
  }

  .mini-label,
  .metric-strip span,
  .schedule-row span,
  .panel-title strong,
  .finance-card span,
  .client-note span {
    font-size: 0.52rem;
  }

  .status-pill {
    height: 22px;
    padding: 0 6px;
    font-size: 0.5rem;
  }

  .metric-strip {
    gap: 4px;
    padding: 5px;
    border-radius: 11px;
  }

  .metric-strip strong {
    font-size: 0.52rem;
  }

  .schedule-panel,
  .finance-card,
  .client-note {
    display: none;
  }

  .quick-grid {
    gap: 6px;
  }

  .quick-grid span {
    min-height: 30px;
    border-radius: 10px;
    font-size: 0.46rem;
  }

  .story-section,
  .about-section,
  .feature-section,
  .steps-section,
  .pricing-section,
  .waitlist-section,
  .faq-section,
  .download-section {
    padding: 42px 14px;
  }

  .story-section .section-copy {
    margin-bottom: 0;
  }

  .story-section h2 {
    max-width: 350px;
  }

  .section-copy p:not(.eyebrow) {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .section-copy.centered {
    text-align: left;
  }

  .section-copy.centered p:not(.eyebrow) {
    margin-left: 0;
  }

  .feature-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .vision-grid article,
  .steps-grid article {
    min-height: auto;
    border-radius: 24px;
    padding: 22px;
  }

  .feature-icon,
  .steps-grid span {
    margin-bottom: 26px;
  }

  .store-availability,
  .download-badges {
    justify-items: stretch;
  }

  .store-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .store-badge {
    justify-self: stretch;
    width: 100%;
  }

  .store-badge img {
    width: min(230px, 100%);
  }

  .pricing-card {
    padding: 24px;
    border-radius: 28px;
  }

  .pricing-card .button,
  .download-section .button {
    width: 100%;
  }

  .waitlist-form {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
    border-radius: 24px;
  }

  .form-field input {
    min-height: 46px;
  }

  .faq-list details {
    padding: 20px;
    border-radius: 20px;
  }

  .site-footer {
    padding: 34px 14px 24px;
  }

  .legal-hero,
  .legal-content {
    padding-left: 14px;
    padding-right: 14px;
  }

  .legal-card {
    border-radius: 22px;
  }
}
