:root {
  --ink: #183044;
  --ink-soft: #5c6871;
  --blue: #003b73;
  --blue-deep: #003b73;
  --blue-dark: #002a52;
  --blue-light: #dce9f4;
  --gray: #6e7072;
  --paper: #f7f9fb;
  --white: #ffffff;
  --line: #d6e0e8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
}

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

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--blue-dark);
  transform: translateY(-160%);
}

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

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

.launch-page {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 0 clamp(24px, 5vw, 76px);
  color: var(--ink);
  background:
    linear-gradient(rgba(0, 59, 115, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 59, 115, 0.045) 1px, transparent 1px),
    var(--white);
  background-size: 72px 72px;
}

.launch-page::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: clamp(-220px, -10vw, -90px);
  top: 12%;
  width: clamp(360px, 48vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(0, 59, 115, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 clamp(42px, 7vw, 108px) rgba(0, 59, 115, 0.025),
    0 0 0 clamp(90px, 14vw, 220px) rgba(0, 59, 115, 0.018);
}

.launch-header,
.launch-content,
.launch-footer {
  position: relative;
  z-index: 1;
}

.launch-header {
  min-height: 122px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.launch-header img {
  display: block;
  width: 178px;
  height: 114px;
  object-fit: contain;
}

.launch-content {
  width: min(920px, 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(74px, 11vh, 142px) 0;
}

.launch-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 34px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.launch-kicker span {
  width: 38px;
  height: 1px;
  background: var(--blue);
}

.launch-content h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(58px, 8.1vw, 124px);
  font-weight: 560;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.launch-content h1 em {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.launch-intro {
  max-width: 650px;
  margin: clamp(40px, 5vw, 66px) 0 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.75;
}

.launch-date {
  width: min(650px, 100%);
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  align-items: end;
  gap: 20px;
  margin-top: clamp(38px, 5vw, 62px);
  padding-top: clamp(26px, 3vw, 42px);
  border-top: 1px solid var(--line);
}

.launch-date span {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.launch-date time {
  color: var(--blue);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(66px, 8vw, 118px);
  font-weight: 620;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.launch-footer {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  border-top: 1px solid var(--line);
}

.launch-footer > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.launch-footer > div:first-child span {
  color: var(--blue);
  font-size: 16px;
  font-weight: 680;
  letter-spacing: 0.02em;
}

.launch-footer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.launch-footer > div:last-child {
  align-items: flex-end;
  color: var(--ink-soft);
  font-size: 12px;
}

.launch-footer a {
  color: var(--ink);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 122px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(24px, 5vw, 76px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-light {
  position: relative;
  color: var(--ink);
  background: var(--white);
  border-bottom-color: var(--line);
}

.header-light .header-cta span {
  color: var(--blue);
  border-color: var(--line);
}

.header-light nav a::after {
  background: var(--blue);
}

.brand {
  display: inline-flex;
  width: fit-content;
  height: 116px;
  align-items: center;
}

.brand img {
  display: block;
  width: 178px;
  height: 114px;
  object-fit: contain;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
}

.site-header nav a {
  position: relative;
  font-size: 13px;
  letter-spacing: 0.02em;
  opacity: 0.82;
  transition: opacity 180ms ease;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--blue);
  transition: right 180ms ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  opacity: 1;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  right: 0;
}

.header-cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
}

.header-cta span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--blue);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.hero {
  position: relative;
  min-height: min(860px, 94vh);
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(28px, 5vw, 90px);
  align-items: center;
  padding: 190px clamp(24px, 7vw, 108px) 90px;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 20%, rgba(0, 97, 160, 0.5), transparent 36%),
    linear-gradient(120deg, #003b73 0%, #003563 48%, #002a52 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  right: -330px;
  top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(255, 255, 255, 0.018),
    0 0 0 180px rgba(255, 255, 255, 0.012);
}

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

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 32px;
  color: var(--blue);
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow {
  color: #a9d2ff;
}

.eyebrow span {
  width: 24px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(52px, 5.6vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 480;
}

.hero h1 em {
  color: #8fc2f9;
  font-style: normal;
}

.hero-intro {
  max-width: 630px;
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.72;
}

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 0 22px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 650;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

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

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

.button-primary:hover,
.button-primary:focus-visible {
  background: #2780ee;
}

.text-link {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.hero-visual {
  width: min(100%, 620px);
  aspect-ratio: 1 / 0.9;
  justify-self: end;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(8, 39, 62, 0.56);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
  transform: rotate(1.25deg);
}

.visual-meta,
.visual-footer {
  height: 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.55);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.13em;
}

.plan {
  position: relative;
  height: 80%;
  border: 1px solid rgba(141, 196, 248, 0.38);
  overflow: hidden;
}

.plan-grid {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.55) 1px, transparent 1px);
  background-size: 22px 22px;
}

.plan::before,
.plan::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(151, 203, 251, 0.46);
}

.plan::before {
  inset: 9% 8% 12%;
}

.plan::after {
  width: 42%;
  height: 42%;
  right: 8%;
  top: 9%;
  border-left: 0;
}

.plan-label {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 8px;
  text-transform: uppercase;
}

.plan-label b {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: #d9ebff;
  border: 1px solid #55a4ef;
  border-radius: 50%;
  font-size: 8px;
}

.label-a {
  top: 15%;
  left: 13%;
}

.label-b {
  bottom: 16%;
  left: 13%;
}

.label-c {
  top: 15%;
  right: 13%;
}

.bench {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 4px;
  border: 2px solid #75b7f4;
  background: rgba(23, 107, 218, 0.14);
  box-shadow: 0 0 22px rgba(79, 161, 239, 0.13);
}

.bench i {
  display: block;
  width: 16%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
}

.bench-one {
  left: 23%;
  top: 36%;
  width: 54%;
  height: 15%;
}

.bench-two {
  left: 24%;
  bottom: 19%;
  width: 28%;
  height: 13%;
}

.plan-path {
  position: absolute;
  left: 16%;
  top: 29%;
  width: 67%;
  height: 32%;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-top: 0;
  border-bottom: 0;
}

.visual-footer {
  justify-content: flex-start;
  gap: 13px;
}

.visual-footer strong {
  color: var(--blue);
  font-weight: 500;
}

.hero-index {
  position: absolute;
  left: 28px;
  bottom: 34px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.32);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
}

.hero-index i {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.25);
}

.trust-bar {
  min-height: 74px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 0;
  padding: 0 clamp(24px, 7vw, 108px);
  background: var(--white);
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-bar span {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-bar span::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: var(--blue);
  border: 1px solid #bdd2e6;
  border-radius: 50%;
  font-size: 9px;
}

.section {
  padding: clamp(88px, 10vw, 150px) clamp(24px, 7vw, 108px);
}

.services {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 42px;
  background: var(--paper);
}

.section-heading h2,
.company h2,
.process-intro h2,
.contact h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(40px, 4.3vw, 67px);
  line-height: 1.06;
  letter-spacing: -0.05em;
  font-weight: 510;
}

.section-lead {
  max-width: 520px;
  align-self: end;
  margin: 0 0 7px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

.service-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 30px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 390px;
  padding: 34px;
  background: var(--white);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.service-card:hover {
  z-index: 2;
  transform: translateY(-7px);
  box-shadow: 0 20px 45px rgba(26, 61, 87, 0.12);
}

.service-number {
  color: #8092a1;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.service-icon {
  position: relative;
  width: 80px;
  height: 70px;
  margin: 45px 0 36px;
}

.service-icon::before,
.service-icon::after,
.service-icon i {
  content: "";
  position: absolute;
  display: block;
  border: 1px solid #6fa1cf;
}

.service-icon::before {
  left: 0;
  bottom: 0;
  width: 78px;
  height: 16px;
  background: #edf5fc;
}

.service-icon::after {
  left: 12px;
  top: 6px;
  width: 50px;
  height: 46px;
}

.service-icon i:first-child {
  left: 30px;
  top: 0;
  width: 20px;
  height: 9px;
  background: #b9d9f6;
}

.service-icon i:last-child {
  left: 8px;
  bottom: -12px;
  width: 3px;
  height: 12px;
  border-width: 0 1px;
}

.service-card:nth-child(2) .service-icon {
  transform: rotate(90deg);
}

.service-card:nth-child(3) .service-icon::after {
  border-radius: 50%;
  border-color: var(--blue);
}

.service-card h3 {
  margin: 0 0 16px;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.service-card p {
  max-width: 340px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.72;
}

.card-arrow {
  position: absolute;
  right: 30px;
  bottom: 26px;
  color: var(--blue);
  font-size: 22px;
}

.process-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 9vw, 150px);
  color: var(--white);
  background: var(--blue-dark);
}

.section-kicker.light {
  color: #8fc6fa;
}

.process-intro {
  align-self: center;
}

.process-intro h2,
.contact h2 {
  color: var(--white);
}

.process-intro > p:not(.section-kicker) {
  max-width: 540px;
  margin: 30px 0 38px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
  line-height: 1.8;
}

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

.process-list {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.process-step {
  display: grid;
  grid-template-columns: 50px 0.55fr 1fr;
  align-items: center;
  gap: 20px;
  min-height: 112px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.process-step > span {
  color: #70b7f5;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 10px;
}

.process-step h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 530;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  line-height: 1.55;
}

.company {
  display: grid;
  grid-template-columns: 0.48fr 1fr;
  gap: clamp(50px, 8vw, 130px);
  background: var(--white);
}

.company-label {
  position: relative;
  min-height: 440px;
  padding-right: 40px;
  border-right: 1px solid var(--line);
}

.company-year {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #e4ebf1;
  font-size: clamp(82px, 11vw, 165px);
  line-height: 0.75;
  letter-spacing: -0.08em;
  font-weight: 650;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.company-copy > p {
  max-width: 690px;
  margin: 38px 0 50px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

.audiences {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.audiences span {
  min-height: 67px;
  display: flex;
  align-items: center;
  padding: 0 18px 0 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-weight: 590;
}

.audiences span:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.audiences span:nth-child(even) {
  padding-left: 28px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.28fr);
  align-items: start;
  gap: clamp(60px, 9vw, 145px);
  padding: clamp(95px, 11vw, 170px) clamp(24px, 12vw, 185px);
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(3, 29, 47, 0.68), rgba(9, 54, 87, 0.2)),
    linear-gradient(135deg, #0c3c60, #0a2d49);
}

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

.contact-copy > p:not(.section-kicker) {
  max-width: 550px;
  margin: 34px 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 1.75;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 55px;
}

.contact-direct > span {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-direct > a:last-child {
  color: #b9dcff;
  font-size: 14px;
}

.phone-link {
  display: block;
  width: fit-content;
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 560;
  letter-spacing: -0.025em;
}

.phone-link:hover,
.phone-link:focus-visible {
  color: #b9dcff;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: clamp(28px, 4vw, 52px);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 36px 90px rgba(0, 19, 37, 0.22);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.lead-form label {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.lead-form label > span:first-child {
  color: #526776;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid #ccd8e1;
  border-radius: 0;
  background: #fbfcfd;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline: 0;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.lead-form textarea {
  min-height: 145px;
  padding: 14px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 59, 115, 0.1);
}

.lead-form .consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 12px;
}

.lead-form .consent input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.lead-form .consent span {
  color: #5d6d78;
  font-size: 12px;
  line-height: 1.65;
}

.lead-form .consent a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.form-hint {
  margin: -10px 0 0;
  color: #84919a;
  font-size: 11px;
}

.form-error {
  margin: -8px 0 0;
  padding: 13px 15px;
  color: #8a2432;
  background: #fff1f3;
  border-left: 3px solid #bb4052;
  font-size: 13px;
  line-height: 1.5;
}

.form-submit {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border: 0;
  border-radius: 0;
  color: var(--white);
  background: var(--blue);
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.form-submit:hover,
.form-submit:focus-visible {
  background: #07538f;
  transform: translateY(-2px);
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.form-success {
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(35px, 5vw, 65px);
  color: var(--ink);
  background: var(--white);
}

.form-success > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
}

.form-success h3 {
  margin: 0 0 15px;
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: -0.04em;
  font-weight: 560;
}

.form-success p {
  max-width: 450px;
  margin: 0 0 30px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.form-success button {
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid var(--blue);
  background: transparent;
  color: var(--blue);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

footer {
  min-height: 190px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 30px;
  padding: 42px clamp(24px, 7vw, 108px);
  color: var(--ink);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.subpage {
  background: var(--white);
}

.legal-hero {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(100px, 12vw, 180px) clamp(24px, 12vw, 185px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, transparent 0 73%, rgba(23, 107, 218, 0.04) 73%),
    var(--white);
}

.legal-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(58px, 7vw, 112px);
  line-height: 0.94;
  letter-spacing: -0.065em;
  font-weight: 500;
}

.legal-hero > p:not(.section-kicker) {
  max-width: 640px;
  margin: 36px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

.legal-meta {
  margin-top: 52px;
  color: #8294a1;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: clamp(50px, 9vw, 150px);
  padding: clamp(90px, 11vw, 165px) clamp(24px, 12vw, 185px);
}

.legal-layout aside {
  align-self: start;
  position: sticky;
  top: 40px;
  color: var(--ink-soft);
}

.legal-layout aside > span {
  display: block;
  margin-bottom: 15px;
  color: var(--blue);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.legal-layout aside p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
}

.legal-content {
  width: min(100%, 830px);
}

.agb-nav nav {
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 120px);
  overflow: auto;
  scrollbar-width: thin;
}

.agb-nav nav a {
  padding: 8px 0;
  color: #6f8392;
  font-size: 11px;
  line-height: 1.35;
  transition: color 160ms ease;
}

.agb-nav nav a:hover,
.agb-nav nav a:focus-visible {
  color: var(--blue);
}

.legal-notice {
  margin-bottom: 90px;
  padding: 38px;
  border-left: 3px solid var(--blue);
  background: #f2f7fc;
}

.legal-notice strong {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-notice p {
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.75;
}

.legal-content article {
  scroll-margin-top: 35px;
}

.legal-content article {
  padding: 0 0 70px;
  margin: 0 0 70px;
  border-bottom: 1px solid var(--line);
}

.legal-content article:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.legal-content h2 {
  margin: 0 0 28px;
  color: var(--ink);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.035em;
  font-weight: 560;
}

.legal-content p {
  margin: 0 0 22px;
  color: #405969;
  font-size: 15px;
  line-height: 1.9;
  white-space: pre-line;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.contact-data {
  margin: 0;
  border-top: 1px solid var(--line);
}

.contact-data div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 25px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.contact-data dt {
  color: #7b8e9c;
}

.contact-data dd {
  margin: 0;
  color: var(--ink);
}

.contact-data a {
  color: var(--blue);
}

.seo-region {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(70px, 10vw, 180px);
  align-items: start;
  background: #f7f8f9;
}

.seo-region h2,
.service-process h2,
.service-faq > div:first-child h2,
.service-cta h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 430;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.region-copy {
  max-width: 690px;
  padding-top: 42px;
}

.region-copy p {
  margin: 0 0 34px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.75;
}

.service-hero {
  min-height: 760px;
  padding: 210px clamp(24px, 7vw, 120px) 120px;
  background:
    linear-gradient(90deg, rgba(0, 59, 115, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(0, 59, 115, 0.035) 1px, transparent 1px),
    #fff;
  background-size: 64px 64px;
}

.service-hero h1 {
  max-width: 1050px;
  margin: 34px 0 40px;
  font-size: clamp(58px, 7.4vw, 118px);
  font-weight: 430;
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.service-hero > p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 0 44px;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.7;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  padding: 1px;
}

.service-detail-grid article {
  min-height: 440px;
  padding: clamp(34px, 5vw, 74px);
  background: #fff;
}

.service-detail-grid article > span {
  display: block;
  margin-bottom: 110px;
  color: var(--blue);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.service-detail-grid h2 {
  margin: 0 0 22px;
  font-size: clamp(27px, 2.5vw, 40px);
  font-weight: 470;
  letter-spacing: -0.04em;
}

.service-detail-grid p,
.service-process-list p,
.service-faq article p,
.service-cta > p:not(.section-kicker) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.service-process {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(70px, 10vw, 170px);
  color: #fff;
  background: var(--blue);
}

.service-process-list {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.service-process-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.service-process-list article > span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  letter-spacing: 0.15em;
}

.service-process-list h3 {
  margin: 0 0 10px;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.service-process-list p,
.service-cta > p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.74);
}

.service-faq {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(70px, 10vw, 170px);
}

.service-faq article {
  padding: 0 0 38px;
  margin-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.service-faq h3 {
  margin: 0 0 14px;
  font-size: clamp(22px, 2vw, 29px);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.service-cta {
  padding: 120px clamp(24px, 7vw, 120px);
  color: #fff;
  background: #101a24;
}

.service-cta h2 {
  max-width: 900px;
  margin-bottom: 32px;
}

.service-cta > p:not(.section-kicker) {
  max-width: 700px;
  margin-bottom: 40px;
  font-size: 18px;
}

footer .brand {
  height: 126px;
}

footer .brand img {
  width: 188px;
  height: 124px;
}

.footer-info,
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.5;
}

.footer-info {
  justify-self: center;
}

.footer-links {
  justify-self: end;
  align-items: flex-end;
}

.footer-info a:hover,
.footer-links a:hover {
  color: var(--blue);
}

:focus-visible {
  outline: 2px solid #8cc6ff;
  outline-offset: 4px;
}

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

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

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

  .hero-visual {
    width: min(100%, 680px);
    justify-self: center;
  }

  .trust-bar {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-block: 24px;
  }

  .services,
  .process-section {
    grid-template-columns: 1fr;
  }

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

  .contact-copy {
    position: static;
  }

  .seo-region,
  .service-process,
  .service-faq {
    grid-template-columns: 1fr;
  }

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

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

  .service-detail-grid article {
    min-height: 0;
  }

  .service-detail-grid article > span {
    margin-bottom: 60px;
  }

  .process-list {
    margin-top: 20px;
  }
}

@media (max-width: 720px) {
  .launch-page {
    padding: 0 20px;
    background-size: 48px 48px;
  }

  .launch-page::after {
    top: 20%;
    right: -230px;
    width: 470px;
  }

  .launch-header {
    min-height: 88px;
  }

  .launch-header img {
    width: 118px;
    height: 76px;
  }

  .launch-content {
    padding: 72px 0;
  }

  .launch-kicker {
    max-width: 290px;
    font-size: 9px;
    line-height: 1.5;
  }

  .launch-content h1 {
    font-size: clamp(52px, 16vw, 76px);
  }

  .launch-date {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .launch-date time {
    font-size: clamp(68px, 24vw, 104px);
  }

  .launch-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 0;
  }

  .launch-footer > div:last-child {
    align-items: flex-start;
  }

  .site-header {
    height: 78px;
    padding-inline: 20px;
  }

  .brand img {
    width: 108px;
    height: 70px;
  }

  .header-cta {
    font-size: 0;
  }

  .header-cta span {
    font-size: 15px;
  }

  .hero {
    min-height: auto;
    padding: 125px 20px 72px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 68px);
  }

  .hero-intro {
    font-size: 16px;
  }

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

  .hero-visual {
    margin-top: 22px;
    padding: 14px;
    transform: none;
  }

  .hero-index {
    display: none;
  }

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

  .section {
    padding: 78px 20px;
  }

  .services {
    gap: 28px;
  }

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

  .service-card {
    min-height: 340px;
  }

  .process-step {
    grid-template-columns: 35px 1fr;
    min-height: 130px;
  }

  .process-step p {
    grid-column: 2;
    padding-bottom: 22px;
  }

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

  .company-label {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .company-year {
    position: static;
    display: block;
    padding-bottom: 35px;
    font-size: 86px;
    writing-mode: initial;
    transform: none;
  }

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

  .audiences span:nth-child(odd) {
    border-right: 0;
  }

  .audiences span:nth-child(even) {
    padding-left: 0;
  }

  .contact {
    padding: 82px 20px;
  }

  .service-hero {
    min-height: auto;
    padding: 135px 20px 85px;
    background-size: 44px 44px;
  }

  .service-hero h1 {
    margin-top: 26px;
    font-size: clamp(48px, 14vw, 70px);
  }

  .service-detail-grid {
    padding: 1px 0;
  }

  .service-detail-grid article {
    padding: 52px 20px;
  }

  .service-process-list article {
    grid-template-columns: 34px 1fr;
  }

  .service-cta {
    padding: 82px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .lead-form {
    gap: 22px;
    padding: 28px 20px;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 55px 20px;
  }

  .legal-hero {
    min-height: 440px;
    padding: 90px 20px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 62px;
    padding: 82px 20px;
  }

  .legal-layout aside {
    position: static;
  }

  .legal-content article {
    padding-bottom: 50px;
    margin-bottom: 50px;
  }

  .contact-data div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-info,
  .footer-links {
    justify-self: start;
    align-items: flex-start;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

.privacy-settings {
  appearance: none;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
  text-align: inherit;
}

.privacy-settings:hover {
  text-decoration: underline;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.form-success-message {
  padding: 15px 17px;
  color: #135c34;
  border: 1px solid #7fbd99;
  background: #edf8f1;
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner {
  position: fixed;
  z-index: 1000;
  right: clamp(14px, 3vw, 42px);
  bottom: clamp(14px, 3vw, 42px);
  left: clamp(14px, 3vw, 42px);
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: clamp(32px, 6vw, 84px);
  width: min(1180px, calc(100% - clamp(28px, 6vw, 84px)));
  margin: 0 auto;
  padding: clamp(28px, 4vw, 52px);
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 24px 80px rgba(0, 42, 82, 0.22);
}

.consent-copy h2 {
  max-width: 680px;
  margin: 15px 0 14px;
  font-size: clamp(27px, 3vw, 43px);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.consent-copy > p:last-child {
  max-width: 760px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.consent-copy a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-actions {
  display: grid;
  gap: 12px;
}

.consent-actions .button {
  width: 100%;
  min-height: 54px;
  justify-content: center;
  border: 1px solid var(--blue);
  cursor: pointer;
}

.consent-reject,
.consent-allow {
  color: var(--white);
  background: var(--blue);
}

.consent-reject:hover,
.consent-reject:focus-visible,
.consent-allow:hover,
.consent-allow:focus-visible {
  background: #07538f;
}

@media (max-width: 820px) {
  .consent-banner {
    grid-template-columns: 1fr;
    gap: 28px;
    max-height: calc(100svh - 28px);
    overflow-y: auto;
  }
}

@media (max-width: 520px) {
  .consent-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
    padding: 25px 20px;
  }
}
