:root {
  --paper: #f4f1ea;
  --surface: #fcfbf8;
  --surface-strong: #ffffff;
  --ink: #1b1a17;
  --muted: #68645c;
  --hairline: #ded8cc;
  --teal: #0c7b6d;
  --teal-deep: #075b51;
  --teal-bright: #26998a;
  --teal-soft: #d8ebe6;
  --teal-pale: #eaf3f0;
  --shadow-soft: 0 12px 30px rgba(25, 34, 31, 0.08);
  --shadow-phone: 0 35px 80px rgba(16, 31, 28, 0.22), 0 12px 24px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --font: "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell,
.site-header {
  width: min(100% - 48px, 1240px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  margin-top: 14px;
  padding: 12px 14px 12px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.interior-page .site-header {
  border-color: rgba(222, 216, 204, 0.78);
  background: rgba(252, 251, 248, 0.98);
  box-shadow: 0 8px 22px rgba(31, 32, 28, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 1.45rem;
  font-weight: 680;
  letter-spacing: -0.04em;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(12, 123, 109, 0.12);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.94rem;
  font-weight: 620;
}

.site-nav > a:not(.button) {
  color: #4f4c46;
  transition: color 140ms ease;
}

.site-nav > a:not(.button):hover,
.site-nav > a[aria-current="page"] {
  color: var(--teal-deep);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  border-radius: 8px;
  background: var(--surface);
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 8px;
  background: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 27px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.98rem;
  font-weight: 680;
  letter-spacing: -0.015em;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  border-color: rgba(27, 26, 23, 0.22);
}

.button:focus-visible,
.text-link:focus-visible,
.site-nav a:focus-visible,
.brand:focus-visible,
.menu-button:focus-visible {
  outline: 3px solid rgba(38, 153, 138, 0.42);
  outline-offset: 3px;
}

.button-small {
  min-height: 48px;
  padding-inline: 22px;
  border-radius: 7px;
  font-size: 0.91rem;
}

.button-dark {
  background: var(--ink);
  color: white;
}

.button-dark:hover {
  background: #302e29;
}

.button-teal {
  background: var(--teal);
  color: white;
}

.button-teal:hover {
  background: var(--teal-deep);
}

.button-outline {
  border-color: var(--hairline);
  background: transparent;
}

.button-outline:hover {
  background: var(--surface);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  min-height: calc(100vh - 100px);
  padding-block: clamp(60px, 8vh, 104px) 92px;
}

.hero-copy {
  z-index: 3;
  padding-right: clamp(16px, 4vw, 56px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 24px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 3px;
  flex: 0 0 auto;
  content: "";
  border-radius: 999px;
  background: currentColor;
}

.section-label,
.figure-label {
  color: var(--teal);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section-label {
  margin: 0 0 24px;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.8rem, 6vw, 5.3rem);
  font-weight: 650;
  letter-spacing: -0.068em;
  line-height: 0.96;
}

.hero-lede {
  max-width: 650px;
  margin: 28px 0 0;
  color: #5f5b52;
  font-size: clamp(1.08rem, 1.65vw, 1.24rem);
  letter-spacing: -0.018em;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.hero-actions > span {
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 560;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 720px;
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid rgba(27, 26, 23, 0.12);
}

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

.proof-row strong {
  margin-bottom: 4px;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  letter-spacing: -0.035em;
}

.proof-row span {
  color: var(--muted);
  font-size: 0.8rem;
}

.device-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 760px;
  overflow: hidden;
  border: 1px solid rgba(7, 91, 81, 0.18);
  border-radius: 12px;
  background: var(--teal-soft);
}

.figure-label {
  position: absolute;
  top: 24px;
  left: 24px;
}

.phone {
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 58px;
  background: #0d0e0e;
  box-shadow: var(--shadow-phone);
}

.phone::after {
  position: absolute;
  top: 21px;
  left: 50%;
  z-index: 4;
  width: 100px;
  height: 27px;
  content: "";
  border-radius: 18px;
  background: #0d0e0e;
  transform: translateX(-50%);
}

.phone-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 46px;
  background: var(--paper);
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-hero {
  width: 372px;
  height: 740px;
  margin-top: 62px;
}

.phone-screen-crop img {
  width: 118%;
  max-width: none;
  height: auto;
  transform: translate(-7.6%, -4.2%);
}

.intro {
  padding-block: 140px 130px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  column-gap: 80px;
  align-items: end;
}

.section-heading .eyebrow,
.section-heading .section-label {
  grid-column: 1 / -1;
}

.section-heading h2,
.showcase h2,
.detail-copy h2,
.privacy-panel h2,
.final-cta h2,
.interior-hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 4.4vw, 4.25rem);
  font-weight: 640;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.section-heading > p:last-child {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.feature-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: rgba(252, 251, 248, 0.48);
}

.feature-item {
  min-height: 270px;
  padding: 30px 31px;
}

.feature-item + .feature-item {
  border-left: 1px solid var(--hairline);
}

.privacy-mark svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.feature-number {
  margin: 0 0 64px;
  color: var(--teal);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.feature-item h3 {
  max-width: 310px;
  margin: 0;
  font-size: 1.46rem;
  letter-spacing: -0.04em;
  line-height: 1.18;
}

.feature-item > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
}

.showcase {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 860px;
  overflow: hidden;
  border-radius: 14px;
  background: #151714;
  color: white;
}

.showcase::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
}

.showcase-copy {
  z-index: 2;
  align-self: center;
  padding: 78px 36px 78px 72px;
}

.showcase .eyebrow,
.showcase .section-label {
  color: #6ccabc;
}

.showcase h2 {
  max-width: 510px;
}

.workflow-list {
  display: grid;
  gap: 0;
  margin: 58px 0 0;
  padding: 0;
  list-style: none;
}

.workflow-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.workflow-list li > span {
  color: #6ccabc;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.workflow-list strong,
.workflow-list p {
  display: block;
}

.workflow-list strong {
  font-size: 1.04rem;
}

.workflow-list p {
  max-width: 390px;
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.phone-pair {
  position: relative;
  min-height: 860px;
  overflow: hidden;
}

.phone-small {
  position: absolute;
  width: 300px;
  height: 650px;
  padding: 10px;
  border-radius: 48px;
}

.phone-small::after {
  top: 17px;
  width: 82px;
  height: 22px;
}

.phone-small .phone-screen {
  border-radius: 39px;
}

.phone-back {
  top: 128px;
  left: 58px;
  z-index: 1;
  opacity: 0.7;
  transform: rotate(-8deg);
}

.phone-front {
  top: 74px;
  right: 52px;
  z-index: 3;
  transform: rotate(6deg);
}

.phone-small .phone-screen img,
.phone-export .phone-screen img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
}

.detail-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
  padding-block: 160px;
}

.detail-visual {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  border: 1px solid rgba(7, 91, 81, 0.18);
  border-radius: 12px;
  background: var(--teal-soft);
}

.phone-export {
  position: absolute;
  right: -16px;
  bottom: -180px;
  z-index: 2;
  width: 326px;
  height: 708px;
  padding: 11px;
  border-radius: 51px;
  transform: rotate(3deg);
}

.phone-export .phone-screen {
  border-radius: 41px;
}

.export-card {
  position: absolute;
  top: 76px;
  left: 44px;
  z-index: 4;
  width: 62%;
  padding: 27px;
  border: 1px solid rgba(7, 91, 81, 0.16);
  border-radius: 8px;
  background: var(--surface);
}

.export-card .section-label {
  margin-bottom: 35px;
}

.export-card strong {
  display: block;
  max-width: 250px;
  font-size: 1.55rem;
  letter-spacing: -0.045em;
  line-height: 1.15;
}

.export-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.detail-copy > p:not(.eyebrow) {
  max-width: 555px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.detail-points {
  display: grid;
  gap: 24px;
  margin-top: 45px;
}

.detail-points > div {
  padding: 22px 0 0 22px;
  border-top: 1px solid var(--hairline);
  border-left: 3px solid var(--teal);
}

.detail-points strong,
.detail-points span {
  display: block;
}

.detail-points strong {
  font-size: 1.05rem;
}

.detail-points span {
  max-width: 430px;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.91rem;
}

.privacy-section {
  padding-bottom: 145px;
}

.privacy-panel {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) minmax(300px, 0.63fr);
  gap: 38px;
  align-items: start;
  padding: 70px;
  border: 1px solid rgba(12, 123, 109, 0.16);
  border-radius: 12px;
  background: var(--teal-pale);
}

.privacy-mark {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border-radius: 8px;
  background: var(--teal);
  color: white;
}

.privacy-mark svg {
  width: 32px;
}

.privacy-panel h2 {
  max-width: 680px;
  font-size: clamp(2.35rem, 4vw, 3.65rem);
}

.privacy-panel > div:nth-child(2) > p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: #4f625e;
  font-size: 1.04rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: var(--teal-deep);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.text-link:hover {
  text-decoration: underline;
}

.privacy-facts {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(7, 91, 81, 0.16);
}

.privacy-facts > div {
  padding: 19px 0;
  border-bottom: 1px solid rgba(7, 91, 81, 0.16);
}

.privacy-facts dt {
  font-weight: 700;
}

.privacy-facts dd {
  margin: 3px 0 0;
  color: #5c706b;
  font-size: 0.88rem;
}

.final-cta {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 520px;
  overflow: hidden;
  margin-bottom: 36px;
  padding: 68px 74px;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  background: var(--surface-strong);
}

.final-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.final-cta h2 {
  font-size: clamp(3rem, 5vw, 4.7rem);
}

.final-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.final-logo {
  position: absolute;
  right: -90px;
  bottom: -98px;
  width: 430px;
  opacity: 0.09;
  transform: rotate(-8deg);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  padding-block: 38px 44px;
  border-top: 1px solid var(--hairline);
}

.footer-brand {
  font-size: 1.18rem;
}

.footer-brand img {
  width: 38px;
  height: 38px;
  border-radius: 11px;
}

.footer-links {
  display: flex;
  gap: 25px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--teal-deep);
}

.site-footer > p {
  grid-column: 1 / -1;
  margin: 0;
  color: #817c72;
  font-size: 0.78rem;
}

/* Interior pages */
.interior-main {
  min-height: 68vh;
}

.interior-hero {
  max-width: 930px;
  padding-block: 120px 74px;
  margin-inline: auto;
}

.interior-hero h1 {
  font-size: clamp(3.5rem, 7vw, 6rem);
}

.interior-hero > p:last-child {
  max-width: 700px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.62;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1040px;
}

.contact-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  align-items: flex-start;
  padding: 42px;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  background: var(--surface);
}

.contact-card > span {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card h2 {
  margin: 22px 0 0;
  font-size: 2rem;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.contact-card p {
  flex: 1;
  margin: 18px 0 32px;
  color: var(--muted);
}

.contact-card small {
  margin-top: 14px;
  color: var(--muted);
}

.support-note {
  max-width: 1040px;
  margin-top: 20px;
  margin-bottom: 120px;
  padding: 30px 34px;
  border-radius: 12px;
  background: var(--teal-pale);
}

.support-note p {
  margin: 5px 0 0;
  color: #52655f;
}

/* Privacy policy */
.legal-shell {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: 70px;
  align-items: start;
  max-width: 1090px;
  padding-bottom: 140px;
}

.legal-index {
  position: sticky;
  top: 115px;
  padding: 24px 0;
  border-top: 1px solid var(--hairline);
}

.legal-index strong {
  display: block;
  margin-bottom: 14px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-index a {
  display: block;
  padding: 6px 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.legal-index a:hover {
  color: var(--teal-deep);
}

.legal {
  min-width: 0;
  padding: 45px 50px 70px;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  background: var(--surface);
}

.legal > h1:first-child {
  display: none;
}

.legal h2 {
  margin: 58px 0 18px;
  scroll-margin-top: 118px;
  font-size: 1.75rem;
  letter-spacing: -0.04em;
  line-height: 1.14;
}

.legal h2:first-of-type {
  margin-top: 0;
}

.legal p,
.legal li,
.legal td,
.legal th {
  color: #504d46;
  font-size: 0.96rem;
  line-height: 1.72;
}

.legal p {
  margin: 0 0 18px;
}

.legal ul,
.legal ol {
  margin: 0 0 24px;
  padding-left: 24px;
}

.legal li + li {
  margin-top: 10px;
}

.legal strong {
  color: var(--ink);
}

.legal em {
  color: var(--muted);
}

.legal a {
  color: var(--teal-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal table {
  display: block;
  width: 100%;
  margin: 28px 0;
  overflow-x: auto;
  border-collapse: collapse;
}

.legal th,
.legal td {
  min-width: 150px;
  padding: 14px;
  border: 1px solid var(--hairline);
  text-align: left;
  vertical-align: top;
}

.legal th {
  background: var(--teal-pale);
  color: var(--ink);
}

.legal-contact {
  margin-top: 45px;
  padding: 22px 24px;
  border-radius: 8px;
  background: var(--teal-pale);
}

.legal-contact p {
  margin: 5px 0 0;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr 390px;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 6.7vw, 4.4rem);
  }

  .phone-hero {
    width: 330px;
    height: 656px;
  }

  .device-stage {
    min-height: 680px;
  }

  .showcase-copy {
    padding-left: 48px;
  }

  .phone-back {
    left: 20px;
  }

  .phone-front {
    right: 18px;
  }

  .privacy-panel {
    grid-template-columns: 68px 1fr;
  }

  .privacy-facts {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  .section-shell,
  .site-header {
    width: min(100% - 32px, 680px);
  }

  .site-header {
    top: 8px;
    min-height: 68px;
    margin-top: 8px;
    padding: 10px 12px 10px 16px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px;
    border: 1px solid var(--hairline);
    border-radius: 8px;
    background: rgba(252, 251, 248, 0.98);
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a:not(.button) {
    padding: 12px 14px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 85px;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 12vw, 4.7rem);
  }

  .device-stage {
    min-height: 720px;
    margin-top: 46px;
  }

  .proof-row {
    gap: 14px;
  }

  .intro {
    padding-block: 110px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    row-gap: 25px;
  }

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

  .feature-item {
    min-height: auto;
  }

  .feature-item + .feature-item {
    border-top: 1px solid var(--hairline);
    border-left: 0;
  }

  .feature-number {
    margin-bottom: 28px;
  }

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

  .showcase-copy {
    padding: 72px 40px 28px;
  }

  .phone-pair {
    min-height: 740px;
  }

  .phone-back {
    top: 80px;
    left: 8%;
  }

  .phone-front {
    top: 26px;
    right: 8%;
  }

  .detail-strip {
    grid-template-columns: 1fr;
    gap: 65px;
    padding-block: 110px;
  }

  .detail-copy {
    grid-row: 1;
  }

  .privacy-panel {
    grid-template-columns: 1fr;
    padding: 48px;
  }

  .privacy-facts {
    grid-column: 1;
  }

  .final-cta {
    padding: 58px 48px;
  }

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

  .legal-shell {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .legal-index {
    position: static;
    display: none;
  }
}

@media (max-width: 560px) {
  .section-shell,
  .site-header {
    width: min(100% - 24px, 520px);
  }

  .brand {
    font-size: 1.22rem;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .hero h1 {
    font-size: clamp(3.12rem, 15vw, 4.2rem);
    line-height: 0.98;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .proof-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .proof-row > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: baseline;
  }

  .device-stage {
    min-height: 625px;
  }

  .phone-hero {
    width: 286px;
    height: 568px;
    padding: 9px;
    border-radius: 45px;
  }

  .phone-hero .phone-screen {
    border-radius: 37px;
  }

  .phone::after {
    top: 16px;
    width: 78px;
    height: 21px;
  }

  .section-heading h2,
  .showcase h2,
  .detail-copy h2,
  .privacy-panel h2,
  .final-cta h2 {
    font-size: clamp(2.45rem, 11vw, 3.5rem);
  }

  .feature-item {
    padding: 27px;
  }

  .showcase {
    border-radius: 12px;
  }

  .showcase-copy {
    padding: 58px 26px 24px;
  }

  .phone-pair {
    min-height: 600px;
  }

  .phone-small {
    width: 232px;
    height: 503px;
    border-radius: 38px;
  }

  .phone-small .phone-screen {
    border-radius: 30px;
  }

  .phone-back {
    top: 70px;
    left: -22px;
  }

  .phone-front {
    top: 20px;
    right: -18px;
  }

  .detail-visual {
    min-height: 570px;
  }

  .export-card {
    top: 44px;
    left: 22px;
    width: 76%;
    padding: 21px;
  }

  .phone-export {
    right: -60px;
    bottom: -165px;
    width: 280px;
    height: 608px;
  }

  .privacy-panel {
    padding: 34px 26px;
    border-radius: 12px;
  }

  .final-cta {
    min-height: 530px;
    padding: 48px 28px;
    border-radius: 12px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .interior-hero {
    padding-block: 90px 58px;
  }

  .interior-hero h1 {
    font-size: clamp(3.2rem, 16vw, 4.4rem);
  }

  .contact-card {
    min-height: 390px;
    padding: 30px;
  }

  .legal {
    padding: 32px 22px 50px;
    border-radius: 12px;
  }

  .legal h2 {
    font-size: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
