/* ── TOKENS ── */
:root {
  --bg: #04040A;
  --bg-s: #07070F;
  --bg-secondary: rgba(7,7,15,0.95);
  --card: rgba(91,155,213,0.04);
  --card-h: rgba(91,155,213,0.08);
  --accent: #5B9BD5;
  --accent-b: #7DB5E8;
  --accent-light: #A8D5FA;
  --accent-g: rgba(91,155,213,0.22);
  --accent-d: rgba(91,155,213,0.5);
  --green: #22C55E;
  --cyan: #06B6D4;
  --orange: #F97316;
  --text: #EEF2FF;
  --text-s: rgba(238,242,255,0.6);
  --text-m: rgba(238,242,255,0.35);
  --border: rgba(91,155,213,0.12);
  --border-b: rgba(91,155,213,0.28);
  --mono: 'JetBrains Mono', monospace;
  --sans: 'Space Grotesk', system-ui, sans-serif;
  --body: 'DM Sans', system-ui, sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--body); line-height: 1.65; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── CANVAS ── */
#bg-canvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; }

/* ── WRAP ── */
.site-wrap { position: relative; z-index: 1; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ── SCROLL PROGRESS ── */
#sp {
  position: fixed; left: 18px; top: 50%; transform: translateY(-50%);
  z-index: 100; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
#sp-line { width: 1px; height: 72px; background: var(--border); position: relative; overflow: hidden; }
#sp-fill { position: absolute; top: 0; left: 0; width: 100%; height: 0; background: var(--accent); transition: height .1s; }
#sp-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 60px; display: flex; align-items: center; padding: 0 28px;
  border-bottom: 1px solid var(--border);
  background: rgba(4,4,10,0.88); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  transition: border-color .3s;
}
.nav-inner { max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; }
.nav-logo { display: flex; align-items: center; gap: 9px; font-family: var(--sans); font-weight: 700; font-size: 16px; letter-spacing: -.01em; }
.nav-logo img { width: 26px; height: 26px; border-radius: 5px; }
.logo-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(91,155,213,0.08);
  border: 1px solid var(--border);
  overflow: hidden;
  flex-shrink: 0;
}
.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nav-links { display: flex; align-items: center; justify-content: center; gap: 0; }
.nav-links a { position: relative; padding: 6px 22px; font-size: 12px; font-family: var(--mono); color: var(--text-s); border-radius: 6px; transition: color .2s, background .2s; }
.nav-links a:not(:last-child)::after {
  content: '•';
  position: absolute;
  top: 50%;
  right: -4px;
  transform: translateY(-50%);
  color: var(--accent-d);
  pointer-events: none;
}
.nav-links a:hover { color: var(--text); background: var(--card); }
.nav-acts,
.nav-actions { display: flex; align-items: center; justify-content: flex-end; gap: 8px; }
.nav-mob { display: none; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 9px 18px; border-radius: 6px; font-family: var(--sans); font-weight: 600; font-size: 13px; letter-spacing: -.01em; transition: all .2s; white-space: nowrap; cursor: pointer; }
.btn-p,
.btn-primary { background: var(--accent); color: #fff; border: 1px solid var(--accent); }
.btn-p:hover,
.btn-primary:hover { background: var(--accent-b); border-color: var(--accent-b); box-shadow: 0 0 24px var(--accent-g); }
.btn-s,
.btn-secondary { background: transparent; color: var(--text); border: 1px solid var(--border-b); }
.btn-s:hover,
.btn-secondary:hover { background: var(--card); border-color: var(--accent); }
.btn-lg { padding: 13px 26px; font-size: 15px; }
.nav-tog,
.mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-tog span,
.mobile-toggle span { display: block; width: 20px; height: 1.5px; background: var(--text); transition: all .2s; }

/* ── CHAPTER LABEL ── */
.ch-label {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px;
  font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: #8fc5f2;
}
.ch-label::before { content: ''; display: block; width: 18px; height: 1px; background: #8fc5f2; }
.ch-num { color: #a8d5fa; }

/* ── SECTION ── */
.section { padding: 120px 0; position: relative; }
.section-alt { background: rgba(7,7,15,0.95); }
.section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg,transparent,var(--border),transparent); }
.s-title { font-family: var(--sans); font-size: clamp(26px,4vw,46px); font-weight: 700; line-height: 1.12; letter-spacing: -.03em; color: var(--text); margin-bottom: 14px; position: relative; isolation: isolate; }
.s-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: min(540px, 100%);
  height: 120%;
  transform: translate(0, -52%);
  background: radial-gradient(ellipse, rgba(91,155,213,.18) 0%, rgba(91,155,213,.08) 34%, rgba(91,155,213,0) 72%);
  filter: blur(28px);
  z-index: -1;
  pointer-events: none;
}
.s-sub { font-size: 17px; color: var(--text-s); line-height: 1.65; max-width: 580px; }
.s-head { margin-bottom: 60px; }
.s-center { text-align: center; }
.s-center .s-title::before { left: 50%; width: min(540px, 92%); transform: translate(-50%, -52%); }
.s-center .s-sub { margin: 0 auto; text-align: center; }
.s-center .ch-label { justify-content: center; }

/* ── HERO ── */
.hero {
  min-height: 100dvh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 90px 28px 80px; position: relative;
}
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 160px; background: linear-gradient(to bottom,transparent,var(--bg)); pointer-events: none; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 5px 14px;
  border: 1px solid var(--border-b); border-radius: 99px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-d);
  margin-bottom: 28px; animation: fadeUp .7s ease both;
}
.blink { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); animation: blink 2s infinite; }
.hero-title {
  font-family: var(--sans); font-size: clamp(34px,5.5vw,76px);
  font-weight: 700; line-height: 1.06; letter-spacing: -.04em;
  color: var(--text); max-width: 860px;
  position: relative;
  isolation: isolate;
  animation: fadeUp .7s .08s ease both;
}
.hero-title::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(760px, 96%);
  height: 132%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(91,155,213,.20) 0%, rgba(91,155,213,.10) 32%, rgba(91,155,213,0) 74%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}
.hero-title em { font-style: normal; background: linear-gradient(135deg,var(--accent),var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: clamp(15px,1.8vw,18px); color: var(--text-s); max-width: 540px; margin: 18px auto 36px; line-height: 1.65; animation: fadeUp .7s .16s ease both; }
.hero-ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; animation: fadeUp .7s .24s ease both; }
.hero-stats { display: flex; align-items: center; gap: 36px; margin-top: 72px; padding-top: 36px; border-top: 1px solid var(--border); animation: fadeUp .7s .4s ease both; flex-wrap: wrap; justify-content: center; }
.h-stat-v { font-family: var(--mono); font-size: 26px; font-weight: 500; color: var(--accent-b); line-height: 1; margin-bottom: 5px; }
.h-stat-l { font-family: var(--mono); font-size: 10px; color: var(--text-m); letter-spacing: .08em; }
.h-stat-div { width: 1px; height: 36px; background: var(--border); }
.scroll-cue { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; font-family: var(--mono); font-size: 9px; letter-spacing: .14em; color: var(--text-m); text-transform: uppercase; animation: fadeUp .7s .7s ease both; }
.scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom,var(--accent-d),transparent); animation: scrollPulse 2s ease-in-out infinite; }

/* ── TICKER ── */
.ticker-wrap { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 12px 0; background: rgba(4,4,10,0.95); }
.ticker-inner { display: flex; animation: ticker 28s linear infinite; width: max-content; }
.t-item { display: flex; align-items: center; gap: 9px; padding: 0 28px; font-family: var(--mono); font-size: 11px; color: var(--text-m); white-space: nowrap; }
.t-item span { color: var(--accent-d); }

/* ── FEATURE GRID ── */
.f-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.f-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 28px;
  position: relative; overflow: hidden; transition: border-color .3s, background .3s;
}
.f-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg,transparent,var(--accent-d),transparent); opacity: 0; transition: opacity .3s; }
.f-card:hover { border-color: var(--border-b); background: var(--card-h); }
.f-card:hover::before { opacity: 1; }
.f-card-n { font-family: var(--mono); font-size: 10px; color: var(--accent-d); letter-spacing: .1em; margin-bottom: 14px; }
.f-icon { width: 36px; height: 36px; margin-bottom: 14px; display: flex; align-items: center; justify-content: center; }
.f-icon svg { width: 24px; height: 24px; }
.f-card-t { font-family: var(--sans); font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 8px; letter-spacing: -.02em; }
.f-card-b { font-size: 14px; color: var(--text-s); line-height: 1.6; }

/* ── SPLIT ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

/* ── FEAT LIST ── */
.feat-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.feat-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-s); line-height: 1.5; }
.feat-list li::before { content: ''; display: block; width: 15px; height: 15px; flex-shrink: 0; margin-top: 1px; border-radius: 50%; background: rgba(34,197,94,.12) url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 6L5 8.5L9.5 3.5' stroke='%2322C55E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/11px no-repeat; border: 1px solid rgba(34,197,94,.35); }

/* ── WORKFLOW BOX ── */
.wf-box { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.wf-label { font-family: var(--mono); font-size: 10px; color: var(--text-m); letter-spacing: .08em; margin-bottom: 4px; }
.wf-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 10px; padding: 12px 14px; background: rgba(4,4,10,.7); border: 1px solid var(--border); border-radius: 8px; transition: border-color .3s; }
.wf-row:hover { border-color: var(--border-b); }
.wf-trig, .wf-act { font-size: 12px; color: var(--text-s); line-height: 1.35; }
.wf-trig strong, .wf-act strong { display: block; font-family: var(--mono); font-size: 10px; color: var(--text); margin-bottom: 2px; letter-spacing: .04em; }
.wf-act { text-align: right; }
.wf-act strong { color: var(--green); }
.wf-arr { font-family: var(--mono); color: var(--accent-d); font-size: 13px; text-align: center; }

/* ── CHANNEL GRID ── */
.ch-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.ch-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 24px; display: flex; align-items: flex-start; gap: 16px; transition: border-color .3s, background .3s; }
.ch-card:hover { border-color: var(--border-b); background: var(--card-h); }
.ch-ico { width: 40px; height: 40px; border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ch-ico svg { width: 20px; height: 20px; }
.ch-name { font-family: var(--sans); font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.ch-desc { font-size: 13px; color: var(--text-s); line-height: 1.5; }

/* ── STEPS ── */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; position: relative; }
.step-card { position: relative; z-index: 1; text-align: center; }
.step-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(50% + 27px);
  width: calc(100% - 34px);
  height: 1px;
  background: linear-gradient(90deg,var(--accent-d),var(--cyan),var(--accent-d));
  z-index: 0;
  pointer-events: none;
}
.step-n { width: 54px; height: 54px; border-radius: 50%; background: var(--bg); border: 1px solid var(--border-b); display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 15px; font-weight: 500; color: var(--accent); margin: 0 auto 18px; position: relative; z-index: 2; box-shadow: 0 0 0 14px var(--bg); }
.step-t { font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 7px; letter-spacing: -.01em; }
.step-b { font-size: 13px; color: var(--text-s); line-height: 1.55; }

/* ── USE CASE GRID ── */
.uc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.uc-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 26px 26px 44px; display: block; transition: all .3s; position: relative; overflow: hidden; }
.uc-card::after { content: '→'; position: absolute; bottom: 20px; right: 22px; font-size: 15px; color: var(--accent-d); transition: transform .2s, color .2s; }
.uc-card:hover { border-color: var(--border-b); background: var(--card-h); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,.35); }
.uc-card:hover::after { transform: translate(3px,-2px); color: var(--accent); }
.uc-tag { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; color: var(--accent-d); text-transform: uppercase; margin-bottom: 10px; }
.uc-t { font-family: var(--sans); font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 7px; letter-spacing: -.02em; }
.uc-b { font-size: 13px; color: var(--text-s); line-height: 1.55; }

/* ── CLIENT LOGOS ── */
.logo-marquee { overflow: hidden; margin-bottom: 48px; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.logo-grid { display: flex; width: max-content; gap: 64px; animation: logoTicker 34s linear infinite reverse; align-items: center; }
.logo-track { display: flex; gap: 64px; align-items: center; }
.logo-card { flex: 0 0 auto; background: transparent; border: 0; border-radius: 0; height: auto; display: flex; align-items: center; justify-content: center; padding: 0; transition: none; }
.logo-card:hover { transform: none; }
.logo-card img { display: block; max-width: 100%; max-height: 42px; width: auto; height: auto; object-fit: contain; filter: none; opacity: .95; }
.logo-img--dlocalgo { max-height: 50px; }

/* ── IMPACT ROW ── */
.impact-row { display: flex; align-items: center; justify-content: center; max-width: 900px; margin: 0 auto; background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 36px; }
.imp-item { flex: 1; text-align: center; padding: 0 16px; }
.imp-v { font-family: var(--mono); font-size: 32px; font-weight: 500; color: var(--accent-b); line-height: 1; margin-bottom: 7px; }
.imp-l { font-family: var(--mono); font-size: 10px; color: var(--text-m); letter-spacing: .06em; }
.imp-div { width: 1px; height: 44px; background: var(--border); flex-shrink: 0; }

/* ── INT GRID ── */
.int-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 12px; }
.int-card { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 18px 10px; display: flex; flex-direction: column; align-items: center; gap: 8px; transition: all .2s; }
.int-card:hover { border-color: var(--border-b); background: var(--card-h); transform: translateY(-2px); }
.int-n { font-family: var(--mono); font-size: 10px; color: var(--text-s); }

/* ── FAQ ── */
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--sans); font-size: 15px; font-weight: 500; color: var(--text); text-align: left; cursor: pointer; transition: color .2s; }
.faq-q:hover { color: var(--accent-b); }
.faq-tog { width: 22px; height: 22px; border: 1px solid var(--border-b); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 14px; color: var(--accent-d); flex-shrink: 0; transition: all .25s; }
.faq-item.open .faq-tog { background: var(--accent); border-color: var(--accent); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 0 18px; font-size: 14px; color: var(--text-s); line-height: 1.65; }
.faq-item.open .faq-a { max-height: 180px; }

/* ── CTA ── */
.cta-sec { padding: 130px 0; text-align: center; position: relative; }
.cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 560px; height: 280px; background: radial-gradient(ellipse,var(--accent-g) 0%,transparent 70%); pointer-events: none; }
.cta-sec .s-sub { margin: 0 auto 36px; text-align: center; }

/* ── FOOTER ── */
.footer { border-top: 1px solid var(--border); padding: 56px 0 36px; }
.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.ft-brand { display: flex; align-items: center; justify-content: center; padding-top: 20px; }
.ft-col h4 { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-m); margin-bottom: 14px; }
.ft-col a { display: block; font-size: 13px; color: var(--text-s); margin-bottom: 9px; transition: color .2s; }
.ft-col a:hover { color: var(--accent-b); }
.ft-bot { padding-top: 22px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; font-family: var(--mono); font-size: 10px; color: var(--text-m); letter-spacing: .04em; }

/* ── KEYFRAMES ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
@keyframes scrollPulse { 0%,100% { opacity: .35; transform: scaleY(1); } 50% { opacity: 1; } }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes logoTicker { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
@keyframes scanPulse { 0%,100% { opacity: 0; } 50% { opacity: 1; } }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .f-grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .step-card::after { display: none; }
  .uc-grid { grid-template-columns: repeat(2,1fr); }
  .int-grid { grid-template-columns: repeat(3,1fr); }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .nav-inner { grid-template-columns: auto 1fr auto; }
}
@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .nav { padding: 0 16px; }
  .nav-inner { display: flex; }
  .nav-links, .nav-acts { display: none; }
  .nav-actions { display: none; }
  .nav-tog, .mobile-toggle { display: flex; }
  .nav-mob { display: none; flex-direction: column; position: fixed; top: 60px; left: 0; right: 0; background: rgba(4,4,10,.97); border-bottom: 1px solid var(--border); padding: 16px; gap: 6px; z-index: 199; backdrop-filter: blur(20px); }
  .nav-mob.open { display: flex; }
  .nav-mob a { padding: 10px 12px; font-size: 14px; color: var(--text-s); border-radius: 6px; font-family: var(--mono); }
  .nav-mob a:hover { color: var(--text); background: var(--card); }
  .nav-mob .btn { width: 100%; justify-content: center; margin-top: 4px; }
  .f-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .ch-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .uc-grid { grid-template-columns: 1fr; }
  .int-grid { grid-template-columns: repeat(2,1fr); }
  .impact-row { flex-direction: column; gap: 24px; padding: 28px; }
  .imp-div { width: 40px; height: 1px; }
  .ft-grid { grid-template-columns: 1fr; gap: 28px; }
  .ft-bot { flex-direction: column; gap: 6px; text-align: center; }
  #sp { display: none; }
  .logo-marquee { mask-image: none; -webkit-mask-image: none; }
  .logo-grid { animation-duration: 26s; gap: 40px; }
  .logo-track { gap: 40px; }
  .logo-card img { max-height: 38px; }
  .logo-img--dlocalgo { max-height: 44px; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 18px; }
  .h-stat-div { height: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .logo-grid { animation: none !important; }
}

/* ── SATELLITE COMPATIBILITY ── */
.navbar.scrolled {
  border-bottom-color: rgba(91,155,213,0.22);
  background: rgba(4,4,10,0.94);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 160px 0 110px;
  min-height: 72vh;
  display: flex;
  align-items: center;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-bg .glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.14;
}
.hero-bg .glow-1 {
  width: 720px;
  height: 720px;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
}
.hero-bg .glow-2 {
  width: 520px;
  height: 520px;
  bottom: -220px;
  right: -160px;
  opacity: 0.08;
  background: var(--cyan);
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(91,155,213,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,155,213,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, #000 24%, transparent 76%);
  -webkit-mask-image: radial-gradient(circle at center, #000 24%, transparent 76%);
  opacity: 0.35;
}
.breadcrumbs {
  margin-bottom: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--text-m);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  margin-bottom: 24px;
  border: 1px solid var(--border-b);
  border-radius: 99px;
  background: rgba(91,155,213,0.08);
  color: var(--accent-b);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-b);
  box-shadow: 0 0 12px rgba(125,181,232,.65);
}
.hero-title--inner {
  max-width: 900px;
  font-size: clamp(34px, 5vw, 64px);
  margin-bottom: 18px;
}
.hero-subtitle {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-s);
  max-width: 720px;
  line-height: 1.65;
  margin-top: 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.btn-large {
  padding: 13px 26px;
  font-size: 15px;
}

.section-header {
  margin-bottom: 52px;
  max-width: 760px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8fc5f2;
}
.section-label::before {
  content: '';
  width: 18px;
  height: 1px;
  background: #8fc5f2;
}
.section-title {
  font-family: var(--sans);
  font-size: clamp(26px,4vw,46px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 14px;
  position: relative;
  isolation: isolate;
}
.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: min(540px, 100%);
  height: 120%;
  transform: translateY(-52%);
  background: radial-gradient(ellipse, rgba(91,155,213,.18) 0%, rgba(91,155,213,.08) 34%, rgba(91,155,213,0) 72%);
  filter: blur(28px);
  z-index: -1;
  pointer-events: none;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-s);
  line-height: 1.65;
  max-width: 620px;
}
.section-header.center,
.section-header[style*="text-align:center"] {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-header.center .section-label,
.section-header[style*="text-align:center"] .section-label {
  justify-content: center;
}
.section-header.center .section-title::before,
.section-header[style*="text-align:center"] .section-title::before {
  left: 50%;
  width: min(540px, 92%);
  transform: translate(-50%, -52%);
}
.section-header.center .section-subtitle,
.section-header[style*="text-align:center"] .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, background .3s, transform .3s, box-shadow .3s;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,transparent,var(--accent-d),transparent);
  opacity: 0;
  transition: opacity .3s;
}
.feature-card:hover {
  border-color: var(--border-b);
  background: var(--card-h);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-card,
.split-visual,
.usecase-card,
.steps-grid .step-card {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.feature-card .feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 20px;
}
.feature-card h3 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-s);
  line-height: 1.6;
}

.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split-content .feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-s);
  line-height: 1.55;
}
.feature-list-item .check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.35);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}
.split-visual {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.split-visual::before,
.usecase-card::before,
.steps-grid .step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-d), transparent);
  opacity: .85;
}
.usecase-card::before,
.steps-grid .step-card::before {
  opacity: 0;
  transition: opacity .3s;
}

.steps-grid,
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
}
.steps-grid .step-card,
.usecase-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px;
  position: relative;
  overflow: hidden;
  transition: all .3s;
}
.steps-grid .step-card:hover,
.usecase-card:hover {
  border-color: var(--border-b);
  background: var(--card-h);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.steps-grid .step-card:hover::before,
.usecase-card:hover::before {
  opacity: 1;
}
.step-number,
.usecase-card .uc-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: rgba(91,155,213,0.12);
  color: var(--accent-b);
  font-family: var(--mono);
}
.steps-grid h3,
.usecase-card h3 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.steps-grid p,
.usecase-card p {
  font-size: 14px;
  color: var(--text-s);
  line-height: 1.6;
}

.workflow-examples {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.workflow-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(4,4,10,.72);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color .3s, transform .3s;
}
.workflow-item:hover {
  border-color: var(--border-b);
  transform: translateY(-1px);
}
.workflow-item .wf-trigger {
  font-size: 13px;
  color: var(--text-s);
  line-height: 1.45;
}
.workflow-item .wf-trigger strong {
  display: block;
  margin-bottom: 3px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .06em;
  color: var(--text);
}
.workflow-item .wf-arrow {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent-d);
}
.workflow-item .wf-action {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--green);
}

.faq-question {
  width: 100%;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: color .2s;
}
.faq-question:hover {
  color: var(--accent-b);
}
.faq-question .faq-toggle {
  width: 22px;
  height: 22px;
  border: 1px solid var(--border-b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--accent-d);
  flex-shrink: 0;
  transition: all .25s;
}
.faq-item.active .faq-toggle {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-answer-inner {
  padding: 0 0 18px;
  font-size: 14px;
  color: var(--text-s);
  line-height: 1.65;
}

.section[id="faq"] .section-header {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}
.section[id="faq"] .section-label {
  justify-content: center;
}
.section[id="faq"] .section-title::before {
  left: 50%;
  width: min(540px, 92%);
  transform: translate(-50%, -52%);
}
.section[id="faq"] .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}
.section[id="faq"] .faq-list {
  max-width: 740px;
  margin: 0 auto;
}
.section[id="faq"] .faq-item {
  border-bottom: 1px solid var(--border);
}

.cta-section {
  padding: 130px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-box {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 26px 0 0;
  overflow: visible;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.cta-box .section-title::before {
  left: 50%;
  width: min(620px, 96%);
  transform: translate(-50%, -52%);
}
.cta-box .section-subtitle {
  margin: 0 auto;
  text-align: center;
}
.cta-box .hero-actions {
  justify-content: center;
}
.cta-box .section-title,
.cta-box .section-subtitle {
  text-align: center;
}
.cta-box.reveal {
  transform: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

@media (max-width: 1024px) {
  .features-grid,
  .steps-grid,
  .usecases-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .split-feature {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .page-hero {
    padding: 130px 0 80px;
    min-height: auto;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .features-grid,
  .steps-grid,
  .usecases-grid {
    grid-template-columns: 1fr;
  }
  .workflow-item {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}
