@font-face {
  font-family: "Mizgeb Sans";
  src: url("assets/fonts/noto-sans-ethiopic-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  color-scheme: light;
  --paper: #f7f2e8;
  --paper-bright: #fcfaf5;
  --surface: #ffffff;
  --surface-cool: #f6f8fb;
  --ink: #111827;
  --ink-soft: #48566c;
  --line: #d8d2c6;
  --line-cool: #d7e0eb;
  --ochre: #b45309;
  --ochre-dark: #8c3f06;
  --green: #15803d;
  --deep-green: #0f4c3a;
  --red: #b91c1c;
  --purple: #7e22ce;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Mizgeb Sans", "Noto Sans Ethiopic", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-soft: 0 24px 70px rgba(40, 30, 16, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper-bright);
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(180, 83, 9, 0.52);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  text-decoration: none;
}

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

.wrap {
  width: min(100% - 40px, 900px);
  margin-inline: auto;
}

.wide-wrap {
  width: min(100% - 48px, 1400px);
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(252, 250, 245, 0.93);
  border-bottom: 1px solid rgba(216, 210, 198, 0.72);
  backdrop-filter: blur(18px);
}

.home-page .site-header {
  position: absolute;
  inset: 0 0 auto;
  background: linear-gradient(to bottom, rgba(252, 250, 245, 0.98), rgba(252, 250, 245, 0.72), transparent);
  border-bottom: 0;
  backdrop-filter: none;
}

.nav {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 1.28rem;
  font-weight: 820;
  letter-spacing: -0.03em;
  text-decoration: none;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  color: #2f3b4d;
}

.nav-links a {
  position: relative;
  padding-block: 10px;
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--ochre);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a.is-current::after {
  transform: scaleX(1);
  transform-origin: left;
}

.home-hero {
  position: relative;
  display: grid;
  min-height: 860px;
  grid-template-columns: minmax(250px, 0.8fr) minmax(390px, 1.08fr) minmax(390px, 1.12fr);
  align-items: center;
  gap: clamp(30px, 4vw, 72px);
  padding: 138px max(24px, calc((100vw - 1560px) / 2)) 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 36%, rgba(180, 83, 9, 0.07), transparent 28%),
    var(--paper-bright);
}

.home-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(to right, transparent, var(--line), transparent);
}

.ledger-visual {
  position: relative;
  align-self: stretch;
  min-width: 0;
  margin-left: min(-6vw, -40px);
}

.ledger-visual img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  object-position: 63% center;
  filter: saturate(0.9) contrast(0.98);
  mix-blend-mode: multiply;
}

.ledger-visual p {
  position: absolute;
  right: -20px;
  bottom: 94px;
  width: 220px;
  margin: 0;
  color: var(--ochre);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.35;
  transform: rotate(-3deg);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--ochre);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-copy h1,
.section h2,
.trust-section h2,
.closing-cta h2,
.legal-page h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.055em;
}

.hero-copy h1 {
  max-width: 640px;
  font-size: clamp(4.25rem, 6.25vw, 7.5rem);
  line-height: 0.87;
}

.hero-copy h1 em {
  color: var(--ochre);
  font-weight: 500;
}

.hero-copy h1::after {
  display: block;
  width: min(90%, 520px);
  height: 10px;
  margin-top: 18px;
  content: "";
  border-top: 2px solid rgba(180, 83, 9, 0.5);
  border-radius: 50%;
  transform: rotate(-1deg);
}

.hero-lede {
  max-width: 560px;
  margin: 26px 0 0;
  color: #273347;
  font-size: clamp(1.06rem, 1.35vw, 1.35rem);
  line-height: 1.55;
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid var(--ochre);
  border-radius: 8px;
  background: var(--ochre);
  box-shadow: 0 12px 28px rgba(180, 83, 9, 0.17);
  color: #fff;
  font-weight: 760;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  border-color: var(--ochre-dark);
  background: var(--ochre-dark);
  box-shadow: 0 16px 34px rgba(140, 63, 6, 0.22);
  transform: translateY(-2px);
}

.button.secondary {
  border-color: var(--line);
  background: transparent;
  box-shadow: none;
  color: var(--ink);
}

.button.secondary:hover {
  border-color: var(--ochre);
  color: var(--ochre);
}

.text-link,
.trust-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-weight: 750;
  text-decoration-color: rgba(17, 24, 39, 0.3);
  text-underline-offset: 5px;
}

.text-link span,
.trust-link span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.trust-link:hover span {
  transform: translateX(4px);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 44px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero-facts div {
  min-width: 0;
}

.hero-facts dt {
  color: var(--deep-green);
  font-size: 0.79rem;
  font-weight: 820;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 5px 0 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.45;
}

.mobile-product-teaser {
  display: none;
}

.hero-product {
  position: relative;
  z-index: 2;
  min-height: 680px;
  align-self: center;
}

.app-shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.38);
  border-radius: 32px;
  background: #111;
  box-shadow: 0 34px 70px rgba(17, 24, 39, 0.2), 0 4px 10px rgba(17, 24, 39, 0.14);
}

.app-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-shot-home {
  z-index: 2;
  bottom: 8px;
  left: 2%;
  width: min(54%, 332px);
  aspect-ratio: 1080 / 2424;
  transform: rotate(-1.5deg);
}

.app-shot-record {
  z-index: 1;
  top: 12px;
  right: 0;
  width: min(52%, 318px);
  aspect-ratio: 1080 / 2424;
  transform: rotate(1.5deg);
}

.product-note {
  position: absolute;
  z-index: 3;
  margin: 0;
  color: var(--ochre);
  font-family: var(--serif);
  font-size: 1.03rem;
  font-style: italic;
  line-height: 1.3;
}

.note-top {
  top: 2px;
  left: -5%;
  transform: rotate(-4deg);
}

.note-bottom {
  right: 2%;
  bottom: 4px;
  text-align: right;
  transform: rotate(3deg);
}

.section {
  padding: clamp(90px, 10vw, 150px) 0;
}

.experience {
  background: var(--paper-bright);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: clamp(40px, 8vw, 130px);
  padding-bottom: 72px;
  border-bottom: 1px solid var(--line);
}

.split-heading h2,
.evidence-copy h2 {
  font-size: clamp(3.4rem, 6vw, 6.6rem);
  line-height: 0.93;
}

.split-heading > p {
  max-width: 560px;
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  line-height: 1.65;
}

.screen-explorer {
  display: grid;
  grid-template-columns: minmax(350px, 0.82fr) minmax(480px, 1.18fr);
  gap: clamp(56px, 8vw, 130px);
  align-items: center;
  padding-top: 82px;
}

.question-list {
  display: flex;
  flex-direction: column;
}

.question {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 24px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.question:first-child {
  border-top: 1px solid var(--line);
}

.question-index {
  color: #948a78;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.question strong,
.question small {
  display: block;
}

.question strong {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.25vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  transition: color 180ms ease, transform 180ms ease;
}

.question small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.question:hover strong,
.question.is-active strong {
  color: var(--ochre);
  transform: translateX(8px);
}

.question.is-active .question-index {
  color: var(--ochre);
}

.explorer-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.44fr);
  align-items: end;
  gap: 28px;
  margin: 0;
}

.paper-frame {
  position: relative;
  width: min(100%, 430px);
  margin-inline: auto;
  padding: 14px;
  border: 1px solid #cfc6b5;
  border-radius: 36px;
  background: #171a20;
  box-shadow: var(--shadow-soft);
  transform: rotate(1deg);
}

.paper-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1080 / 2424;
  border-radius: 24px;
  object-fit: cover;
  opacity: 1;
  transition: opacity 140ms ease, transform 140ms ease;
}

.paper-frame img.is-changing {
  opacity: 0.35;
  transform: scale(0.99);
}

.explorer-visual figcaption {
  padding-bottom: 34px;
}

.explorer-visual figcaption span {
  display: block;
  color: var(--ochre);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.explorer-visual figcaption p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.6;
}

.evidence {
  background: #f0eadf;
  overflow: hidden;
}

.evidence-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(520px, 1.2fr);
  align-items: center;
  gap: clamp(70px, 10vw, 160px);
}

.evidence-lede {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.7;
}

.evidence-steps {
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.evidence-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(72, 86, 108, 0.2);
}

.evidence-steps > li:last-child {
  border-bottom: 1px solid rgba(72, 86, 108, 0.2);
}

.evidence-steps span {
  color: var(--ochre);
  font-family: var(--serif);
}

.evidence-steps strong {
  font-size: 1.02rem;
}

.evidence-steps p {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.evidence-visual {
  position: relative;
  min-height: 680px;
}

.evidence-card {
  position: absolute;
  margin: 0;
  padding: 12px 12px 0;
  border: 1px solid #cdc4b3;
  background: var(--paper-bright);
  box-shadow: 0 30px 70px rgba(40, 30, 16, 0.16);
}

.evidence-card img {
  width: 100%;
  aspect-ratio: 1080 / 2424;
  object-fit: cover;
}

.evidence-card figcaption {
  padding: 15px 4px 17px;
  color: #675c4b;
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
}

.evidence-entry {
  z-index: 2;
  bottom: 0;
  left: 2%;
  width: min(46%, 330px);
  transform: rotate(-5deg);
}

.evidence-report {
  top: 0;
  right: 1%;
  width: min(48%, 350px);
  transform: rotate(4deg);
}

.trust-section {
  padding: clamp(90px, 10vw, 144px) 0;
  background: var(--deep-green);
  color: #f7f2e8;
}

.trust-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  column-gap: clamp(60px, 10vw, 160px);
}

.trust-section .eyebrow {
  color: #efb97c;
}

.trust-section h2 {
  max-width: 620px;
  font-size: clamp(3.6rem, 6.4vw, 7rem);
  line-height: 0.9;
  color: #fffaf1;
}

.trust-lede {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 250, 241, 0.76);
  font-size: clamp(1.08rem, 1.6vw, 1.4rem);
  line-height: 1.7;
}

.trust-points {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 86px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-points article {
  padding: 34px clamp(20px, 3vw, 44px) 38px;
}

.trust-points article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-points span {
  color: #efb97c;
  font-family: var(--serif);
}

.trust-points h3 {
  margin: 18px 0 8px;
  font-size: 1.22rem;
}

.trust-points p {
  margin: 0;
  color: rgba(255, 250, 241, 0.66);
  font-size: 0.9rem;
  line-height: 1.65;
}

.trust-link {
  grid-column: 1 / -1;
  justify-self: end;
  margin-top: 30px;
  color: #fffaf1;
  text-decoration-color: rgba(255, 250, 241, 0.4);
}

.closing-cta {
  position: relative;
  padding: clamp(100px, 12vw, 180px) 0;
  overflow: hidden;
  background: var(--paper-bright);
  text-align: center;
}

.closing-ledger {
  display: none;
}

.closing-copy {
  position: relative;
  z-index: 1;
}

.closing-cta h2 {
  font-size: clamp(3.8rem, 8vw, 8rem);
  line-height: 0.92;
}

.closing-cta .closing-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 26px auto 0;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.button-row-center {
  justify-content: center;
}

.site-footer {
  background: #0f1724;
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 30px;
  min-height: 130px;
}

.footer-brand {
  color: #fff;
}

.footer-grid > p {
  margin: 0;
  font-size: 0.87rem;
}

.footer-grid nav {
  display: flex;
  gap: 24px;
}

.footer-grid nav a {
  font-size: 0.87rem;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 4px;
}

.copyright {
  color: rgba(255, 255, 255, 0.46);
}

/* Legal and contact pages */
.legal-page {
  background: var(--paper-bright);
}

.legal-page .site-header {
  position: sticky;
  top: 0;
  background: rgba(252, 250, 245, 0.95);
}

.legal-page main.wrap {
  padding: 0 0 100px;
}

.legal-page .hero {
  padding: 88px 0 46px;
  border-bottom: 1px solid var(--line);
}

.legal-page h1 {
  font-size: clamp(3.6rem, 7vw, 6.5rem);
  line-height: 0.95;
}

.legal-page .lede {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 1.14rem;
}

.legal-page .meta {
  color: #6f6a61;
  font-size: 0.9rem;
}

.legal-page section:not(.hero) {
  margin-top: 44px;
}

.legal-page .card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(40, 30, 16, 0.06);
}

.legal-page h2 {
  margin: 46px 0 12px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.legal-page .card h2:first-child,
.legal-page section > h2:first-child {
  margin-top: 0;
}

.legal-page p,
.legal-page li {
  color: #374358;
}

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

.legal-page .notice {
  margin: 26px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--ochre);
  border-radius: 0 10px 10px 0;
  background: #fff4e8;
}

.legal-page .notice p {
  margin: 0;
}

.legal-page .site-footer .footer-grid {
  min-height: 100px;
  display: grid;
}

.legal-page .site-footer p {
  margin: 0;
}

.legal-page .site-footer a {
  color: #fff;
}

.contact-page main.wrap {
  width: min(100% - 40px, 1120px);
}

.contact-page .contact-hero {
  max-width: 850px;
  border-bottom: 0;
  padding-bottom: 18px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: start;
  margin-top: 34px !important;
}

.contact-note {
  position: relative;
  padding: 40px 34px 38px;
  border: 1px solid #cfc5b5;
  background:
    linear-gradient(rgba(180, 83, 9, 0.04) 1px, transparent 1px) 0 42px / 100% 34px,
    var(--paper);
  box-shadow: var(--shadow-soft);
  transform: rotate(-1.2deg);
}

.contact-note::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 25px;
  width: 1px;
  content: "";
  background: rgba(185, 28, 28, 0.18);
}

.contact-note .note-script {
  margin: 0 0 18px;
  color: var(--ochre);
  font-family: var(--serif);
  font-style: italic;
}

.contact-note h2 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
}

.contact-note > p:not(.note-script) {
  line-height: 1.7;
}

.contact-note dl {
  margin: 34px 0 0;
}

.contact-note dl div {
  padding: 15px 0;
  border-top: 1px solid rgba(72, 86, 108, 0.2);
}

.contact-note dt {
  color: var(--ochre);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-note dd {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.contact-form-card {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line-cool);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(17, 24, 39, 0.09);
}

.contact-form-card form {
  display: grid;
  gap: 22px;
}

.contact-form-card label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.91rem;
  font-weight: 720;
}

.contact-form-card label small {
  color: #7b8492;
  font-size: 0.76rem;
  font-weight: 500;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  outline: 3px solid rgba(180, 83, 9, 0.18);
  border-color: var(--ochre);
}

.contact-form-card textarea {
  min-height: 170px;
  resize: vertical;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-submit {
  border: 0;
  cursor: pointer;
  justify-self: start;
}

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

.status {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
}

.status.ok {
  display: block;
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
  color: #166534;
}

.status.err {
  display: block;
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #991b1b;
}

.has-reveal .section-intro,
.has-reveal .screen-explorer,
.has-reveal .evidence-copy,
.has-reveal .evidence-visual,
.has-reveal .trust-grid {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.has-reveal .is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1240px) {
  .home-hero {
    min-height: 840px;
    grid-template-columns: minmax(170px, 0.55fr) minmax(380px, 1fr) minmax(360px, 0.9fr);
    gap: 34px;
  }

  .hero-product {
    min-height: 620px;
  }

  .ledger-visual p,
  .product-note {
    display: none;
  }

  .screen-explorer {
    grid-template-columns: minmax(320px, 0.72fr) minmax(450px, 1.28fr);
    gap: 70px;
  }

  .explorer-visual {
    grid-template-columns: 1fr;
  }

  .explorer-visual figcaption {
    max-width: 440px;
    padding: 0;
  }
}

@media (max-width: 980px) {
  .wide-wrap {
    width: min(100% - 40px, 900px);
  }

  .home-hero {
    grid-template-columns: 1fr 0.82fr;
    min-height: auto;
    padding: 150px 28px 90px;
  }

  .ledger-visual {
    position: absolute;
    inset: 0 auto 0 0;
    width: 38%;
    margin: 0;
    opacity: 0.13;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-copy h1 {
    font-size: clamp(4.5rem, 9.5vw, 6.8rem);
  }

  .hero-product {
    min-height: 600px;
  }

  .app-shot-home {
    width: min(64%, 320px);
  }

  .app-shot-record {
    width: min(62%, 310px);
  }

  .split-heading,
  .screen-explorer,
  .evidence-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 28px;
  }

  .screen-explorer {
    gap: 70px;
  }

  .question-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 28px;
  }

  .question:nth-child(2) {
    border-top: 1px solid var(--line);
  }

  .explorer-visual {
    grid-template-columns: 1fr 0.72fr;
    max-width: 720px;
    margin-inline: auto;
  }

  .evidence-grid {
    gap: 70px;
  }

  .contact-layout {
    grid-template-columns: minmax(230px, 0.72fr) minmax(380px, 1.28fr);
    gap: 40px;
  }

  .evidence-visual {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .trust-grid {
    gap: 28px;
  }

  .trust-points {
    margin-top: 48px;
  }

  .footer-grid {
    grid-template-columns: auto 1fr auto;
    padding-block: 30px;
  }

  .copyright {
    grid-column: 2 / 4;
  }
}

@media (max-width: 700px) {
  .wide-wrap,
  .wrap {
    width: min(100% - 32px, 620px);
  }

  .nav {
    min-height: 78px;
  }

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

  .brand {
    font-size: 1.12rem;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a {
    font-size: 0.8rem;
  }

  .nav-links a:first-child,
  .nav-links a:nth-child(2) {
    display: none;
  }

  .legal-page .nav-links a:nth-child(2) {
    display: block;
  }

  .home-hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 54px;
    padding: 124px 18px 72px;
  }

  .ledger-visual {
    inset: 0 0 auto;
    width: 100%;
    height: 520px;
    opacity: 0.09;
  }

  .ledger-visual img {
    min-height: 0;
  }

  .hero-copy h1 {
    font-size: clamp(3.9rem, 18vw, 5.7rem);
    line-height: 0.91;
  }

  .hero-lede {
    font-size: 1.06rem;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mobile-product-teaser {
    display: block;
    width: 172px;
    margin: 36px auto 42px;
    overflow: hidden;
    border: 1px solid rgba(17, 24, 39, 0.35);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 24px 54px rgba(17, 24, 39, 0.18);
    transform: rotate(2deg);
  }

  .mobile-product-teaser img {
    width: 100%;
    aspect-ratio: 1080 / 2424;
    object-fit: cover;
  }

  .hero-facts div {
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: baseline;
    gap: 12px;
  }

  .hero-facts dd {
    margin: 0;
  }

  .hero-product {
    display: none;
  }

  .app-shot-home {
    left: 0;
    width: 57%;
  }

  .app-shot-record {
    right: 0;
    width: 55%;
  }

  .section {
    padding: 88px 0;
  }

  .split-heading {
    padding-bottom: 48px;
  }

  .split-heading h2,
  .evidence-copy h2 {
    font-size: clamp(3.2rem, 15vw, 4.7rem);
  }

  .screen-explorer {
    padding-top: 54px;
  }

  .question-list {
    grid-template-columns: 1fr;
  }

  .question:nth-child(2) {
    border-top: 0;
  }

  .question strong {
    font-size: 1.8rem;
  }

  .explorer-visual {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .paper-frame {
    width: min(90%, 390px);
  }

  .explorer-visual figcaption {
    max-width: 430px;
    margin-inline: auto;
  }

  .evidence-visual {
    min-height: 580px;
  }

  .evidence-entry {
    width: 54%;
  }

  .evidence-report {
    width: 55%;
  }

  .trust-section h2 {
    font-size: clamp(3.5rem, 16vw, 5rem);
  }

  .trust-points {
    grid-template-columns: 1fr;
  }

  .trust-points article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .trust-link {
    justify-self: start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
  }

  .footer-grid nav {
    flex-wrap: wrap;
  }

  .copyright {
    grid-column: auto;
  }

  .legal-page .hero {
    padding-top: 64px;
  }

  .legal-page h1 {
    font-size: 3.6rem;
  }

  .contact-page main.wrap {
    width: min(100% - 32px, 620px);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-note {
    transform: none;
  }

  .contact-form-card {
    padding: 26px 20px;
  }
}

@media (max-width: 430px) {
  .nav-links {
    gap: 12px;
  }

  .hero-copy h1 {
    font-size: 3.75rem;
  }

  .button-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-product {
    min-height: 510px;
  }

  .app-shot {
    border-radius: 24px;
  }

  .question {
    grid-template-columns: 38px 1fr;
  }

  .evidence-visual {
    min-height: 500px;
  }
}

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

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