:root {
  --ink: #071a2d;
  --navy: #082849;
  --navy-deep: #041422;
  --blue: #0b4f83;
  --electric: #3b9eff;
  --sky: #9cd6ff;
  --paper: #f5f4ef;
  --paper-bright: #fbfaf6;
  --white: #ffffff;
  --muted: #617184;
  --line: rgba(8, 40, 73, 0.14);
  --content: 1320px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; }
::selection { color: white; background: var(--blue); }
h1, h2, h3, p { margin-top: 0; }

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  width: min(var(--content), calc(100% - 64px));
  min-height: 108px;
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 34px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.16);
  color: white;
  transform: translateX(-50%);
}

.brand,
.footer-brand,
.privacy-brand {
  position: relative;
  aspect-ratio: 100 / 41;
  display: block;
  height: auto;
  padding: 0;
  overflow: hidden;
  line-height: 0;
  background: white;
}

.brand {
  width: 200px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.14);
}

.brand img,
.footer-brand img,
.privacy-brand img {
  position: absolute;
  top: 0;
  left: 50%;
  width: 108%;
  max-width: none;
  height: auto;
  display: block;
  margin: 0;
  transform: translate(-53.8%, -15.3%);
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.4vw, 38px);
}

nav a {
  position: relative;
  color: rgba(255,255,255,.76);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .035em;
  white-space: nowrap;
  transition: color .25s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 100%;
  height: 1px;
  background: var(--sky);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

nav a:hover, nav a:focus-visible { color: white; }
nav a:hover::after, nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.header-tools { display: flex; align-items: center; justify-content: flex-end; gap: 15px; }

.language-switcher {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.045);
}

.language-switcher a {
  min-width: 31px;
  padding: 8px 7px;
  color: rgba(255,255,255,.55);
  font-size: 9px;
  line-height: 1;
  font-weight: 780;
  letter-spacing: .08em;
  text-align: center;
  transition: color .2s ease, background .2s ease;
}

.language-switcher a:hover, .language-switcher a:focus-visible { color: white; }
.language-switcher a[aria-current="page"] { color: var(--navy); background: white; }

.header-cta {
  min-height: 42px;
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,.3);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .25s ease, color .25s ease;
}

.header-cta:hover, .header-cta:focus-visible { color: var(--navy); background: white; }

.hero {
  position: relative;
  min-height: 840px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 76% 45%, rgba(29,114,178,.3), transparent 32%),
    radial-gradient(circle at 20% 20%, rgba(32,94,144,.18), transparent 30%),
    linear-gradient(135deg, #051523 0%, #082847 58%, #061b2e 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, black, transparent 46%);
}

.hero::after {
  content: "";
  position: absolute;
  left: -8%;
  bottom: -330px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(107,188,255,.09);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(107,188,255,.025), 0 0 0 180px rgba(107,188,255,.018);
}

.hero-glow {
  position: absolute;
  right: 7%;
  top: 19%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(90px);
  background: rgba(32,130,210,.13);
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(var(--content), calc(100% - 64px));
  margin: 0 auto;
  padding-top: 212px;
}

.eyebrow {
  display: flex;
  gap: 11px;
  align-items: center;
  margin: 0 0 26px;
  color: var(--sky);
  font-size: 10px;
  line-height: 1;
  font-weight: 750;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eyebrow span { width: 22px; height: 1px; background: currentColor; }
.eyebrow.dark { color: var(--blue); }
.eyebrow.light { color: #77bfff; }

.hero h1 {
  max-width: 750px;
  margin-bottom: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 6vw, 98px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.05em;
}

.hero h1 em, .yearborne h2 em {
  color: #8bcbff;
  font-weight: 400;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 38px;
  color: rgba(255,255,255,.68);
  font-size: 16px;
  line-height: 1.72;
}

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

.button {
  min-width: 218px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 20px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { color: var(--navy); background: white; box-shadow: 0 15px 45px rgba(0,0,0,.18); }
.button-primary:hover, .button-primary:focus-visible { background: #dff1ff; box-shadow: 0 18px 55px rgba(0,0,0,.28); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 600;
}

.flow-stage {
  position: absolute;
  z-index: 3;
  top: 250px;
  right: max(3vw, calc((100vw - 1450px) / 2));
  width: min(49vw, 720px);
  height: 318px;
  overflow: hidden;
  border: 1px solid rgba(166,215,255,.14);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(10,42,68,.91), rgba(3,18,31,.84));
  box-shadow: 0 34px 90px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.035);
  backdrop-filter: blur(14px);
}

.flow-stage-head {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 22px 0 24px;
  border-bottom: 1px solid rgba(166,215,255,.1);
  background: rgba(3,18,31,.35);
}

.flow-caption {
  color: rgba(255,255,255,.34);
  font-size: 8px;
  letter-spacing: .2em;
  font-weight: 750;
  text-transform: uppercase;
}

.flow-meta { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.38); font: 8px ui-monospace, monospace; letter-spacing: .06em; }
.flow-meta i { width: 6px; height: 6px; border-radius: 50%; background: #50c49a; box-shadow: 0 0 10px rgba(80,196,154,.72); }

.flow-stage::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 58px 0 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 52% 52%, rgba(52,151,222,.12), transparent 48%),
    linear-gradient(90deg, rgba(72,169,238,.025), transparent 28%, transparent 72%, rgba(80,196,154,.025));
}

.flow-grid {
  position: absolute;
  inset: 0;
  opacity: .38;
  background-image: radial-gradient(rgba(158,207,245,.34) .7px, transparent .7px);
  background-size: 18px 18px;
}

.flow-track {
  position: absolute;
  z-index: 3;
  inset: 58px 22px 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 50px;
  align-items: center;
}

.flow-track-item { position: relative; min-width: 0; }

.flow-node {
  position: relative;
  width: 100%;
  min-height: 142px;
  padding: 20px 18px 18px;
  border: 1px solid rgba(181,220,251,.22);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(15,58,91,.98), rgba(6,27,46,.98));
  box-shadow: 0 18px 36px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.035);
}

.flow-node.active { border-color: rgba(90,187,255,.7); box-shadow: 0 0 0 4px rgba(45,141,217,.075), 0 20px 45px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.055); }
.flow-node-4 { border-color: rgba(80,196,154,.32); }
.node-head { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.flow-node small { display: block; margin: 0; color: rgba(255,255,255,.42); font-size: 7px; font-weight: 750; letter-spacing: .17em; }
.node-number { margin-left: auto; color: rgba(151,211,251,.38); font: 8px ui-monospace, monospace; }
.flow-node strong { display: block; margin-bottom: 8px; font-family: Georgia, "Times New Roman", serif; font-size: 19px; font-weight: 400; letter-spacing: -.02em; }
.flow-node p { margin: 0; color: rgba(255,255,255,.5); font-size: 9px; line-height: 1.45; }

.node-dot { flex: 0 0 auto; width: 7px; height: 7px; border-radius: 50%; }
.node-dot-1 { background: #f2b75a; box-shadow: 0 0 12px #f2b75a; }
.node-dot-2 { background: #4aa9ee; box-shadow: 0 0 12px #4aa9ee; }
.node-dot-3 { background: #b695ff; box-shadow: 0 0 12px #b695ff; }
.node-dot-4 { background: #50c49a; box-shadow: 0 0 12px #50c49a; }
.node-port { position: absolute; z-index: 4; top: 50%; width: 11px; height: 11px; border: 2px solid #82cbfb; border-radius: 50%; background: #092740; box-shadow: 0 0 0 4px rgba(6,27,46,.88); transform: translateY(-50%); }
.node-port-in { left: -6px; }
.node-port-out { right: -6px; background: #62bef8; box-shadow: 0 0 0 4px rgba(6,27,46,.88), 0 0 16px rgba(98,190,248,.62); }
.flow-track-item:first-child .node-port-in,
.flow-track-item:last-child .node-port-out { display: none; }

.flow-bridge {
  position: absolute;
  top: 0;
  left: 100%;
  width: 50px;
  height: 100%;
}

.flow-bridge-label {
  position: absolute;
  top: 31px;
  left: 50%;
  padding: 5px 7px;
  border: 1px solid rgba(128,201,251,.15);
  border-radius: 999px;
  color: rgba(255,255,255,.52);
  background: rgba(4,24,41,.92);
  font: 6px ui-monospace, monospace;
  letter-spacing: .06em;
  white-space: nowrap;
  transform: translateX(-50%);
}

.flow-bridge-label b { margin-right: 4px; color: #78c8fc; }
.flow-bridge-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(77,175,242,.72), #b8e4ff);
  box-shadow: 0 0 11px rgba(69,169,239,.42);
  transform: translateY(-50%);
}

.flow-bridge-line::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #c6ebff;
  border-right: 2px solid #c6ebff;
  filter: drop-shadow(0 0 5px rgba(104,194,250,.65));
  transform: translateY(-50%) rotate(45deg);
}

.flow-bridge-line i {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 1px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 9px #70c5fb;
  transform: translateY(-50%);
  animation: edge-pulse-x 3.2s ease-in-out infinite;
}

.flow-bridge-2 .flow-bridge-line i { animation-delay: -1.1s; }
.flow-bridge-3 .flow-bridge-line i { animation-delay: -2.2s; }
@keyframes edge-pulse-x { 0%, 15% { left: 1px; opacity: 0; } 30%, 75% { opacity: 1; } 90%, 100% { left: calc(100% - 8px); opacity: 0; } }

.hero-footer {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 31px;
  width: min(var(--content), calc(100% - 64px));
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255,255,255,.35);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-footer-line { height: 1px; flex: 1; background: rgba(255,255,255,.12); }
.section { padding-left: max(32px, calc((100vw - var(--content)) / 2)); padding-right: max(32px, calc((100vw - var(--content)) / 2)); }

.services { padding-top: 126px; padding-bottom: 132px; }

.section-heading {
  display: grid;
  grid-template-columns: 1.45fr .7fr;
  column-gap: 80px;
  align-items: end;
}

.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2, .closing h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.4vw, 64px);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -.045em;
}

.section-intro { margin: 0 0 7px; color: var(--muted); font-size: 15px; line-height: 1.75; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 72px;
  border: 1px solid var(--line);
  background: var(--line);
}

.service-card {
  position: relative;
  min-height: 310px;
  padding: 34px 34px 28px;
  overflow: hidden;
  background: var(--paper-bright);
  transition: color .35s ease, background .35s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(32,115,177,.11);
  border-radius: 50%;
  transition: transform .45s ease;
}

.service-card:hover { color: white; background: var(--navy); }
.service-card:hover::before { transform: scale(1.4); border-color: rgba(255,255,255,.1); }
.card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 60px; }
.card-top > span { color: #8594a2; font: 10px ui-monospace, monospace; letter-spacing: .14em; }
.service-icon { width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid rgba(8,40,73,.16); transition: border-color .35s ease; }
.service-card:hover .service-icon { border-color: rgba(255,255,255,.22); }
.service-icon svg { width: 23px; height: 23px; fill: none; stroke: var(--blue); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: stroke .35s ease; }
.service-card:hover .service-icon svg { stroke: #8bcbff; }
.service-card h3 { max-width: 420px; margin-bottom: 16px; font-family: Georgia, "Times New Roman", serif; font-size: 28px; line-height: 1.08; font-weight: 400; letter-spacing: -.025em; }
.service-card p { max-width: 470px; color: var(--muted); font-size: 13px; line-height: 1.7; transition: color .35s ease; }
.service-card:hover p { color: rgba(255,255,255,.58); }
.card-rule { position: absolute; left: 34px; right: 34px; bottom: 28px; height: 1px; background: var(--line); }
.card-rule::after { content: ""; display: block; width: 44px; height: 1px; background: var(--blue); transition: width .35s ease, background .35s ease; }
.service-card:hover .card-rule::after { width: 100%; background: #75bdf0; }

.quality {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(480px, .92fr);
  align-items: center;
  gap: 72px;
  padding-top: 120px;
  padding-bottom: 120px;
  color: white;
  background:
    radial-gradient(circle at 83% 20%, rgba(60,151,221,.16), transparent 29%),
    linear-gradient(135deg, #071d31, #061725 58%, #041421);
}

.quality-copy { max-width: 690px; }

.quality-copy h2 {
  max-width: 680px;
  margin-bottom: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(43px, 3.8vw, 60px);
  line-height: 1.03;
  font-weight: 400;
  letter-spacing: -.045em;
}

.quality-copy > p:not(.eyebrow) { max-width: 610px; color: rgba(255,255,255,.66); font-size: 16px; line-height: 1.75; }
.quality-statement { max-width: 600px; display: flex; align-items: center; gap: 14px; margin-top: 32px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.9); font-size: 13px; font-weight: 650; line-height: 1.55; }
.quality-statement span { width: 30px; height: 30px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid rgba(119,191,255,.38); color: #83caff; }

.quality-panel { width: 100%; max-width: 600px; justify-self: end; align-self: center; border: 1px solid rgba(139,203,255,.18); background: rgba(10,40,65,.48); box-shadow: 0 30px 80px rgba(0,0,0,.25); }
.quality-panel-head { display: flex; align-items: center; justify-content: space-between; padding: 17px 20px; border-bottom: 1px solid rgba(139,203,255,.14); color: rgba(255,255,255,.38); font: 9px ui-monospace, monospace; letter-spacing: .14em; }
.quality-status { display: flex; align-items: center; gap: 8px; }
.quality-status i { width: 6px; height: 6px; border-radius: 50%; background: #55d3a6; box-shadow: 0 0 10px #55d3a6; }
.quality-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.quality-item { min-height: 186px; display: grid; grid-template-columns: 30px 1fr; gap: 14px; padding: 25px 22px; border-right: 1px solid rgba(139,203,255,.12); border-bottom: 1px solid rgba(139,203,255,.12); }
.quality-item:nth-child(even) { border-right: 0; }
.quality-item:nth-last-child(-n+2) { border-bottom: 0; }
.quality-index { color: #70c0f6; font: 9px ui-monospace, monospace; }
.quality-item small { display: block; margin-bottom: 10px; color: rgba(255,255,255,.43); font-size: 8px; font-weight: 750; letter-spacing: .14em; }
.quality-item h3 { margin-bottom: 10px; font-family: Georgia, "Times New Roman", serif; font-size: 19px; font-weight: 400; line-height: 1.16; }
.quality-item p { margin: 0; color: rgba(255,255,255,.6); font-size: 12px; line-height: 1.62; }

.process {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 100px;
  padding-top: 120px;
  padding-bottom: 120px;
  color: white;
  background: #0a3154;
}

.process-copy h2 { margin-bottom: 30px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(42px, 4.2vw, 64px); line-height: 1.03; font-weight: 400; letter-spacing: -.045em; }
.process-copy > p:last-child { max-width: 510px; color: rgba(255,255,255,.57); font-size: 15px; line-height: 1.8; }
.process-flow { position: relative; display: grid; gap: 22px; align-self: start; }
.process-flow-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 2px; padding: 0 5px 15px; border-bottom: 1px solid rgba(139,203,255,.16); color: rgba(255,255,255,.4); font-size: 8px; font-weight: 720; letter-spacing: .18em; text-transform: uppercase; }
.process-flow-head b { color: rgba(139,203,255,.66); font: 9px ui-monospace, monospace; letter-spacing: .1em; }
.process-flow-head i { padding: 0 9px; color: #9ed8ff; font-size: 13px; font-style: normal; }
.process-step {
  position: relative;
  min-height: 110px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 26px;
  padding: 19px 22px;
  border: 1px solid rgba(139,203,255,.15);
  border-radius: 16px;
  background:
    linear-gradient(100deg, rgba(5,30,51,.82), rgba(6,37,63,.43)),
    radial-gradient(circle at 12% 50%, rgba(69,160,225,.07), transparent 25%);
  box-shadow: 0 17px 36px rgba(2,18,31,.17), inset 0 1px 0 rgba(255,255,255,.025);
}
.process-step:last-child { padding-right: 64px; border-color: rgba(80,196,154,.24); }
.step-port { position: relative; z-index: 2; width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid rgba(109,190,246,.62); border-radius: 14px; background: linear-gradient(145deg, #0a2b48, #061d32); box-shadow: 0 0 0 6px rgba(10,49,84,.84), 0 14px 24px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.05); }
.step-port::after { content: ""; position: absolute; top: 50%; left: calc(100% + 7px); width: 17px; height: 1px; background: linear-gradient(90deg, rgba(109,190,246,.46), rgba(109,190,246,.08)); }
.step-port span { color: #70c0f6; font: 10px ui-monospace, monospace; }
.process-step small { display: block; margin: 2px 0 8px; color: rgba(255,255,255,.31); font-size: 8px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.process-step h3 { margin-bottom: 6px; font-family: Georgia, "Times New Roman", serif; font-size: 24px; font-weight: 400; }
.process-step p { margin: 0; color: rgba(255,255,255,.5); font-size: 12px; }
.process-connector { position: absolute; z-index: 4; bottom: -23px; left: 50px; width: 2px; height: 23px; background: linear-gradient(#6dbcf2, #a9ddff); box-shadow: 0 0 10px rgba(87,177,238,.42); }
.process-connector::after { content: ""; position: absolute; left: -4px; bottom: 1px; width: 8px; height: 8px; border-right: 2px solid #b7e4ff; border-bottom: 2px solid #b7e4ff; filter: drop-shadow(0 0 4px rgba(103,186,242,.68)); transform: rotate(45deg); }
.process-connector i { position: absolute; top: 1px; left: 50%; width: 5px; height: 5px; border-radius: 50%; background: white; box-shadow: 0 0 8px #78c8fc; transform: translateX(-50%); animation: process-pulse 2.8s ease-in-out infinite; }
.process-complete { position: absolute; top: 50%; right: 21px; width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid rgba(80,196,154,.36); border-radius: 50%; color: #73d9b2; background: rgba(80,196,154,.08); box-shadow: 0 0 18px rgba(80,196,154,.08); font-size: 12px; transform: translateY(-50%); }
@keyframes process-pulse { 0%, 12% { top: 1px; opacity: 0; } 32%, 70% { opacity: 1; } 88%, 100% { top: 15px; opacity: 0; } }

.yearborne {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 80px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 20% 50%, rgba(20,123,199,.22), transparent 35%),
    linear-gradient(125deg, #082c4c 0%, #0a375e 55%, #06213a 100%);
}

.yearborne-visual { position: relative; height: 620px; }
.yearborne-visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 12px;
  width: min(76%, 450px);
  height: 112px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(116,205,255,.44) 0%, rgba(43,139,210,.21) 38%, rgba(5,30,51,0) 73%);
  filter: blur(12px);
  transform: translateX(-50%);
  pointer-events: none;
}
.orbit { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(126,199,249,.15); border-radius: 50%; transform: translate(-50%, -50%); }
.orbit-one { width: 540px; height: 540px; }
.orbit-two { width: 410px; height: 410px; }
.phone { position: absolute; z-index: 3; top: 50%; left: 50%; width: 260px; height: 540px; padding: 10px; border: 1px solid rgba(255,255,255,.32); border-radius: 42px; background: #040c13; box-shadow: 0 48px 92px rgba(0,0,0,.46), 0 24px 72px rgba(47,151,225,.16); transform: translate(-50%, -50%) rotate(-3deg); }
.phone-speaker { position: absolute; z-index: 3; top: 18px; left: 50%; width: 62px; height: 17px; border-radius: 20px; background: #03090e; transform: translateX(-50%); }
.phone-screen { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 34px; overflow: hidden; background: radial-gradient(circle at 50% 37%, rgba(42,151,231,.35), transparent 30%), linear-gradient(#0c2e4b, #061522); }
.game-kicker { position: absolute; top: 70px; color: rgba(255,255,255,.39); font-size: 7px; letter-spacing: .18em; }
.game-mark { width: 92px; height: 92px; margin-bottom: 20px; overflow: hidden; border: 1px solid rgba(125,201,255,.45); border-radius: 24px; box-shadow: 0 0 55px rgba(34,143,224,.34); }
.game-mark img { width: 100%; height: 100%; display: block; object-fit: cover; }
.game-title { font-family: Georgia, serif; font-size: 25px; letter-spacing: .08em; }
.game-subtitle { margin-top: 5px; color: #75bce9; font-size: 7px; letter-spacing: .34em; }
.game-stats { position: absolute; left: 26px; right: 26px; bottom: 50px; display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.game-stats span { padding: 10px 7px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.035); text-align: center; }
.game-stats b { display: block; margin-bottom: 4px; color: rgba(255,255,255,.37); font-size: 6px; font-weight: 500; text-transform: uppercase; }
.game-stats i { color: #8acbfa; font: normal 12px ui-monospace, monospace; }
.float-card { position: absolute; z-index: 4; min-width: 190px; padding: 17px 19px 18px; overflow: visible; border: 1px solid rgba(144,207,251,.28); border-radius: 14px; background: linear-gradient(145deg, rgba(7,36,59,.96), rgba(4,23,39,.9)); box-shadow: 0 20px 44px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.045); backdrop-filter: blur(12px); }
.float-card::before { content: ""; position: absolute; top: 50%; width: 54px; height: 1px; background: linear-gradient(90deg, rgba(114,194,243,.1), rgba(114,194,243,.75)); box-shadow: 0 0 8px rgba(92,181,238,.32); }
.float-card span { display: block; margin-bottom: 8px; color: #77c4f6; font-size: 7px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.float-card b { font-family: Georgia, serif; font-size: 16px; font-weight: 400; line-height: 1.2; }
.float-one { top: 164px; right: 0; }
.float-one::before { right: 100%; }
.float-two { left: 0; bottom: 148px; }
.float-two::before { left: 100%; transform: rotate(180deg); }
.yearborne-copy h2 { margin-bottom: 29px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(58px, 6vw, 88px); line-height: .93; font-weight: 400; letter-spacing: -.05em; }
.yearborne-copy > p { max-width: 540px; margin-bottom: 38px; color: rgba(255,255,255,.59); font-size: 16px; line-height: 1.8; }
.yearborne-links { display: flex; align-items: center; gap: 24px; }
.button-light { color: var(--navy); background: white; }
.button-light:hover, .button-light:focus-visible { background: #dff1ff; }

.closing { display: flex; align-items: flex-end; justify-content: space-between; gap: 80px; padding-top: 122px; padding-bottom: 118px; }
.closing > div { max-width: 940px; }
.closing-link { flex: 0 0 auto; display: flex; align-items: center; gap: 13px; padding-bottom: 7px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.closing-link span { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--blue); }

.site-footer { position: relative; padding: 0 max(32px, calc((100vw - var(--content)) / 2)); color: rgba(255,255,255,.6); background: linear-gradient(145deg, #041422, #061b2d); }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(103,186,242,.65), transparent); }
.footer-main { display: grid; grid-template-columns: 1.5fr .8fr .9fr 1fr; gap: 62px; padding: 72px 0 62px; }
.footer-identity { max-width: 350px; }
.footer-brand { width: 180px; border: 1px solid rgba(255,255,255,.16); border-radius: 11px; box-shadow: 0 18px 40px rgba(0,0,0,.18); }
.footer-identity > p { max-width: 300px; margin: 24px 0 0; color: rgba(255,255,255,.46); font-family: Georgia, "Times New Roman", serif; font-size: 19px; line-height: 1.42; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-column h3 { margin: 3px 0 10px; color: rgba(255,255,255,.3); font-size: 8px; font-weight: 750; letter-spacing: .18em; text-transform: uppercase; }
.footer-column a, .footer-column > span { color: rgba(255,255,255,.62); font-size: 11px; line-height: 1.5; transition: color .2s ease; }
.footer-column a:hover, .footer-column a:focus-visible { color: white; }
.footer-contact > a { color: #8bcbff; }
.language-switcher-compact { margin-top: 10px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 22px 0 27px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.3); font-size: 9px; letter-spacing: .05em; }

.privacy-page { min-height: 100vh; color: var(--ink); background: var(--paper); }
.privacy-header { min-height: 96px; display: grid; grid-template-columns: 180px 1fr auto; align-items: center; gap: 32px; padding: 0 max(32px, calc((100vw - 1180px) / 2)); border-bottom: 1px solid rgba(8,40,73,.12); background: white; }
.privacy-brand { width: 168px; border: 1px solid rgba(8,40,73,.1); border-radius: 10px; }
.privacy-back { justify-self: end; display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 11px; font-weight: 680; }
.privacy-back:hover, .privacy-back:focus-visible { color: var(--blue); }
.privacy-language { display: inline-flex; align-items: center; padding: 3px; border: 1px solid var(--line); }
.privacy-language a { min-width: 34px; padding: 9px 7px; color: #7a8793; font-size: 9px; font-weight: 780; text-align: center; }
.privacy-language a[aria-current="page"] { color: white; background: var(--navy); }
.privacy-hero { display: grid; grid-template-columns: 1fr 180px; align-items: center; gap: 70px; padding: 88px max(32px, calc((100vw - 1180px) / 2)); color: white; background: radial-gradient(circle at 76% 42%, rgba(55,148,220,.25), transparent 27%), linear-gradient(135deg, #051523, #082c4c); }
.privacy-hero h1 { max-width: 900px; margin-bottom: 18px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(45px, 5.4vw, 76px); line-height: 1; font-weight: 400; letter-spacing: -.045em; }
.privacy-hero > div > p:last-child { margin: 0; color: rgba(255,255,255,.54); font-size: 13px; }
.privacy-hero > img { width: 180px; height: 180px; display: block; border-radius: 38px; box-shadow: 0 25px 60px rgba(0,0,0,.35); }
.privacy-layout { width: min(1180px, calc(100% - 64px)); display: grid; grid-template-columns: 260px minmax(0, 760px); justify-content: space-between; gap: 90px; margin: 0 auto; padding: 86px 0 110px; }
.privacy-toc { position: sticky; top: 26px; align-self: start; padding: 24px 0 24px 22px; border-left: 2px solid var(--blue); }
.privacy-toc > p { margin-bottom: 18px; color: var(--blue); font-size: 9px; font-weight: 780; letter-spacing: .16em; text-transform: uppercase; }
.privacy-toc ol { max-height: calc(100vh - 120px); margin: 0; padding: 0; overflow: auto; list-style: none; }
.privacy-toc li { margin-bottom: 8px; }
.privacy-toc a { color: #73808d; font-size: 10px; line-height: 1.35; }
.privacy-toc a:hover, .privacy-toc a:focus-visible { color: var(--blue); }
.privacy-document { min-width: 0; }
.privacy-document h2 { scroll-margin-top: 28px; margin: 72px 0 21px; padding-top: 10px; border-top: 1px solid var(--line); font-family: Georgia, "Times New Roman", serif; font-size: 34px; line-height: 1.12; font-weight: 400; letter-spacing: -.025em; }
.privacy-document h2:first-of-type { margin-top: 48px; }
.privacy-document h3 { margin: 35px 0 14px; color: var(--blue); font-size: 15px; font-weight: 720; }
.privacy-document p, .privacy-document li { color: #4f6172; font-size: 14px; line-height: 1.78; }
.privacy-document p { margin-bottom: 17px; }
.privacy-document > p:nth-child(-n+5) { margin-bottom: 9px; }
.privacy-document strong { color: var(--ink); }
.privacy-document a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; overflow-wrap: anywhere; }
.privacy-document ul { margin: 0 0 23px; padding-left: 22px; }
.privacy-document li { padding-left: 5px; margin-bottom: 5px; }
.privacy-footer { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 28px max(32px, calc((100vw - 1180px) / 2)); color: rgba(255,255,255,.4); background: var(--navy-deep); font-size: 9px; letter-spacing: .04em; }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 174px 1fr auto; gap: 20px; }
  .brand { width: 174px; }
  .header-cta { display: none; }
  .hero { min-height: 1000px; }
  .flow-stage { top: auto; right: 32px; bottom: 82px; width: min(720px, calc(100% - 64px)); opacity: 1; }
  .hero-copy { padding-top: 214px; }
  .hero h1 { max-width: 690px; }
  .hero-lead { max-width: 570px; }
  .quality { grid-template-columns: minmax(0, 1.04fr) minmax(450px, .96fr); gap: 52px; }
  .process { gap: 60px; }
  .yearborne { gap: 30px; }
  .float-one { right: 0; }
  .float-two { left: 0; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-contact { grid-column: 2 / 4; flex-direction: row; flex-wrap: wrap; align-items: center; }
  .footer-contact h3 { width: 100%; }
  .language-switcher-compact { margin-top: 0; }
}

@media (max-width: 900px) {
  .site-header { width: calc(100% - 40px); min-height: 92px; grid-template-columns: 156px 1fr; }
  nav { display: none; }
  .brand { width: 156px; }
  .hero { min-height: 950px; }
  .hero-copy { width: calc(100% - 40px); padding-top: 170px; }
  .flow-stage { top: auto; right: 20px; bottom: 80px; width: calc(100% - 40px); height: 290px; opacity: 1; }
  .flow-stage-head { height: 50px; padding: 0 16px; }
  .flow-stage::after { inset: 50px 0 0; }
  .flow-track { inset: 50px 14px 16px; gap: 28px; }
  .flow-node { min-height: 128px; padding: 15px 13px; }
  .node-head { margin-bottom: 8px; }
  .flow-node strong { font-size: 14px; }
  .flow-bridge { width: 28px; }
  .flow-bridge-label { top: 26px; padding: 4px 5px; font-size: 5px; }
  .hero-footer { width: calc(100% - 40px); }
  .section-heading { grid-template-columns: 1fr; }
  .section-intro { max-width: 620px; margin-top: 28px; }
  .quality, .process { grid-template-columns: 1fr; }
  .quality-copy > p:not(.eyebrow) { max-width: 660px; }
  .quality-panel { max-width: none; justify-self: stretch; }
  .yearborne { grid-template-columns: 1fr; padding-top: 90px; padding-bottom: 100px; }
  .yearborne-visual { order: 2; height: 600px; }
  .yearborne-copy { order: 1; }
  .yearborne-copy > p { max-width: 660px; }
  .closing { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-identity { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }
  .privacy-header { grid-template-columns: 156px 1fr auto; padding: 0 20px; }
  .privacy-brand { width: 156px; }
  .privacy-hero { grid-template-columns: 1fr 130px; gap: 35px; padding-left: 30px; padding-right: 30px; }
  .privacy-hero > img { width: 130px; height: 130px; border-radius: 29px; }
  .privacy-layout { width: min(760px, calc(100% - 48px)); grid-template-columns: 1fr; gap: 45px; }
  .privacy-toc { position: static; }
  .privacy-toc ol { max-height: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px 30px; }
}

@media (max-width: 640px) {
  .site-header { width: calc(100% - 28px); min-height: 84px; grid-template-columns: 132px 1fr; gap: 12px; }
  .brand { width: 132px; }
  .language-switcher a { min-width: 28px; padding: 8px 5px; font-size: 8px; }
  .hero { min-height: 1110px; }
  .hero-copy { width: calc(100% - 34px); padding-top: 145px; }
  .hero h1 { font-size: clamp(46px, 13.2vw, 62px); line-height: .98; }
  .hero-lead { font-size: 14px; line-height: 1.66; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 15px; }
  .button { min-width: 205px; }
  .flow-stage { right: 17px; bottom: 66px; width: calc(100% - 34px); height: 460px; overflow: hidden; border-radius: 18px; }
  .flow-stage-head { height: 38px; padding: 0 12px; }
  .flow-caption { font-size: 7px; }
  .flow-meta { display: none; }
  .flow-stage::after { inset: 38px 0 0; }
  .flow-track { inset: 48px 14px 14px; grid-template-columns: 1fr; grid-template-rows: repeat(4, minmax(0, 1fr)); gap: 31px; align-items: stretch; }
  .flow-node { height: 100%; min-height: 0; padding: 11px 14px; border-radius: 12px; }
  .flow-node small { display: block; }
  .node-head { margin-bottom: 4px; }
  .node-number { font-size: 7px; }
  .flow-node strong { margin: 4px 0 3px; font-size: 15px; }
  .flow-node p { font-size: 8px; }
  .node-port { top: auto; left: 50%; transform: translateX(-50%); }
  .node-port-in { top: -6px; }
  .node-port-out { right: auto; bottom: -6px; }
  .flow-bridge { top: 100%; left: 0; width: 100%; height: 31px; }
  .flow-bridge-label { top: 50%; left: calc(50% + 22px); padding: 4px 6px; font-size: 5px; transform: translateY(-50%); }
  .flow-bridge-line { top: 0; left: 50%; width: 2px; height: 100%; background: linear-gradient(#4dafea, #b8e4ff); transform: translateX(-50%); }
  .flow-bridge-line::after { top: auto; right: auto; bottom: 1px; left: 50%; border-top: 0; border-right: 2px solid #c6ebff; border-bottom: 2px solid #c6ebff; transform: translateX(-50%) rotate(45deg); }
  .flow-bridge-line i { top: 1px; left: 50%; transform: translateX(-50%); animation-name: edge-pulse-y; }
  @keyframes edge-pulse-y { 0%, 15% { top: 1px; opacity: 0; } 30%, 75% { opacity: 1; } 90%, 100% { top: calc(100% - 8px); opacity: 0; } }
  .hero-footer { width: calc(100% - 34px); bottom: 25px; }
  .hero-footer span:first-child { display: none; }
  .section { padding-left: 20px; padding-right: 20px; }
  .services { padding-top: 90px; padding-bottom: 90px; }
  .section-heading h2, .closing h2 { font-size: 41px; }
  .services-grid { grid-template-columns: 1fr; margin-top: 48px; }
  .service-card { min-height: 270px; padding: 26px 24px; }
  .card-top { margin-bottom: 45px; }
  .card-rule { left: 24px; right: 24px; }
  .quality { padding-top: 88px; padding-bottom: 88px; gap: 48px; }
  .quality-copy h2, .process-copy h2 { font-size: 41px; }
  .quality-grid { grid-template-columns: 1fr; }
  .quality-item, .quality-item:nth-child(even), .quality-item:nth-last-child(-n+2) { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(139,203,255,.12); }
  .quality-item:last-child { border-bottom: 0; }
  .process { padding-top: 88px; padding-bottom: 80px; gap: 46px; }
  .process-flow { gap: 18px; }
  .process-flow-head { padding-left: 0; padding-right: 0; }
  .process-step { min-height: 106px; grid-template-columns: 46px 1fr; gap: 16px; padding: 15px; border-radius: 14px; }
  .process-step:last-child { padding-right: 52px; }
  .step-port { width: 46px; height: 46px; border-radius: 11px; box-shadow: 0 0 0 5px rgba(10,49,84,.84), 0 12px 22px rgba(0,0,0,.18); }
  .step-port::after { left: calc(100% + 6px); width: 11px; }
  .process-connector { left: 37px; bottom: -19px; height: 19px; }
  .process-complete { right: 14px; width: 27px; height: 27px; }
  .yearborne { padding-top: 78px; }
  .yearborne-copy h2 { font-size: 54px; }
  .yearborne-links { align-items: flex-start; flex-direction: column; }
  .yearborne-visual { height: 530px; }
  .orbit-one { width: 430px; height: 430px; }
  .orbit-two { width: 330px; height: 330px; }
  .phone { width: 226px; height: 470px; left: 50%; }
  .orbit { left: 50%; }
  .game-mark { width: 80px; height: 80px; border-radius: 20px; }
  .float-card { min-width: 150px; max-width: 154px; padding: 13px 14px 14px; border-radius: 11px; }
  .float-card::before { width: 36px; }
  .float-card b { font-size: 14px; }
  .float-one { top: 130px; right: 0; }
  .float-two { left: 0; bottom: 112px; }
  .closing { padding-top: 88px; padding-bottom: 84px; gap: 46px; }
  .site-footer { padding-left: 20px; padding-right: 20px; }
  .footer-main { grid-template-columns: 1fr; gap: 42px; padding-top: 54px; }
  .footer-identity, .footer-contact { grid-column: 1; }
  .footer-contact { align-items: flex-start; flex-direction: column; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .privacy-header { min-height: 84px; grid-template-columns: 132px 1fr; gap: 12px; }
  .privacy-brand { width: 132px; }
  .privacy-back { display: none; }
  .privacy-language { justify-self: end; }
  .privacy-language a { min-width: 31px; }
  .privacy-hero { grid-template-columns: 1fr; padding: 62px 22px; }
  .privacy-hero > img { width: 105px; height: 105px; grid-row: 1; border-radius: 24px; }
  .privacy-hero h1 { font-size: 45px; }
  .privacy-layout { width: calc(100% - 40px); padding: 60px 0 80px; }
  .privacy-toc ol { grid-template-columns: 1fr; }
  .privacy-document h2 { font-size: 29px; }
  .privacy-document p, .privacy-document li { font-size: 13px; }
  .privacy-footer { align-items: flex-start; flex-direction: column; gap: 7px; padding-left: 20px; padding-right: 20px; }
}

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