:root {
  --ink: #07101b;
  --ink-2: #0b1624;
  --panel: rgba(14, 29, 47, 0.82);
  --panel-solid: #0e1d2f;
  --text: #f5f7fa;
  --muted: #aebaca;
  --line: rgba(174, 186, 202, 0.20);
  --copper: #d58a5c;
  --copper-soft: #f0b38d;
  --blue: #4ba5e6;
  --plum: #b8589d;
  --emerald: #3bb28a;
  --shadow: 0 24px 72px rgba(0, 0, 0, 0.34);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(75, 165, 230, 0.15), transparent 30rem),
    radial-gradient(circle at 88% 12%, rgba(184, 88, 157, 0.13), transparent 29rem),
    linear-gradient(180deg, var(--ink) 0%, #091525 42%, #060d16 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 3px solid var(--copper-soft); outline-offset: 4px; }

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; background: #fff; color: #111; padding: 10px 14px; border-radius: 10px; }
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(7, 16, 27, 0.78);
  backdrop-filter: blur(18px);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(0,0,0,.22); }
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; min-width: max-content; }
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand-text { display: grid; line-height: 1.02; }
.brand-text strong { letter-spacing: .16em; font-size: 13px; color: var(--copper-soft); }
.brand-text span { letter-spacing: .15em; font-size: 11px; color: #72b9ed; font-weight: 800; }
.tm { font-size: .56em; vertical-align: super; line-height: 0; letter-spacing: 0; margin-left: .12em; color: var(--copper-soft); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 700; padding: 10px 12px; border-radius: 11px; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.065); }
.nav-toggle { display: none; border: 1px solid var(--line); background: rgba(255,255,255,.04); color: #fff; border-radius: 12px; padding: 9px 11px; }

.hero { padding: clamp(72px, 9vw, 132px) 0 76px; position: relative; overflow: clip; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr); gap: clamp(42px, 6vw, 82px); align-items: center; }
.eyebrow { display: inline-flex; gap: 10px; align-items: center; color: #8bc8f2; text-transform: uppercase; letter-spacing: .18em; font-weight: 900; font-size: 12px; margin-bottom: 20px; }
.eyebrow::before { content: ""; width: 34px; height: 1px; background: linear-gradient(90deg, var(--copper), var(--blue)); }
h1, h2, h3 { line-height: 1.04; letter-spacing: -.035em; }
h1 { font-size: clamp(48px, 6.7vw, 82px); margin: 0 0 24px; max-width: 940px; }
h2 { font-size: clamp(34px, 5vw, 56px); margin: 0 0 18px; }
h3 { font-size: 21px; margin: 0 0 10px; }
.display-gradient { background: linear-gradient(105deg, #fff 12%, #a9d9fb 48%, #efb18b 87%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { color: #cfdae6; font-size: clamp(19px, 2.05vw, 23px); max-width: 850px; margin: 0 0 30px; }
.body-lg { color: #c6d1dc; font-size: 19px; max-width: 820px; }
.muted { color: var(--muted); }
.kicker { color: var(--copper-soft); font-weight: 850; letter-spacing: .08em; text-transform: uppercase; font-size: 12px; }
.actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 12px 18px; border-radius: 13px; border: 1px solid var(--line); text-decoration: none; color: #fff; background: rgba(255,255,255,.045); font-weight: 800; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.button:hover { transform: translateY(-2px); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.32); }
.button.primary { color: #07101b; border-color: transparent; background: linear-gradient(135deg, var(--copper-soft), #f2c4a6 44%, #7cc3ef); box-shadow: 0 12px 34px rgba(75, 165, 230, .18); }
.button.text { border-color: transparent; background: transparent; color: #a9d9fb; padding-inline: 5px; }
.hero-copy { position: relative; z-index: 2; }
.hero-note { margin: 18px 0 0; color: #8fa0b3; font-size: 13px; max-width: 760px; }
.hero-note a { color: #a9d9fb; }
.hero-visual { position: relative; min-height: 540px; display: grid; place-items: center; }
.brand-stage { position: relative; width: 100%; min-height: 510px; display: grid; place-items: center; padding: 54px 38px 34px; border: 1px solid var(--line); border-radius: 34px; background: radial-gradient(circle at 50% 42%, rgba(75,165,230,.13), transparent 45%), linear-gradient(160deg, rgba(17,35,56,.72), rgba(8,18,31,.66)); box-shadow: var(--shadow); overflow: hidden; }
.brand-stage::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(240,179,141,.08), transparent 42%, rgba(184,88,157,.08)); pointer-events: none; }
.hero-orbit { position: absolute; border: 1px solid rgba(75,165,230,.20); border-radius: 50%; animation: spin 30s linear infinite; }
.hero-orbit.one { width: 470px; height: 470px; }
.hero-orbit.two { width: 355px; height: 355px; animation-direction: reverse; animation-duration: 23s; border-color: rgba(213,138,92,.23); }
.hero-orbit::after { content: ""; position: absolute; top: 12%; left: 7%; width: 10px; height: 10px; border-radius: 50%; background: var(--copper-soft); box-shadow: 0 0 28px rgba(240,179,141,.75); }
.hero-mark { width: clamp(300px, 30vw, 410px); height: auto; max-height: 410px; object-fit: contain; filter: drop-shadow(0 26px 60px rgba(0,0,0,.45)); position: relative; z-index: 2; }
.capability-chips { position: relative; z-index: 3; width: 100%; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 24px; }
.capability-chips span { color: #c8d8e6; border: 1px solid var(--line); background: rgba(7,16,27,.72); padding: 7px 10px; border-radius: 999px; font-size: 11px; font-weight: 750; }
@keyframes spin { to { transform: rotate(360deg); } }

.trust-strip { border-block: 1px solid var(--line); background: rgba(255,255,255,.018); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 25px 22px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-size: 18px; color: #fff; }
.trust-item span { color: var(--muted); font-size: 13px; }

.section { padding: clamp(72px, 9vw, 116px) 0; border-top: 1px solid var(--line); }
.section:first-of-type { border-top: 0; }
.section-header { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: end; margin-bottom: 42px; }
.section-header p { margin: 0; color: var(--muted); font-size: 18px; }
.grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card { position: relative; background: linear-gradient(180deg, rgba(17,35,56,.78), rgba(11,24,40,.78)); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: 0 16px 45px rgba(0,0,0,.16); overflow: hidden; }
.card::before { content: ""; position: absolute; inset: 0 auto auto 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, rgba(75,165,230,.65), rgba(213,138,92,.65), transparent); opacity: .55; }
.card p { color: var(--muted); margin: 0; }
.card .tag { display: inline-flex; color: #b9dcf5; border: 1px solid rgba(75,165,230,.28); background: rgba(75,165,230,.07); padding: 5px 9px; border-radius: 999px; font-size: 11px; text-transform: uppercase; letter-spacing: .10em; font-weight: 850; margin-bottom: 15px; }
.card ul { padding-left: 18px; color: var(--muted); margin: 15px 0 0; }
.card li + li { margin-top: 7px; }
.number { font-size: 12px; color: var(--copper-soft); font-weight: 900; letter-spacing: .16em; }

.path { counter-reset: path; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.path-item { counter-increment: path; padding: 28px 24px; min-height: 240px; background: rgba(255,255,255,.025); border-right: 1px solid var(--line); }
.path-item:last-child { border-right: 0; }
.path-item::before { content: "0" counter(path); display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(213,138,92,.12); color: var(--copper-soft); border: 1px solid rgba(213,138,92,.3); font-weight: 900; font-size: 12px; margin-bottom: 24px; }
.path-item p { color: var(--muted); margin-bottom: 0; }

.callout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: center; padding: clamp(32px, 6vw, 64px); border: 1px solid var(--line); border-radius: 32px; background: linear-gradient(130deg, rgba(184,88,157,.12), rgba(75,165,230,.10) 48%, rgba(213,138,92,.10)); box-shadow: var(--shadow); }
.callout p { color: #c9d5e0; }
.callout-list { display: grid; gap: 12px; }
.callout-list div { display: flex; gap: 12px; align-items: flex-start; padding: 14px 15px; border: 1px solid var(--line); border-radius: 14px; background: rgba(4,12,21,.38); }
.callout-list b { color: var(--emerald); }

.metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.metric { padding: 30px; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(255,255,255,.025); }
.metric strong { display: block; font-size: clamp(38px,6vw,64px); line-height: 1; color: #fff; letter-spacing: -.05em; margin-bottom: 12px; }
.metric span { color: var(--muted); }
.disclaimer { color: #8292a5; font-size: 12px; margin-top: 18px; }

.page-hero { padding: 80px 0 64px; }
.page-hero h1 { max-width: 980px; }
.breadcrumb { display: flex; gap: 8px; color: var(--muted); font-size: 13px; margin-bottom: 24px; }
.breadcrumb a { color: #9ed2f6; }
.prose { max-width: 860px; }
.prose p, .prose li { color: #c6d1dc; font-size: 18px; }
.prose h2 { margin-top: 58px; font-size: 38px; }
.prose h3 { margin-top: 34px; }
.quote { border-left: 4px solid var(--copper); padding: 24px 26px; margin: 40px 0; background: rgba(213,138,92,.08); border-radius: 0 18px 18px 0; font-size: 25px; line-height: 1.35; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table { border-collapse: collapse; width: 100%; min-width: 760px; background: rgba(255,255,255,.02); }
th, td { text-align: left; padding: 17px 18px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { color: #fff; background: rgba(255,255,255,.035); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }
td { color: var(--muted); }
tr:last-child td { border-bottom: 0; }

.form-shell { display: grid; grid-template-columns: .8fr 1.2fr; gap: 42px; }
.form { border: 1px solid var(--line); border-radius: var(--radius); background: rgba(13,28,46,.72); padding: 28px; }
.field { display: grid; gap: 7px; margin-bottom: 18px; }
label { color: #dce5ed; font-weight: 750; font-size: 14px; }
input, select, textarea { width: 100%; color: #fff; background: #081422; border: 1px solid rgba(174,186,202,.28); border-radius: 12px; padding: 12px 13px; }
textarea { min-height: 150px; resize: vertical; }
.help { color: var(--muted); font-size: 13px; }
.hidden { position: absolute !important; left: -9999px !important; }

.site-footer { border-top: 1px solid var(--line); padding: 48px 0 30px; background: rgba(0,0,0,.16); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 34px; }
.footer-brand p { color: var(--muted); max-width: 460px; }
.footer-nav { display: grid; align-content: start; gap: 8px; }
.footer-nav strong { margin-bottom: 6px; }
.footer-nav a { color: var(--muted); text-decoration: none; }
.footer-nav a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid var(--line); margin-top: 34px; padding-top: 22px; color: #8190a2; font-size: 12px; }
.trademark-note { margin: 14px 0 0; color: #65778b; font-size: 10px; line-height: 1.55; max-width: 1080px; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.visible { opacity: 1; transform: none; }

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

@media (max-width: 980px) {
  .hero-grid, .section-header, .callout, .form-shell { grid-template-columns: 1fr; }
  .hero-visual { min-height: 470px; }
  .brand-stage { min-height: 455px; }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .path { grid-template-columns: repeat(2,1fr); }
  .path-item:nth-child(2) { border-right: 0; }
  .path-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--max)); }
  .nav-links { flex-wrap: wrap; justify-content: flex-end; }
  .js .nav-toggle { display: inline-flex; }
  .js .nav-links { position: absolute; inset: 78px 14px auto; display: none; flex-direction: column; align-items: stretch; padding: 12px; border: 1px solid var(--line); border-radius: 16px; background: #0a1625; box-shadow: var(--shadow); }
  .js .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 14px; }
  .hero { padding-top: 62px; }
  .hero-visual { min-height: 420px; }
  .brand-stage { min-height: 405px; padding: 34px 18px 24px; }
  .hero-mark { width: min(300px, 78vw); max-height: 300px; }
  .hero-orbit.one { width: 330px; height: 330px; }
  .hero-orbit.two { width: 250px; height: 250px; }
  .capability-chips { margin-top: 18px; }
  .capability-chips span { font-size: 10px; }
  .grid-2, .grid-3, .metrics, .footer-grid { grid-template-columns: 1fr; }
  .path { grid-template-columns: 1fr; }
  .path-item, .path-item:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .path-item:last-child { border-bottom: 0; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item, .trust-item:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .footer-bottom { flex-direction: column; }
  h1 { font-size: clamp(44px, 14vw, 66px); }
}
