:root {
  --ink: #0b1930;
  --ink-soft: #172942;
  --navy: #173a65;
  --navy-bright: #205184;
  --paper: #f7f5f0;
  --paper-deep: #eeeae2;
  --surface: #ffffff;
  --mist: #e9eff5;
  --line: #d9e0e8;
  --line-dark: rgba(255, 255, 255, 0.17);
  --muted: #5d6c7e;
  --muted-light: #afbdcc;
  --orange: #d85d2a;
  --orange-action: #c94b1d;
  --orange-dark: #ad431c;
  --green: #2f7d62;
  --shadow: 0 24px 60px rgba(11, 25, 48, 0.12);
  --shadow-small: 0 10px 28px rgba(11, 25, 48, 0.08);
  --radius: 18px;
  --radius-small: 12px;
  --shell: 1280px;
  --header-height: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  max-width: 100%;
  overflow-x: clip;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button,
summary,
select {
  cursor: pointer;
}

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

::selection {
  background: var(--orange-action);
  color: white;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.section {
  padding-block: clamp(88px, 10vw, 152px);
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--card-bg, var(--surface));
  color: var(--text-main, var(--ink));
  box-shadow: var(--shadow-small);
  font-weight: 750;
}

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

.eyebrow {
  margin: 0 0 20px;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #9cb7d1;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(3.1rem, 6.7vw, 6.7rem);
  font-weight: 750;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

h1 em {
  color: var(--orange);
  font-style: normal;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.35rem, 4.7vw, 4.6rem);
  font-weight: 730;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

h3 {
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(247, 245, 240, 0.92);
  background: color-mix(in srgb, var(--paper) 89%, transparent);
  backdrop-filter: blur(18px);
  transition: height 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(11, 25, 48, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  position: relative;
  z-index: 2;
  color: var(--ink);
  font-size: 2rem;
  font-weight: 820;
  letter-spacing: -0.06em;
  line-height: 1;
  text-decoration: none;
}

.brand > span,
.brand-dot {
  color: var(--orange);
}

.brand-dot {
  font-style: normal;
}

.brand-light {
  color: white;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.7vw, 42px);
}

.primary-nav > a:not(.button) {
  position: relative;
  padding-block: 8px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 680;
  text-decoration: none;
}

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

.primary-nav > a:not(.button):hover::after,
.primary-nav > a:not(.button).is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-width: 48px;
  min-height: 48px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 750;
}

.menu-toggle-icon {
  display: grid;
  gap: 5px;
  width: 24px;
}

.menu-toggle-icon i {
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon i:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon i:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms var(--ease), background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg,
.text-link svg,
.mobile-contact svg {
  width: 20px;
  height: 20px;
  margin-left: 10px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-small {
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 9px;
}

.button-dark,
.button-primary {
  background: var(--ink);
  color: white;
  box-shadow: 0 8px 24px rgba(11, 25, 48, 0.15);
}

.button-dark:hover,
.button-primary:hover {
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(11, 25, 48, 0.2);
}

.button-quiet {
  border-color: #bac6d2;
  background: rgba(255, 255, 255, 0.45);
  color: var(--ink);
}

.button-quiet:hover {
  border-color: var(--ink);
  background: white;
}

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

.button-light:hover {
  background: var(--paper);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero {
  min-height: 100svh;
  padding-top: var(--header-height);
  background:
    radial-gradient(circle at 6% 20%, rgba(216, 93, 42, 0.08), transparent 23rem),
    linear-gradient(135deg, var(--paper) 0%, #f8fafc 70%, var(--mist) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: clamp(48px, 6vw, 96px);
  min-height: calc(100svh - var(--header-height) - 70px);
  padding-block: clamp(58px, 8vw, 106px);
}

.hero-grid > * {
  min-width: 0;
}

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

.hero-lead {
  max-width: 700px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.34rem);
  line-height: 1.62;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-list svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  inset: -24px -24px 24px 24px;
  border: 1px solid #bfcbd7;
  border-radius: var(--radius);
  content: "";
}

.hero-visual picture,
.hero-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.64 / 1;
}

.hero-visual img {
  border-radius: var(--radius);
  object-fit: cover;
  object-position: 52% center;
  box-shadow: var(--shadow);
}

.hero-status {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  background: rgba(11, 25, 48, 0.84);
  color: white;
  backdrop-filter: blur(10px);
  font-size: 0.75rem;
  font-weight: 720;
}

.hero-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #66c99c;
  box-shadow: 0 0 0 4px rgba(102, 201, 156, 0.17);
}

.hero-marquee {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.hero-marquee-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 70px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-marquee i {
  flex: 0 0 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: clamp(40px, 7vw, 100px);
  margin-bottom: clamp(48px, 6vw, 78px);
}

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

.section-heading > p {
  max-width: 520px;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.service-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.service-jump a {
  padding: 9px 14px;
  border: 1px solid #c8d3df;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  font-weight: 720;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.service-jump a:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: white;
}

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

.service-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 1px 0 rgba(11, 25, 48, 0.02);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  border-color: #bac8d6;
  background: white;
  box-shadow: var(--shadow-small);
}

.service-card[open] {
  grid-column: 1 / -1;
  border-color: var(--navy);
  background: white;
  box-shadow: var(--shadow-small);
}

.service-card summary {
  display: grid;
  grid-template-columns: 42px 54px minmax(0, 1fr) 34px;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  min-height: 150px;
  padding: clamp(24px, 3vw, 36px);
  list-style: none;
}

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

.service-icon {
  width: 52px;
  height: 52px;
  padding: 13px;
  border: 1px solid #cad6e2;
  border-radius: 12px;
  fill: none;
  stroke: var(--navy);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
  background: var(--mist);
}

.service-summary-copy {
  display: grid;
  gap: 8px;
}

.service-summary-copy strong {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.service-summary-copy small {
  color: var(--muted);
  font-size: 0.97rem;
}

.service-open {
  position: relative;
  width: 32px;
  height: 32px;
  border: 1px solid #bdc9d6;
  border-radius: 50%;
}

.service-open i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  transform: translate(-50%, -50%);
  background: var(--ink);
  transition: transform 180ms ease;
}

.service-open i:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-card[open] .service-open i:last-child {
  transform: translate(-50%, -50%) rotate(0deg);
}

.service-detail {
  padding: 0 clamp(24px, 6vw, 84px) clamp(36px, 5vw, 64px) calc(clamp(24px, 3vw, 36px) + 42px + clamp(14px, 2vw, 24px));
}

.service-intro {
  max-width: 910px;
  margin-bottom: 36px;
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 1.8vw, 1.42rem);
  line-height: 1.55;
}

.detail-columns {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(320px, 1.25fr);
  gap: clamp(34px, 7vw, 100px);
  margin-bottom: 34px;
  padding-block: 30px;
  border-block: 1px solid var(--line);
}

.detail-columns h3 {
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-columns p,
.detail-columns li {
  color: var(--muted);
}

.detail-columns p {
  margin-bottom: 0;
}

.detail-columns ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 20px;
}

.detail-columns li::marker {
  color: var(--orange);
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  font-weight: 780;
  text-decoration: none;
}

.text-link:hover {
  color: var(--orange-dark);
}

.text-link svg {
  transition: transform 160ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.principles {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.principles::before {
  position: absolute;
  top: -220px;
  right: -180px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.02), 0 0 0 160px rgba(255, 255, 255, 0.015);
}

.principles-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: clamp(40px, 7vw, 100px);
  margin-bottom: clamp(64px, 8vw, 108px);
}

.principles-intro .eyebrow,
.principles-intro h2 {
  grid-column: 1;
}

.principles-intro h2 {
  max-width: 890px;
  margin-bottom: 0;
}

.principles-intro > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin-bottom: 6px;
  color: var(--muted-light);
  font-size: 1.05rem;
}

.principle-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line-dark);
}

.principle {
  min-height: 300px;
  padding: 36px clamp(24px, 3vw, 48px) 42px 0;
}

.principle + .principle {
  padding-left: clamp(24px, 3vw, 48px);
  border-left: 1px solid var(--line-dark);
}

.principle span {
  display: block;
  margin-bottom: 62px;
  color: #f07a48;
  font-size: 0.75rem;
  font-weight: 840;
  letter-spacing: 0.12em;
}

.principle h3 {
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.principle p {
  margin-bottom: 0;
  color: var(--muted-light);
}

.principles-quote {
  max-width: 970px;
  margin: clamp(58px, 8vw, 110px) 0 0 auto;
  padding: 0 0 0 clamp(24px, 4vw, 58px);
  border-left: 3px solid var(--orange);
}

.principles-quote p {
  margin: 0;
  font-size: clamp(1.3rem, 2.5vw, 2.15rem);
  font-weight: 590;
  letter-spacing: -0.025em;
  line-height: 1.38;
}

.sovereignty {
  background: var(--surface);
}

.sovereignty-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(50px, 10vw, 150px);
}

.sovereignty-title h2 {
  position: static;
}

.large-copy {
  margin-bottom: 26px;
  color: var(--text-main, var(--ink));
  font-size: clamp(1.42rem, 2.4vw, 2rem);
  font-weight: 590;
  letter-spacing: -0.025em;
  line-height: 1.4;
}

.sovereignty-copy > p:not(.large-copy) {
  color: var(--muted);
  font-size: 1.04rem;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.check-grid li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  font-size: 0.9rem;
  font-weight: 680;
}

.check-grid svg {
  flex: 0 0 21px;
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.regulated {
  background: var(--paper-deep);
}

.regulated-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(50px, 9vw, 135px);
}

.regulated-copy p:not(.eyebrow) {
  max-width: 790px;
  color: var(--muted);
  font-size: 1.04rem;
}

.regulation-panel {
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid #cbd3da;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-small);
}

.regulation-panel > p {
  margin-bottom: 24px;
  font-weight: 760;
}

.regulation-tags {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0;
}

.regulation-tags span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 790;
  text-align: center;
}

.regulation-panel small {
  display: block;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.5;
}

.process {
  background: var(--surface);
}

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

.process-list li {
  position: relative;
  min-height: 330px;
  padding: 32px 30px 42px 0;
  border-bottom: 1px solid var(--line);
}

.process-list li + li {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.process-list span {
  display: block;
  margin-bottom: 85px;
  color: var(--orange-dark);
  font-size: 0.73rem;
  font-weight: 840;
  letter-spacing: 0.12em;
}

.process-list h3 {
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(50px, 10vw, 150px);
}

.faq-intro {
  align-self: start;
}

.faq-intro h2 {
  font-size: clamp(2.25rem, 4.2vw, 4rem);
}

.faq-list {
  border-top: 1px solid #bcc8d4;
}

.faq-list details {
  border-bottom: 1px solid #bcc8d4;
}

.faq-list summary {
  position: relative;
  min-height: 82px;
  padding: 26px 52px 26px 0;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  font-weight: 730;
  list-style: none;
}

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

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 16px;
  height: 2px;
  transform: translateY(-50%);
  background: var(--ink);
  content: "";
  transition: transform 160ms ease;
}

.faq-list summary span::after {
  top: 0;
  right: 0;
  transform: rotate(90deg);
}

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

.faq-list details p {
  max-width: 760px;
  margin: -4px 56px 26px 0;
  color: var(--muted);
}

.contact {
  padding-block: clamp(70px, 8vw, 120px);
  background: var(--paper);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(520px, 1.16fr);
  gap: clamp(50px, 8vw, 110px);
  padding: clamp(38px, 6vw, 80px);
  border-radius: 24px;
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
}

.contact-copy {
  align-self: center;
}

.contact-copy h2 {
  font-size: clamp(2.25rem, 4.2vw, 4rem);
}

.contact-copy > p:not(.eyebrow) {
  color: var(--muted-light);
  font-size: 1.04rem;
}

.direct-mail {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding: 14px 18px;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  color: white;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.direct-mail:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.direct-mail svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.direct-mail span {
  display: grid;
  font-weight: 730;
}

.direct-mail small {
  color: var(--muted-light);
  font-size: 0.72rem;
  font-weight: 650;
}

.contact-form {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
}

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

.contact-form label:not(.privacy-check) {
  display: grid;
  gap: 7px;
}

.contact-form label > span:first-child {
  font-size: 0.84rem;
  font-weight: 760;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #aebdcb;
  border-radius: 8px;
  background: white;
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input,
.contact-form select {
  min-height: 52px;
  padding: 12px 14px;
}

.contact-form textarea {
  min-height: 142px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--navy);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(23, 58, 101, 0.16);
}

.contact-form ::placeholder {
  color: var(--muted);
  opacity: 1;
}

.privacy-check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.privacy-check input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: var(--navy);
}

.privacy-check a {
  color: var(--navy);
  font-weight: 700;
}

.button-submit {
  width: 100%;
  min-height: 58px;
  border: 0;
  background: var(--orange-action);
  color: white;
}

.button-submit:hover {
  background: var(--orange-dark);
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: center;
}

.form-status:not(:empty) {
  padding: 8px;
  border-radius: 6px;
  background: var(--mist);
  color: var(--ink);
}

.site-footer {
  padding-top: clamp(60px, 8vw, 100px);
  background: #071425;
  color: var(--muted-light);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.6fr;
  gap: 60px;
  padding-bottom: 70px;
}

.footer-main > div:first-child p {
  margin: 24px 0 0;
  color: #8fa1b4;
}

.footer-main > div:not(:first-child) {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-main h2 {
  margin-bottom: 12px;
  color: #8397ad;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-main a:not(.brand) {
  width: fit-content;
  color: #c7d1dc;
  text-decoration: none;
}

.footer-main a:not(.brand):hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 24px;
  border-top: 1px solid var(--line-dark);
  color: #73879c;
  font-size: 0.78rem;
}

.mobile-contact {
  display: none;
}

.mobile-contact.is-hidden {
  visibility: hidden;
  opacity: 0;
  transform: translateY(120%);
}

.js.app-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}

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

.js.app-ready .reveal-delay {
  transition-delay: 100ms;
}

/* Legal draft pages */
.legal-page {
  min-height: 100vh;
  padding: calc(var(--header-height) + 70px) 0 100px;
  background: var(--paper);
}

.legal-content {
  max-width: 800px;
}

.legal-content h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.legal-content h2 {
  margin-top: 52px;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.draft-notice {
  margin-bottom: 42px;
  padding: 18px 20px;
  border-left: 4px solid var(--orange);
  background: white;
  color: var(--ink);
  box-shadow: var(--shadow-small);
}

@media (max-width: 1100px) {
  :root {
    --header-height: 76px;
  }

  .primary-nav {
    gap: 22px;
  }

  .primary-nav > a:not(.button) {
    font-size: 0.89rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
    gap: 42px;
  }

  .contact-shell {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 42px;
  }
}

@media (max-width: 920px) {
  .site-header,
  .site-header.is-scrolled {
    height: var(--header-height);
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: flex;
  }

  .primary-nav {
    position: absolute;
    z-index: 1;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    width: 100%;
    height: calc(100svh - var(--header-height));
    padding: 28px max(24px, calc((100vw - var(--shell)) / 2)) max(36px, env(safe-area-inset-bottom));
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    background: var(--paper);
    transition: visibility 0s linear 200ms, opacity 200ms ease;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
  }

  .primary-nav > a:not(.button) {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    font-weight: 730;
    letter-spacing: -0.03em;
  }

  .primary-nav > a:not(.button)::after {
    display: none;
  }

  .menu-open .mobile-contact {
    visibility: hidden;
    opacity: 0;
    transform: translateY(120%);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 64px 86px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-visual {
    width: calc(100% - 24px);
    margin-left: 24px;
  }

  .hero-visual::before {
    inset: -16px -16px 16px 16px;
  }

  .principles-intro,
  .sovereignty-grid,
  .regulated-grid,
  .faq-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .principles-intro > p:last-child {
    grid-column: 1;
    grid-row: auto;
    max-width: 680px;
  }

  .sovereignty-title h2 {
    position: static;
  }

  .regulated-grid {
    align-items: stretch;
  }

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

  .process-list li:nth-child(3) {
    border-left: 0;
  }

  .contact-shell {
    gap: 48px;
  }
}

@media (max-width: 720px) {
  :root {
    --radius: 14px;
  }

  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .section {
    padding-block: 78px;
  }

  h1 {
    font-size: clamp(3.25rem, 15vw, 5rem);
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 3.55rem);
  }

  .hero-grid {
    gap: 52px;
    padding-top: 52px;
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .button-row .button {
    width: 100%;
  }

  .trust-list {
    display: grid;
    gap: 9px;
  }

  .hero-visual {
    width: 100%;
    margin-left: 0;
  }

  .hero-visual::before {
    inset: -10px -10px 10px 10px;
  }

  .hero-visual picture,
  .hero-visual img {
    aspect-ratio: 1.15 / 1;
  }

  .hero-visual img {
    object-position: 63% center;
  }

  .hero-status {
    top: 10px;
    right: 10px;
  }

  .hero-marquee {
    overflow: hidden;
  }

  .hero-marquee-inner {
    justify-content: flex-start;
    width: max-content;
    min-height: 62px;
    margin-left: 16px;
    padding-right: 16px;
  }

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

  .service-jump {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-jump a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 8px 10px;
    border-radius: 8px;
    text-align: center;
  }

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

  .service-card[open] {
    grid-column: auto;
  }

  .service-card summary {
    grid-template-columns: 34px 46px minmax(0, 1fr) 30px;
    gap: 12px;
    min-height: 132px;
    padding: 22px 18px;
  }

  .service-icon {
    width: 44px;
    height: 44px;
    padding: 10px;
  }

  .service-summary-copy strong {
    font-size: 1.15rem;
  }

  .service-summary-copy small {
    font-size: 0.84rem;
  }

  .service-detail {
    padding: 0 20px 34px;
  }

  .service-intro {
    font-size: 1.08rem;
  }

  .detail-columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .principle {
    min-height: auto;
    padding: 30px 0 36px;
  }

  .principle + .principle {
    padding-left: 0;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .principle span {
    margin-bottom: 36px;
  }

  .check-grid,
  .regulation-tags,
  .process-list,
  .form-row {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li + li {
    min-height: auto;
    padding: 28px 0 34px;
    border-left: 0;
  }

  .process-list span {
    margin-bottom: 38px;
  }

  .faq-grid {
    gap: 50px;
  }

  .contact {
    padding: 0;
  }

  .contact-shell {
    width: 100%;
    padding: 74px 16px 86px;
    border-radius: 0;
  }

  .contact-copy,
  .contact-form {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 50px 24px;
  }

  .footer-main > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    padding-bottom: 94px;
  }

  .mobile-contact {
    position: fixed;
    z-index: 90;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 12px 18px;
    border-radius: 10px;
    background: var(--orange-action);
    color: white;
    box-shadow: 0 12px 32px rgba(11, 25, 48, 0.24);
    font-weight: 780;
    text-decoration: none;
    transition: visibility 160ms ease, opacity 160ms ease, transform 160ms var(--ease), background 160ms ease;
  }
}

@media (max-width: 390px) {
  .menu-toggle-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .service-card summary {
    grid-template-columns: 42px minmax(0, 1fr) 30px;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js.app-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

/* 2026 combined design: themes, accessible dialogs and guided contact */
:root {
  --page-bg: #f7f5f0;
  --page-alt: #eeeae2;
  --card-bg: #ffffff;
  --card-soft: #e9eff5;
  --text-main: #0b1930;
  --text-soft: #526276;
  --border-ui: #7b8da0;
  --border-soft: #d8dfe7;
  --focus-ring: #005fcc;
  --inverse-bg: #071425;
  --inverse-surface: #0b1930;
  --inverse-text: #f7f5f0;
  --inverse-muted: #bdc9d6;
  --inverse-border: rgba(255, 255, 255, 0.22);
  color-scheme: light;
}

html[data-theme="dark"] {
  --page-bg: #071425;
  --page-alt: #0b1930;
  --card-bg: #10213a;
  --card-soft: #172942;
  --text-main: #f7f5f0;
  --text-soft: #c3cfdd;
  --border-ui: #60728a;
  --border-soft: rgba(255, 255, 255, 0.16);
  --focus-ring: #ffd166;
  --paper: var(--page-bg);
  --paper-deep: var(--page-alt);
  --surface: var(--card-bg);
  --mist: var(--card-soft);
  --line: var(--border-ui);
  --muted: var(--text-soft);
  --ink-soft: #dce6f0;
  --navy: #b7d2ed;
  --navy-bright: #d2e5f7;
  --orange-dark: #ff9a69;
  --muted-light: #c5d0dd;
  color-scheme: dark;
}

html[data-font-size="large"] {
  font-size: 112.5%;
}

html[data-font-size="xlarge"] {
  font-size: 125%;
}

html[data-links="underlined"] a:not(.button):not(.brand):not(.mobile-contact) {
  text-decoration: underline;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.2em;
}

html[data-contrast="high"] {
  --border-ui: currentColor;
  --border-soft: currentColor;
  --text-soft: var(--text-main);
}

@media (prefers-contrast: more) {
  :root {
    --border-ui: currentColor;
    --border-soft: currentColor;
    --text-soft: var(--text-main);
  }
}

html[data-contrast="high"] :focus-visible {
  outline-width: 4px;
  outline-offset: 5px;
}

html[data-motion="reduced"] *,
html[data-motion="reduced"] *::before,
html[data-motion="reduced"] *::after {
  scroll-behavior: auto !important;
  transition-duration: 0.01ms !important;
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
}

body {
  background: var(--page-bg);
  color: var(--text-main);
}

:focus-visible {
  outline-color: var(--focus-ring);
}

.section {
  padding-block: clamp(64px, 7vw, 104px);
}

.site-header {
  background: color-mix(in srgb, var(--page-bg) 89%, transparent);
}

.site-header.is-scrolled {
  border-color: var(--border-ui);
}

.header-inner {
  gap: 22px;
}

.brand,
.menu-toggle {
  color: var(--text-main);
}

.primary-nav {
  margin-left: auto;
  gap: clamp(16px, 2vw, 30px);
}

.primary-nav > a:not(.button) {
  color: var(--text-main);
}

.header-actions {
  position: relative;
  z-index: 3;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

body.dialog-open {
  overflow: hidden;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border-ui);
  border-radius: 10px;
  background: var(--card-bg);
  color: var(--text-main);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms var(--ease);
}

.icon-button:hover {
  border-color: currentColor;
  background: var(--card-soft);
  transform: translateY(-1px);
}

.icon-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

html[data-theme="light"] .theme-icon-dark,
html[data-theme="dark"] .theme-icon-light {
  display: none;
}

html[data-theme="dark"] .button-dark,
html[data-theme="dark"] .button-primary {
  background: var(--orange-action);
  color: white;
}

html[data-theme="dark"] .button-quiet {
  border-color: var(--border-ui);
  background: var(--card-bg);
  color: var(--text-main);
}

.display-dialog,
.service-dialog,
.mail-dialog {
  max-height: min(92svh, 900px);
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  background: var(--card-bg);
  color: var(--text-main);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.4);
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--border-ui) 60%, transparent) transparent;
}

.display-dialog[open],
.service-dialog[open],
.mail-dialog[open] {
  animation: dialog-in 220ms var(--ease);
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
}

.display-dialog:not([open]),
.service-dialog:not([open]),
.mail-dialog:not([open]) {
  display: none;
}

.display-dialog::backdrop,
.service-dialog::backdrop,
.mail-dialog::backdrop {
  background: rgba(3, 12, 25, 0.72);
  backdrop-filter: blur(5px);
}

.dialog-fallback-open {
  position: fixed;
  z-index: 1000;
  inset: 0;
  box-shadow: 0 0 0 100vmax rgba(3, 12, 25, 0.78), 0 30px 100px rgba(0, 0, 0, 0.32);
}

.display-dialog {
  width: min(760px, calc(100vw - 32px));
  padding: 24px 28px 22px;
}

.display-dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.display-dialog-head .eyebrow {
  margin-bottom: 8px;
}

.display-dialog-head h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.6vw, 2.05rem);
}

.display-description {
  max-width: 54ch;
  margin: 5px 0 0;
  color: var(--text-soft);
  font-size: 0.78rem;
  line-height: 1.4;
}

.display-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}

.display-options fieldset,
.assistant-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.display-options legend,
.assistant-fieldset legend {
  margin-bottom: 6px;
  color: var(--text-main);
  font-size: 0.88rem;
  font-weight: 760;
}

.segmented-control {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--border-ui);
  border-radius: 11px;
  background: var(--page-bg);
}

.segmented-control button {
  flex: 1 1 0;
  min-height: 38px;
  padding: 6px 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.segmented-control button[aria-pressed="true"] {
  border-color: var(--border-ui);
  background: var(--card-bg);
  color: var(--text-main);
  box-shadow: var(--shadow-small);
}

.text-button {
  min-height: 44px;
  padding: 6px 0;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-weight: 740;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.display-dialog > .text-button {
  margin-top: 14px;
}

.mail-dialog {
  width: min(620px, calc(100vw - 32px));
}

.mail-dialog-shell {
  position: relative;
  padding: 34px;
}

.mail-dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  border-color: transparent;
  background: var(--card-soft);
}

.mail-dialog .eyebrow {
  margin-bottom: 12px;
}

.mail-dialog h2 {
  max-width: 500px;
  margin: 0 52px 18px 0;
  font-size: clamp(1.8rem, 4vw, 2.65rem);
  line-height: 1.04;
}

.mail-dialog p:not(.eyebrow) {
  margin-bottom: 24px;
  color: var(--text-soft);
}

.mail-dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mail-dialog .mail-dialog-status {
  min-height: 1.5em;
  margin: 14px 0 0;
  font-size: 0.78rem;
}

.clipboard-source {
  position: fixed;
  top: 0;
  left: -10000px;
  width: 720px;
  background: white;
  color: black;
}

.hero {
  min-height: auto;
  background:
    radial-gradient(circle at 6% 20%, rgba(216, 93, 42, 0.08), transparent 23rem),
    linear-gradient(135deg, var(--page-bg) 0%, color-mix(in srgb, var(--page-bg) 70%, var(--card-bg)) 70%, var(--card-soft) 100%);
}

.hero-grid {
  min-height: auto;
  padding-block: clamp(48px, 6vw, 82px) clamp(70px, 7vw, 96px);
}

.hero-lead {
  color: var(--text-soft);
}

.trust-list {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: start;
  gap: 10px;
  color: var(--text-soft);
  font-size: 1rem;
  font-weight: 720;
}

.trust-list li {
  gap: 9px;
}

.trust-list svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.2;
}

.hero-visual::before {
  border-color: var(--border-ui);
}

.hero-marquee {
  border-color: var(--border-ui);
  background: color-mix(in srgb, var(--card-bg) 60%, transparent);
}

.hero-marquee-inner,
.section-heading > p {
  color: var(--text-soft);
}

.section-heading {
  margin-bottom: clamp(36px, 4.5vw, 56px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-grid > li {
  display: flex;
  min-width: 0;
}

.service-tile {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  gap: 18px 16px;
  width: 100%;
  height: 100%;
  min-height: 290px;
  padding: 26px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--card-bg) 84%, transparent);
  color: var(--text-main);
  box-shadow: 0 1px 2px rgba(11, 25, 48, 0.05);
  font: inherit;
  text-align: left;
  text-decoration: none;
  transition: transform 180ms var(--ease), border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.service-tile:hover {
  border-color: var(--navy);
  background: var(--card-bg);
  box-shadow: var(--shadow-small);
  transform: translateY(-3px);
}

.service-icon {
  width: 58px;
  height: 58px;
  padding: 14px;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  background: var(--card-soft);
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-summary-copy {
  align-self: start;
  display: grid;
  gap: 9px;
}

.service-summary-copy strong {
  font-size: clamp(1.18rem, 1.8vw, 1.48rem);
  font-weight: 760;
  letter-spacing: -0.03em;
  line-height: 1.18;
}

.service-summary-copy small {
  color: var(--text-soft);
  font-size: 0.91rem;
  line-height: 1.52;
}

.service-action {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  align-self: end;
  gap: 8px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 780;
}

.service-action svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.noscript-note {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid var(--border-ui);
  border-radius: 10px;
  background: var(--card-bg);
  color: var(--text-soft);
}

.service-dialog {
  width: min(920px, calc(100vw - 48px));
}

.service-dialog-shell {
  position: relative;
  padding: 34px 38px 26px;
}

.service-dialog-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  border-color: transparent;
  background: var(--card-soft);
}

.service-dialog-content article {
  padding-top: 0;
}

.service-dialog-content h2 {
  max-width: none;
  margin: 0 54px 12px 0;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1.06;
}

.service-dialog-intro {
  max-width: 68ch;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.55;
}

.service-dialog-content h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 10px;
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-dialog-content h3::before {
  width: 20px;
  height: 2px;
  background: var(--orange);
  content: "";
}

.service-dialog-content ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 34px;
  margin: 0 0 20px;
  padding: 18px 0;
  border-block: 1px solid var(--border-soft);
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.5;
  list-style: none;
}

.service-dialog-content li {
  position: relative;
  padding-left: 24px;
}

.service-dialog-content li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
  content: "";
}

.service-outcome {
  max-width: none;
  margin: 0 0 20px;
  padding: 14px 16px;
  border-left: 3px solid var(--orange);
  border-radius: 0 8px 8px 0;
  background: var(--card-soft);
  color: var(--text-soft);
  font-size: clamp(0.72rem, 1.05vw, 0.9rem);
  letter-spacing: -0.01em;
  line-height: 1.5;
  white-space: nowrap;
}

.service-outcome strong {
  color: var(--text-main);
}

.service-dialog-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
}

.service-dialog-nav button {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 66px;
  padding: 11px 14px;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  background: transparent;
  color: var(--text-main);
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease;
}

.service-dialog-nav button:hover {
  border-color: color-mix(in srgb, var(--navy) 50%, var(--border-soft));
  background: var(--card-soft);
}

.service-dialog-nav button > span[aria-hidden] {
  display: grid;
  flex: 0 0 34px;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--card-soft);
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1;
  transition: background 160ms ease, color 160ms ease, transform 160ms var(--ease);
}

.service-dialog-nav button:hover > span[aria-hidden] {
  background: var(--navy);
  color: var(--card-bg);
}

.service-dialog-nav button:first-child:hover > span[aria-hidden] {
  transform: translateX(-2px);
}

.service-dialog-nav button:last-child:hover > span[aria-hidden] {
  transform: translateX(2px);
}

.service-dialog-nav button:last-child {
  justify-content: flex-end;
  text-align: right;
}

.service-dialog-nav button > span:not([aria-hidden]) {
  display: grid;
  gap: 3px;
}

.service-dialog-nav small {
  color: var(--text-soft);
  font-size: 0.66rem;
  font-weight: 780;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.service-dialog-nav strong {
  font-size: 0.94rem;
  font-weight: 730;
  letter-spacing: -0.01em;
}

.principles-intro {
  display: block;
  margin-bottom: clamp(44px, 5vw, 68px);
}

.principles-intro h2 {
  max-width: 960px;
}

.principle {
  min-height: 250px;
  padding-block: 30px 36px;
}

.principle span,
.process-list span,
.sovereignty-controls span {
  font-size: 1.12rem;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.principle span {
  margin-bottom: 38px;
}

.principles-quote {
  margin-top: clamp(40px, 5vw, 64px);
}

.sovereignty {
  background: var(--card-bg);
}

.sovereignty-copy > p:not(.large-copy) {
  color: var(--text-soft);
}

.sovereignty-controls {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(46px, 6vw, 72px);
  border-block: 1px solid var(--border-ui);
}

.sovereignty-controls article {
  min-width: 0;
  padding: 28px 24px 32px 0;
}

.sovereignty-controls article + article {
  padding-left: 24px;
  border-left: 1px solid var(--border-ui);
}

.sovereignty-controls span {
  display: block;
  margin-bottom: 30px;
  color: var(--orange-dark);
  font-weight: 840;
}

.sovereignty-controls h3 {
  min-height: 2.4em;
  margin-bottom: 12px;
  font-size: 1.18rem;
}

.sovereignty-controls p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.sovereignty-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  width: min(100%, 920px);
  margin: 32px auto 0;
  padding: 24px 28px;
  border: 1px solid var(--border-ui);
  border-radius: 12px;
  background: var(--page-bg);
}

.sovereignty-callout p {
  margin: 0;
  color: var(--text-soft);
}

.sovereignty-callout strong {
  color: var(--text-main);
  line-height: 1.7;
}

.regulated {
  background: var(--page-alt);
}

.regulated-copy p:not(.eyebrow),
.regulation-boundary {
  color: var(--text-soft);
}

.regulation-panel {
  border-color: var(--border-ui);
  background: var(--card-bg);
}

.regulation-coordination {
  margin-bottom: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border-ui);
  color: var(--text-main);
  font-weight: 760;
}

#regulation-context-title,
.regulation-coordination {
  font-size: 0.95rem;
  line-height: 1.55;
}

.regulation-boundary {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
}

.process,
.process-dark {
  background: var(--inverse-bg);
  color: var(--inverse-text);
}

.process .section-heading > p,
.process-list p {
  color: var(--inverse-muted);
}

.process-list,
.process-list li,
.process-list li + li {
  border-color: var(--inverse-border);
}

.process-list li {
  min-height: 250px;
  padding-block: 28px 34px;
}

.process-list span {
  margin-bottom: 38px;
  color: #f58a58;
}

.faq {
  background: var(--page-bg);
}

.faq-list,
.faq-list details {
  border-color: var(--border-ui);
}

.faq-list details p {
  color: var(--text-soft);
}

.faq-list summary span,
.faq-list summary span::after {
  background: var(--text-main);
}

.contact {
  background: var(--page-bg);
}

.contact-shell {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  padding: clamp(38px, 5vw, 68px);
  background: var(--inverse-surface);
}

.contact-copy {
  width: 100%;
}

.direct-contact-options {
  display: grid;
  gap: 12px;
  width: min(100%, 440px);
  margin-top: 24px;
}

.direct-contact {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 16px 18px;
  border: 1px solid var(--inverse-border);
  border-radius: 10px;
  color: var(--inverse-text);
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.direct-contact:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.direct-contact > svg:first-child {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #9cb7d1;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.direct-contact span {
  display: grid;
  gap: 2px;
}

.direct-contact strong {
  line-height: 1.3;
}

.direct-contact small {
  color: var(--inverse-muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.direct-contact .direct-contact-arrow {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-assistant {
  min-width: 0;
  scroll-margin-top: calc(var(--header-height) + 16px);
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background: var(--card-bg);
  color: var(--text-main);
  box-shadow: 0 28px 80px rgba(3, 12, 25, 0.35);
}

.assistant-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-soft);
}

.assistant-head h3 {
  margin: 6px 0 0;
  font-size: clamp(1.3rem, 2.2vw, 1.62rem);
}

.assistant-reset {
  white-space: nowrap;
}

.assistant-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.04em;
}

.assistant-badge > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--green) 18%, transparent);
}

.assistant-log {
  display: grid;
  gap: 10px;
  max-height: 350px;
  margin: 0 0 18px;
  padding: 2px 10px 2px 0;
  overflow-y: auto;
  list-style: none;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--border-ui) 55%, transparent) transparent;
}

.assistant-log::-webkit-scrollbar {
  width: 8px;
}

.assistant-log::-webkit-scrollbar-track {
  background: transparent;
}

.assistant-log::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: color-mix(in srgb, var(--border-ui) 55%, transparent);
  background-clip: padding-box;
}

.assistant-message {
  display: grid;
  gap: 4px;
  max-width: 86%;
  padding: 11px 15px 12px;
  border: 0;
  border-radius: 14px 14px 14px 5px;
  background: var(--card-soft);
}

.assistant-message:last-child {
  animation: assistant-message-in 260ms var(--ease) backwards;
}

@keyframes assistant-message-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
}

.assistant-message-user {
  justify-self: end;
  border-radius: 14px 14px 5px 14px;
  background: var(--navy);
}

.assistant-message > span {
  color: var(--text-soft);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.assistant-message-user > span {
  color: color-mix(in srgb, var(--card-bg) 72%, var(--navy));
}

.assistant-message p {
  margin: 0;
  color: var(--text-main);
  font-size: 0.92rem;
  line-height: 1.55;
}

.assistant-message-user p {
  color: var(--card-bg);
}

.assistant-stage {
  padding: clamp(14px, 2vw, 18px);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  background: var(--page-alt);
}

.assistant-stage .assistant-fieldset legend {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.assistant-stage > .button {
  width: 100%;
}

.assistant-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 88px;
  gap: 10px;
}

.assistant-options button {
  display: grid;
  place-items: center;
  width: 100%;
  min-width: 0;
  height: 88px;
  padding: 12px 15px;
  border: 1px solid var(--border-soft);
  border-radius: 11px;
  background: var(--card-bg);
  color: var(--text-main);
  box-shadow: 0 1px 2px rgba(11, 25, 48, 0.05);
  font-size: 0.84rem;
  font-weight: 640;
  line-height: 1.3;
  text-align: center;
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms var(--ease);
}

.assistant-option-label {
  display: -webkit-box;
  max-width: 100%;
  overflow: hidden;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.assistant-options button:hover {
  border-color: color-mix(in srgb, var(--navy) 55%, var(--border-soft));
  box-shadow: 0 8px 20px rgba(11, 25, 48, 0.1);
  transform: translateY(-1px);
}

.assistant-options button:active {
  box-shadow: 0 1px 2px rgba(11, 25, 48, 0.05);
  transform: translateY(0);
}

.assistant-form {
  display: grid;
  gap: 14px;
}

.assistant-form label {
  position: relative;
  display: grid;
  gap: 6px;
  color: var(--text-main);
  font-size: 0.8rem;
  font-weight: 730;
}

.assistant-form:not(.assistant-contact-form) label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.assistant-form input,
.assistant-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--border-ui);
  border-radius: 10px;
  background: var(--card-bg);
  color: var(--text-main);
  transition: border-color 150ms ease;
}

.assistant-form input:hover,
.assistant-form textarea:hover {
  border-color: color-mix(in srgb, var(--text-main) 42%, var(--border-ui));
}

.assistant-form ::placeholder {
  color: var(--text-soft);
  opacity: 0.8;
}

.assistant-form textarea {
  min-height: 124px;
  resize: vertical;
}

.assistant-form-hint,
.assistant-error {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.75rem;
}

.assistant-error {
  padding: 10px 12px;
  border-left: 3px solid var(--orange-dark);
  border-radius: 0 8px 8px 0;
  background: var(--card-soft);
  color: var(--text-main);
}

.assistant-form .button {
  justify-self: start;
  min-height: 50px;
}

.assistant-contact-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 12px;
}

.assistant-contact-form .button {
  grid-column: 1 / -1;
}

.assistant-summary {
  display: grid;
  margin: 0 0 16px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  background: var(--card-bg);
}

.assistant-summary div {
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  gap: 14px;
  padding: 11px 16px;
}

.assistant-summary div + div {
  border-top: 1px solid var(--border-soft);
}

.assistant-summary dt {
  padding-top: 2px;
  color: var(--text-soft);
  font-size: 0.7rem;
  font-weight: 790;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.assistant-summary dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 0.88rem;
  line-height: 1.5;
}

.assistant-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
  margin-top: 10px;
}

.assistant-controls .text-button {
  min-height: 40px;
  padding: 7px 14px;
  border: 1px solid var(--border-soft);
  border-radius: 9px;
  background: var(--card-bg);
  text-decoration: none;
  transition: border-color 150ms ease, background 150ms ease;
}

.assistant-controls .text-button:hover {
  border-color: var(--border-ui);
  background: var(--card-soft);
}

.assistant-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 0 auto;
  color: var(--text-soft);
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
}

.assistant-progress[hidden] {
  display: none;
}

.assistant-progress::after {
  width: 88px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--orange) calc(var(--assistant-progress, 0) * 100%), var(--border-soft) 0);
  content: "";
}

html[data-theme="dark"] .site-footer,
html[data-theme="dark"] .principles,
html[data-theme="dark"] .contact-shell,
html[data-theme="dark"] .process {
  color: var(--inverse-text);
}

.site-footer .brand {
  color: var(--inverse-text);
}

.legal-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

html[data-theme="dark"] .draft-notice {
  background: var(--card-bg);
  color: var(--text-main);
}

@media (max-width: 1120px) {
  .primary-nav {
    gap: 14px;
  }

  .primary-nav > a:not(.button) {
    font-size: 0.84rem;
  }

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

  .contact-shell {
    grid-template-columns: minmax(0, 760px);
  }
}

@media (max-width: 920px) {
  .primary-nav {
    margin-left: 0;
    background: var(--page-bg);
  }

  .primary-nav > a:not(.button) {
    padding-block: 16px;
    font-size: clamp(1.25rem, 5vw, 1.75rem);
  }

  .header-actions {
    margin-left: auto;
  }

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

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

  .sovereignty-controls article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--border-ui);
  }

  .sovereignty-controls article:nth-child(4) {
    border-top: 1px solid var(--border-ui);
  }
}

@media (max-width: 720px) {
  .section {
    padding-block: 60px;
  }

  .service-outcome {
    font-size: 0.84rem;
    white-space: normal;
  }

  .header-inner {
    gap: 8px;
  }

  .header-actions {
    gap: 5px;
  }

  .header-actions .icon-button {
    width: 42px;
    height: 42px;
  }

  .menu-toggle {
    min-width: 42px;
    min-height: 42px;
    padding-inline: 6px;
  }

  .theme-toggle,
  .display-toggle {
    display: inline-flex;
  }

  .hero-grid {
    padding-block: 48px 82px;
  }

  .hero-copy,
  .hero-visual,
  .section-heading,
  .service-grid,
  .regulated-grid {
    min-width: 0;
    max-width: 100%;
  }

  .hero-marquee {
    overflow: visible;
  }

  .hero-marquee-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 18px;
    width: min(calc(100% - 32px), var(--shell));
    min-height: 0;
    margin-inline: auto;
    padding: 18px 0;
  }

  .hero-marquee-inner span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .hero-marquee-inner span:last-child {
    grid-column: 1 / -1;
  }

  .hero-marquee-inner i {
    display: none;
  }

  .trust-list {
    font-size: 1rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .service-tile {
    min-height: 245px;
    padding: 22px;
  }

  .display-dialog,
  .service-dialog,
  .mail-dialog {
    width: calc(100vw - 16px);
    max-width: none;
    max-height: calc(100svh - 16px);
    border-radius: 14px;
  }

  .display-dialog {
    padding: 22px 16px;
  }

  .mail-dialog-shell {
    padding: 28px 20px 22px;
  }

  .mail-dialog-actions {
    display: grid;
  }

  .mail-dialog-actions .button {
    width: 100%;
  }

  .display-options {
    grid-template-columns: 1fr;
  }

  .segmented-control {
    flex-wrap: wrap;
  }

  .segmented-control button {
    flex-basis: calc(50% - 4px);
  }

  .service-dialog-shell {
    padding: 26px 18px 20px;
  }

  .service-dialog-content h2 {
    padding-right: 32px;
  }

  .service-dialog-content ul {
    grid-template-columns: 1fr;
    padding: 16px 0;
  }

  .service-dialog-nav {
    grid-template-columns: 1fr;
  }

  .service-dialog-nav button:last-child {
    justify-content: space-between;
    text-align: left;
  }

  .sovereignty-controls {
    grid-template-columns: 1fr;
  }

  .sovereignty-controls article,
  .sovereignty-controls article + article,
  .sovereignty-controls article:nth-child(3),
  .sovereignty-controls article:nth-child(4) {
    padding: 24px 0;
    border-top: 1px solid var(--border-ui);
    border-left: 0;
  }

  .sovereignty-controls article:first-child {
    border-top: 0;
  }

  .sovereignty-controls h3 {
    min-height: 0;
  }

  .sovereignty-callout {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .regulation-panel {
    padding: 24px 18px;
  }

  .regulation-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .regulation-tags span {
    display: grid;
    place-items: center;
    min-width: 0;
    min-height: 42px;
    padding: 8px 6px;
    font-size: 0.74rem;
    overflow-wrap: anywhere;
  }

  .contact-shell {
    padding: 60px 16px 76px;
  }

  .contact-assistant {
    width: min(100%, 620px);
    margin-inline: auto;
    padding: 20px 16px;
  }

  .assistant-options,
  .assistant-contact-form {
    grid-template-columns: 1fr;
  }

  .assistant-summary div {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 10px 12px;
  }

}

@media (max-width: 430px) {
  .brand {
    font-size: 1.72rem;
  }

  .menu-toggle-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .service-tile {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .service-icon {
    width: 50px;
    height: 50px;
    padding: 12px;
  }
}

@media (forced-colors: active) {
  .icon-button,
  .service-tile,
  .assistant-options button,
  .assistant-message,
  .assistant-stage,
  .assistant-summary,
  .service-dialog-nav button,
  .contact-assistant,
  .display-dialog,
  .service-dialog,
  .mail-dialog {
    border: 2px solid ButtonText;
  }

  .assistant-badge > span {
    border: 2px solid ButtonText;
  }
}
