/* Brand accent: Masshtab orange gradient — clay neutrals underneath */
:root {
  --orange: #ff7a00;
  --orange-deep: #e85a00;
  --amber: #ffb300;
  --flame: #ff3d1f;
  --magenta: #ff1b6b;
  --brand-gradient: linear-gradient(125deg, #ffc107 0%, #ff7a00 40%, #ff3d1f 72%, #ff1470 100%);
  --brand-gradient-soft: linear-gradient(135deg, color-mix(in srgb, var(--amber) 22%, white) 0%, color-mix(in srgb, var(--orange) 14%, white) 55%, color-mix(in srgb, var(--magenta) 10%, white) 100%);

  --primary: var(--orange);
  --primary-active: var(--orange-deep);
  --ink: #0a0a0a;
  --body: #3a3a3a;
  --muted: #6a6a6a;
  --canvas: #faf8f6;
  --surface-soft: #f3efeb;
  --surface-card: #ebe6e1;
  --surface-elevated: #ffffff;
  --hairline: #e4ddd6;
  --on-dark: #ffffff;
  --on-accent: #ffffff;

  /* Legacy class aliases → gradient family */
  --pink: var(--orange);
  --teal: var(--orange-deep);
  --lavender: #ffcf66;
  --peach: #ffd9a8;
  --ochre: var(--amber);
  --mint: #ffb08a;

  --font-display: Inter, system-ui, sans-serif;
  --font: Inter, system-ui, sans-serif;
  --max: 1280px;
  --section: 96px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--body);
  background: var(--canvas);
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--ink); }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

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

.top-nav {
  height: 64px;
  background: var(--surface-elevated);
  border-bottom: 1px solid var(--hairline);
  position: sticky;
  top: 0;
  z-index: 50;
}
.top-nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.top-nav__logo {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.03em;
}
.top-nav__links { display: flex; gap: 24px; font-size: 14px; font-weight: 500; }
.top-nav__links a { text-decoration: none; color: var(--body); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 20px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
}
.btn--primary {
  background: var(--primary);
  color: var(--on-accent);
}
.btn--primary:hover { background: var(--primary-active); }
.btn--primary:active { background: var(--flame); }
.btn--secondary { background: var(--surface-elevated); color: var(--ink); border: 1px solid var(--hairline); }
.btn--secondary:hover { border-color: color-mix(in srgb, var(--orange) 45%, var(--hairline)); }
.btn--on-color { background: var(--surface-elevated); color: var(--ink); }

.hero { padding: 70px 0 64px; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero__badge {
  display: inline-block;
  background: var(--surface-card);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 20px;
}
.hero__title {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 40px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -2px;
  color: var(--ink);
  text-wrap: balance;
}
.hero__lead {
  margin: 0 0 28px;
  font-size: 18px;
  color: var(--body);
  max-width: 46ch;
  line-height: 1.55;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 12px; }
.hero__note { font-size: 14px; color: var(--muted); margin: 0; }
.hero__visual {
  background: var(--surface-soft);
  border-radius: 12px;
  padding: 16px;
  overflow: hidden;
}
.hero__visual img { border-radius: 8px; width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.hero__steps { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.hero__step {
  background: var(--surface-elevated);
  padding: 8px 14px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 500;
}
.hero__step strong { color: var(--orange); }

.section { padding: var(--section) 0; }
.section--soft { background: var(--surface-soft); }
.section--teal { background: var(--brand-gradient); color: var(--on-dark); }
.section__title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--ink);
  text-wrap: balance;
}
.section--teal .section__title { color: var(--on-dark); }
.section__pain {
  margin: 0 0 18px;
  max-width: 62ch;
  font-size: 18px;
  line-height: 1.55;
  color: var(--body);
}
.section__lead { margin: 0 0 32px; max-width: 56ch; font-size: 18px; color: var(--muted); }
.section--teal .section__lead { color: rgba(255,255,255,0.78); }
.use-card__tag {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.card--teal .use-card__tag,
.card--gradient .use-card__tag { color: rgba(255,255,255,0.85); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.section__note {
  margin: 24px 0 0;
  font-size: 15px;
  color: var(--muted);
  max-width: 68ch;
  line-height: 1.55;
}
.section--teal .section__note { color: rgba(255,255,255,0.78); }

.contrast { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contrast__card { border-radius: 12px; padding: 32px; min-height: 280px; }
.contrast__card--weak { background: var(--surface-card); color: var(--ink); }
.contrast__card--strong {
  background: var(--brand-gradient);
  color: var(--on-dark);
}
.contrast__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 8px;
  opacity: 0.7;
}
.contrast__head { margin: 0 0 16px; line-height: 1.05;
  font-size: 24px; font-weight: 600; }
.contrast__list { margin: 0; padding: 0; list-style: none; font-size: 15px; }
.contrast__list li { margin-bottom: 8px; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card-grid--2 { grid-template-columns: 1fr 1fr; }
.card {
  background: var(--surface-elevated);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 28px;
}
.card--soft { background: var(--surface-card); border: none; }
.card--pink { background: var(--orange); color: var(--on-accent); border: none; }
.card--lavender { background: var(--lavender); color: var(--ink); border: none; }
.card--peach { background: var(--peach); color: var(--ink); border: none; }
.card--ochre { background: var(--amber); color: var(--ink); border: none; }
.card--mint { background: var(--mint); color: var(--ink); border: none; }
.card--teal,
.card--gradient {
  background: var(--brand-gradient);
  color: var(--on-accent);
  border: none;
}
.card__title { margin: 0 0 10px; line-height: 1.05;
  font-size: 18px; font-weight: 600; color: inherit; }
.card__text { margin: 0; font-size: 15px; line-height: 1.55; opacity: 0.92; }
.card ul { margin: 0; padding: 0; list-style: none; }
.card li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 15px;
}
.card--pink li,
.card--teal li,
.card--gradient li { border-color: rgba(255,255,255,0.22); }

.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto 1fr auto;
  column-gap: 20px;
  row-gap: 0;
  align-items: stretch;
}
.price-card,
.price-card--pink,
.price-card--teal,
.price-card--lavender {
  border-radius: 12px;
  padding: 32px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  min-height: 0;
  background: var(--surface-elevated);
  color: var(--ink);
  border: 1px solid var(--hairline);
}
.price-card__days {
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--muted);
  opacity: 1;
}
.price-card__price {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -1px;
  margin: 0 0 12px;
  line-height: 0.9;
  color: var(--ink);
}
.price-card__title {
  line-height: 1.05;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--ink);
  text-wrap: balance;
}
.price-card__desc {
  font-size: 14px;
  margin: 0 0 24px;
  line-height: 1.5;
  color: var(--body);
  opacity: 1;
}
.price-card__features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  align-self: start;
  width: 100%;
}
@supports not (grid-template-rows: subgrid) {
  .pricing {
    grid-template-rows: none;
    gap: 20px;
  }
  .price-card,
  .price-card--pink,
  .price-card--teal,
  .price-card--lavender {
    display: flex;
    flex-direction: column;
    grid-row: auto;
  }
  .price-card__title {
    min-height: calc(1.05em * 3);
  }
  .price-card__features {
    flex: 1;
  }
}
.price-card__features li {
  margin: 0;
  padding: 11px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink);
}
.price-card__features li:last-child { border-bottom: none; }
.price-card__features li.is-included {
  color: var(--muted);
}
.price-card__features li.is-new {
  color: var(--ink);
  font-weight: 500;
}
.price-card .btn {
  background: var(--brand-gradient);
  color: var(--on-accent);
  border: none;
}
.price-card .btn:hover {
  filter: brightness(0.96);
}
.price-card .btn:active {
  filter: brightness(0.92);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.timeline__item {
  background: var(--surface-elevated);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 24px;
}
.timeline__item:nth-child(1) { border-top: 4px solid var(--amber); }
.timeline__item:nth-child(2) { border-top: 4px solid var(--orange); }
.timeline__item:nth-child(3) { border-top: 4px solid var(--magenta); }
.timeline__day { font-weight: 600; color: var(--ink); margin: 0 0 8px; }
.timeline__text { margin: 0; font-size: 14px; color: var(--muted); }

.io { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.io-card { background: var(--surface-card); border-radius: 8px; padding: 28px; }
.io-card h3 { margin: 0 0 16px; font-size: 18px; font-weight: 600; color: var(--ink); }
.io-card ul { margin: 0; padding: 0; list-style: none; }
.io-card li { padding: 10px 0; border-bottom: 1px solid var(--hairline); font-size: 15px; }

.demo {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
  align-items: stretch;
  background: var(--surface-elevated);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  min-height: 0;
}
.demo > * { min-height: 0; }
.demo--next {
  grid-template-columns: 1fr;
  background: var(--brand-gradient-soft);
}
.demo__body {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
  min-height: 0;
  height: 100%;
  box-sizing: border-box;
}
.demo__body--next { max-width: 52ch; padding: 36px 40px; }
.demo__label {
  display: inline-block;
  align-self: flex-start;
  background: var(--surface-card);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 16px;
}
.demo__title { margin: 0 0 12px; line-height: 1.05;
  font-size: clamp(22px, 2.4vw, 28px); font-weight: 500; letter-spacing: -0.5px; color: var(--ink); text-wrap: balance; }
.demo__desc { margin: 0 0 20px; font-size: 16px; color: var(--body); }
.demo__meta { display: grid; gap: 12px; }
.demo__meta p { margin: 0; font-size: 14px; color: var(--muted); }
.demo__meta strong { display: block; color: var(--ink); margin-bottom: 4px; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; }
.demo__visual {
  position: relative;
  background: var(--surface-soft);
  min-height: 240px;
  display: flex;
  flex-direction: column;
}
.demo__visual-main {
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
}
.demo__visual-main-img,
.demo__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
  background: #f4f4f4;
}
.demo__thumbs {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.55), rgba(10, 10, 10, 0));
  pointer-events: none;
}
.demo__thumb {
  pointer-events: auto;
  appearance: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  transition: border-color 200ms cubic-bezier(0.16, 1, 0.3, 1), transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.demo__thumb:hover { transform: translateY(-1px); }
.demo__thumb.is-active { border-color: #fff; box-shadow: 0 0 0 1px var(--ink); }
.demo__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 0;
  display: block;
}
.demo__checklist {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.demo__checklist li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 15px;
  color: var(--body);
}
.demo__checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
}

/* Scroll-pinned demo story */
.demo-story {
  --demo-nav-offset: 64px;
  padding-top: 0;
  padding-bottom: 0;
}
.demo-story__scroll {
  --demo-steps: 5;
  height: calc(100vh * var(--demo-steps));
  position: relative;
  background: var(--surface-soft);
}
.demo-story__sticky {
  position: sticky;
  top: var(--demo-nav-offset);
  height: calc(100dvh - var(--demo-nav-offset));
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background: var(--surface-soft);
  padding-top: 20px;
  padding-bottom: 16px;
  box-sizing: border-box;
}
.demo-story__frame {
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1;
}
.demo-story__chrome {
  flex: 0 0 auto;
}
.demo-story__intro { margin-bottom: 4px; }
.demo-story__lead {
  margin-bottom: 12px;
  font-size: 16px;
  max-width: 62ch;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.demo-story__progress {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}
.demo-story__dot {
  appearance: none;
  border: 1px solid var(--hairline);
  background: var(--surface-elevated);
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 280ms cubic-bezier(0.16, 1, 0.3, 1), color 280ms cubic-bezier(0.16, 1, 0.3, 1), border-color 280ms cubic-bezier(0.16, 1, 0.3, 1);
}
.demo-story__dot.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.demo-story__stage {
  position: relative;
  width: 100%;
  padding-inline: max(50px, 3.5vw);
  box-sizing: border-box;
  flex: 1 1 auto;
  min-height: 0;
}
.demo-story__panels {
  position: relative;
  height: min(70dvh, calc(100dvh - var(--demo-nav-offset) - 150px));
  min-height: 500px;
  max-height: calc(100dvh - var(--demo-nav-offset) - 150px);
  overflow: hidden;
}
.demo-panel {
  position: absolute;
  inset: 0;
  transform: translate3d(108%, 0, 0);
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
  transition:
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 480ms cubic-bezier(0.16, 1, 0.3, 1);
}
.demo-panel.is-active {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.demo-panel.is-exit-left {
  transform: translate3d(-108%, 0, 0);
  opacity: 0;
  z-index: 1;
}
.demo-panel.is-exit-right {
  transform: translate3d(108%, 0, 0);
  opacity: 0;
  z-index: 1;
}
.demo-panel.is-prep-left {
  transform: translate3d(-108%, 0, 0);
  opacity: 0;
  transition: none;
}
.demo-panel.is-prep-right {
  transform: translate3d(108%, 0, 0);
  opacity: 0;
  transition: none;
}
.demo-story__hint {
  display: none;
}
.demo-story__hint.is-done { opacity: 0.55; }

@media (max-width: 768px) {
  .demo-story__scroll { height: auto; }
  .demo-story__sticky {
    position: relative;
    top: 0;
    height: auto;
    overflow: visible;
    padding: 64px 0;
  }
  .demo-story__stage {
    padding-inline: max(24px, 4vw);
  }
  .demo-story__panels {
    height: auto;
    max-height: none;
    overflow: visible;
    display: grid;
    gap: 20px;
  }
  .demo-panel {
    position: relative;
    inset: auto;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto;
    transition: none;
  }
  .demo-story__progress { display: none; }
}

.exclusions {
  background: var(--surface-elevated);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 28px 32px;
}
.exclusions ul { margin: 0; padding: 0; list-style: none; }
.exclusions li {
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 15px;
  padding-left: 1.25rem;
  position: relative;
}
.exclusions li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--muted);
}
.exclusions li:last-child { border-bottom: none; }

.stats { display: flex; flex-wrap: wrap; gap: 48px; margin-bottom: 40px; }
.stat__num {
  font-family: var(--font-display);
  line-height: 0.9;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -1px;
  color: var(--ink);
  margin: 0;
}
.stat__label { margin: 4px 0 0; font-size: 14px; color: var(--muted); max-width: 22ch; }

.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.case {
  background: var(--surface-elevated);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.case img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.case__body { padding: 16px; }
.case__title { font-weight: 600; margin: 0 0 4px; color: var(--ink); font-size: 15px; }
.case__desc { margin: 0; font-size: 13px; color: var(--muted); }

.compare {
  overflow-x: auto;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  background: var(--surface-elevated);
}
.compare table { width: 100%; border-collapse: collapse; min-width: 720px; }
.compare th, .compare td {
  padding: 16px 20px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--hairline);
  font-size: 14px;
  line-height: 1.5;
}
.compare th {
  background: var(--surface-soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.compare th:first-child, .compare td:first-child {
  font-weight: 600;
  color: var(--ink);
  width: 18%;
}
.compare tr:last-child td { border-bottom: none; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step-card {
  background: var(--surface-elevated);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 24px;
}
.step-card__num {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  margin: 0 0 8px;
}
.step-card__title { margin: 0 0 8px; line-height: 1.05;
  font-size: 16px; font-weight: 600; color: var(--ink); }
.step-card__text { margin: 0; font-size: 14px; color: var(--muted); }

.faq details,
.objections details {
  background: var(--surface-card);
  border-radius: 6px;
  padding: 16px 20px;
  margin-bottom: 8px;
}
.faq summary,
.objections summary { cursor: pointer; font-weight: 600; color: var(--ink); list-style: none; }
.faq summary::-webkit-details-marker,
.objections summary::-webkit-details-marker { display: none; }
.faq p,
.objections p { margin: 12px 0 0; font-size: 14px; color: var(--muted); line-height: 1.55; }

.cta-band {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.88)),
    var(--brand-gradient);
  border-radius: 12px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.form { display: grid; gap: 14px; }
.form label { display: grid; gap: 6px; font-size: 14px; font-weight: 600; color: var(--ink); }
.form input, .form textarea {
  font: inherit;
  height: 44px;
  padding: 0 16px;
  border: 1px solid var(--hairline);
  border-radius: 6px;
  background: var(--surface-elevated);
}
.form textarea { height: auto; min-height: 120px; padding: 12px 16px; resize: vertical; }
.form__error { font-size: 12px; color: #ef4444; min-height: 1em; }
.form__success { display: none; padding: 16px; background: #ecfdf5; border-radius: 6px; font-size: 14px; }
.form__success.is-visible { display: block; }
.form.is-success .form__fields { display: none; }

.footer {
  background: var(--surface-soft);
  padding: 80px 24px;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}
.footer a { color: var(--ink); }

html.no-js .reveal,
.reveal.is-visible { opacity: 1; transform: none; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 450ms ease, transform 450ms ease; }

@media (max-width: 991px) {
  .card-grid, .card-grid--3, .steps { grid-template-columns: 1fr 1fr; }
  .hero__title { font-size: clamp(32px, 7vw, 40px); }
}

@media (max-width: 768px) {
  .top-nav__links { display: none; }
  .hero__grid,
  .contrast,
  .pricing,
  .timeline,
  .io,
  .cta-band,
  .cases,
  .card-grid,
  .card-grid--2,
  .card-grid--3,
  .fit-grid,
  .demo,
  .steps { grid-template-columns: 1fr; }
  .pricing {
    grid-template-rows: none;
    gap: 20px;
  }
  .price-card,
  .price-card--pink,
  .price-card--teal,
  .price-card--lavender {
    display: flex;
    flex-direction: column;
    grid-row: auto;
  }
  .demo__visual img { min-height: 200px; }
  .cta-band { padding: 32px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
}
