/* Massage Scribe AI — landing site styles.
   Brand tokens mirror the Flutter app (lib/core/constants/app_colors.dart):
   Quicksand for headings, Poppins for body. Single file, no framework. */

:root {
  --teal: #1f8a82;
  --teal-dark: #14635d;
  --teal-light: #b7e0dc;
  --terracotta: #c1614a;
  --terracotta-dark: #9c4a36;
  --bg: #f7f5f2;
  --surface: #ffffff;
  --surface-alt: #efede9;
  --text: #1e2422;
  --text-secondary: #5c6663;
  --text-muted: #8a938f;
  --border: #e0ddd7;
  --success: #3a8c5f;

  --font-head: "Quicksand", system-ui, sans-serif;
  --font-body: "Poppins", system-ui, -apple-system, sans-serif;

  --maxw: 1120px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 3px rgba(30, 36, 34, 0.06);
  --shadow: 0 12px 32px rgba(30, 36, 34, 0.08);
  --shadow-lg: 0 24px 60px rgba(30, 36, 34, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.4em;
  color: var(--text);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}
h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
}
h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--teal-dark);
  text-decoration: none;
}
a:hover {
  color: var(--teal);
}

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding: clamp(56px, 9vw, 112px) 0;
}

.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-head {
  max-width: 640px;
  margin: 0 auto clamp(36px, 5vw, 64px);
  text-align: center;
}
.section-head p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:active {
  transform: translateY(1px);
}
.btn-primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 8px 20px rgba(193, 97, 74, 0.28);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  color: #fff;
  box-shadow: 0 12px 26px rgba(156, 74, 54, 0.32);
}
.btn-ghost {
  background: transparent;
  color: var(--teal-dark);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--surface);
  border-color: var(--teal-light);
}
.btn-lg {
  padding: 16px 32px;
  font-size: 1.08rem;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 242, 0.82);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.nav.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
}
.brand:hover {
  color: var(--text);
}
.brand .mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: block;
  flex: none;
  box-shadow: var(--shadow-sm);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.98rem;
}
.nav-links a:hover {
  color: var(--teal-dark);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 8vw, 104px);
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 640px;
  height: 640px;
  background: radial-gradient(
    circle at center,
    rgba(183, 224, 220, 0.55),
    transparent 62%
  );
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
/* Let grid items shrink below their content's intrinsic size
   (images default to min-width:auto, which forces overflow). */
.hero-grid > *,
.showcase-row > * {
  min-width: 0;
}
.hero-copy h1 {
  margin-bottom: 0.5em;
}
.hero-copy .lead {
  max-width: 34ch;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin: 30px 0 26px;
}
.hero-demo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--teal-dark);
}
.hero-demo span {
  transition: transform 0.15s ease;
}
.hero-demo:hover {
  color: var(--teal);
}
.hero-demo:hover span {
  transform: translateX(4px);
}
.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--text);
  color: #fff;
  padding: 10px 18px;
  border-radius: 14px;
  font-family: var(--font-head);
  transition: transform 0.15s ease, opacity 0.2s ease;
}
.store-btn:hover {
  color: #fff;
  transform: translateY(-2px);
}
.store-btn small {
  display: block;
  font-size: 0.62rem;
  opacity: 0.75;
  line-height: 1;
  letter-spacing: 0.04em;
}
.store-btn strong {
  font-size: 1rem;
  line-height: 1.15;
}
.store-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.store-btn[aria-disabled="true"] {
  background: var(--surface-alt);
  color: var(--text-muted);
  cursor: default;
  pointer-events: none;
}
.hero-note {
  color: var(--text-muted);
  font-size: 0.86rem;
  margin-top: 6px;
}

/* Headline highlight */
.hero-copy h1 .hl {
  color: var(--terracotta);
  position: relative;
  white-space: nowrap;
}

/* Hero product shot (real device) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-glow {
  position: absolute;
  inset: 4% 8%;
  background: radial-gradient(
    circle at 50% 42%,
    rgba(31, 138, 130, 0.32),
    rgba(183, 224, 220, 0.18) 45%,
    transparent 70%
  );
  filter: blur(10px);
  z-index: 0;
}
.hero-phone {
  position: relative;
  z-index: 1;
  width: min(310px, 82%);
  height: auto;
  filter: drop-shadow(0 32px 50px rgba(30, 36, 34, 0.26));
  animation: floatY 6s ease-in-out infinite;
}
.float-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text);
  box-shadow: var(--shadow);
}
.float-chip svg {
  width: 15px;
  height: 15px;
  fill: var(--success);
}
.float-chip .chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 0 0 0 rgba(193, 97, 74, 0.5);
  animation: pulseDot 1.8s ease-out infinite;
}
.chip-top {
  top: 12%;
  left: 2%;
  animation: floatY 6s ease-in-out infinite;
}
.chip-bottom {
  bottom: 12%;
  right: 2%;
  color: var(--teal-dark);
  animation: floatY 6s ease-in-out infinite 0.8s;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(193, 97, 74, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(193, 97, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(193, 97, 74, 0); }
}

/* ---------- Showcase (see it in action) ---------- */
.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  margin-top: clamp(48px, 7vw, 88px);
}
.showcase-row.reverse .showcase-copy {
  order: 2;
}
.showcase-copy h3 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin: 14px 0 10px;
}
.showcase-copy p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin: 0;
  max-width: 40ch;
}
.step-pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(183, 224, 220, 0.45);
  padding: 5px 13px;
  border-radius: var(--radius-pill);
}
.showcase-media {
  display: flex;
  justify-content: center;
  position: relative;
}
.showcase-media::before {
  content: "";
  position: absolute;
  inset: 8% 6%;
  background: radial-gradient(
    circle at 50% 45%,
    rgba(183, 224, 220, 0.4),
    transparent 68%
  );
  filter: blur(12px);
  z-index: 0;
}
.showcase-media img {
  position: relative;
  z-index: 1;
  height: auto;
  filter: drop-shadow(0 26px 44px rgba(30, 36, 34, 0.2));
}
.showcase-media.phone img {
  width: min(280px, 70%);
}
.showcase-media.tablet img {
  width: min(520px, 100%);
}

/* ---------- Stat / problem strip ---------- */
.stat-strip {
  background: var(--teal-dark);
  color: #eafaf7;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: center;
}
.stat-grid .num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
}
.stat-grid p {
  margin: 4px 0 0;
  color: rgba(234, 250, 247, 0.82);
  font-size: 0.98rem;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.step .n {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--teal);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.step p {
  color: var(--text-secondary);
  margin: 0;
}

/* ---------- Features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.feature .ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(183, 224, 220, 0.45);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  font-size: 22px;
}
.feature h3 {
  margin-bottom: 6px;
}
.feature p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.tag-pro {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--terracotta);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  margin-left: 8px;
  vertical-align: middle;
}

/* ---------- Privacy / security ---------- */
.trust {
  background: var(--surface-alt);
}
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.privacy-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.privacy-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.privacy-item .ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(183, 224, 220, 0.45);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.privacy-item .ico svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--teal-dark);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.privacy-item h3 {
  font-size: 1.05rem;
  margin-bottom: 7px;
}
.privacy-item p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
}
.privacy-more {
  text-align: center;
  margin: clamp(30px, 4vw, 46px) 0 0;
  color: var(--text-secondary);
}
.privacy-more a {
  font-weight: 600;
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 820px;
  margin-inline: auto;
  align-items: stretch;
}
.plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.plan.featured {
  border-color: var(--teal);
  box-shadow: var(--shadow);
  position: relative;
}
.plan.featured::after {
  content: "Most popular";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}
.plan h3 {
  font-size: 1.35rem;
  margin-bottom: 4px;
}
.plan .price {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  margin: 10px 0 2px;
}
.plan .price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}
.plan .annual {
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.plan ul {
  list-style: none;
  margin: 8px 0 26px;
  padding: 0;
  flex: 1;
}
.plan li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--text-secondary);
  font-size: 0.96rem;
}
.plan li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.plan.free li::before {
  color: var(--text-muted);
}

/* ---------- Pricing: tightened so the trial CTA sits in view ---------- */
#pricing {
  padding-top: clamp(40px, 6vw, 68px);
  padding-bottom: clamp(44px, 7vw, 80px);
}
#pricing .section-head {
  margin-bottom: clamp(22px, 3vw, 34px);
}
#pricing .plan {
  padding: 26px 28px;
}
#pricing .plan .price {
  margin: 6px 0 2px;
}
#pricing .plan ul {
  margin: 6px 0 20px;
}
#pricing .plan li {
  margin-bottom: 9px;
}

/* ---------- 7-day trial CTA (compact strip in pricing) ---------- */
.trial-cta {
  max-width: 820px;
  margin: 0 auto clamp(22px, 3vw, 30px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 40px);
  background: linear-gradient(
    120deg,
    rgba(183, 224, 220, 0.4),
    rgba(255, 255, 255, 0.55)
  );
  border: 1px solid var(--teal-light);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 2.4vw, 26px) clamp(22px, 3vw, 32px);
  box-shadow: var(--shadow-sm);
}
.trial-copy {
  flex: 1;
}
.trial-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--terracotta);
  padding: 4px 11px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}
.trial-cta h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.trial-cta p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
  max-width: 42ch;
}
.trial-stores {
  flex: none;
  gap: 12px;
}
.trial-stores .store-btn {
  padding: 8px 16px;
}

/* ---------- About / Contact ---------- */
.about {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.about p {
  color: var(--text-secondary);
  font-size: 1.08rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
.form-field {
  margin-bottom: 16px;
}
.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(31, 138, 130, 0.15);
}
.honeypot {
  position: absolute;
  left: -9999px;
}
.form-status {
  margin-top: 12px;
  font-size: 0.9rem;
  min-height: 1.2em;
}
.contact-aside {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.contact-aside a {
  font-weight: 600;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.72);
  padding: 56px 0 32px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer .brand {
  color: #fff;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}
.footer-links a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- Legal pages ---------- */
.legal {
  background: var(--surface);
}
.legal-wrap {
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(48px, 8vw, 88px) 24px;
}
.legal-wrap h1 {
  margin-bottom: 8px;
}
.legal-wrap .updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 36px;
}
.legal-wrap h2 {
  font-size: 1.4rem;
  margin-top: 40px;
}
.legal-wrap h3 {
  margin-top: 26px;
}
.legal-wrap p,
.legal-wrap li {
  color: var(--text-secondary);
}
.legal-wrap ul {
  padding-left: 20px;
}
.legal-wrap li {
  margin-bottom: 8px;
}
.legal-wrap table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 0.92rem;
}
.legal-wrap th,
.legal-wrap td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.legal-wrap th {
  background: var(--surface-alt);
  font-family: var(--font-head);
}
.callout {
  background: rgba(224, 161, 6, 0.1);
  border: 1px solid rgba(224, 161, 6, 0.4);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin: 24px 0;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  margin-bottom: 24px;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .privacy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-visual {
    margin-top: 12px;
  }
  .hero-copy h1 .hl {
    white-space: normal;
  }
  .showcase-row,
  .showcase-row.reverse {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .showcase-row.reverse .showcase-copy {
    order: 0;
  }
  .showcase-copy p {
    margin-inline: auto;
  }
  .showcase-media {
    order: -1;
  }
  .steps,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 720px) {
  .nav-links,
  .nav-cta .btn {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 8px 0;
  }
  .nav.open .nav-links a {
    padding: 14px 24px;
  }
  .steps,
  .feature-grid,
  .pricing-grid,
  .privacy-grid {
    grid-template-columns: 1fr;
  }
  .trial-cta {
    flex-direction: column;
    text-align: center;
  }
  .trial-cta p {
    margin-inline: auto;
  }
  .trial-stores {
    width: 100%;
    justify-content: center;
  }
  .footer-top {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-phone,
  .float-chip,
  .chip-dot,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
