@font-face {
  font-family: "Manrope";
  src: url("/assets/manrope-var.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("/assets/source-sans-3-var.ttf") format("truetype");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
}

:root {
  color-scheme: light;
  --bg: oklch(1 0 0);
  --surface: oklch(0.965 0.008 210);
  --surface-strong: oklch(0.925 0.014 220);
  --ink: oklch(0.17 0.025 255);
  --muted: oklch(0.43 0.027 235);
  --primary: oklch(0.55 0.091 210);
  --primary-deep: oklch(0.35 0.085 220);
  --navy: oklch(0.12 0.04 260);
  --jade: oklch(0.59 0.12 165);
  --line: oklch(0.87 0.012 225);
  --white: oklch(1 0 0);
  --danger: oklch(0.52 0.18 28);
  --success: oklch(0.45 0.11 158);
  --display: "Manrope", Arial, sans-serif;
  --body: "Source Sans 3", Arial, sans-serif;
  --shell: min(1180px, calc(100% - 48px));
  --section: clamp(76px, 9vw, 132px);
  --shadow: 0 24px 70px oklch(0.12 0.04 260 / 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

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

:focus-visible {
  outline: 3px solid var(--jade);
  outline-offset: 3px;
}

::selection {
  background: oklch(0.78 0.1 205);
  color: var(--navy);
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.05;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.1rem, 7vw, 6.8rem);
}

h2 {
  font-size: clamp(2.2rem, 4.4vw, 4.3rem);
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
}

p {
  color: var(--muted);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--navy);
  transform: translateY(-160%);
}

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

.geo-bar {
  background: var(--navy);
  color: oklch(0.9 0.02 220);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.geo-bar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header {
  position: relative;
  z-index: 30;
  background: color-mix(in oklch, var(--white) 96%, transparent);
  border-bottom: 1px solid var(--line);
}

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

.symbol-link,
.menu-button,
.primary-nav a {
  min-width: 44px;
  min-height: 44px;
}

.symbol-link {
  display: inline-grid;
  place-items: center;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  display: block;
  background: var(--navy);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark i,
.brand-mark b {
  position: absolute;
  content: "";
  display: block;
  border-radius: 50%;
  background: var(--white);
}

.brand-mark::before {
  width: 7px;
  height: 7px;
  left: 8px;
  top: 8px;
}

.brand-mark::after {
  width: 6px;
  height: 6px;
  right: 7px;
  bottom: 7px;
}

.brand-mark i {
  width: 5px;
  height: 5px;
  right: 8px;
  top: 8px;
}

.brand-mark b {
  width: 9px;
  height: 2px;
  left: 13px;
  top: 16px;
  border-radius: 0;
  transform: rotate(44deg);
  transform-origin: left center;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border-radius: 10px;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 600;
  text-decoration: none;
}

.primary-nav a[aria-current="page"]:not(.nav-cta) {
  background: oklch(0.93 0.025 286);
  color: var(--navy);
}

.primary-nav .nav-cta {
  margin-left: 8px;
  padding-inline: 20px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
}

.menu-button {
  display: none;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: min(820px, calc(100vh - 116px));
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 40%, oklch(0.82 0.085 206 / 0.58), transparent 29%),
    linear-gradient(135deg, oklch(0.985 0.006 225), oklch(0.94 0.025 225));
}

.hero-stage {
  min-height: min(820px, calc(100vh - 116px));
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  align-items: center;
  gap: clamp(32px, 6vw, 86px);
  padding-block: clamp(70px, 9vw, 116px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 850px;
  margin-bottom: 28px;
}

.hero-copy > p {
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(1.12rem, 1.8vw, 1.38rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

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

.button-secondary {
  border: 1px solid oklch(0.6 0.04 225);
  background: transparent;
  color: var(--navy);
}

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

.hero-visual {
  position: relative;
  width: min(700px, 57vw);
  margin: 0 -14vw 0 0;
  transform: rotate(-1.8deg);
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  width: 70%;
  aspect-ratio: 1;
  content: "";
  right: 8%;
  bottom: -8%;
  border-radius: 50%;
  background: oklch(0.7 0.09 197 / 0.34);
  filter: blur(20px);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid oklch(0.78 0.035 220);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.capability-band {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.capability-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.capability-row p {
  margin: 0;
  padding: 31px clamp(18px, 3vw, 42px);
}

.capability-row p + p {
  border-left: 1px solid var(--line);
}

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

.capability-row strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-family: var(--display);
}

.capability-row span {
  font-size: 0.94rem;
}

.section {
  padding-block: var(--section);
}

.section-note,
.page-context {
  margin-bottom: 18px;
  color: var(--primary-deep);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lead {
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.38;
}

.local-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(48px, 8vw, 110px);
}

.local-heading h2,
.section-heading h2 {
  margin-bottom: 0;
}

.local-copy {
  padding-top: 46px;
}

.route-steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 32px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.route-steps li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  padding: 34px 28px 0 0;
}

.route-steps li + li {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.route-steps li > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-strong);
  color: var(--primary-deep);
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 800;
}

.route-steps h3 {
  margin-bottom: 10px;
}

.route-steps p {
  margin-bottom: 0;
  font-size: 0.98rem;
}

.collection-section {
  background: var(--surface);
}

.section-heading {
  max-width: 900px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 44px;
  margin-bottom: 54px;
}

.section-heading p {
  margin-bottom: 4px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.collection-grid article,
.price-inputs article,
.plan-grid article,
.security-principles article {
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.collection-grid .collection-feature {
  min-height: 460px;
  display: flex;
  grid-row: span 2;
  flex-direction: column;
  justify-content: space-between;
  background: var(--navy);
  color: var(--white);
}

.collection-feature p {
  color: oklch(0.82 0.02 235);
}

.collection-feature > span {
  color: oklch(0.76 0.07 180);
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 700;
}

.collection-route {
  background: var(--surface-strong) !important;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--primary-deep);
  font-family: var(--display);
  font-weight: 700;
}

.method-section {
  padding-block: 0;
  background: var(--navy);
  color: var(--white);
}

.method-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 9vw, 126px);
  padding-block: var(--section);
}

.method-copy .section-note {
  color: oklch(0.75 0.09 185);
}

.method-copy p {
  color: oklch(0.79 0.02 230);
}

.method-copy h2 {
  color: var(--white);
}

.method-copy .button {
  margin-top: 14px;
  border-color: oklch(0.45 0.04 250);
  color: var(--white);
}

.method-list {
  align-self: center;
}

.method-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid oklch(0.35 0.035 250);
}

.method-list article:first-child {
  border-top: 1px solid oklch(0.35 0.035 250);
}

.method-list span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: oklch(0.25 0.055 248);
  color: oklch(0.78 0.09 185);
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 800;
}

.method-list h3 {
  margin-bottom: 6px;
  color: var(--white);
}

.method-list p {
  margin-bottom: 0;
  color: oklch(0.75 0.02 235);
}

.pricing-band {
  background: var(--primary-deep);
  color: var(--white);
}

.pricing-band-inner,
.next-step-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.pricing-band .section-note {
  color: oklch(0.82 0.06 196);
}

.pricing-band p:not(.section-note) {
  max-width: 570px;
  color: oklch(0.91 0.025 210);
}

.pricing-band h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.security-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(50px, 10vw, 145px);
  align-items: start;
}

.security-core {
  position: sticky;
  top: 40px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface);
}

.security-core::before,
.security-core::after {
  position: absolute;
  content: "";
  border: 1px solid var(--line);
  border-radius: 50%;
}

.security-core::before {
  inset: 13%;
}

.security-core::after {
  inset: 28%;
  border-color: var(--primary);
}

.security-core strong {
  z-index: 1;
  max-width: 140px;
  font-family: var(--display);
  font-size: 1.1rem;
  line-height: 1.2;
  text-align: center;
}

.security-core > .brand-mark {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.security-core > p {
  position: absolute;
  z-index: 2;
  right: 18%;
  bottom: 11%;
  left: 18%;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.35;
  text-align: center;
}

.security-copy article {
  padding: 0 0 34px;
  border-bottom: 1px solid var(--line);
}

.security-copy article + article {
  padding-top: 34px;
}

.faq-section {
  background: var(--surface);
}

.faq-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 52px;
}

.faq-heading h2 {
  margin-bottom: 0;
}

.faq-search {
  width: min(350px, 100%);
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
}

.faq-search span {
  display: block;
  margin-bottom: 7px;
}

.faq-search input {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 14px;
}

.faq-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.faq-card summary {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: center;
  gap: 16px;
  padding: 20px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary span {
  position: relative;
  width: 20px;
  height: 20px;
}

.faq-card summary span::before,
.faq-card summary span::after {
  position: absolute;
  top: 9px;
  left: 3px;
  width: 14px;
  height: 2px;
  content: "";
  background: var(--primary-deep);
}

.faq-card summary span::after {
  transform: rotate(90deg);
}

.faq-card[open] summary span::after {
  transform: rotate(0);
}

.faq-card p {
  padding: 0 20px 22px;
  margin-bottom: 0;
  font-size: 0.96rem;
}

.faq-empty {
  margin-top: 26px;
}

.page-hero {
  min-height: 520px;
  display: grid;
  align-items: end;
  padding-block: 90px;
  background:
    radial-gradient(circle at 85% 26%, oklch(0.75 0.08 205 / 0.45), transparent 24%),
    linear-gradient(135deg, var(--surface), oklch(0.91 0.025 222));
}

.page-hero-inner {
  max-width: 970px;
}

.page-hero h1 {
  margin-bottom: 24px;
}

.page-hero p:not(.page-context) {
  max-width: 750px;
  font-size: 1.28rem;
}

.page-hero .button {
  margin-top: 20px;
}

.pricing-layout,
.integration-matrix,
.readiness-layout,
.control-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 9vw, 120px);
}

.price-inputs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.price-inputs article {
  min-height: 190px;
}

.price-inputs h3,
.plan-grid h3,
.security-principles h3 {
  font-size: 1.2rem;
}

.plan-section,
.lifecycle-section,
.control-section {
  background: var(--surface);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.plan-grid article {
  min-height: 390px;
}

.plan-grid .plan-featured {
  background: var(--navy);
  color: var(--white);
}

.plan-featured p,
.plan-featured li {
  color: oklch(0.78 0.02 230);
}

.plan-grid ul,
.readiness-layout ul,
.security-principles ul,
.control-layout ul {
  padding-left: 20px;
  color: var(--muted);
}

.plan-grid li + li,
.readiness-layout li + li,
.security-principles li + li,
.control-layout li + li {
  margin-top: 8px;
}

.next-step {
  padding-block: 70px;
}

.next-step h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.3vw, 3.2rem);
}

.integration-matrix {
  align-items: start;
}

.integration-intro {
  position: sticky;
  top: 40px;
}

.integration-options {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.integration-options article {
  display: grid;
  grid-template-columns: minmax(130px, 0.55fr) 1.45fr;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.integration-options h3,
.integration-options p {
  margin-bottom: 0;
}

.lifecycle {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.lifecycle li {
  padding: 30px 24px 0;
  border-left: 1px solid var(--line);
}

.lifecycle li:first-child {
  padding-left: 0;
  border-left: 0;
}

.lifecycle span {
  display: block;
  margin-bottom: 46px;
  color: var(--primary-deep);
  font-family: var(--display);
  font-weight: 800;
}

.readiness-layout > div,
.control-layout > div {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.security-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.security-principles .security-lead {
  grid-column: span 2;
  background: var(--navy);
  color: var(--white);
}

.security-lead p {
  color: oklch(0.78 0.02 230);
}

.truth-note {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  padding: 28px 0;
  border-block: 1px solid var(--line);
}

.truth-note strong {
  color: var(--primary-deep);
  font-family: var(--display);
}

.truth-note p {
  margin-bottom: 0;
}

.editorial {
  max-width: 830px;
}

.editorial > * + h2 {
  margin-top: 70px;
}

.editorial h2 {
  font-size: clamp(1.9rem, 3vw, 2.75rem);
}

.editorial a {
  color: var(--primary-deep);
}

.contact-section {
  background: var(--surface);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 9vw, 120px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 40px;
}

.contact-points {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.contact-points li {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.contact-points strong {
  display: block;
  color: var(--ink);
  font-family: var(--display);
}

.merchant-form {
  padding: clamp(26px, 4vw, 50px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

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

.form-grid label:not(.honeypot) {
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 700;
}

.form-grid label > span:first-child {
  display: block;
  margin-bottom: 7px;
}

.form-grid input:not([type="checkbox"]),
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 49px;
  padding: 11px 13px;
  border: 1px solid oklch(0.76 0.02 225);
  border-radius: 10px;
  background: var(--white);
}

.form-grid textarea {
  min-height: 150px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--primary-deep);
}

.form-wide {
  grid-column: 1 / -1;
}

.field-hint {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 400;
}

.consent {
  display: grid !important;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted) !important;
  font-family: var(--body) !important;
  font-weight: 400 !important;
}

.consent input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--primary-deep);
}

.merchant-form > .button {
  margin-top: 26px;
}

.merchant-form [disabled] {
  cursor: wait;
  opacity: 0.68;
}

.form-status:empty {
  display: none;
}

.form-status {
  margin-bottom: 22px;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--surface);
}

.form-status[data-state="success"] {
  border-left: 4px solid var(--success);
}

.form-status[data-state="error"] {
  border-left: 4px solid var(--danger);
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.site-footer {
  padding-top: 22px;
  background: var(--navy);
  color: var(--white);
}

.footer-bento {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr 1.1fr;
  gap: 12px;
}

.footer-block {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 28px;
  border: 1px solid oklch(0.28 0.035 250);
  border-radius: 14px;
}

.footer-block strong {
  margin-bottom: 10px;
  color: oklch(0.8 0.03 225);
  font-family: var(--display);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-block a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  color: var(--white);
  text-decoration: none;
}

.footer-block p {
  color: oklch(0.73 0.02 235);
}

.footer-local .brand-mark {
  margin-bottom: auto;
  background: var(--white);
}

.footer-local .brand-mark::before,
.footer-local .brand-mark::after,
.footer-local .brand-mark i,
.footer-local .brand-mark b {
  background: var(--navy);
}

.footer-legal {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: oklch(0.66 0.02 235);
  font-size: 0.86rem;
}

.footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-legal a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: inherit;
}

.not-found {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.not-found h1 {
  font-size: clamp(3rem, 7vw, 6rem);
}

@media (hover: hover) and (pointer: fine) {
  .primary-nav a:not(.nav-cta):hover {
    background: var(--surface);
  }

  .primary-nav .nav-cta:hover,
  .button-primary:hover {
    background: var(--primary-deep);
  }

  .button-secondary:hover {
    border-color: var(--primary-deep);
    background: var(--white);
  }

  .text-link:hover,
  .footer-block a:hover,
  .footer-legal a:hover {
    text-decoration: underline;
  }
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 40px, 760px);
  }

  .hero-stage,
  .local-layout,
  .method-layout,
  .security-layout,
  .pricing-layout,
  .integration-matrix,
  .readiness-layout,
  .control-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    padding-top: 80px;
  }

  .hero-visual {
    width: 105%;
    margin: 10px -12% -15% auto;
  }

  .local-copy {
    padding-top: 0;
  }

  .collection-grid,
  .plan-grid,
  .security-principles,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collection-grid .collection-feature {
    grid-row: span 1;
    min-height: 320px;
  }

  .security-core {
    position: relative;
    top: auto;
    width: min(420px, 78vw);
  }

  .integration-intro,
  .contact-copy {
    position: relative;
    top: auto;
  }

  .lifecycle {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 0;
  }

  .footer-bento {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 32px);
    --section: 76px;
  }

  body {
    font-size: 17px;
  }

  .geo-bar-inner {
    min-height: 40px;
    align-items: center;
  }

  .geo-bar-inner span:last-child {
    display: none;
  }

  .nav-shell {
    min-height: 70px;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 110px);
    padding: 18px 16px 24px;
    overflow-y: auto;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 34px oklch(0.12 0.04 260 / 0.13);
  }

  .primary-nav[data-open="true"] {
    display: grid;
  }

  .primary-nav a {
    justify-content: flex-start;
    padding: 13px 15px;
  }

  .primary-nav .nav-cta {
    justify-content: center;
    margin: 7px 0 0;
  }

  .hero,
  .hero-stage {
    min-height: auto;
  }

  .hero-stage {
    gap: 48px;
    padding-block: 68px 48px;
  }

  h1 {
    font-size: clamp(3rem, 14.5vw, 4.5rem);
  }

  .hero-copy > p {
    font-size: 1.1rem;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    width: 116%;
    margin: 0 -23% -20% auto;
  }

  .capability-row,
  .route-steps,
  .collection-grid,
  .section-heading,
  .plan-grid,
  .security-principles,
  .faq-grid,
  .price-inputs,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .capability-row p + p {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .route-steps {
    gap: 0;
  }

  .route-steps li,
  .route-steps li + li {
    padding: 25px 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .route-steps li:first-child {
    padding-top: 30px;
  }

  .collection-grid .collection-feature {
    min-height: 360px;
  }

  .pricing-band-inner,
  .next-step-inner,
  .faq-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-search {
    width: 100%;
  }

  .page-hero {
    min-height: 450px;
    padding-block: 70px;
  }

  .integration-options article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .lifecycle {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .lifecycle li,
  .lifecycle li:first-child {
    padding: 26px 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .lifecycle span {
    margin-bottom: 12px;
  }

  .security-principles .security-lead {
    grid-column: auto;
  }

  .truth-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .form-wide {
    grid-column: auto;
  }

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

  .footer-block {
    min-height: 190px;
  }

  .footer-legal {
    min-height: 120px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: hero-copy-in 700ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }

  .hero-visual {
    animation: hero-visual-in 850ms 100ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }

  .primary-nav a,
  .button,
  .faq-card summary span::after {
    transition-duration: 180ms;
    transition-property: background-color, border-color, color, opacity, transform;
    transition-timing-function: ease;
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
}

@keyframes hero-visual-in {
  from {
    opacity: 0;
    transform: translateY(22px) rotate(-1.8deg);
  }
}

@media print {
  .menu-button,
  .hero-actions,
  .button,
  .faq-search {
    display: none !important;
  }

  .hero,
  .page-hero,
  .method-section,
  .pricing-band,
  .site-footer {
    background: var(--white) !important;
    color: var(--ink) !important;
  }
}
