:root {
  --navy-950: #030a18;
  --navy-900: #07152f;
  --navy-850: #0a1b3c;
  --navy-800: #0f244e;
  --ink: #10203f;
  --muted: #64748b;
  --line: #dce6f2;
  --blue: #165dff;
  --cyan: #12d9f5;
  --cyan-soft: #b9f6ff;
  --white: #fff;
  --surface: #f6f9fc;
  --surface-2: #eef5fb;
  --shadow: 0 30px 80px rgba(3, 16, 42, .14);
  --radius: 24px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::selection { background: var(--cyan-soft); color: var(--navy-950); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; object-fit: contain; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: var(--shell); margin-inline: auto; }
.noise { position: fixed; inset: 0; pointer-events: none; z-index: 99; opacity: .02; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E"); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(205, 220, 236, .72);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
}
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: clamp(170px, 17vw, 245px); max-width: 100%; height: auto; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 700; color: #53657e; }
.desktop-nav a { transition: color .2s ease; }
.desktop-nav a:hover { color: var(--blue); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.lang-switch { border: 0; background: #edf3f8; color: var(--navy-900); font-weight: 800; font-size: 12px; letter-spacing: .08em; width: 42px; height: 42px; border-radius: 50%; cursor: pointer; }
.lang-switch:hover { background: #e0ebf5; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 22px; border-radius: 14px; font-weight: 800; font-size: 14px; letter-spacing: -.01em; transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease; }
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; border-radius: 12px; padding: 0 16px; font-size: 13px; }
.button-dark { background: var(--navy-900); color: var(--white); box-shadow: 0 10px 28px rgba(7,21,47,.14); }
.button-dark:hover { background: #0d2a5d; }
.button-primary { color: var(--white); background: linear-gradient(100deg, var(--blue), #1379ff 54%, #08bfd7); box-shadow: 0 16px 42px rgba(22,93,255,.27); }
.button-primary:hover { box-shadow: 0 22px 48px rgba(22,93,255,.34); }
.button-outline { border: 1px solid #ccdaea; background: #fff; color: var(--navy-900); box-shadow: 0 10px 28px rgba(7,21,47,.06); }
.button-outline:hover { border-color: #95b9dd; }
.button-ghost { border: 1px solid rgba(169, 204, 235, .35); background: rgba(255,255,255,.06); color: #d8e8fb; }
.button-ghost:hover { border-color: rgba(18,217,245,.7); background: rgba(18,217,245,.08); }
.button-large { min-height: 58px; padding-inline: 28px; }

.hero { position: relative; overflow: hidden; color: var(--white); background: radial-gradient(circle at 71% 30%, rgba(23,111,255,.18), transparent 33%), linear-gradient(135deg, #020817 0%, #061633 54%, #071b3d 100%); padding: 86px 0 34px; }
.hero::before { content: ""; position: absolute; inset: 0; 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: 72px 72px; mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 88%); }
.hero-glow { position: absolute; border-radius: 999px; filter: blur(70px); opacity: .45; }
.hero-glow-one { width: 360px; height: 360px; background: #0756ff; right: 7%; top: 5%; }
.hero-glow-two { width: 260px; height: 260px; background: #0ad8eb; right: 22%; top: 28%; opacity: .18; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 60px; min-height: 570px; }
.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: .16em; font-size: 11px; font-weight: 900; }
.eyebrow { color: #9ac5f1; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 0 rgba(18,217,245,.7); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(18,217,245,.45);} 70% { box-shadow: 0 0 0 10px rgba(18,217,245,0);} 100% { box-shadow: 0 0 0 0 rgba(18,217,245,0);} }
.hero h1 { margin: 22px 0 24px; max-width: 710px; font-size: clamp(52px, 6vw, 86px); line-height: .95; letter-spacing: -.065em; font-weight: 850; }
.hero h1 span { color: transparent; background: linear-gradient(90deg, #59a7ff 4%, #11daf3 72%); -webkit-background-clip: text; background-clip: text; }
.hero-lead { max-width: 680px; margin: 0; color: #b4c8de; font-size: 19px; line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px; }
.hero-tags span { padding: 8px 12px; border: 1px solid rgba(127,171,216,.18); border-radius: 999px; color: #84a6c7; font-size: 11px; font-weight: 800; letter-spacing: .04em; }
.hero-visual { position: relative; min-height: 470px; display: grid; place-items: center; }
.orbital-card { position: relative; width: min(100%, 500px); aspect-ratio: 1; display: grid; place-items: center; }
.orbital-card::before { content: ""; position: absolute; width: 72%; height: 72%; border-radius: 50%; background: radial-gradient(circle, rgba(27,113,255,.21), rgba(12,41,91,.05) 55%, transparent 72%); filter: blur(5px); }
.hero-mark { position: relative; z-index: 3; width: 62%; height: auto; aspect-ratio: 1 / 1; object-fit: contain; filter: drop-shadow(0 25px 70px rgba(0,115,255,.28)); animation: float 7s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(-1deg);} 50% { transform: translateY(-12px) rotate(1deg);} }
.orbit { position: absolute; border: 1px solid rgba(56,160,255,.22); border-radius: 50%; }
.orbit::after { content: ""; position: absolute; top: -4px; left: 50%; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 20px rgba(18,217,245,.7); }
.orbit-a { width: 82%; height: 52%; transform: rotate(15deg); animation: spinA 18s linear infinite; }
.orbit-b { width: 76%; height: 48%; transform: rotate(72deg); animation: spinB 22s linear infinite; }
.orbit-c { width: 92%; height: 66%; transform: rotate(-35deg); opacity: .55; animation: spinA 28s linear infinite reverse; }
@keyframes spinA { to { transform: rotate(375deg);} }
@keyframes spinB { to { transform: rotate(-288deg);} }
.signal-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 11px; min-width: 148px; padding: 12px 14px; border: 1px solid rgba(128,190,241,.18); background: rgba(6,24,57,.72); backdrop-filter: blur(14px); border-radius: 16px; box-shadow: 0 16px 38px rgba(0,0,0,.18); }
.signal-top { top: 18%; right: -1%; }
.signal-bottom { bottom: 14%; left: -2%; }
.signal-icon { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 10px; background: rgba(18,217,245,.14); color: var(--cyan); font-weight: 900; }
.signal-icon-blue { color: #63a5ff; background: rgba(58,132,255,.14); }
.signal-card small { display:block; margin-bottom: 2px; font-size: 8px; letter-spacing: .18em; color: #6f97bd; font-weight: 900; }
.signal-card strong { color: #e9f4ff; font-size: 12px; }
.hero-foot { position: relative; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(125,169,216,.16); padding-top: 28px; }
.mini-stat { display: flex; align-items: center; gap: 14px; min-height: 58px; padding-right: 22px; border-right: 1px solid rgba(125,169,216,.13); }
.mini-stat:last-child { border-right: 0; padding-left: 22px; }
.mini-stat:nth-child(2) { padding-left: 22px; }
.mini-stat strong { color: #29d6ef; font-size: 11px; letter-spacing: .18em; }
.mini-stat span { color: #9fb5cd; font-size: 13px; font-weight: 700; }

.section { padding: 110px 0; }
.section-light { background: var(--white); }
.section-kicker { color: var(--blue); }
.section-kicker-dark { color: #55a5ff; }
.split-intro { display: grid; grid-template-columns: 1fr .78fr; gap: 80px; align-items: end; }
.split-intro h2, .section-heading h2, .framework-copy h2, .status-copy h2, .cta-inner h2 { margin: 16px 0 0; font-size: clamp(38px, 4.4vw, 62px); line-height: 1.03; letter-spacing: -.05em; }
.split-intro p { margin: 0 0 5px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 54px; }
.value-card { position: relative; overflow: hidden; min-height: 270px; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg,#fff,#fbfdff); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #bdd8ef; }
.value-card::after { content: ""; position: absolute; width: 170px; height: 170px; right: -80px; top: -90px; border-radius: 50%; background: radial-gradient(circle, rgba(18,217,245,.12), transparent 68%); }
.card-number { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: #eaf3ff; color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.value-card h3 { margin: 44px 0 12px; font-size: 22px; letter-spacing: -.03em; }
.value-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }

.platform-section { color: var(--white); background: linear-gradient(180deg,var(--navy-950),#06142e 100%); }
.section-heading.centered { max-width: 830px; margin: 0 auto 56px; text-align: center; }
.section-heading p { color: #90a9c2; max-width: 720px; margin: 20px auto 0; font-size: 17px; line-height: 1.75; }
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.feature-card { min-height: 280px; padding: 28px; border: 1px solid rgba(135,180,227,.14); border-radius: 22px; background: linear-gradient(145deg,rgba(255,255,255,.052),rgba(255,255,255,.018)); transition: transform .3s ease, border-color .3s ease, background .3s ease; }
.feature-card:hover { transform: translateY(-5px); border-color: rgba(62,188,244,.34); background: linear-gradient(145deg,rgba(32,111,215,.12),rgba(255,255,255,.025)); }
.feature-card.featured { background: radial-gradient(circle at 85% 10%, rgba(18,217,245,.13), transparent 40%), linear-gradient(145deg,rgba(20,90,210,.16),rgba(255,255,255,.025)); }
.feature-top { display: flex; align-items: center; justify-content: space-between; }
.feature-icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: rgba(18,217,245,.09); border: 1px solid rgba(18,217,245,.16); color: var(--cyan); font-size: 22px; }
.status-chip { font-size: 8px; font-weight: 900; letter-spacing: .18em; color: #5f8db7; }
.feature-card h3 { margin: 54px 0 12px; font-size: 21px; letter-spacing: -.025em; }
.feature-card p { margin: 0; color: #89a4c0; line-height: 1.7; font-size: 14px; }

.framework-section { background: var(--surface); }
.framework-grid { display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: 80px; }
.framework-copy p { color: var(--muted); font-size: 16px; line-height: 1.75; }
.framework-pills { display: flex; flex-wrap: wrap; gap: 9px; margin: 30px 0 16px; }
.framework-pills span { padding: 10px 14px; border: 1px solid #cbdcec; background: #fff; border-radius: 10px; font-size: 12px; font-weight: 850; color: var(--navy-800); }
.framework-copy .fine-print { font-size: 12px; color: #8a9bae; }
.framework-map { position: relative; min-height: 440px; border: 1px solid #d8e5f0; border-radius: 28px; background: radial-gradient(circle at center, #fafdff 0%,#f2f7fc 58%,#ebf2f8 100%); overflow: hidden; box-shadow: inset 0 1px 0 #fff; }
.framework-map::before { content:""; position:absolute; inset:0; background-image: radial-gradient(#b9cddd 1px, transparent 1px); background-size: 24px 24px; opacity:.34; }
.framework-map svg { position:absolute; inset:0; width:100%; height:100%; }
.framework-map path { fill:none; stroke:#9dc3e6; stroke-width:1.4; stroke-dasharray:5 8; }
.map-center { position: absolute; z-index: 3; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 132px; height: 132px; border-radius: 50%; display:grid; place-items:center; align-content:center; color:#fff; background: linear-gradient(145deg,#0b2c64,#0a79d8 62%,#11c8df); box-shadow: 0 22px 55px rgba(16,100,190,.28); }
.map-center span { font-size: 10px; font-weight:900; letter-spacing:.18em; opacity:.72; }
.map-center strong { font-size: 18px; letter-spacing:-.03em; }
.map-node { position:absolute; z-index:3; display:flex; align-items:center; gap:10px; min-width:144px; padding:13px 14px; border:1px solid #d4e2ef; background:rgba(255,255,255,.9); border-radius:14px; box-shadow:0 12px 30px rgba(27,65,100,.08); }
.map-node span { display:grid; place-items:center; width:28px; height:28px; border-radius:9px; background:#eaf4ff; color:var(--blue); font-size:9px; font-weight:900; }
.map-node strong { font-size:12px; }
.node-one { left:6%; top:9%; }
.node-two { right:5%; top:9%; }
.node-three { left:7%; bottom:9%; }
.node-four { right:5%; bottom:9%; }

.status-section { color:#fff; background:linear-gradient(135deg,#07152f 0%,#0b234d 100%); }
.status-wrap { display:grid; grid-template-columns:1fr .88fr; gap:70px; align-items:center; }
.status-copy p { max-width:650px; margin:20px 0 0; color:#94afca; font-size:16px; line-height:1.75; }
.status-panel { border:1px solid rgba(141,182,223,.17); background:rgba(255,255,255,.035); border-radius:22px; padding:12px; }
.status-line { display:flex; align-items:center; justify-content:space-between; gap:20px; min-height:68px; padding:0 14px; border-bottom:1px solid rgba(141,182,223,.1); }
.status-line:last-child { border-bottom:0; }
.status-line > span { display:flex; align-items:center; gap:12px; }
.status-line b { font-size:13px; }
.status-line small { font-size:8px; letter-spacing:.16em; font-weight:900; color:#70a1ce; }
.dot { display:inline-block; width:8px; height:8px; border-radius:50%; }
.dot.done { background:#1ddab2; box-shadow:0 0 18px rgba(29,218,178,.48); }
.dot.active { background:#23b8ff; box-shadow:0 0 18px rgba(35,184,255,.48); }

.cta-section { position:relative; overflow:hidden; padding:96px 0 78px; text-align:center; background:#fff; }
.cta-section::before { content:""; position:absolute; width:760px; height:760px; left:50%; top:50%; transform:translate(-50%,-50%); border-radius:50%; background:radial-gradient(circle,rgba(18,217,245,.11),rgba(22,93,255,.055) 34%,transparent 68%); }
.cta-inner { position:relative; max-width:860px; }
.cta-mark { width: clamp(70px, 9vw, 88px); height: auto; aspect-ratio: 1 / 1; object-fit: contain; margin: 0 auto 22px; filter: drop-shadow(0 14px 25px rgba(24,108,229,.18)); }
.cta-inner h2 span { color:var(--blue); }
.cta-inner > p { max-width:650px; margin:22px auto 30px; color:var(--muted); font-size:17px; line-height:1.7; }
.cta-inner .cta-note { margin:14px auto 0; font-size:11px; color:#96a4b3; }

.site-footer { padding: 30px 0; border-top: 1px solid #e3ebf3; background: #fbfdff; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.footer-logo { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; padding: 12px 16px; border: 1px solid #e3ebf3; border-radius: 18px; background: #fff; box-shadow: 0 10px 30px rgba(7,21,47,.05); }
.footer-inner img { width: 190px; max-width: 100%; height: auto; }
.footer-copy { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 10px 18px; color: #7f8fa1; font-size: 11px; }

.reveal { opacity:0; transform:translateY(18px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:.11s; }
.reveal-delay-2 { transition-delay:.22s; }

@media (max-width: 1040px) {
  .desktop-nav { display:none; }
  .hero-grid { grid-template-columns:1fr; gap:20px; min-height:auto; }
  .hero { padding-top:72px; }
  .hero-copy { text-align:center; }
  .hero-lead { margin-inline:auto; }
  .hero-actions, .hero-tags { justify-content:center; }
  .hero-visual { min-height:410px; }
  .orbital-card { width:420px; max-width:100%; }
  .split-intro, .framework-grid, .status-wrap { grid-template-columns:1fr; gap:45px; }
  .feature-grid { grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 720px) {
  :root { --shell: min(1180px, calc(100% - 28px)); }
  .site-header { position:relative; }
  .header-inner { min-height:68px; }
  .brand img { width:165px; }
  .header-actions .button { display:none; }
  .hero { padding:54px 0 28px; }
  .hero h1 { font-size:clamp(46px,15vw,68px); }
  .hero-lead { font-size:16px; }
  .hero-visual { min-height:330px; }
  .orbital-card { width:330px; }
  .signal-card { min-width:130px; padding:9px 10px; transform:scale(.86); }
  .signal-top { right:-8%; }
  .signal-bottom { left:-9%; }
  .hero-foot { grid-template-columns:1fr; }
  .mini-stat, .mini-stat:nth-child(2), .mini-stat:last-child { padding:14px 0; border-right:0; border-bottom:1px solid rgba(125,169,216,.13); }
  .mini-stat:last-child { border-bottom:0; }
  .section { padding:78px 0; }
  .split-intro { gap:26px; }
  .split-intro h2, .section-heading h2, .framework-copy h2, .status-copy h2, .cta-inner h2 { font-size:clamp(34px,10vw,48px); }
  .value-grid, .feature-grid { grid-template-columns:1fr; }
  .framework-map { min-height:480px; }
  .map-node { min-width:126px; padding:10px; }
  .node-one { left:3%; top:5%; }
  .node-two { right:3%; top:5%; }
  .node-three { left:3%; bottom:5%; }
  .node-four { right:3%; bottom:5%; }
  .status-line { align-items:flex-start; flex-direction:column; justify-content:center; padding-block:14px; }
  .contact-mail { font-size: 24px; }
  .contact-actions .button { width: 100%; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-logo { width: 100%; }
  .footer-copy { flex-direction: column; align-items: center; justify-content: center; }
}

@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; }
}


/* SEO/GEO content additions */
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 200; background: #fff; color: var(--navy-950); padding: 10px 14px; border-radius: 10px; box-shadow: var(--shadow); font-weight: 800; }
.skip-link:focus { top: 12px; }
.lang-switch { display: grid; place-items: center; text-decoration: none; }
.facts-section { background: linear-gradient(180deg,#f7fbff,#fff); }
.facts-wrap { display: grid; grid-template-columns: .82fr 1.18fr; gap: 64px; align-items: start; }
.facts-copy h2, .faq-intro h2 { margin: 16px 0 18px; font-size: clamp(36px,4.2vw,58px); line-height: 1.04; letter-spacing: -.05em; }
.facts-copy p, .faq-intro p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.78; }
.facts-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin: 0; }
.facts-grid div { min-height: 148px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 10px 35px rgba(7,21,47,.045); }
.facts-grid dt { margin-bottom: 10px; color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.facts-grid dd { margin: 0; color: var(--ink); font-size: 14px; line-height: 1.65; font-weight: 700; }
.use-section { background: #fff; }
.use-section .section-heading p { color: var(--muted); }
.use-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.use-grid article { min-height: 240px; padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(180deg,#fff,#f9fcff); }
.use-grid article > span, .workflow-grid li > span { color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: .16em; }
.use-grid h3 { margin: 38px 0 10px; font-size: 20px; letter-spacing: -.03em; }
.use-grid p, .workflow-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.framework-heading p { color: var(--muted); }
.framework-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.framework-card { display: flex; flex-direction: column; min-height: 350px; padding: 30px; border: 1px solid #d7e5f1; border-radius: 24px; background: #fff; box-shadow: 0 16px 40px rgba(25,67,105,.06); }
.framework-code { width: fit-content; padding: 8px 10px; border-radius: 9px; background: #eaf4ff; color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.framework-card h3 { margin: 34px 0 12px; font-size: 22px; letter-spacing: -.03em; }
.framework-card p { margin: 0 0 26px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.framework-card a { margin-top: auto; color: var(--blue); font-size: 13px; font-weight: 850; }
.framework-disclaimer { margin-top: 22px; color: #7c8da0; font-size: 12px; line-height: 1.65; }
.how-section { background: #f8fbfe; }
.how-section .section-heading p { color: var(--muted); }
.workflow-grid { list-style: none; display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 0; padding-left: 0; }
.workflow-grid li { position: relative; min-height: 220px; padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.workflow-grid li:not(:last-child)::after { content: "→"; position: absolute; right: -12px; top: 44px; z-index: 2; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: #eaf4ff; color: var(--blue); font-size: 12px; font-weight: 900; }
.workflow-grid h3 { margin: 40px 0 10px; font-size: 19px; }
.faq-section { background: #fff; }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: start; }
.faq-intro { position: sticky; top: 118px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; list-style: none; padding: 24px 42px 24px 0; color: var(--ink); font-size: 17px; font-weight: 800; letter-spacing: -.015em; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 20px; color: var(--blue); font-size: 24px; font-weight: 500; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { margin: -4px 42px 24px 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.footer-copy a { text-decoration: underline; text-underline-offset: 3px; }
.contact-section { background: linear-gradient(180deg,#ffffff,#f8fbfe); }
.contact-wrap { display: grid; grid-template-columns: .86fr 1.14fr; gap: 34px; align-items: stretch; }
.contact-copy h2 { margin: 16px 0 18px; font-size: clamp(36px,4.2vw,58px); line-height: 1.04; letter-spacing: -.05em; }
.contact-copy p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.78; max-width: 650px; }
.contact-card { padding: 30px; border: 1px solid #d7e5f1; border-radius: 24px; background: linear-gradient(180deg,#fff,#f9fcff); box-shadow: 0 18px 45px rgba(25,67,105,.07); }
.contact-label { display: inline-flex; padding: 8px 10px; border-radius: 999px; background: #eaf4ff; color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.contact-mail { display: inline-block; margin-top: 18px; color: var(--navy-900); font-size: clamp(26px,3vw,38px); font-weight: 900; letter-spacing: -.04em; word-break: break-word; }
.contact-card p { margin: 14px 0 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

@media (max-width: 1040px) {
  .facts-wrap, .faq-layout, .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .use-grid, .framework-cards { grid-template-columns: repeat(2,1fr); }
  .workflow-grid { grid-template-columns: repeat(2,1fr); }
  .workflow-grid li:nth-child(2)::after { display:none; }
  .faq-intro { position: static; }
}
@media (max-width: 720px) {
  .facts-grid, .use-grid, .framework-cards, .workflow-grid { grid-template-columns: 1fr; }
  .workflow-grid li::after { display:none !important; }
  .facts-copy h2, .faq-intro h2 { font-size: clamp(34px,10vw,48px); }
}

/* Progressive enhancement: content remains visible without JavaScript. */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(18px); }
.js .reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* Image aspect-ratio safeguards */
.hero-visual img, .cta-inner img, .brand img, .footer-inner img { object-fit: contain; height: auto; }
.orbital-card > img { max-height: 62%; }

/* Cookie consent (scoped; does not alter existing page/layout styles) */
.cb-consent-banner,
.cb-consent-modal,
.cb-consent-settings-toggle,
.cb-consent-banner *,
.cb-consent-modal * {
  box-sizing: border-box;
}
.cb-consent-banner {
  position: fixed;
  z-index: 1000;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: #07152f;
}
.cb-consent-banner__content {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px 22px;
  border: 1px solid #d7e5f1;
  border-radius: 20px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 22px 70px rgba(7,21,47,.2);
  backdrop-filter: blur(12px);
}
.cb-consent-banner__text { max-width: 660px; }
.cb-consent-banner__text strong { display: block; margin-bottom: 6px; font-size: 16px; letter-spacing: -.015em; }
.cb-consent-banner__text p { margin: 0; color: #5f7083; font-size: 13px; line-height: 1.6; }
.cb-consent-banner__actions,
.cb-consent-modal__actions { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; }
.cb-consent-btn {
  appearance: none;
  border: 0;
  border-radius: 10px;
  padding: 11px 14px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
}
.cb-consent-btn:focus-visible,
.cb-consent-settings-toggle:focus-visible,
.cb-consent-option--toggle input:focus-visible + .cb-consent-switch {
  outline: 3px solid rgba(28,113,255,.28);
  outline-offset: 2px;
}
.cb-consent-btn--primary { background: #0e6fff; color: #fff; }
.cb-consent-btn--secondary { background: #07152f; color: #fff; }
.cb-consent-btn--ghost { border: 1px solid #d7e5f1; background: #fff; color: #07152f; }
.cb-consent-settings-toggle {
  position: fixed;
  z-index: 900;
  left: 14px;
  bottom: 14px;
  appearance: none;
  padding: 8px 10px;
  border: 1px solid #d7e5f1;
  border-radius: 9px;
  background: rgba(255,255,255,.95);
  color: #5f7083;
  box-shadow: 0 8px 28px rgba(7,21,47,.10);
  font: inherit;
  font-size: 10px;
  font-weight: 750;
  cursor: pointer;
}
.cb-consent-modal {
  position: fixed;
  z-index: 1100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(4,14,31,.56);
  backdrop-filter: blur(5px);
}
.cb-consent-modal__dialog {
  width: min(620px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  padding: 28px;
  border: 1px solid #d7e5f1;
  border-radius: 22px;
  background: #fff;
  color: #07152f;
  box-shadow: 0 28px 90px rgba(1,12,30,.35);
}
.cb-consent-modal__dialog h2 { margin: 0 0 10px; font-size: 26px; letter-spacing: -.035em; }
.cb-consent-modal__intro { margin: 0 0 22px; color: #5f7083; font-size: 14px; line-height: 1.65; }
.cb-consent-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid #e3ebf3;
}
.cb-consent-option strong { display: block; margin-bottom: 4px; font-size: 14px; }
.cb-consent-option p { margin: 0; color: #718196; font-size: 12px; line-height: 1.55; }
.cb-consent-always { flex: 0 0 auto; color: #0e6fff; font-size: 11px; font-weight: 850; }
.cb-consent-option--toggle { position: relative; cursor: pointer; }
.cb-consent-option--toggle input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.cb-consent-switch {
  position: relative;
  flex: 0 0 auto;
  width: 46px;
  height: 26px;
  border-radius: 999px;
  background: #c9d5e1;
  transition: background .2s ease;
}
.cb-consent-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(7,21,47,.2);
  transition: transform .2s ease;
}
.cb-consent-option--toggle input:checked + .cb-consent-switch { background: #0e6fff; }
.cb-consent-option--toggle input:checked + .cb-consent-switch::after { transform: translateX(20px); }
.cb-consent-modal__actions { justify-content: flex-end; margin-top: 22px; padding-top: 18px; border-top: 1px solid #e3ebf3; }
@media (max-width: 760px) {
  .cb-consent-banner { left: 10px; right: 10px; bottom: 10px; }
  .cb-consent-banner__content { align-items: stretch; flex-direction: column; gap: 16px; padding: 18px; }
  .cb-consent-banner__actions { display: grid; grid-template-columns: 1fr; }
  .cb-consent-btn { width: 100%; }
  .cb-consent-settings-toggle { left: 10px; bottom: 10px; }
  .cb-consent-modal__dialog { padding: 22px 18px; }
  .cb-consent-option { align-items: flex-start; }
  .cb-consent-modal__actions { display: grid; grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .cb-consent-switch,
  .cb-consent-switch::after { transition: none; }
}

