:root {
  --ink: #071329;
  --ink-2: #0a1b3d;
  --ink-3: #102750;
  --blue: #0d68ff;
  --blue-bright: #2597ff;
  --cyan: #61c5ff;
  --ice: #eaf4ff;
  --cloud: #f6f9fd;
  --white: #ffffff;
  --muted: #96a8c8;
  --text: #17223a;
  --line: rgba(11, 39, 83, 0.12);
  --radius: 28px;
  --shell: min(1180px, calc(100% - 40px));
  --shadow: 0 24px 70px rgba(4, 19, 47, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font-weight: 800;
}

.skip-link:focus {
  transform: none;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled,
.site-header.nav-open {
  background: rgba(6, 17, 39, 0.88);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: var(--shell);
  height: 86px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
}

.brand span,
.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: 0.105em;
}

.brand small {
  margin-top: 5px;
  color: #87a1c7;
  font-size: 0.58rem;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.42em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav > a:not(.button) {
  transition: color 160ms ease;
}

.site-nav > a:not(.button):hover {
  color: var(--white);
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid rgba(117, 200, 255, 0.55);
  border-radius: 13px;
  color: var(--white);
  background: linear-gradient(135deg, #0a5cf5 0%, #0878ff 48%, #2498ff 100%);
  box-shadow: 0 14px 38px rgba(11, 100, 255, 0.32), inset 0 1px rgba(255, 255, 255, 0.24);
  font-size: 0.95rem;
  font-weight: 850;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button span {
  margin-left: 12px;
  font-size: 1.1em;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(11, 100, 255, 0.42), inset 0 1px rgba(255, 255, 255, 0.28);
}

.button-small {
  min-height: 43px;
  padding-inline: 18px;
  border-radius: 10px;
  font-size: 0.82rem;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 38%, rgba(20, 100, 255, 0.25), transparent 29%),
    radial-gradient(circle at 12% 95%, rgba(41, 151, 255, 0.12), transparent 25%),
    linear-gradient(145deg, #040c1e 0%, #071734 56%, #061127 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 82%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  pointer-events: none;
}

.hero-glow-one {
  width: 530px;
  height: 530px;
  right: -260px;
  top: 65px;
  border: 1px solid rgba(47, 144, 255, 0.25);
  box-shadow: 0 0 110px rgba(9, 94, 255, 0.15) inset;
}

.hero-glow-two {
  width: 250px;
  height: 250px;
  left: -125px;
  bottom: 35px;
  border: 1px solid rgba(93, 195, 255, 0.14);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  gap: 70px;
  align-items: center;
  padding-top: 154px;
  padding-bottom: 116px;
}

.eyebrow,
.kicker {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 0.76rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #abd6ff;
}

.eyebrow span {
  width: 24px;
  height: 2px;
  background: var(--blue-bright);
  box-shadow: 0 0 12px var(--blue-bright);
}

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

h1,
h2,
h3 {
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 680px;
  margin-bottom: 25px;
  font-size: clamp(3.6rem, 6vw, 6.25rem);
  line-height: 0.94;
  font-weight: 900;
}

h1 em {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, #46b4ff, #116cff 75%);
  background-clip: text;
  -webkit-background-clip: text;
  font-style: normal;
}

.hero-lede {
  max-width: 630px;
  margin-bottom: 31px;
  color: #b7c4da;
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-bottom: 35px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.91rem;
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 4px;
}

.text-link span {
  color: var(--cyan);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  color: #93a6c6;
  font-size: 0.78rem;
  font-weight: 750;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-row i {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(75, 179, 255, 0.5);
  border-radius: 50%;
  color: var(--cyan);
  font-style: normal;
  font-size: 0.65rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.photo-frame {
  position: absolute;
  inset: 8px 15px 8px 38px;
  overflow: hidden;
  border: 1px solid rgba(134, 201, 255, 0.35);
  border-radius: 42% 42% 30px 30px;
  background: var(--ink-2);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.43), 0 0 0 9px rgba(14, 105, 255, 0.06);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.9) contrast(1.03);
}

.photo-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 13, 31, 0.78) 0%, transparent 48%), linear-gradient(100deg, rgba(4, 16, 38, 0.42), transparent 45%);
}

.photo-label {
  position: absolute;
  left: 28px;
  bottom: 23px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.photo-label span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #50d89a;
  box-shadow: 0 0 12px #50d89a;
}

.orbit {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  border: 1px solid rgba(53, 149, 255, 0.29);
}

.orbit-one {
  width: 610px;
  height: 610px;
  left: -12px;
  top: -22px;
}

.orbit-two {
  width: 690px;
  height: 690px;
  left: -52px;
  top: -62px;
  opacity: 0.55;
}

.signal-card {
  position: absolute;
  z-index: 3;
  min-width: 250px;
  display: grid;
  grid-template-columns: 38px 1fr 9px;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(164, 213, 255, 0.31);
  border-radius: 14px;
  color: var(--white);
  background: rgba(8, 30, 66, 0.86);
  backdrop-filter: blur(15px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.signal-card span,
.signal-card strong {
  display: block;
  line-height: 1.35;
}

.signal-card span {
  color: #7fb3ed;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-card strong {
  margin-top: 2px;
  font-size: 0.76rem;
}

.signal-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #bbdcff;
  background: linear-gradient(145deg, rgba(21, 126, 255, 0.55), rgba(14, 79, 179, 0.3));
  font-size: 0.65rem;
  font-weight: 900;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4bd696;
  box-shadow: 0 0 0 5px rgba(75, 214, 150, 0.1), 0 0 14px #4bd696;
}

.signal-one {
  top: 12%;
  left: -28px;
}

.signal-two {
  top: 50%;
  right: -48px;
  transform: translateY(-50%);
}

.signal-three {
  top: 88%;
  left: -15px;
  transform: translateY(-100%);
}

.industry-ticker {
  position: absolute;
  z-index: 4;
  inset: auto 0 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(3, 12, 30, 0.72);
}

.ticker-track {
  min-height: 58px;
  width: var(--shell);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: #7890b5;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.ticker-track i {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 10px var(--blue-bright);
}

.section-pad {
  padding-block: 120px;
}

.problem {
  position: relative;
  background: var(--white);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 110px;
  align-items: start;
}

.section-intro h2,
.section-heading h2,
.fit-copy h2,
.handled-heading h2,
.faq-intro h2,
.book-copy h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(2.65rem, 4.7vw, 4.65rem);
  line-height: 1.02;
  font-weight: 900;
}

.problem-copy {
  padding-top: 44px;
}

.problem-copy > p {
  margin-bottom: 22px;
  color: #4d5c75;
  font-size: 1.03rem;
  line-height: 1.8;
}

.relief-note {
  margin-top: 35px;
  padding-top: 28px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 17px;
  border-top: 1px solid var(--line);
}

.relief-note span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 1.55rem;
  font-weight: 300;
}

.relief-note p {
  margin: 0;
  color: #65748c;
  line-height: 1.65;
}

.relief-note strong {
  color: var(--ink);
}

.system {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(155deg, #061127 0%, #0a1d43 58%, #06142d 100%);
}

.system::after {
  content: "";
  position: absolute;
  width: 760px;
  height: 760px;
  right: -390px;
  top: 280px;
  border: 1px solid rgba(41, 151, 255, 0.17);
  border-radius: 50%;
  box-shadow: 0 0 140px rgba(13, 104, 255, 0.12) inset;
}

.system-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
}

.system .shell {
  position: relative;
  z-index: 2;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 100px;
  align-items: end;
  margin-bottom: 58px;
}

.kicker-light {
  color: #76bdff;
}

.section-heading h2,
.book-copy h2 {
  color: var(--white);
}

.section-heading > p {
  margin-bottom: 4px;
  color: #9aacc8;
  line-height: 1.75;
}

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

.step-card {
  position: relative;
  min-height: 390px;
  padding: 27px 29px 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(19, 48, 98, 0.62), rgba(7, 24, 55, 0.72));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(75, 170, 255, 0.38);
  background: linear-gradient(155deg, rgba(21, 62, 130, 0.75), rgba(7, 24, 55, 0.8));
}

.step-top {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 51px;
  color: #73baff;
  font-size: 0.72rem;
  font-weight: 900;
}

.step-top i {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(61, 159, 255, 0.5), transparent);
}

.step-card svg {
  width: 51px;
  height: 51px;
  margin-bottom: 30px;
  stroke: #69b9ff;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.step-card h3 {
  margin-bottom: 15px;
  font-size: 1.55rem;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.step-card p {
  margin-bottom: 0;
  color: #95a9c8;
  font-size: 0.92rem;
  line-height: 1.72;
}

.control-room {
  margin-top: 23px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 55px;
  align-items: center;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: linear-gradient(110deg, rgba(10, 33, 73, 0.9), rgba(10, 45, 98, 0.6));
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.22);
}

.mini-label {
  margin-bottom: 13px;
  color: #67b5ff;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.control-copy h3 {
  margin-bottom: 16px;
  font-size: 2.25rem;
  line-height: 1.04;
}

.control-copy > p:not(.mini-label) {
  color: #99abc6;
  font-size: 0.93rem;
  line-height: 1.72;
}

.control-points {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 25px;
}

.control-points span {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  color: #adc0da;
  background: rgba(3, 14, 34, 0.35);
  font-size: 0.68rem;
  font-weight: 800;
  white-space: nowrap;
}

.control-points i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #50d89a;
}

.flow-board {
  position: relative;
  overflow: hidden;
  padding: 23px;
  border: 1px solid rgba(103, 181, 255, 0.26);
  border-radius: 15px;
  background: rgba(3, 16, 39, 0.72);
}

.flow-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  color: #6681aa;
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.flow-head strong {
  color: #51d99a;
}

.flow-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 8px;
  align-items: center;
}

.flow-node {
  min-height: 84px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  background: rgba(15, 50, 101, 0.45);
}

.flow-node small {
  color: #5faeff;
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.flow-node b {
  margin-top: 5px;
  font-size: 0.7rem;
  line-height: 1.25;
}

.flow-node-final {
  border-color: rgba(83, 195, 255, 0.45);
  background: linear-gradient(145deg, rgba(12, 102, 255, 0.45), rgba(25, 94, 176, 0.34));
}

.flow-arrow {
  color: #3d85d3;
  font-size: 0.8rem;
}

.pulse-line {
  position: relative;
  height: 2px;
  margin-top: 23px;
  overflow: hidden;
  background: rgba(61, 133, 211, 0.18);
}

.pulse-line span {
  position: absolute;
  width: 24%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #38a7ff, transparent);
  animation: pulse-line 3.6s linear infinite;
}

@keyframes pulse-line {
  from { transform: translateX(-100%); }
  to { transform: translateX(520%); }
}

.fit {
  background: var(--cloud);
}

.fit-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 105px;
  align-items: center;
}

.fit-copy > p:not(.kicker) {
  max-width: 470px;
  margin: 26px 0 30px;
  color: #5b6980;
  line-height: 1.78;
}

.text-link-dark {
  color: var(--ink);
  border-color: rgba(7, 19, 41, 0.25);
}

.fit-list {
  border-top: 1px solid var(--line);
}

.fit-list > div {
  min-height: 112px;
  display: grid;
  grid-template-columns: 44px 1fr 0.86fr;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: padding 180ms ease, background 180ms ease;
}

.fit-list > div:hover {
  padding-inline: 18px;
  background: var(--white);
}

.fit-list span {
  color: var(--blue);
  font-size: 0.71rem;
  font-weight: 900;
}

.fit-list strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.fit-list small {
  color: #77859a;
  font-size: 0.78rem;
  line-height: 1.45;
}

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

.handled-heading {
  max-width: 720px;
  margin-bottom: 57px;
}

.handled-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.handled-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  padding: 48px;
  border-radius: 22px;
}

.handled-card-blue {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 12%, rgba(54, 170, 255, 0.3), transparent 28%),
    linear-gradient(145deg, #0a5def, #073caf 72%, #06246d);
  box-shadow: 0 27px 70px rgba(12, 84, 207, 0.25);
}

.handled-card-blue::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  right: -160px;
  bottom: -160px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(255, 255, 255, 0.025), 0 0 0 96px rgba(255, 255, 255, 0.018);
}

.handled-card-white {
  border: 1px solid var(--line);
  background: var(--cloud);
}

.card-label {
  display: inline-flex;
  margin-bottom: 72px;
  padding: 7px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.78;
}

.handled-card h3 {
  margin-bottom: 26px;
  font-size: 2.5rem;
  line-height: 1;
}

.handled-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.handled-card li {
  position: relative;
  padding: 13px 0 13px 31px;
  border-bottom: 1px solid currentColor;
  font-size: 0.91rem;
  font-weight: 700;
  opacity: 0.88;
}

.handled-card li::before {
  content: "✓";
  position: absolute;
  left: 1px;
  color: currentColor;
  font-weight: 900;
}

.handled-card-blue li {
  border-color: rgba(255, 255, 255, 0.17);
}

.handled-card-white li {
  border-color: var(--line);
}

.plain-promise {
  margin-top: 31px;
  padding: 22px;
  border-left: 3px solid var(--blue);
  background: var(--white);
}

.plain-promise strong {
  display: block;
  color: var(--ink);
  font-size: 0.85rem;
}

.plain-promise p {
  margin: 6px 0 0;
  color: #6c7890;
  font-size: 0.78rem;
  line-height: 1.55;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 105px;
  align-items: start;
}

.about-intro {
  position: sticky;
  top: 120px;
}

.about-intro h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(2.65rem, 4.7vw, 4.65rem);
  line-height: 1.02;
  font-weight: 900;
}

.about-location {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0 0;
  color: #52647d;
  font-size: 0.82rem;
  font-weight: 800;
}

.about-location span {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(13, 104, 255, 0.14);
}

.about-copy {
  max-width: 710px;
}

.about-copy > p {
  margin-bottom: 22px;
  color: #52647d;
  font-size: 1.02rem;
  line-height: 1.82;
}

.about-copy .about-reach {
  margin: 35px 0 0;
  padding: 22px 24px;
  border-left: 3px solid var(--blue);
  color: var(--ink);
  background: var(--cloud);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.6;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro > p:not(.kicker) {
  max-width: 390px;
  margin-top: 25px;
  color: #65738a;
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  font-weight: 850;
}

summary::-webkit-details-marker {
  display: none;
}

summary span {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(13, 104, 255, 0.3);
  border-radius: 50%;
  color: var(--blue);
  font-size: 1.25rem;
  font-weight: 400;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

details[open] summary span {
  transform: rotate(45deg);
  color: var(--white);
  background: var(--blue);
}

details p {
  max-width: 690px;
  margin: -2px 58px 30px 0;
  color: #65738a;
  font-size: 0.92rem;
  line-height: 1.75;
}

.book {
  position: relative;
  overflow: hidden;
  padding-block: 110px;
  color: var(--white);
  background: linear-gradient(135deg, #061128, #09245a 62%, #07398c);
}

.book::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
}

.book-glow {
  position: absolute;
  width: 610px;
  height: 610px;
  right: -180px;
  top: -260px;
  border: 1px solid rgba(108, 194, 255, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 130px rgba(21, 110, 255, 0.18) inset, 0 0 0 74px rgba(39, 132, 255, 0.025);
}

.book-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 75px;
  align-items: center;
}

.book-copy {
  max-width: 560px;
}

.book-copy > p:not(.kicker) {
  max-width: 650px;
  margin: 25px 0 31px;
  color: #aec0da;
  font-size: 1.02rem;
  line-height: 1.75;
}

.button-white {
  color: var(--ink);
  border-color: var(--white);
  background: var(--white);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.24);
}

.book-copy small {
  display: block;
  margin-top: 17px;
  color: #8499bb;
  font-size: 0.72rem;
}

.fit-call-form,
.form-success {
  position: relative;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 85px rgba(2, 44, 116, 0.28);
}

.fit-call-form {
  padding: clamp(26px, 4vw, 42px);
}

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

.form-field {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.77rem;
  font-weight: 850;
}

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

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(7, 44, 96, 0.18);
  border-radius: 11px;
  color: var(--ink);
  background: #f7faff;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 550;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.form-field select {
  cursor: pointer;
}

.form-field textarea {
  min-height: 132px;
  padding: 13px 15px;
  resize: vertical;
  line-height: 1.55;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(13, 104, 255, 0.58);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(13, 104, 255, 0.08);
}

.form-honey {
  display: none;
}

.form-privacy {
  margin: 20px 0 18px;
  color: #5f6f86;
  font-size: 0.75rem;
  line-height: 1.55;
}

.form-privacy a {
  color: #075dcc;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

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

.form-status {
  min-height: 1.45em;
  margin: 13px 0 -4px;
  color: #506078;
  font-size: 0.78rem;
  line-height: 1.45;
}

.form-status.is-error {
  color: #a82929;
}

.form-status a {
  color: currentColor;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-success {
  padding: clamp(32px, 5vw, 58px);
}

.form-success[hidden] {
  display: none;
}

.success-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 27px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 10px 30px rgba(13, 104, 255, 0.28);
  font-size: 1.25rem;
  font-weight: 900;
}

.form-success h3 {
  margin-bottom: 15px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.02;
}

.form-success > p:last-child {
  max-width: 520px;
  margin-bottom: 0;
  color: #52647d;
}

footer {
  padding-block: 0;
  color: #8296b7;
  background: #030b1c;
  font-size: 0.78rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(190px, 1.2fr) minmax(230px, 1fr) auto;
  gap: 55px;
  align-items: start;
  padding-block: 42px 38px;
}

.footer-brand {
  gap: 9px;
}

.footer-brand img {
  width: 36px;
  height: 36px;
}

.footer-brand strong {
  font-size: 0.92rem;
}

.footer-grid p,
.footer-bottom p {
  margin: 0;
}

.footer-contact {
  display: grid;
  gap: 5px;
}

.footer-contact p {
  color: #3c4f6a;
  font-weight: 750;
}

.footer-contact a,
.footer-links a {
  color: var(--ink);
  font-weight: 800;
}

.footer-contact a {
  overflow-wrap: anywhere;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 20px;
}

.footer-links span {
  margin-left: 3px;
  color: var(--blue);
}

.footer-bottom {
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(7, 19, 41, 0.09);
  color: #6d7c92;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms ease, transform 680ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1200px) {
  .control-room {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 35px;
  }

  .signal-card {
    min-width: 220px;
  }

  .signal-one,
  .signal-three {
    left: -5px;
  }

  .signal-two {
    right: -16px;
  }

  .problem-grid,
  .section-heading,
  .fit-grid,
  .about-grid,
  .faq-grid {
    gap: 60px;
  }

  .control-room {
    grid-template-columns: 1fr;
  }

  .flow-board {
    width: 100%;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 34px, 720px);
  }

  .nav-shell {
    height: 76px;
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
  }

  .menu-toggle span:not(.sr-only) {
    width: 19px;
    height: 2px;
    display: block;
    background: var(--white);
    transition: transform 180ms ease;
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto;
    min-height: calc(100vh - 76px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 36px 22px;
    color: var(--white);
    background: rgba(4, 13, 32, 0.98);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav > a:not(.button) {
    padding: 13px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.15rem;
  }

  .site-nav .button {
    margin-top: 10px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 135px;
    padding-bottom: 116px;
  }

  h1 {
    max-width: 680px;
    font-size: clamp(3.5rem, 11vw, 5.8rem);
  }

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

  .hero-visual {
    width: min(100%, 570px);
    min-height: 600px;
    margin: 26px auto 0;
  }

  .industry-ticker {
    position: relative;
  }

  .ticker-track {
    width: max-content;
    min-width: 100%;
    padding-inline: 18px;
  }

  .section-pad {
    padding-block: 88px;
  }

  .problem-grid,
  .section-heading,
  .fit-grid,
  .about-grid,
  .faq-grid,
  .book-grid {
    grid-template-columns: 1fr;
  }

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

  .section-heading {
    align-items: start;
  }

  .section-heading > p {
    max-width: 540px;
  }

  .system-steps {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: auto;
  }

  .step-top {
    margin-bottom: 34px;
  }

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

  .handled-card {
    min-height: auto;
  }

  .card-label {
    margin-bottom: 50px;
  }

  .about-intro,
  .faq-intro {
    position: static;
  }

  .book-copy {
    max-width: 670px;
  }

  .book-grid {
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .footer-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .control-points {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 28px);
    --radius: 20px;
  }

  .hero-grid {
    padding-top: 122px;
    padding-bottom: 82px;
  }

  .eyebrow {
    font-size: 0.67rem;
  }

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

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

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

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .trust-row {
    display: grid;
    gap: 10px;
  }

  .hero-visual {
    min-height: 515px;
    margin-top: 10px;
  }

  .photo-frame {
    inset: 20px 0 30px;
    border-radius: 130px 130px 24px 24px;
  }

  .signal-card {
    min-width: 0;
    width: calc(100% - 12px);
    grid-template-columns: 34px 1fr 7px;
    padding: 11px 12px;
  }

  .signal-icon {
    width: 34px;
    height: 34px;
  }

  .signal-one {
    left: -6px;
  }

  .signal-two {
    right: -6px;
  }

  .signal-three {
    left: -6px;
  }

  .orbit-one,
  .orbit-two {
    display: none;
  }

  .ticker-track {
    width: 100%;
    min-width: 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
    padding: 14px 16px;
    overflow: visible;
  }

  .ticker-track span {
    white-space: nowrap;
  }

  .ticker-track i {
    display: none;
  }

  .section-pad {
    padding-block: 76px;
  }

  .section-intro h2,
  .section-heading h2,
  .fit-copy h2,
  .handled-heading h2,
  .about-intro h2,
  .faq-intro h2,
  .book-copy h2 {
    font-size: clamp(2.55rem, 12.6vw, 3.8rem);
  }

  .problem-grid,
  .section-heading,
  .fit-grid,
  .about-grid,
  .faq-grid,
  .book-grid {
    gap: 42px;
  }

  .system-steps {
    gap: 12px;
  }

  .step-card {
    padding: 25px;
  }

  .control-room {
    gap: 35px;
    padding: 29px 20px;
  }

  .flow-board {
    padding: 18px;
  }

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

  .flow-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }

  .flow-node {
    min-height: 64px;
  }

  .fit-list > div {
    min-height: 0;
    grid-template-columns: 35px 1fr;
    padding-block: 22px;
  }

  .fit-list small {
    grid-column: 2;
    margin-top: -15px;
  }

  .handled-card {
    padding: 32px 25px;
  }

  .handled-card h3 {
    font-size: 2.15rem;
  }

  .card-label {
    margin-bottom: 38px;
  }

  summary {
    min-height: 78px;
    font-size: 0.94rem;
  }

  details p {
    margin-right: 0;
  }

  .book {
    padding-block: 82px;
  }

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

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

  .fit-call-form {
    border-radius: 20px;
  }

  .form-field input,
  .form-field select {
    min-height: 55px;
  }

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

  .footer-links {
    grid-column: auto;
    display: grid;
    justify-content: start;
    gap: 12px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    padding-block: 16px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Readability-first light theme */
.site-header.scrolled,
.site-header.nav-open {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(7, 19, 41, 0.1);
  box-shadow: 0 10px 35px rgba(7, 31, 75, 0.08);
}

.brand strong {
  color: var(--ink);
}

.brand small {
  color: #486184;
}

.site-nav {
  color: #3f5574;
}

.site-nav > a:not(.button):hover {
  color: var(--ink);
}

.hero {
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 36%, rgba(35, 145, 255, 0.2), transparent 31%),
    radial-gradient(circle at 9% 88%, rgba(82, 185, 255, 0.13), transparent 27%),
    linear-gradient(145deg, #ffffff 0%, #f4f9ff 48%, #e7f2ff 100%);
}

.hero::before {
  opacity: 0.48;
  background-image: linear-gradient(rgba(12, 91, 199, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(12, 91, 199, 0.055) 1px, transparent 1px);
}

.hero-glow-one,
.hero-glow-two {
  border-color: rgba(20, 114, 240, 0.2);
}

.eyebrow {
  color: #0a58d4;
}

.hero-lede {
  color: #465873;
}

.text-link {
  color: var(--ink);
  border-color: rgba(7, 19, 41, 0.28);
}

.trust-row {
  color: #41536d;
  font-size: 0.85rem;
}

.trust-row i {
  color: #0873e8;
  border-color: rgba(9, 103, 225, 0.38);
  background: rgba(255, 255, 255, 0.82);
}

.orbit {
  border-color: rgba(18, 108, 229, 0.23);
}

.signal-card {
  color: var(--ink);
  border-color: rgba(20, 101, 207, 0.2);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(13, 62, 128, 0.2);
}

.signal-card span {
  color: #1763bf;
  font-size: 0.71rem;
}

.signal-card strong {
  color: #10203a;
  font-size: 0.82rem;
}

.signal-icon {
  color: #075cc9;
  background: #e4f1ff;
}

.industry-ticker {
  border-color: rgba(14, 81, 174, 0.12);
  background: rgba(255, 255, 255, 0.88);
}

.ticker-track {
  color: #435979;
  font-size: 0.8rem;
}

.system {
  color: var(--ink);
  background: linear-gradient(155deg, #f5faff 0%, #e8f3ff 55%, #dcecff 100%);
}

.system::after {
  border-color: rgba(20, 111, 232, 0.14);
  box-shadow: 0 0 140px rgba(13, 104, 255, 0.08) inset;
}

.system-grid-lines {
  opacity: 0.62;
  background-image: linear-gradient(rgba(9, 92, 200, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(9, 92, 200, 0.045) 1px, transparent 1px);
}

.kicker-light {
  color: #0a61dc;
}

.section-heading h2 {
  color: var(--ink);
}

.section-heading > p {
  color: #52647d;
}

.step-card {
  border-color: rgba(11, 79, 171, 0.14);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 52px rgba(16, 64, 126, 0.09);
}

.step-card:hover {
  border-color: rgba(25, 121, 245, 0.34);
  background: var(--white);
}

.step-card h3 {
  color: var(--ink);
}

.step-card p {
  color: #52647d;
  font-size: 1rem;
}

.step-top {
  color: #0b64dd;
}

.step-top i {
  background: linear-gradient(90deg, rgba(24, 118, 242, 0.42), transparent);
}

.step-card svg {
  stroke: #126fe8;
}

.control-room {
  color: var(--white);
  border-color: rgba(19, 111, 235, 0.25);
  background: linear-gradient(125deg, #0b5edc, #0f7af1 58%, #2096ff);
  box-shadow: 0 30px 85px rgba(10, 93, 211, 0.22);
}

.mini-label {
  color: #d8edff;
}

.control-copy > p:not(.mini-label) {
  color: #e0efff;
  font-size: 1rem;
}

.control-points span {
  color: #f2f8ff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(2, 47, 120, 0.24);
}

.flow-board {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(3, 40, 102, 0.32);
}

.flow-head {
  color: #d3e8ff;
}

.flow-node {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.13);
}

.flow-node small {
  color: #d7ecff;
}

.flow-node-final {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.22);
}

.flow-arrow {
  color: #e5f3ff;
}

.handled-card-blue {
  background:
    radial-gradient(circle at 80% 12%, rgba(120, 211, 255, 0.32), transparent 28%),
    linear-gradient(145deg, #1478ef, #0d5ed7 72%, #0a48b6);
}

.book {
  background: linear-gradient(135deg, #0d58cf, #1179ed 60%, #27a2ff);
}

.book-copy > p:not(.kicker) {
  color: #e7f3ff;
}

.book .kicker-light {
  color: #d9edff;
}

.book-copy small {
  color: #d1e8ff;
}

footer {
  color: #52627a;
  background: #f7faff;
  border-top: 1px solid rgba(7, 19, 41, 0.09);
}

@media (max-width: 860px) {
  .menu-toggle {
    border-color: rgba(7, 19, 41, 0.15);
    background: rgba(255, 255, 255, 0.9);
  }

  .menu-toggle span:not(.sr-only) {
    background: var(--ink);
  }

  .site-nav {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.99);
  }

  .site-nav > a:not(.button) {
    border-color: rgba(7, 19, 41, 0.1);
  }
}

@media (max-width: 600px) {
  .hero {
    background:
      radial-gradient(circle at 85% 40%, rgba(35, 145, 255, 0.17), transparent 31%),
      linear-gradient(150deg, #ffffff 0%, #edf6ff 100%);
  }

  .hero-lede,
  .problem-copy > p,
  .fit-copy > p:not(.kicker),
  .faq-intro > p:not(.kicker),
  details p {
    color: #40516a;
    font-size: 1rem;
  }

  .trust-row {
    font-size: 0.9rem;
  }

  .signal-card span {
    font-size: 0.72rem;
  }

  .signal-card strong {
    font-size: 0.84rem;
  }

  .ticker-track {
    font-size: 0.82rem;
  }

  .fit-list small {
    color: #54657d;
    font-size: 0.88rem;
  }

  .control-copy > p:not(.mini-label),
  .step-card p {
    font-size: 1rem;
  }
}

/* Supporting pages */
.internal-page {
  min-height: 100vh;
  color: var(--text);
  background: var(--cloud);
}

.internal-header .button {
  min-height: 43px;
}

.privacy-main {
  padding-top: 86px;
}

.privacy-shell {
  max-width: 860px;
}

.privacy-hero {
  position: relative;
  overflow: hidden;
  padding-block: 92px 74px;
  background:
    radial-gradient(circle at 82% 28%, rgba(35, 145, 255, 0.2), transparent 34%),
    linear-gradient(145deg, #ffffff 0%, #eaf4ff 100%);
}

.privacy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image: linear-gradient(rgba(12, 91, 199, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(12, 91, 199, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
}

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

.privacy-hero h1,
.status-card h1 {
  max-width: none;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.98;
}

.privacy-lede {
  max-width: 660px;
  margin-bottom: 18px;
  color: #465873;
  font-size: 1.08rem;
  line-height: 1.75;
}

.privacy-date {
  margin-bottom: 0;
  color: #607089;
  font-size: 0.76rem;
  font-weight: 800;
}

.privacy-content {
  padding-block: 78px 105px;
}

.privacy-card {
  padding: clamp(28px, 6vw, 66px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 25px 75px rgba(8, 42, 91, 0.09);
}

.privacy-card section + section {
  margin-top: 44px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.privacy-card h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.privacy-card p {
  margin-bottom: 15px;
  color: #52647d;
  line-height: 1.78;
}

.privacy-card p:last-child {
  margin-bottom: 0;
}

.privacy-card a {
  color: #075dcc;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.status-page {
  min-height: calc(100vh - 238px);
  display: grid;
  place-items: center;
  padding: 160px 0 90px;
  background:
    radial-gradient(circle at 78% 35%, rgba(35, 145, 255, 0.2), transparent 31%),
    linear-gradient(145deg, #ffffff 0%, #eaf4ff 100%);
}

.status-card {
  max-width: 800px;
  padding: clamp(34px, 7vw, 74px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 85px rgba(8, 50, 116, 0.13);
}

.status-card > p:not(.kicker) {
  max-width: 610px;
  margin-bottom: 28px;
  color: #52647d;
  font-size: 1.05rem;
  line-height: 1.72;
}

@media (max-width: 860px) {
  .privacy-main {
    padding-top: 76px;
  }

  .internal-header .nav-shell {
    height: 76px;
  }
}

@media (max-width: 600px) {
  .internal-header .brand small {
    display: none;
  }

  .internal-header .brand img {
    width: 34px;
    height: 34px;
  }

  .internal-header .button-small {
    min-height: 40px;
    padding-inline: 14px;
  }

  .privacy-hero {
    padding-block: 72px 58px;
  }

  .privacy-hero h1,
  .status-card h1 {
    font-size: clamp(2.9rem, 15vw, 4.3rem);
  }

  .privacy-content {
    padding-block: 24px 72px;
  }

  .privacy-card {
    border-radius: 19px;
  }

  .privacy-card section + section {
    margin-top: 34px;
    padding-top: 34px;
  }

  .status-page {
    min-height: 78vh;
    padding-block: 132px 70px;
  }
}
