:root {
  --cape-cod: #0a2536;
  --obsidian: #33566d;
  --mint: #a9f3ce;
  --mint-hover: #94eabd;
  --mint-focus: rgba(169, 243, 206, 0.45);
  --white-blue: #f3faff;
  --band-blue: #edf6fb;
  --band-green: #eef8f4;
  --band-stone: #f6f3ee;
  --band-silver: #f8fafb;
  --paper: #ffffff;
  --line: #d9e2ea;
  --line-strong: #c9d8e2;
  --ink: #0a2536;
  --soft: #4d6878;
  --faint: #7b92a3;
  --signal: #9f3f32;
  --safe: #197765;
  --shadow: 0 18px 50px rgba(10, 37, 54, 0.16);
  --sans: Arial, Helvetica, sans-serif;
  --serif: Georgia, "Times New Roman", Times, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--band-silver);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

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

a:hover {
  color: var(--obsidian);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--safe);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 20;
  transform: translateY(-160%);
  background: var(--paper);
  color: var(--ink);
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
}

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

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

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 250, 251, 0.94);
  border-bottom: 1px solid rgba(217, 226, 234, 0.82);
  backdrop-filter: blur(12px);
}

.header-inner {
  position: relative;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  font-size: 0.95rem;
}

.nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  color: var(--soft);
  text-decoration: none;
}

.nav a:hover {
  background: rgba(218, 246, 239, 0.66);
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  background: var(--mint);
  color: var(--cape-cod);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--mint-hover);
  color: var(--cape-cod);
}

.menu-toggle {
  min-width: 44px;
  min-height: 44px;
  display: none;
  place-items: center;
  border: 1px solid rgba(10, 37, 54, 0.18);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 1.28rem;
  line-height: 1;
  cursor: pointer;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: rgba(218, 246, 239, 0.66);
}

.hero {
  position: relative;
  min-height: 68svh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(6, 26, 38, 0.99), rgba(10, 37, 54, 0.95) 58%, rgba(22, 58, 80, 0.92)),
    var(--cape-cod);
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-end-sentinel {
  height: 1px;
  margin-top: -1px;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(218, 246, 239, 0.5), transparent);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  min-height: 68svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 0 4rem;
}

.eyebrow,
.section-kicker,
.panel-label {
  margin: 0 0 0.9rem;
  color: var(--safe);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin-bottom: 1.25rem;
  color: var(--mint);
}

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

h1 {
  max-width: 820px;
  margin-bottom: 1.2rem;
  font-family: var(--serif);
  font-size: 4.9rem;
  line-height: 0.94;
  font-weight: 700;
  text-wrap: balance;
}

h2 {
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: 2.35rem;
  line-height: 1.05;
  font-weight: 700;
  text-wrap: balance;
}

.privacy-page h1 {
  font-size: 2.85rem;
  line-height: 1.04;
}

.contact-page h1 {
  font-size: 3.2rem;
  line-height: 1.02;
}

.privacy-page .copy-block h2 {
  margin: 0 0 0.55rem;
  font-size: 1.18rem;
}

.privacy-page .copy-block h2:not(:first-child) {
  margin-top: 1.7rem;
}

h3 {
  margin-bottom: 0.55rem;
  font-family: var(--serif);
  font-size: 1.16rem;
  line-height: 1.22;
  font-weight: 700;
}

.hero-lede {
  max-width: 720px;
  margin-bottom: 1.8rem;
  color: rgba(243, 250, 255, 0.9);
  font-size: 1.3rem;
  line-height: 1.46;
}

.hero-actions,
.final-layout {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.button.primary {
  background: var(--mint);
  color: var(--cape-cod);
}

.button.primary:hover {
  background: var(--mint-hover);
  color: var(--cape-cod);
}

.button.primary:focus-visible {
  outline-color: var(--mint-focus);
}

.button.secondary {
  border-color: rgba(10, 37, 54, 0.5);
  background: transparent;
  color: var(--cape-cod);
}

.button.secondary:hover {
  border-color: var(--cape-cod);
  background: rgba(10, 37, 54, 0.06);
  color: var(--cape-cod);
}

.button.secondary:focus-visible {
  outline-color: rgba(10, 37, 54, 0.35);
}

.section {
  padding: 5.4rem 0;
  background: var(--paper);
}

.section[id] {
  scroll-margin-top: 72px;
}

.section:nth-of-type(even) {
  background: var(--paper);
}

.section + .section {
  border-top: 1px solid rgba(10, 37, 54, 0.07);
}

.problem,
.pilot,
.pricing {
  background: var(--band-stone);
}

.pedigree {
  padding: 3rem 0;
  background: var(--paper);
}

.pedigree-row {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}

.pedigree-row > span {
  min-height: 70px;
  display: grid;
  place-items: center;
  padding: 1rem 1.15rem;
  border-left: 1px solid transparent;
  color: var(--soft);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  overflow-wrap: anywhere;
}

.pedigree-row > span:first-child {
  border-left: 0;
}

.pedigree-logo {
  position: relative;
  --logo-color: rgb(10, 37, 54);
  --logo-width: 104px;
  --logo-height: 30px;
  overflow: hidden;
}

.pedigree-logo img {
  display: block;
  width: auto;
  max-width: 104px;
  max-height: 30px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(13%) sepia(31%) saturate(1132%) hue-rotate(161deg) brightness(88%) contrast(95%);
  mix-blend-mode: multiply;
}

.pedigree-logo--wise img {
  width: 76px;
  height: 76px;
  max-width: none;
  max-height: none;
}

.pedigree-logo--wise {
  --logo-url: url("assets/logos/wise-logo.png");
  --logo-width: 76px;
  --logo-height: 76px;
}

.pedigree-logo--majority {
  --logo-url: url("assets/logos/majority-logo.png");
}

.pedigree-logo--swedbank img {
  max-width: 108px;
  max-height: 30px;
}

.pedigree-logo--swedbank {
  --logo-url: url("assets/logos/swedbank-logo-bw.png");
  --logo-width: 108px;
}

.pedigree-logo--nordea img {
  width: 108px;
  height: auto;
}

.pedigree-logo--nordea {
  --logo-url: url("assets/logos/nordea-logo.svg");
  --logo-width: 108px;
}

.pedigree-logo--luminor img {
  width: 104px;
  height: auto;
}

.pedigree-logo--luminor {
  --logo-url: url("assets/logos/luminor-logo.svg");
}

.pedigree-logo--telia img {
  width: 96px;
  height: auto;
}

.pedigree-logo--telia {
  --logo-url: url("assets/logos/telia-logo.svg");
  --logo-width: 96px;
}

.pedigree-logo--sensusq img {
  width: 98px;
  height: auto;
}

.pedigree-logo--sensusq {
  --logo-url: url("assets/logos/sensusq-logo.png");
  --logo-width: 98px;
}

.pedigree-quote {
  max-width: 840px;
  margin: 0 auto 1.45rem;
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  text-wrap: balance;
}

.cabinet {
  background: var(--band-blue);
}

.value {
  background: var(--band-silver);
}

.faq {
  background: var(--band-blue);
}

.not-platform {
  background: var(--band-green);
}

.two-column,
.comparison-layout,
.pricing-layout,
.pilot-layout,
.trust-layout,
.boundary-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 4rem;
  align-items: start;
}

.copy-block p,
.comparison-layout p,
.section-heading p,
.section-lead,
.trust-layout .lead,
.pilot-layout p,
.pricing-layout p,
.boundary-copy p,
.final-layout p {
  color: var(--soft);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.section-heading .section-kicker {
  color: var(--safe);
  font-size: 0.78rem;
}

.pricing-layout .section-kicker {
  color: var(--safe);
  font-size: 0.78rem;
}

.section-heading.compact {
  max-width: 690px;
}

.architecture-grid,
.value-grid,
.trust-list,
.pilot-list {
  display: grid;
  gap: 1.5rem;
}

.architecture-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.comparison-table,
.pricing-box,
.faq-item {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.arch-item,
.value-grid article,
.trust-list article,
.pilot-list article {
  padding: 1.2rem 0 0;
  border-top: 1px solid var(--line-strong);
}

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

.arch-item.emphasis {
  padding: 1.35rem;
  background: var(--cape-cod);
  border: 1px solid var(--cape-cod);
  border-radius: 8px;
  color: var(--paper);
  box-shadow: var(--shadow);
}

.arch-item p,
.value-grid p,
.trust-list p,
.pilot-list p,
.pricing-box p,
.faq-list p {
  margin-bottom: 0;
  color: var(--soft);
}

.arch-item.emphasis p {
  color: rgba(243, 250, 255, 0.82);
}

.comparison-layout {
  align-items: center;
}

.comparison-table {
  overflow: hidden;
}

.comparison-table [role="row"] {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.comparison-table [role="columnheader"],
.comparison-table [role="cell"] {
  padding: 1rem;
}

.comparison-table [role="columnheader"] {
  background: var(--cape-cod);
  color: var(--paper);
  font-weight: 600;
}

.comparison-table [role="cell"] {
  border-top: 1px solid var(--line);
  color: var(--soft);
}

.comparison-table [role="cell"]:first-child {
  border-right: 1px solid var(--line);
}

.boundary {
  background: var(--band-silver);
  color: var(--ink);
}

.boundary-layout {
  align-items: center;
}

.boundary-facts {
  margin: 0;
  padding: 0;
  border: 1px solid rgba(218, 246, 239, 0.42);
  border-radius: 8px;
  background: rgba(243, 250, 255, 0.06);
}

.boundary-facts div {
  padding: 1rem 1.1rem;
  border-top: 1px solid rgba(218, 246, 239, 0.24);
}

.boundary-facts div:first-child {
  border-top: 0;
}

.boundary-facts dt {
  margin-bottom: 0.35rem;
  color: var(--mint);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 700;
}

.boundary-facts dd {
  margin: 0;
  color: rgba(243, 250, 255, 0.82);
}

.boundary .panel-label,
.boundary .section-kicker {
  color: var(--safe);
}

.boundary .copy-block p,
.boundary-copy p {
  color: var(--soft);
  font-size: 1.05rem;
}

.value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-list {
  margin: 1.2rem 0 0;
  padding-left: 1.15rem;
  color: var(--soft);
  font-size: 1.05rem;
}

.copy-block > .step-list:first-child {
  margin-top: 0;
}

.step-list li {
  margin-bottom: 1rem;
  padding-left: 0.15rem;
}

.step-list li:last-child {
  margin-bottom: 0;
}

.pilot-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust {
  background: var(--paper);
}

.trust-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-layout {
  align-items: center;
}

.pricing-box {
  padding: 1.3rem;
  box-shadow: var(--shadow);
}

.pricing-box dl {
  margin: 0;
}

.pricing-box dl div {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.pricing-box dl div:first-child {
  border-top: 0;
  padding-top: 0;
}

.pricing-box dt {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 700;
}

.pricing-box dd {
  margin: 0;
  color: var(--soft);
  text-align: left;
}

.pricing-box dd strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.02rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  min-height: 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.2rem 1rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  text-align: left;
}

.faq-trigger:hover {
  color: var(--ink);
}

.faq-trigger:focus-visible {
  outline-offset: -3px;
}

.faq-chevron {
  width: 0.65rem;
  height: 0.65rem;
  flex: 0 0 auto;
  margin-right: 0.15rem;
  border-right: 2px solid var(--soft);
  border-bottom: 2px solid var(--soft);
  transform: rotate(45deg);
  transition: border-color 160ms ease, transform 160ms ease;
}

.faq-trigger:focus-visible .faq-chevron {
  border-color: var(--mint);
}

.faq-list.is-enhanced .faq-trigger[aria-expanded="true"] .faq-chevron {
  border-color: var(--safe);
  transform: rotate(225deg);
}

.faq-panel {
  padding: 0 1rem 1rem;
}

.faq-list.is-enhanced .faq-panel[hidden] {
  display: none;
}

.section.final-cta {
  background: var(--cape-cod);
  color: var(--paper);
}

.conversion-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.conversion-page main {
  flex: 1;
  display: flex;
}

.contact-page {
  min-height: calc(100svh - 72px);
  background: var(--band-silver);
}

.general-contact-page {
  min-height: auto;
  background: var(--band-silver);
}

.conversion-page .contact-page {
  flex: 1;
  min-height: auto;
  padding: clamp(1rem, 3svh, 2rem) 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 4rem;
  align-items: start;
}

.conversion-page .contact-layout {
  gap: clamp(1.25rem, 4vw, 3rem);
}

.contact-copy {
  max-width: 520px;
}

.contact-intro {
  max-width: 520px;
}

.contact-copy p {
  color: var(--soft);
  font-size: 1.05rem;
}

.contact-intro p:not(.section-kicker),
.contact-identity p,
.company-address {
  color: var(--soft);
  font-size: 1.05rem;
}

.conversion-page .contact-copy p {
  margin-bottom: 0;
}

.conversion-page .contact-copy .section-lead + p {
  margin-top: 1.8rem;
}

.lead-form {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field label {
  color: var(--ink);
  font-weight: 700;
}

.form-field input {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.form-field input:hover {
  border-color: var(--obsidian);
}

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

.form-submit {
  justify-self: start;
  margin-top: 0.8rem;
  cursor: pointer;
  font: inherit;
}

.form-note {
  margin: 0;
  color: var(--soft);
  font-size: 0.95rem;
}

.general-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 4rem;
  align-items: start;
}

.contact-inline-email {
  color: var(--ink);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-inline-email:hover {
  color: var(--safe);
}

.contact-identity {
  padding-top: 2rem;
  border-top: 1px solid transparent;
}

.contact-identity h2 {
  margin-bottom: 0.55rem;
  font-family: var(--serif);
  font-size: 1.16rem;
  line-height: 1.22;
  font-weight: 700;
}

.company-address {
  margin: 0;
  font-style: normal;
  line-height: 1.65;
  text-align: left;
  overflow-wrap: anywhere;
}

.final-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 4rem;
  align-items: start;
}

.final-lead {
  grid-column: 1;
  grid-row: 1;
  max-width: 520px;
}

.final-lead > p:not(.section-kicker) {
  margin-bottom: 1.8rem;
}

.final-step-panel {
  grid-column: 2;
  grid-row: 1;
  max-width: 640px;
}

.final-cta .final-lead > .section-kicker {
  margin-bottom: 0.9rem;
  color: var(--mint);
  font-size: 0.78rem;
}

.final-layout p,
.final-step-list {
  color: rgba(243, 250, 255, 0.82);
}

.final-step-list {
  margin: 0 0 1.45rem;
  padding-left: 1.15rem;
  font-size: 1.02rem;
}

.final-step-list li {
  margin-bottom: 1rem;
  padding-left: 0.15rem;
}

.final-step-list li:last-child {
  margin-bottom: 0;
}

.final-step-list strong {
  color: var(--paper);
}

.final-demo-cta {
  justify-self: start;
}

.final-demo-cta--stacked {
  display: none;
}

.site-footer {
  padding: 2rem 0;
  background: #061a26;
  color: rgba(243, 250, 255, 0.76);
}

.conversion-footer {
  padding: 1rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.15rem;
}

.footer-brand {
  color: var(--paper);
}

.site-footer p {
  margin: 0.8rem 0 0;
}

.footer-links {
  display: flex;
  align-items: flex-start;
  gap: 1.3rem;
  flex-wrap: wrap;
}

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

.site-footer .footer-copyright {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(243, 250, 255, 0.62);
}

.not-found {
  min-height: 100svh;
  background:
    linear-gradient(90deg, rgba(6, 26, 38, 0.99), rgba(10, 37, 54, 0.95) 58%, rgba(22, 58, 80, 0.92)),
    var(--cape-cod);
  color: var(--paper);
}

.not-found-shell {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 2rem 0;
}

.not-found-panel {
  width: min(500px, calc(100% - 40px));
  text-align: center;
}

.not-found .section-kicker {
  margin-bottom: 0.85rem;
  color: var(--mint);
}

.not-found h1 {
  margin-bottom: 1rem;
  color: var(--paper);
  font-size: clamp(2.35rem, 8vw, 3.35rem);
  line-height: 1.04;
}

.not-found p:not(.section-kicker) {
  margin: 0 auto 2rem;
  max-width: 34rem;
  color: rgba(243, 250, 255, 0.76);
}

@media (max-width: 900px) {
  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .two-column,
  .comparison-layout,
  .pricing-layout,
  .final-layout,
  .pilot-layout,
  .trust-layout,
  .boundary-layout,
  .contact-layout,
  .general-contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .final-lead,
  .final-step-panel,
  .final-demo-cta {
    grid-column: auto;
    grid-row: auto;
  }

  .final-lead > p:not(.section-kicker) {
    margin-bottom: 0;
  }

  .final-demo-cta--desktop {
    display: none;
  }

  .final-demo-cta--stacked {
    display: inline-flex;
  }

  .contact-identity {
    padding-top: 1.2rem;
  }

  .architecture-grid,
  .value-grid,
  .trust-list,
  .pilot-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pedigree-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pedigree-row span:nth-child(4) {
    border-left: 0;
  }
}

@media (max-width: 768px) {
  .header-inner {
    min-height: 72px;
    align-items: center;
    flex-direction: row;
    padding: 0;
  }

  .header-actions {
    gap: 0;
    margin-left: auto;
    padding-right: 0;
  }

  .is-past-hero .header-actions {
    gap: 0.5rem;
  }

  .menu-toggle {
    display: grid;
  }

  .header-cta {
    width: 0;
    min-width: 0;
    max-width: 0;
    flex: 0 1 0;
    overflow: hidden;
    padding-right: 0;
    padding-left: 0;
    font-size: 0.9rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    visibility: hidden;
    transition: max-width 180ms ease, opacity 180ms ease, padding 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .is-past-hero .header-cta {
    width: auto;
    max-width: 9rem;
    flex: 0 0 auto;
    padding: 0.55rem 0.7rem;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    width: min(280px, calc(100vw - 28px));
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.45rem;
    border: 1px solid rgba(217, 226, 234, 0.9);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: 0 18px 40px rgba(10, 37, 54, 0.16);
  }

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

  .nav a {
    width: 100%;
    justify-content: flex-start;
    padding: 0.78rem 0.85rem;
    color: var(--ink);
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 28px, 1120px);
  }

  .hero,
  .hero-inner {
    min-height: 58svh;
  }

  .hero-inner {
    padding: 2.7rem 0 2.8rem;
  }

  .eyebrow,
  .hero-lede {
    max-width: 100%;
    overflow-wrap: break-word;
    text-wrap: wrap;
  }

  h1 {
    max-width: 100%;
    font-size: 2rem;
    line-height: 1.04;
    text-wrap: wrap;
  }

  h2 {
    font-size: 1.48rem;
  }

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

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

  .button {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .brand-name {
    font-size: 1rem;
  }

  .pedigree {
    padding: 2.4rem 0;
  }

  .pedigree-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pedigree-row span:nth-child(odd) {
    border-left: 0;
  }

  .pedigree-row span:nth-child(4) {
    border-left: 1px solid transparent;
  }

  .pedigree-quote {
    font-size: 1.05rem;
    text-align: left;
    text-wrap: wrap;
  }

  .architecture-grid,
  .value-grid,
  .trust-list,
  .pilot-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-page h1 {
    font-size: 2rem;
  }

  .lead-form {
    padding: 1rem;
  }

  .conversion-page .contact-page {
    padding: 0.5rem 0;
  }

  .conversion-page .contact-layout {
    gap: 1rem;
  }

  .conversion-page .lead-form {
    gap: 0.8rem;
    padding: 0.9rem;
  }

  .conversion-page .form-field {
    gap: 0.35rem;
  }

  .conversion-page .form-field input {
    min-height: 44px;
    padding: 0.62rem 0.75rem;
  }

  .section {
    padding: 3.2rem 0;
  }

  .comparison-table [role="row"] {
    grid-template-columns: 1fr;
  }

  .comparison-table [role="cell"]:first-child {
    border-right: 0;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 360px) {
  .header-inner {
    gap: 0.45rem;
  }

  .brand,
  .header-cta {
    min-height: 40px;
  }

  .brand-name {
    font-size: 0.92rem;
  }

  .is-past-hero .header-actions {
    gap: 0.35rem;
  }

  .is-past-hero .header-cta {
    max-width: 6.9rem;
    padding: 0.48rem 0.45rem;
    font-size: 0.78rem;
  }

  .menu-toggle {
    min-width: 40px;
    min-height: 40px;
  }

  .hero-inner {
    padding: 1.8rem 0 2rem;
  }

  .eyebrow,
  .panel-label {
    font-size: 0.72rem;
  }

  .section-kicker {
    font-size: 0.78rem;
  }

  .hero .eyebrow {
    margin-bottom: 0.9rem;
  }

  h1 {
    margin-bottom: 0.9rem;
    font-size: 1.6rem;
    line-height: 1.06;
  }

  .hero-lede {
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }

  .button {
    min-height: 44px;
    padding: 0.68rem 0.8rem;
  }
}

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