:root {
  --ink: #ffffff;
  --navy-950: #040b13;
  --navy-900: #06111d;
  --navy-850: #081624;
  --blue-500: #3157ff;
  --blue-600: #2446ea;
  --muted-100: rgba(255,255,255,.92);
  --muted-200: rgba(255,255,255,.76);
  --muted-300: rgba(255,255,255,.56);
  --line-dark: rgba(255,255,255,.13);

  --font-sans: "Bricolage Grotesque", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --content-max: 1440px;
  --nav-max: 1536px;
  --gutter: clamp(20px, 4.1vw, 64px);
  --section-y: clamp(88px, 9vw, 144px);
  --header-top: max(10px, env(safe-area-inset-top));
  --nav-height: 72px;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 18px;

  --ease-standard: cubic-bezier(.2,.75,.2,1);
  --ease-emphasized: cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; }
html {
  min-width: 320px;
  background: var(--navy-900);
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--navy-900);
  color: var(--ink);
  font-family: var(--font-sans);
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, video { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid #a9b9ff; outline-offset: 4px; }

.page-shell {
  width: min(100%, var(--content-max));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section-divider {
  min-height: clamp(28px, 3.2vw, 44px);
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  background: #f5f7fb;
  border: 0;
}
.section-divider-line {
  display: none;
}
.section-divider-center {
  position: relative;
  width: min(100%, var(--content-max));
  height: 1px;
  margin-inline: auto;
  background: rgba(7, 21, 34, .16);
}
.section-divider-center::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--blue-600);
  transform: translate(-50%, -50%) rotate(45deg);
  pointer-events: none;
}
.section-divider-center::after {
  display: none;
}
.section-divider-index,
.section-divider-label,
.section-divider-mark { display: none; }

@media (max-width: 767px) {
  .section-divider {
    min-height: 24px;
  }
}

.btn {
  min-height: 48px;
  padding-inline: 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  white-space: nowrap;
  font-size: clamp(13px, .95vw, 14px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -.015em;
  transition:
    transform .22s var(--ease-standard),
    background-color .22s ease,
    border-color .22s ease,
    box-shadow .22s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(.985); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue-600), #172d9f);
  box-shadow: 0 10px 28px rgba(4,24,116,.20), inset 0 1px rgba(255,255,255,.10);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--blue-500), #1b34b2); }
.btn-ghost {
  border-color: rgba(255,255,255,.64);
  background: rgba(5,15,27,.12);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.07);
}

.arrow {
  width: 15px;
  height: 15px;
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
}
.arrow::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 7px;
  width: 11px;
  height: 1.5px;
  background: currentColor;
}
.arrow::after {
  content: "";
  position: absolute;
  right: 1px;
  top: 4px;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}

@media (max-width: 767px) {
  :root {
    --gutter: clamp(16px, 4.6vw, 22px);
    --section-y: clamp(72px, 18vw, 96px);
    --nav-height: 62px;
  }
}

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