@font-face {
  font-family: "IBM Plex Sans";
  src: url("./assets/fonts/ibm-plex-sans-latin.woff2") format("woff2");
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --paper: #f5f7f4;
  --ink: #102c3e;
  --muted: #465f6b;
  --surface: #dcecef;
  --accent-soft: #c8ede7;
  --accent: #176b68;
  --line: #cedbdf;
  --sans: "IBM Plex Sans", Arial, sans-serif;
  --header-height: clamp(80px, 11svh, 114px);
  /* Outer section space, then smaller gaps for related content and card edges. */
  --section-space: clamp(56px, 8svh, 96px);
  --group-space: clamp(32px, 4vw, 48px);
  --column-space: clamp(32px, 6vw, 88px);
  --card-space: clamp(20px, 2.5vw, 32px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
button,
input,
select {
  font: inherit;
}
button,
a,
input,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}
a,
button,
summary {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
button:disabled {
  cursor: default;
}
::selection {
  background: var(--surface);
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2 {
  font-family: var(--sans);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(64px, 6.7vw, 98px);
}
h2 {
  font-size: clamp(43px, 4.3vw, 64px);
}
h3 {
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: -0.025em;
}
em {
  font-style: normal;
  font-weight: inherit;
  color: var(--accent);
}
p {
  color: var(--muted);
}
.wrap {
  width: min(1200px, calc(100% - 96px));
  margin-inline: auto;
}
.header {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -2px;
}
.brand img {
  border-radius: 10px;
}
.brand-dot {
  color: var(--accent);
}
.header nav {
  display: flex;
  gap: 34px;
  font-size: 13px;
  font-weight: 600;
}
.header nav a,
.nav-cta {
  text-decoration: none;
}
.header nav a:hover,
.footer a:hover {
  text-decoration: underline;
}
.nav-cta {
  white-space: nowrap;
  padding: 11px 17px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  gap: 26px;
  align-items: center;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--ink);
  color: white;
  padding: 12px 20px;
  z-index: 20;
}
.skip-link:focus {
  top: 10px;
}
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  color: var(--ink);
  display: flex;
  gap: 10px;
  align-items: center;
}
.status-dot {
  height: 7px;
  width: 7px;
  background: var(--accent);
  border-radius: 50%;
}
.hero {
  /* Reserve the header and equal breathing room inside the visible viewport.
     Short or zoomed windows can grow naturally instead of clipping content. */
  --hero-padding: clamp(24px, 4svh, 56px);
  --hero-art-height: clamp(
    420px,
    calc(100svh - var(--header-height) - 2 * var(--hero-padding)),
    700px
  );
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  min-height: calc(100svh - var(--header-height));
  padding-block: var(--hero-padding);
  gap: 24px;
}
.hero h1 {
  font-size: clamp(56px, min(6.7vw, 11svh), 98px);
  margin-top: clamp(18px, 2.4svh, 29px);
}
.hero-description {
  font-size: 15px;
  max-width: 475px;
  margin-top: 29px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 23px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 29px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  min-height: 53px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  padding: 14px 22px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #28574e;
  transform: translateY(-2px);
}
.button span {
  font-size: 20px;
  line-height: 1;
}
.text-link {
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  gap: 14px;
  align-items: center;
}
.text-link:hover {
  text-decoration: underline;
}
.purchase-note {
  font-size: 14px;
  margin-top: 15px;
}
.hero-art {
  height: var(--hero-art-height);
  padding: 20px 20px 52px;
  display: grid;
  place-items: center;
  position: relative;
  isolation: isolate;
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: 0 5%;
  background: var(--surface);
  border-radius: 18px;
  z-index: -2;
}
.phone {
  position: relative;
  width: 265px;
  padding: 7px;
  background: #202d2c;
  border: 2px solid #77847a;
  border-radius: 37px;
  box-shadow:
    0 25px 45px #143a3425,
    2px 2px 0 #c2ccc2 inset;
  flex-shrink: 0;
}
.phone-display {
  container-type: inline-size;
  overflow: hidden;
  border-radius: 27px;
  background: #0e2a3f;
}
.phone img {
  width: 100%;
  height: auto;
}
.phone-status-bar {
  /* Reserve 32 logical pixels above a 360px-wide capture at every size. */
  height: 8.88889cqw;
  padding-inline: 5.55556cqw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  color: #f5f8fa;
  font:
    500 3.33333cqw/1 Arial,
    sans-serif;
}
.status-icons {
  width: 14.44444cqw;
  height: 4.44444cqw;
}
.status-camera {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #08121c;
  width: 2.77778cqw;
  height: 2.77778cqw;
  box-shadow: 0 0 0 0.27778cqw #1b3549;
  border-radius: 50%;
}
.hero-phone {
  /* The intact screen is 2.3111 times its width, including its status bar.
     Account for the frame and reserve space for the caption below it. */
  width: min(280px, calc((var(--hero-art-height) - 90px) / 2.311111 + 18px));
  max-width: 100%;
  transform: none;
  margin-top: 0;
}
.hero-art .image-caption {
  bottom: 16px;
}
.image-caption {
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.03em;
  font-weight: 500;
  color: var(--muted);
}
.trust-strip {
  border-block: 1px solid var(--line);
}
.trust-strip .wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 24px;
  font-size: 11px;
  font-weight: 600;
}
.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.trust-strip i {
  font-style: normal;
  color: var(--accent);
}
.entry-section {
  padding-block: var(--section-space);
  background: var(--surface);
}
.entry-heading {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: end;
  gap: var(--group-space);
}
.entry-heading h2 {
  margin-top: 22px;
}
.entry-heading > p {
  max-width: 355px;
  font-size: 16px;
}
.entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: var(--group-space);
}
.entry-card {
  --entry-padding: var(--card-space);
  display: flex;
  flex-direction: column;
  padding: var(--entry-padding);
  border-top: 3px solid var(--accent);
  border-radius: 4px 4px 12px 12px;
  background: var(--paper);
}
/* Shared rows keep paired titles, descriptions and film frames aligned. */
.entry-section .entry-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  row-gap: 0;
}
.entry-method {
  color: var(--accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.entry-card h3 {
  margin-top: 16px;
  font-size: clamp(25px, 2.6vw, 36px);
  font-weight: 500;
}
.entry-card > p:last-of-type {
  margin-block: 16px 24px;
  max-width: 420px;
  font-size: 16px;
}
.feature-video {
  margin: 0 0 24px;
  min-width: 0;
}
.feature-video-stage {
  display: grid;
  place-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #e7efed;
}
.feature-video video {
  display: block;
  /* Keep the complete portrait film in view on laptops; narrow screens
     use the available card width. Native fullscreen remains available. */
  width: min(100%, clamp(260px, 46svh, 360px));
  border-radius: 6px;
  height: auto;
  aspect-ratio: 5 / 8;
  background: var(--ink);
}
.feature-video figcaption {
  color: var(--muted);
  font-size: 12px;
  margin: 16px 0 0;
}
.feature-video .text-link {
  margin: 8px 0 0;
  min-height: 28px;
}
.entry-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: auto 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  font-size: 13px;
  font-weight: 600;
  counter-reset: entry-step;
}
.entry-flow li {
  counter-increment: entry-step;
}
.entry-flow li::before {
  content: "0" counter(entry-step) " ";
  color: var(--accent);
  margin-right: 4px;
}
.entry-setup {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
}
.entry-setup p {
  max-width: 720px;
  font-size: 13px;
}
.entry-setup strong {
  color: var(--ink);
}
.entry-setup a {
  flex-shrink: 0;
}
.section {
  padding-block: var(--section-space);
}
.section-intro {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: end;
  column-gap: var(--group-space);
}
.section-intro .eyebrow {
  grid-column: 1 / -1;
}
.section-intro h2 {
  margin-top: 22px;
}
.section-intro > p:last-child {
  margin-top: 24px;
  max-width: 454px;
  font-size: 14px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--group-space);
  margin-top: var(--group-space);
}
.steps article {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.step-number {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.steps h3 {
  margin-top: 20px;
}
.steps p {
  font-size: 14px;
  margin-block: 16px 24px;
  line-height: 1.85;
  max-width: 320px;
}
.step-line,
.expense-mini {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  min-height: 50px;
  border-radius: 5px;
  background: var(--surface);
  font-size: 9px;
  letter-spacing: 0.07em;
}
.step-line > span:nth-child(2) {
  font-size: 18px;
  line-height: 1;
  color: var(--accent);
}
.expense-mini {
  background: var(--surface);
  font-size: 11px;
  letter-spacing: 0;
}
.demo-section {
  background: var(--surface);
  padding-block: var(--section-space);
}
.demo-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--column-space);
  align-items: center;
}
.demo-layout h2 {
  margin-top: 22px;
}
.demo-layout > div:not(.calculator) > p:not(.eyebrow) {
  font-size: 14px;
  margin-top: 25px;
  max-width: 390px;
  line-height: 1.85;
}
.demo-layout > div:not(.calculator) > p.demo-note {
  font-size: 11px;
}
.calculator {
  padding: var(--card-space);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 30px #102c3e08;
}
.calculator-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
.demo-tag {
  font-size: 8px;
  letter-spacing: 0.12em;
  padding: 4px 8px;
  background: var(--accent-soft);
  border-radius: 3px;
}
.calculator label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  margin-top: 20px;
  gap: 12px;
}
.calculator label span {
  font-size: 9px;
  font-weight: 400;
  color: var(--muted);
}
.input-money {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  margin-top: 6px;
  background: white;
}
.input-money:focus-within {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
.input-money input:focus-visible {
  outline: none;
}
.input-money span {
  padding-left: 14px;
  font-size: 15px;
}
.input-money input {
  width: 100%;
  background: transparent;
  border: 0;
  color: var(--ink);
  padding: 10px 12px;
  font-size: 16px;
  min-width: 0;
}
.calculator select {
  width: 100%;
  padding: 10px 12px;
  margin-top: 6px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: white;
  border-radius: 4px;
  font-size: 13px;
}
.allowance-result {
  container-type: inline-size;
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.allowance-result > span {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.allowance-result output {
  font-family: var(--sans);
  font-weight: 500;
  font-size: min(67px, calc(180cqw / var(--amount-length, 6)));
  line-height: 1.2;
  display: block;
  letter-spacing: -0.03em;
}
.allowance-result p {
  font-size: 10px;
}
.local-note {
  margin-top: 20px;
  font-size: 12px;
}
.form-error {
  font-size: 12px;
  color: #9a3326;
  margin-top: 10px;
}
.feature-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--column-space);
  align-items: center;
}
.pace-art {
  /* Frame the intact capture and its caption as a single centered group. */
  --pace-phone-height: clamp(
    420px,
    calc(100svh - 2 * var(--section-space) - 104px),
    540px
  );
  background: var(--surface);
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.pace-art .phone {
  width: min(250px, calc((var(--pace-phone-height) - 18px) / 2.244444 + 18px));
  max-width: 100%;
}
.pace-art .image-caption {
  position: static;
  font-size: 11px;
}
.feature-copy h2 {
  margin-top: 22px;
}
.feature-copy > p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.85;
  margin-top: 25px;
}
.check-list {
  padding: 0;
  list-style: none;
  margin: 26px 0 30px;
  font-size: 12px;
}
.check-list li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.check-list li::before {
  content: "✓";
  margin-right: 14px;
  color: var(--accent);
}
.privacy-section {
  background: var(--ink);
  color: var(--paper);
  padding-block: var(--section-space);
}
.privacy-section .eyebrow {
  color: var(--surface);
}
.privacy-section em {
  color: var(--accent-soft);
}
.privacy-heading {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: end;
  gap: var(--group-space);
  margin-top: 22px;
}
.privacy-heading p {
  max-width: 355px;
  color: #c8dde0;
  font-size: 13px;
  line-height: 1.9;
}
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--group-space);
  margin-top: var(--group-space);
}
.privacy-grid article {
  border-top: 1px solid #465f6b;
  padding-top: 24px;
}
.privacy-symbol {
  color: var(--accent-soft);
  font-size: 10px;
  font-weight: 700;
}
.privacy-grid h3 {
  margin-top: 19px;
  font-size: 20px;
}
.privacy-grid p {
  font-size: 14px;
  line-height: 1.85;
  color: #c8dde0;
  margin-top: 15px;
}
.faq-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: var(--column-space);
}
.faq-section h2 {
  margin-top: 23px;
}
.faq-section > div > p:last-child {
  font-size: 12px;
  margin-top: 25px;
  line-height: 2;
}
.questions {
  border-top: 1px solid var(--line);
}
.questions details {
  border-bottom: 1px solid var(--line);
}
.questions summary {
  list-style: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 8px;
}
.questions summary::-webkit-details-marker {
  display: none;
}
.questions summary span {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  line-height: 1;
  font-size: 20px;
  font-weight: 400;
  color: var(--accent);
}
.questions details[open] summary span {
  transform: rotate(45deg);
}
.answer {
  padding: 0 40px 24px 8px;
  font-size: 14px;
  line-height: 1.85;
}
.closing-section {
  background: var(--surface);
  border-radius: 12px;
  padding: var(--section-space) var(--card-space);
  text-align: center;
  position: relative;
  margin-bottom: 0;
}
.closing-section .eyebrow {
  justify-content: center;
}
.closing-section h2 {
  margin-top: 20px;
  font-size: clamp(34px, 8.6vw, 64px);
}
.closing-section > p:not(.eyebrow):not(.purchase-note) {
  margin-top: 22px;
  font-size: 13px;
}
.closing-section .button {
  margin-top: 27px;
}
.closing-section .purchase-note {
  font-size: 12px;
}
.footer {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-block: var(--section-space) 32px;
}
.footer .brand {
  font-size: 27px;
}
.footer .brand img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}
.footer > p {
  font-size: 11px;
}
.footer nav {
  margin-left: auto;
  display: flex;
  gap: 12px 24px;
  flex-wrap: wrap;
  font-size: 12px;
}
.footer small {
  width: 100%;
  font-size: 10px;
  color: var(--muted);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.legal {
  max-width: 760px;
  padding-block: 70px 100px;
}
.legal h1 {
  font-size: 70px;
  margin: 40px 0 20px;
}
.legal h2 {
  font-size: 35px;
  line-height: 1.2;
  margin: 36px 0 15px;
}
.legal p {
  font-size: 14px;
}
.legal p + p {
  margin-top: 20px;
}
/* Campaign gallery is only included in the local review build. */
.gallery-header {
  padding-top: 35px;
}
.gallery-intro {
  padding-block: 55px 35px;
}
.gallery-intro h1 {
  font-size: 80px;
  margin-top: 17px;
}
.gallery-intro > p:last-child {
  max-width: 690px;
  margin-top: 20px;
  font-size: 14px;
}
.review-pill {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 10px;
  margin-left: auto;
}
.gallery-toolbar {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
  padding-block: 20px;
  border-block: 1px solid var(--line);
}
.gallery-toolbar fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.gallery-toolbar legend {
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 8px;
}
.filter-button {
  padding: 8px 15px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
}
.filter-button[aria-pressed="true"] {
  background: var(--ink);
  color: white;
}
.gallery-toolbar .button {
  margin-left: auto;
  min-height: 42px;
}
.asset-count {
  font-size: 12px;
  padding-top: 22px;
}
.asset-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding-block: 25px 60px;
}
.asset-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.asset-card[hidden] {
  display: none;
}
.asset-preview {
  aspect-ratio: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  padding: 15px;
}
.asset-preview img,
.asset-preview video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px #102c3e10);
}
.asset-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.asset-card h2 {
  font: 700 14px var(--sans);
  letter-spacing: 0;
  line-height: 1.5;
}
.asset-meta {
  font-size: 10px;
  margin-top: 5px;
}
.asset-use {
  font-size: 10px;
  margin-top: 10px;
}
.asset-download {
  margin-top: auto;
  padding-top: 15px;
  font-size: 11px;
  font-weight: 700;
}
.gallery-docs {
  padding: 30px;
  background: var(--surface);
  border-radius: 9px;
  margin-bottom: 60px;
}
.gallery-docs h2 {
  font-size: 35px;
}
.gallery-docs p {
  font-size: 12px;
  margin-top: 12px;
}
.gallery-docs ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  font-size: 12px;
}
.gallery-docs li {
  padding-right: 12px;
}
.gallery-copy {
  padding-bottom: 60px;
}
.gallery-copy h2 {
  font-size: 44px;
}
.gallery-copy h3 {
  margin-top: 30px;
}
.copy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 24px;
}
.copy-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 7px;
}
.copy-panel > p {
  font-size: 11px;
  margin: 10px 0;
}
.copy-panel ul {
  padding-left: 17px;
  font-size: 12px;
}
.copy-panel li {
  margin-bottom: 10px;
}
.copy-panel button {
  padding: 10px 15px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 4px;
  font-size: 12px;
  color: var(--ink);
}
@media (min-width: 1440px) {
  .hero-description {
    font-size: 16px;
  }
}
@media (max-width: 1050px) {
  .wrap {
    width: calc(100% - 60px);
  }
  .hero {
    gap: 12px;
  }
  .hero-actions {
    gap: 16px;
  }
  .hero-description {
    max-width: 360px;
    font-size: 13px;
  }
  .asset-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  :root {
    --section-space: clamp(48px, 8vw, 64px);
    --group-space: 32px;
    --card-space: clamp(20px, 5.5vw, 28px);
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .header {
    height: 85px;
    gap: 14px;
  }
  .header nav {
    gap: 19px;
    font-size: 11px;
  }
  .header nav a:nth-child(n + 2) {
    display: none;
  }
  .brand {
    font-size: 29px;
  }
  .brand img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }
  .nav-cta {
    font-size: 11px;
    padding: 9px 12px;
    gap: 10px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    --hero-padding: 32px;
    --hero-art-height: clamp(500px, 145vw, 600px);
    padding-block: var(--hero-padding);
    gap: 32px;
    min-height: 0;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 0.13em;
  }
  .hero h1 {
    font-size: clamp(54px, 13.6vw, 92px);
    margin-top: 21px;
    line-height: 1.04;
  }
  .hero-description {
    max-width: 460px;
    font-size: 14px;
    margin-top: 25px;
  }
  .hero-actions {
    margin-top: 25px;
    gap: 20px;
  }
  .button {
    min-height: 50px;
    font-size: 12px;
    padding: 13px 18px;
    gap: 25px;
  }
  .text-link {
    font-size: 11px;
  }
  .hero-art {
    width: 100%;
    max-width: 480px;
    align-self: center;
  }
  .hero-art::before {
    inset: 0;
  }
  .image-caption {
    bottom: 5px;
  }
  .trust-strip .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
    padding-block: 24px;
    font-size: 10px;
  }
  .trust-strip span {
    gap: 8px;
  }
  .entry-heading,
  .entry-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .entry-heading h2 {
    font-size: clamp(36px, 8.8vw, 54px);
    margin-top: 18px;
  }
  .entry-heading > p {
    font-size: 15px;
  }
  .entry-grid {
    gap: 24px;
  }
  .feature-video-stage {
    padding: 10px;
  }
  .entry-card > p:last-of-type {
    font-size: 15px;
    margin-block: 15px 24px;
  }
  .entry-flow {
    gap: 10px 18px;
    font-size: 12px;
  }
  .entry-setup {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .section-intro {
    display: block;
  }
  .section-intro h2 {
    margin-top: 18px;
  }
  .section-intro > p:last-child {
    font-size: 13px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: var(--group-space);
  }
  .steps article {
    padding-top: 24px;
  }
  .steps h3 {
    margin-top: 13px;
  }
  .steps p {
    max-width: none;
  }
  .step-line,
  .expense-mini {
    max-width: 340px;
  }
  .demo-layout {
    grid-template-columns: 1fr;
    gap: var(--group-space);
  }
  .demo-layout h2 {
    margin-top: 19px;
  }
  .demo-layout > div:not(.calculator) > p:not(.eyebrow) {
    font-size: 13px;
    margin-top: 20px;
  }
  .feature-pair {
    display: flex;
    flex-direction: column-reverse;
    gap: 32px;
  }
  .feature-copy {
    width: 100%;
  }
  .feature-copy > p:not(.eyebrow) {
    font-size: 13px;
  }
  .pace-art {
    width: 100%;
    --pace-phone-height: 480px;
    padding: 28px 24px;
  }
  .privacy-heading {
    display: block;
    margin-top: 19px;
  }
  .privacy-heading p {
    margin-top: 24px;
    font-size: 12px;
  }
  .privacy-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: var(--group-space);
  }
  .privacy-grid article {
    padding-top: 24px;
  }
  .privacy-grid h3 {
    margin-top: 12px;
  }
  .privacy-grid p {
    font-size: 14px;
    margin-top: 12px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: var(--group-space);
  }
  .faq-section h2 {
    font-size: clamp(36px, 12vw, 50px);
  }
  .faq-section h2 br {
    display: none;
  }
  .faq-section h2 em {
    margin-left: 8px;
  }
  .closing-section {
    border-radius: 9px;
  }
  .footer {
    gap: 20px;
  }
  .footer nav {
    margin-left: 0;
    width: 100%;
    flex-wrap: wrap;
  }
  .footer > p {
    margin-left: auto;
    font-size: 10px;
  }
  .legal {
    padding-top: 40px;
  }
  .legal h1 {
    font-size: 55px;
  }
  .gallery-intro h1 {
    font-size: 58px;
  }
  .gallery-intro > p:last-child {
    font-size: 12px;
  }
  .gallery-toolbar .button {
    margin-left: 0;
  }
  .asset-grid {
    gap: 16px;
    grid-template-columns: 1fr;
  }
  .asset-preview {
    aspect-ratio: 1.15;
  }
  .copy-grid {
    grid-template-columns: 1fr;
  }
  .gallery-docs {
    padding: 23px;
  }
  .gallery-docs ul {
    display: block;
  }
  .gallery-docs li {
    margin: 12px 0;
  }
  .review-pill {
    font-size: 8px;
  }
  .gallery-copy h2 {
    font-size: 36px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

.hero-ownership {
  margin-top: 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.hero .hero-description {
  font-size: 17px;
  line-height: 1.65;
}
@media (max-width: 760px) {
  .hero .hero-description {
    font-size: 16px;
  }
  .hero-ownership {
    font-size: 13px;
    max-width: 310px;
  }
  .hero .purchase-note {
    font-size: 13px;
  }
}

.review-section {
  padding-block: 38px 52px;
  border-top: 1px solid var(--line);
}
.review-section h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  margin: 16px 0;
}
.review-section > p {
  max-width: 800px;
}
.search-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 28px;
}
.search-preview {
  background: #fff;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.search-preview .search-label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}
.search-preview .search-address {
  font-size: 12px;
  margin: 8px 0 16px;
  overflow-wrap: anywhere;
}
.search-preview h3 {
  font-size: 21px;
  line-height: 1.3;
  font-weight: 500;
  color: #173ea4;
  margin-bottom: 10px;
}
.search-preview small {
  display: block;
  margin-top: 20px;
  color: var(--muted);
}
.design-comparisons {
  margin-top: 32px;
}
.design-comparison {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px 300px;
  align-items: center;
  gap: 30px;
  padding-block: 30px;
  border-top: 1px solid var(--line);
}
.design-comparison h3 {
  font-size: 21px;
  margin-bottom: 12px;
}
.design-comparison p {
  font-size: 14px;
}
.design-comparison figure {
  margin: 0;
  max-width: 100%;
}
.design-comparison figcaption {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}
.design-comparison img {
  width: 300px;
  height: auto;
  border: 1px solid var(--line);
}
.research-summary {
  margin-top: 22px;
  font-size: 14px;
}
@media (max-width: 1050px) {
  .design-comparison {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .comparison-copy {
    grid-column: 1 / -1;
  }
}
@media (max-width: 760px) {
  .search-preview-grid,
  .design-comparison {
    grid-template-columns: 1fr;
  }
  .search-preview {
    padding: 22px;
  }
}
