:root {
  --obsidian: #05070a;
  --deep-navy: #08111f;
  --navy-2: #0b1728;
  --graphite: #111827;
  --graphite-2: #1b2535;
  --white: #ffffff;
  --surface: #f7f9fc;
  --surface-2: #edf2f7;
  --border: #dfe6ef;
  --border-dark: rgba(255,255,255,.12);
  --text: #111827;
  --muted: #64748b;
  --muted-dark: #a7b3c5;
  --blue: #00a3ff;
  --blue-dark: #0079c7;
  --cyan: #b8ecff;
  --red: #ff2d2d;
  --heading: "Space Grotesk", "Inter", "Segoe UI", Arial, sans-serif;
  --body: "Inter", "Segoe UI", Arial, sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  --container: 1280px;
  --header-height: 78px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 16px 40px rgba(8,17,31,.08);
  --shadow-lg: 0 35px 95px rgba(0,0,0,.28);
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 28px); }
body { margin: 0; color: var(--text); background: var(--white); font: 16px/1.65 var(--body); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(0,163,255,.45); outline-offset: 4px; }
::selection { background: rgba(0,163,255,.22); }

h1, h2, h3 { margin: 0; font-family: var(--heading); letter-spacing: -.035em; line-height: 1.06; }
h1 { font-size: clamp(3.15rem, 6.2vw, 6.5rem); max-width: 950px; }
h2 { font-size: clamp(2.25rem, 4vw, 4.35rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); letter-spacing: -.02em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: clamp(90px, 10vw, 150px) 0; position: relative; }
.section-light { background: var(--surface); }
.section-dark { color: var(--white); background: var(--obsidian); }

.skip-link { position: fixed; top: 10px; left: 10px; z-index: 9999; transform: translateY(-160%); padding: 12px 18px; border-radius: 8px; background: var(--white); color: var(--text); font-weight: 700; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; inset: 0 0 auto; z-index: 1000; height: var(--header-height); color: var(--white); background: linear-gradient(180deg, rgba(5,7,10,.72), rgba(5,7,10,0)); transition: background .25s ease, border-color .25s ease, box-shadow .25s ease; }
.site-header.is-scrolled { background: rgba(5,7,10,.86); border-bottom: 1px solid rgba(255,255,255,.09); box-shadow: 0 10px 36px rgba(0,0,0,.22); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.site-header__inner { min-height: var(--header-height); display: flex; align-items: center; gap: 28px; }
.brand { width: 196px; flex: 0 0 auto; display: inline-flex; align-items: center; }
.brand img { width: 100%; height: auto; }
.primary-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2vw, 30px); margin-left: auto; }
.primary-nav a, .text-link { color: rgba(255,255,255,.78); font-size: .9rem; font-weight: 600; transition: color .2s ease; }
.primary-nav a:hover, .text-link:hover { color: var(--white); }
.site-header__actions { display: flex; align-items: center; gap: 18px; }
.nav-toggle { display: none; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.04); border-radius: 10px; padding: 0; position: relative; }
.nav-toggle span { position: absolute; left: 13px; width: 22px; height: 2px; background: var(--white); transition: .25s ease; }
.nav-toggle span:first-child { top: 18px; }
.nav-toggle span:last-child { top: 27px; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 22px; border: 1px solid transparent; border-radius: 10px; font-weight: 700; letter-spacing: -.01em; transition: transform .2s var(--ease), background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button--small { min-height: 44px; padding-inline: 17px; font-size: .9rem; }
.button--primary { color: var(--white); background: var(--blue); box-shadow: 0 12px 35px rgba(0,163,255,.25); }
.button--primary:hover { background: #16adff; box-shadow: 0 16px 40px rgba(0,163,255,.32); }
.button--ghost { color: var(--white); background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.2); }
.button--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); }
.button--outline { color: var(--text); border-color: #cbd5e1; background: transparent; }
.button--outline:hover { border-color: var(--blue); color: var(--blue-dark); }

.tech-grid { position: absolute; inset: 0; opacity: .38; pointer-events: none; background-image: linear-gradient(rgba(73,125,176,.10) 1px, transparent 1px), linear-gradient(90deg, rgba(73,125,176,.10) 1px, transparent 1px); background-size: 58px 58px; mask-image: linear-gradient(to bottom, black 10%, transparent 95%); }
.hero { min-height: 880px; padding: calc(var(--header-height) + 94px) 0 86px; display: flex; align-items: center; overflow: hidden; background: radial-gradient(circle at 78% 20%, rgba(0,163,255,.13), transparent 32%), radial-gradient(circle at 8% 85%, rgba(255,45,45,.055), transparent 28%), linear-gradient(145deg, #05070a 0%, #07111e 58%, #05070a 100%); }
.hero::after { content: ""; position: absolute; inset: auto -10% -40% 30%; height: 520px; background: radial-gradient(ellipse, rgba(0,163,255,.08), transparent 64%); filter: blur(20px); }
.hero__layout { display: grid; grid-template-columns: minmax(0,1.03fr) minmax(480px,.97fr); align-items: center; gap: clamp(50px, 7vw, 105px); position: relative; z-index: 2; }
.hero__content { position: relative; z-index: 3; }
.eyebrow, .section-tag { display: inline-flex; align-items: center; gap: 10px; color: var(--blue); font: 700 .74rem/1 var(--mono); letter-spacing: .14em; text-transform: uppercase; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; background: var(--red); box-shadow: 0 0 0 5px rgba(255,45,45,.09); }
.hero h1 { margin-top: 24px; }
.hero__lead { max-width: 720px; margin-top: 28px; color: #b8c4d5; font-size: clamp(1.1rem, 1.5vw, 1.35rem); line-height: 1.65; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero__assurances { display: flex; flex-wrap: wrap; gap: 14px 28px; margin-top: 32px; list-style: none; color: #a6b2c2; font-size: .9rem; }
.hero__assurances li { position: relative; padding-left: 18px; }
.hero__assurances li::before { content: ""; position: absolute; left: 0; top: .65em; width: 7px; height: 1px; background: var(--blue); }
.hero-orbit { position: absolute; border: 1px solid rgba(0,163,255,.12); border-radius: 50%; pointer-events: none; }
.hero-orbit--one { width: 740px; height: 740px; right: -140px; top: 80px; animation: orbitSpin 40s linear infinite; }
.hero-orbit--two { width: 510px; height: 510px; right: -5px; top: 195px; border-style: dashed; animation: orbitSpinReverse 28s linear infinite; }
.hero-orbit::before { content: ""; position: absolute; top: 12%; left: 18%; width: 7px; height: 7px; background: var(--blue); border-radius: 50%; box-shadow: 0 0 18px var(--blue); }
.hero-beam { position: absolute; top: -12%; left: 48%; width: 1px; height: 125%; background: linear-gradient(to bottom, transparent, rgba(0,163,255,.4), transparent); transform: rotate(23deg); opacity: .35; animation: beamShift 7s ease-in-out infinite alternate; }

.hero-console { position: relative; min-height: 560px; padding: 24px; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: linear-gradient(160deg, rgba(13,27,45,.87), rgba(6,10,16,.8)); box-shadow: var(--shadow-lg); overflow: hidden; backdrop-filter: blur(14px); }
.hero-console::before { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, transparent 10%, rgba(255,255,255,.035) 45%, transparent 60%); transform: translateX(-100%); animation: consoleSweep 8s ease-in-out infinite; }
.console__header, .console__footer { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 2; }
.console__header { padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.1); }
.console__header strong { display: block; margin-top: 6px; font-family: var(--heading); font-size: 1.22rem; }
.console__kicker, .console__status, .console__footer { color: #7f91a8; font: 700 .66rem/1.4 var(--mono); letter-spacing: .11em; }
.console__status { display: flex; align-items: center; gap: 7px; color: #b7c5d8; }
.console__status i, .console__footer i { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 14px var(--blue); }
.route-map { position: relative; min-height: 440px; }
.route-map svg { width: 100%; height: 430px; }
.route-grid path { fill: none; stroke: rgba(166,194,221,.075); stroke-width: 1; }
.route-line { fill: none; stroke: url(#routeGradient); stroke-width: 2.4; stroke-linecap: round; filter: url(#routeGlow); stroke-dasharray: 12 10; animation: routeTravel 4.5s linear infinite; }
.route-line--two { animation-delay: -.9s; }
.route-line--three { animation-delay: -1.8s; }
.route-line--four { animation-delay: -2.7s; }
.route-origin { fill: #0b2238; stroke: var(--blue); stroke-width: 2; }
.route-pulse { fill: none; stroke: rgba(0,163,255,.45); stroke-width: 1; transform-origin: 100px 209px; animation: nodePulse 2.4s ease-out infinite; }
.route-node { fill: #07111e; stroke: var(--blue); stroke-width: 3; }
.route-node--red { stroke: var(--red); }
.route-label { position: absolute; color: #90a0b5; font: 700 .58rem/1 var(--mono); letter-spacing: .1em; }
.route-label--origin { left: 5%; top: 49%; transform: translateY(-50%); color: var(--white); }
.route-label--one { right: 1%; top: 17%; }
.route-label--two { right: 1%; top: 35%; }
.route-label--three { right: 1%; top: 53%; }
.route-label--four { right: 1%; top: 71%; color: #ff9696; }
.console__footer { padding-top: 15px; border-top: 1px solid rgba(255,255,255,.1); }
.console__footer span:first-child { display: flex; align-items: center; gap: 8px; }

.capability-bar { border-bottom: 1px solid var(--border); background: var(--white); }
.capability-bar__grid { min-height: 90px; display: grid; grid-template-columns: repeat(4,1fr); }
.capability-bar__grid > div { display: flex; align-items: center; gap: 16px; padding: 0 28px; border-right: 1px solid var(--border); }
.capability-bar__grid > div:first-child { border-left: 1px solid var(--border); }
.capability-bar span { color: var(--blue-dark); font: 700 .72rem var(--mono); }
.capability-bar strong { font-size: .95rem; }

.section-heading { max-width: 800px; margin-bottom: 60px; }
.section-heading--split { max-width: none; display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,.62fr); gap: 70px; align-items: end; }
.section-heading h2 { margin-top: 18px; }
.section-heading p { color: var(--muted); font-size: 1.06rem; }
.section-heading--light { color: var(--white); }
.section-heading--light p { color: var(--muted-dark); margin-top: 22px; }

.options-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px; }
.option-card { min-height: 430px; padding: 34px; display: flex; flex-direction: column; position: relative; overflow: hidden; border: 1px solid var(--border); border-radius: 14px; background: var(--white); box-shadow: 0 20px 55px rgba(8,17,31,.045); transition: transform .3s var(--ease), border-color .3s ease, box-shadow .3s ease; }
.option-card:hover { transform: translateY(-6px); border-color: rgba(0,163,255,.35); box-shadow: 0 28px 70px rgba(8,17,31,.09); }
.option-card::after { content: ""; position: absolute; width: 220px; height: 220px; right: -120px; top: -120px; border: 1px solid rgba(0,163,255,.12); border-radius: 50%; }
.option-card--featured { color: var(--white); border-color: rgba(0,163,255,.48); background: radial-gradient(circle at 90% 0%, rgba(0,163,255,.18), transparent 34%), linear-gradient(145deg, #08111f, #05070a); }
.option-card--featured p, .option-card--featured li { color: #aeb9c9; }
.option-card__badge { position: absolute; right: 25px; top: 25px; color: var(--cyan); font: 700 .62rem var(--mono); letter-spacing: .12em; }
.option-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 48px; }
.option-number { color: var(--blue); font: 700 .8rem var(--mono); }
.line-icon { width: 46px; fill: none; stroke: var(--blue-dark); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.option-card--featured .line-icon { stroke: var(--blue); }
.option-card h3 { font-size: 1.75rem; }
.option-card > p { margin-top: 18px; color: var(--muted); }
.option-card ul { margin-top: 24px; list-style: none; display: grid; gap: 10px; color: #475569; font-size: .94rem; }
.option-card li { position: relative; padding-left: 18px; }
.option-card li::before { content: ""; position: absolute; left: 0; top: .72em; width: 7px; height: 1px; background: var(--blue); }
.option-card__action { width: 100%; display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding: 22px 0 0; border: 0; border-top: 1px solid var(--border); background: transparent; color: var(--blue-dark); cursor: pointer; font-weight: 700; text-align: left; }
.option-card--featured .option-card__action { border-color: rgba(255,255,255,.14); color: var(--cyan); }
.option-card__action span { transition: transform .2s ease; }
.option-card__action:hover span { transform: translateX(5px); }
.split-terms { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0; }
.split-terms div { padding: 16px; border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.035); border-radius: 8px; }
.split-terms span { display: block; color: #8798ae; font-size: .75rem; }
.split-terms strong { display: block; margin-top: 5px; font: 700 1.25rem var(--heading); }

.navigator { overflow: hidden; background: radial-gradient(circle at 16% 0%, rgba(0,163,255,.09), transparent 28%), linear-gradient(145deg,#05070a,#08111f); }
.navigator__mesh { position: absolute; inset: 0; opacity: .32; background-image: radial-gradient(circle at center, rgba(0,163,255,.22) 1px, transparent 1px); background-size: 34px 34px; mask-image: linear-gradient(90deg, transparent, black 25%, black 75%, transparent); }
.navigator__layout { display: grid; grid-template-columns: minmax(300px,.75fr) minmax(0,1.25fr); gap: 24px; position: relative; z-index: 2; }
.scenario-list { display: grid; gap: 10px; }
.scenario-button { width: 100%; min-height: 108px; display: grid; grid-template-columns: 42px 1fr; grid-template-rows: auto auto; align-items: center; gap: 3px 14px; padding: 20px; text-align: left; border: 1px solid rgba(255,255,255,.1); border-radius: 10px; color: var(--white); background: rgba(255,255,255,.025); cursor: pointer; transition: border-color .25s ease, background .25s ease, transform .25s var(--ease); }
.scenario-button:hover { transform: translateX(5px); border-color: rgba(0,163,255,.4); }
.scenario-button.is-active { border-color: var(--blue); background: linear-gradient(100deg, rgba(0,163,255,.14), rgba(0,163,255,.03)); box-shadow: inset 3px 0 0 var(--blue); }
.scenario-button > span { grid-row: 1 / 3; color: var(--blue); font: 700 .7rem var(--mono); }
.scenario-button strong { font-size: .96rem; }
.scenario-button small { color: #8190a5; }
.recommendation-panel { min-height: 470px; padding: clamp(28px,4vw,54px); display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: linear-gradient(155deg, rgba(14,29,48,.88), rgba(5,8,13,.9)); box-shadow: 0 35px 100px rgba(0,0,0,.3); position: relative; overflow: hidden; }
.recommendation-panel::after { content: ""; position: absolute; right: -140px; bottom: -140px; width: 360px; height: 360px; border: 1px solid rgba(0,163,255,.11); border-radius: 50%; box-shadow: inset 0 0 80px rgba(0,163,255,.04); }
.recommendation-panel__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; position: relative; z-index: 2; }
.recommendation-panel__head span, .recommendation-panel__notes span { color: #7f91a8; font: 700 .65rem var(--mono); letter-spacing: .12em; }
.recommendation-panel__head h3 { max-width: 650px; margin-top: 10px; font-size: clamp(1.8rem,3vw,3rem); }
.recommendation-code { color: var(--cyan); font: 700 .66rem var(--mono); white-space: nowrap; padding: 8px 10px; border: 1px solid rgba(0,163,255,.25); border-radius: 6px; }
.recommendation-panel > p { margin-top: 24px; max-width: 760px; color: #aab7c8; }
.milestone-track { display: flex; align-items: flex-start; margin-top: 42px; position: relative; z-index: 2; }
.milestone-track > i { flex: 1; height: 1px; margin: 24px 12px 0; background: linear-gradient(90deg,var(--blue),rgba(0,163,255,.18)); position: relative; overflow: hidden; }
.milestone-track > i::after { content: ""; position: absolute; inset: -2px auto -2px 0; width: 25%; background: var(--cyan); box-shadow: 0 0 15px var(--blue); animation: milestoneMove 2.8s linear infinite; }
.milestone { min-width: 120px; }
.milestone span { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--blue); border-radius: 50%; color: var(--white); background: #071827; font: 700 .82rem var(--mono); box-shadow: 0 0 0 7px rgba(0,163,255,.05); }
.milestone small { max-width: 130px; display: block; margin-top: 13px; color: #8697ac; line-height: 1.35; }
.recommendation-panel__notes { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: auto; padding-top: 34px; border-top: 1px solid rgba(255,255,255,.1); position: relative; z-index: 2; }
.recommendation-panel__notes strong { display: block; margin-top: 8px; color: #dbe5f2; font-size: .93rem; }
.recommendation-panel__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; position: relative; z-index: 2; }

.process-section { overflow: hidden; }
.process-timeline { list-style: none; display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.process-timeline li { min-height: 270px; padding: 30px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--white); transition: background .25s ease, transform .25s var(--ease); }
.process-timeline li:hover { background: #fbfdff; transform: translateY(-4px); }
.process-timeline li > span { color: var(--blue-dark); font: 700 .68rem var(--mono); }
.process-timeline h3 { margin-top: 55px; font-size: 1.35rem; }
.process-timeline p { margin-top: 13px; color: var(--muted); font-size: .93rem; }

.finance-explainer { color: var(--white); background: #07101c; overflow: hidden; }
.finance-explainer::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 22% 40%, rgba(0,163,255,.12), transparent 30%), linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px); background-size: auto, 100% 66px; }
.finance-explainer__layout { display: grid; grid-template-columns: minmax(0,1fr) minmax(420px,.92fr); align-items: center; gap: 80px; position: relative; z-index: 2; }
.finance-explainer__visual { min-height: 530px; position: relative; border: 1px solid rgba(255,255,255,.09); background: rgba(255,255,255,.018); }
.finance-explainer__visual svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.finance-path { fill: none; stroke: var(--blue); stroke-width: 2; stroke-dasharray: 9 8; animation: routeTravel 4s linear infinite; }
.finance-path--muted { opacity: .55; }
.finance-node { width: 190px; min-height: 96px; position: absolute; z-index: 2; padding: 18px; border: 1px solid rgba(0,163,255,.38); border-radius: 10px; background: rgba(5,12,20,.92); box-shadow: 0 16px 40px rgba(0,0,0,.24); }
.finance-node span { color: var(--blue); font: 700 .62rem var(--mono); letter-spacing: .11em; }
.finance-node strong { display: block; margin-top: 10px; font-size: .88rem; }
.finance-node--client { left: 7%; top: 24%; }
.finance-node--provider { right: 7%; top: 13%; }
.finance-node--vendor { left: 32%; bottom: 12%; border-color: rgba(255,45,45,.4); }
.finance-node--vendor span { color: #ff8383; }
.finance-explainer__content h2 { margin-top: 18px; }
.finance-explainer__content > p { margin-top: 24px; color: #aab7c8; }
.finance-points { display: grid; gap: 15px; margin-top: 34px; }
.finance-points div { display: grid; grid-template-columns: 38px 1fr; gap: 14px; align-items: start; }
.finance-points span { color: var(--blue); font: 700 .68rem var(--mono); }
.finance-points p { color: #d6deea; }
.legal-note { padding: 18px 20px; border-left: 2px solid var(--red); background: rgba(255,255,255,.035); font-size: .87rem; }

.terms-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.term-card { min-height: 245px; padding: 28px; border: 1px solid var(--border); border-radius: 12px; background: var(--white); }
.term-card > span { color: var(--blue-dark); font: 700 .68rem var(--mono); }
.term-card h3 { margin-top: 42px; }
.term-card p { margin-top: 14px; color: var(--muted); font-size: .92rem; }

.downloads-section { color: var(--white); background: #0a1422; }
.downloads-section__panel { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: center; padding: clamp(35px,5vw,70px); border: 1px solid rgba(255,255,255,.11); background: radial-gradient(circle at 100% 0%, rgba(0,163,255,.1), transparent 36%), rgba(255,255,255,.018); }
.downloads-section__panel h2 { margin-top: 16px; }
.downloads-section__panel > div:first-child p { margin-top: 20px; color: #9cabbf; }
.download-cards { display: grid; gap: 14px; }
.download-card { min-height: 105px; display: grid; grid-template-columns: 56px 1fr 28px; align-items: center; gap: 18px; padding: 20px; border: 1px solid rgba(255,255,255,.12); border-radius: 10px; background: rgba(255,255,255,.025); transition: transform .25s var(--ease), border-color .25s ease, background .25s ease; }
.download-card:hover { transform: translateX(6px); border-color: rgba(0,163,255,.5); background: rgba(0,163,255,.05); }
.download-card svg { width: 48px; fill: none; stroke: var(--blue); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.download-card strong { display: block; }
.download-card small { display: block; margin-top: 5px; color: #8393a8; }
.download-card i { font-style: normal; color: var(--blue); font-size: 1.5rem; }

.faq-section__layout { display: grid; grid-template-columns: minmax(300px,.65fr) minmax(0,1.35fr); gap: 80px; align-items: start; }
.faq-section__intro { position: sticky; top: calc(var(--header-height) + 35px); }
.faq-section__intro h2 { margin-top: 18px; }
.faq-section__intro p { margin: 22px 0 30px; color: var(--muted); }
.accordion { border-top: 1px solid var(--border); }
.accordion__item { border-bottom: 1px solid var(--border); }
.accordion__item h3 { font-family: var(--body); letter-spacing: normal; }
.accordion__trigger { width: 100%; min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 0; border: 0; background: transparent; text-align: left; font-size: 1rem; font-weight: 700; cursor: pointer; }
.accordion__trigger i { width: 24px; height: 24px; position: relative; flex: 0 0 auto; }
.accordion__trigger i::before, .accordion__trigger i::after { content: ""; position: absolute; left: 4px; top: 11px; width: 16px; height: 2px; background: var(--blue-dark); transition: transform .25s ease; }
.accordion__trigger i::after { transform: rotate(90deg); }
.accordion__trigger[aria-expanded="true"] i::after { transform: rotate(0); }
.accordion__panel { padding: 0 58px 28px 0; color: var(--muted); }

.final-cta { padding: clamp(85px,9vw,130px) 0; overflow: hidden; background: radial-gradient(circle at 85% 20%, rgba(0,163,255,.14), transparent 30%), #05070a; }
.final-cta__layout { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: end; position: relative; z-index: 2; }
.final-cta h2 { max-width: 820px; margin-top: 20px; }
.final-cta p { max-width: 730px; margin-top: 23px; color: #aab6c7; }
.final-cta__actions { display: grid; gap: 12px; }

.site-footer { color: #cbd5e1; background: #030507; border-top: 1px solid rgba(255,255,255,.08); }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr .8fr .8fr 1fr; gap: 55px; padding: 72px 0 56px; }
.brand--footer { width: 220px; }
.site-footer__brand p { max-width: 350px; margin-top: 20px; color: #8290a2; }
.site-footer__brand small { display: flex; align-items: center; gap: 10px; margin-top: 22px; color: #7d8a9b; }
.site-footer h2 { margin-bottom: 20px; color: var(--white); font: 700 .72rem var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.site-footer nav, .footer-contact { display: flex; flex-direction: column; align-items: flex-start; }
.site-footer nav a, .footer-contact a { margin: 5px 0; color: #8795a7; font-size: .9rem; }
.site-footer nav a:hover, .footer-contact a:hover { color: var(--white); }
.footer-contact p { color: #7f8d9f; font-size: .9rem; }
.footer-contact a { margin-top: 18px; color: var(--blue); }
.site-footer__bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.08); color: #687688; font-size: .78rem; }
.site-footer__bottom nav { flex-direction: row; gap: 18px; }
.site-footer__bottom nav a { margin: 0; font-size: inherit; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes orbitSpin { to { transform: rotate(360deg); } }
@keyframes orbitSpinReverse { to { transform: rotate(-360deg); } }
@keyframes beamShift { from { transform: translateX(-30px) rotate(23deg); opacity: .2; } to { transform: translateX(45px) rotate(23deg); opacity: .48; } }
@keyframes consoleSweep { 0%,55% { transform: translateX(-110%); } 75%,100% { transform: translateX(110%); } }
@keyframes routeTravel { to { stroke-dashoffset: -44; } }
@keyframes nodePulse { 0% { transform: scale(.75); opacity: .8; } 100% { transform: scale(1.65); opacity: 0; } }
@keyframes milestoneMove { from { transform: translateX(-120%); } to { transform: translateX(520%); } }

@media (max-width: 1120px) {
  .primary-nav, .site-header__actions .text-link { display: none; }
  .site-header__actions { margin-left: auto; }
  .nav-toggle { display: block; }
  .primary-nav.is-open { position: fixed; inset: var(--header-height) 0 0; display: flex; flex-direction: column; justify-content: flex-start; align-items: stretch; gap: 0; padding: 32px 24px; background: rgba(5,7,10,.98); border-top: 1px solid rgba(255,255,255,.08); }
  .primary-nav.is-open a { padding: 18px 4px; border-bottom: 1px solid rgba(255,255,255,.09); font-size: 1.2rem; }
  .hero { min-height: auto; }
  .hero__layout { grid-template-columns: 1fr; }
  .hero__content { max-width: 880px; }
  .hero-console { width: min(100%,800px); }
  .finance-explainer__layout { grid-template-columns: 1fr; }
  .finance-explainer__visual { min-height: 500px; }
  .process-timeline { grid-template-columns: repeat(2,1fr); }
  .site-footer__grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-contact { grid-column: 2 / 4; }
}

@media (max-width: 820px) {
  :root { --header-height: 70px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand { width: 170px; }
  .site-header__actions .button { display: none; }
  .hero { padding-top: calc(var(--header-height) + 70px); }
  h1 { font-size: clamp(2.75rem, 12vw, 4.5rem); }
  .hero__layout { gap: 55px; }
  .hero-console { min-height: 480px; padding: 18px; }
  .route-map { min-height: 365px; }
  .route-map svg { height: 365px; }
  .capability-bar__grid { grid-template-columns: repeat(2,1fr); }
  .capability-bar__grid > div { min-height: 75px; border-bottom: 1px solid var(--border); }
  .section-heading--split, .navigator__layout, .downloads-section__panel, .faq-section__layout, .final-cta__layout { grid-template-columns: 1fr; gap: 38px; }
  .options-grid, .terms-grid { grid-template-columns: 1fr; }
  .option-card { min-height: 390px; }
  .recommendation-panel { min-height: 520px; }
  .faq-section__intro { position: static; }
  .final-cta__actions { display: flex; flex-wrap: wrap; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / 3; }
  .footer-contact { grid-column: auto; }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  .section { padding: 78px 0; }
  .site-header__actions { display: none; }
  .hero__actions, .recommendation-panel__actions, .final-cta__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .button, .recommendation-panel__actions .button, .final-cta__actions .button { width: 100%; }
  .hero__assurances { display: grid; gap: 10px; }
  .hero-console { min-height: 430px; }
  .console__header strong { font-size: 1rem; }
  .console__footer { gap: 15px; align-items: flex-start; flex-direction: column; }
  .route-label { font-size: .47rem; }
  .route-label--origin { left: 3%; }
  .capability-bar__grid { grid-template-columns: 1fr; }
  .capability-bar__grid > div, .capability-bar__grid > div:first-child { border-left: 1px solid var(--border); }
  .section-heading { margin-bottom: 42px; }
  .option-card { padding: 26px; }
  .split-terms { grid-template-columns: 1fr; }
  .scenario-button { min-height: 100px; padding: 16px; }
  .recommendation-panel { min-height: 590px; padding: 26px 22px; }
  .recommendation-panel__head { flex-direction: column; }
  .milestone-track { overflow-x: auto; padding-bottom: 10px; }
  .milestone-track > i { min-width: 54px; }
  .recommendation-panel__notes { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; }
  .process-timeline li { min-height: 230px; }
  .finance-explainer__visual { min-height: 450px; }
  .finance-node { width: 155px; padding: 14px; }
  .finance-node--provider { right: 2%; }
  .finance-node--client { left: 2%; }
  .finance-node--vendor { left: 27%; }
  .downloads-section__panel { padding: 28px 20px; }
  .download-card { grid-template-columns: 45px 1fr 18px; gap: 12px; padding: 16px; }
  .download-card svg { width: 40px; }
  .accordion__trigger { min-height: 82px; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__brand { grid-column: auto; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; justify-content: center; padding: 20px 0; }
}

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

.payment-language { color:#7E93A6; font:700 11px/1 Inter,sans-serif; letter-spacing:.08em; margin-left:auto; }
@media (max-width:980px){.payment-language{margin-left:0;}}
