/* ======================================================
   Magppliv R&D — Premium Company Site
   ====================================================== */
:root {
  --bg:          #05080e;
  --bg-alt:      #080f1a;
  --surface:     rgba(255,255,255,0.035);
  --surface-2:   rgba(255,255,255,0.065);
  --border:      rgba(255,255,255,0.07);
  --border-hi:   rgba(255,255,255,0.12);
  --text:        #edf1f9;
  --muted:       #6b7f9a;
  --accent:      #00d4ff;
  --accent-2:    #8b5cf6;
  --accent-3:    #00f5b0;
  --glow-blue:   rgba(0,212,255,0.28);
  --glow-purple: rgba(139,92,246,0.28);
  --glow-green:  rgba(0,245,176,0.22);
  --radius:      18px;
  --radius-sm:   11px;
  --font:        "Inter", system-ui, sans-serif;
  --font-head:   "Bricolage Grotesque", system-ui, sans-serif;
  --font-brand:  "Space Grotesk", system-ui, sans-serif;
  --header-h:    72px;
  --trans:       0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body { margin: 0; font-family: var(--font); font-size: 1rem; line-height: 1.65; color: var(--text); background: var(--bg); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
h1,h2,h3,h4 { line-height: 1.15; letter-spacing: -0.02em; margin: 0; }
p { margin: 0; }

/* Premium selection */
::selection { background: rgba(0,212,255,0.2); color: var(--text); }

/* Custom scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(0,212,255,0.35); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,212,255,0.6); }

/* ── Noise overlay ── */
.noise {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 180px;
  opacity: 0.28;
}

/* ── Grid overlay ── */
.grid-overlay {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 64px 64px;
}

/* Top-of-page ambient radial */
body::before {
  content: '';
  position: fixed; top: -300px; left: 50%; transform: translateX(-50%);
  width: 1100px; height: 700px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,212,255,0.055) 0%, transparent 68%);
  pointer-events: none; z-index: 0;
}

/* ── Skip link ── */
.skip-link { position: absolute; left: -9999px; z-index: 999; padding: .5rem 1rem; background: var(--bg); border-radius: var(--radius-sm); }
.skip-link:focus { left: 1rem; top: 1rem; }

/* ── Container ── */
.container { width: min(1160px, 100% - 4rem); margin-inline: auto; position: relative; z-index: 1; }
@media (max-width: 560px) { .container { width: min(1160px, 100% - 2.5rem); } }

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(5,8,14,0.7);
  backdrop-filter: blur(26px); -webkit-backdrop-filter: blur(26px);
  border-bottom: 1px solid rgba(255,255,255,0.055);
}
/* Gradient line under header */
.site-header::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(0,212,255,0.35) 35%, rgba(139,92,246,0.35) 65%, transparent 95%);
}
.site-header.scrolled { box-shadow: 0 4px 50px rgba(0,0,0,0.6), 0 1px 0 rgba(0,212,255,0.1); }
.site-nav a.nav-active { color: var(--accent) !important; }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h); gap: 1rem;
}

/* Logo */
.logo {
  display: inline-flex; align-items: center; gap: 0.7rem;
  text-decoration: none; padding: 4px 10px 4px 4px;
  border-radius: 12px;
  transition: background var(--trans);
}
.logo:hover { text-decoration: none; background: rgba(255,255,255,0.03); }
.logo:hover .logo-text { color: #fff; }

.logo-img {
  display: block; flex-shrink: 0;
  width: 44px; height: 44px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 14px rgba(0,212,255,0.45))
    drop-shadow(0 2px 6px rgba(0,0,0,0.5));
  transition: filter var(--trans), transform var(--trans);
}
.logo:hover .logo-img {
  filter:
    drop-shadow(0 0 22px rgba(0,212,255,0.7))
    drop-shadow(0 4px 10px rgba(0,0,0,0.4));
  transform: scale(1.04) rotate(-2deg);
}

.logo-lockup {
  display: inline-flex; flex-direction: column;
  justify-content: center; gap: 1px; line-height: 1;
}
.logo-text {
  font-family: var(--font-head);
  font-size: 1.3rem; font-weight: 700;
  font-variation-settings: "opsz" 24, "wght" 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
  transition: color var(--trans);
}
.logo-sub {
  font-family: var(--font-brand);
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.logo-sub i {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin: 0 1px;
}

@media (max-width: 560px) {
  .logo-sub { display: none; }
  .logo-img { width: 40px; height: 40px; }
}

/* Nav */
.site-nav .nav-list { display: flex; align-items: center; gap: 0.25rem; list-style: none; margin: 0; padding: 0; }
.site-nav a { display: block; padding: 0.45rem 0.85rem; border-radius: 8px; font-size: 0.9rem; font-weight: 500; color: var(--muted); transition: color var(--trans), background var(--trans); }
.site-nav a:hover { color: var(--text); background: var(--surface-2); text-decoration: none; }
.site-nav .nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-2)) !important;
  color: #fff !important; padding: 0.5rem 1.2rem; font-weight: 700;
  box-shadow: 0 0 22px rgba(0,212,255,0.22);
  position: relative; overflow: hidden;
}
.site-nav .nav-cta::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.16) 50%, transparent 60%);
  transform: translateX(-100%); transition: transform 0.55s ease;
}
.site-nav .nav-cta:hover::after { transform: translateX(150%); }
.site-nav .nav-cta:hover { opacity: 0.9; box-shadow: 0 0 36px rgba(0,212,255,0.38); }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 44px; height: 44px; padding: 0;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--surface); cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 1.5px; background: var(--text); border-radius: 1px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: var(--header-h);
    background: rgba(5,8,14,0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border); padding: 1rem 1.25rem 1.5rem;
  }
  .site-nav.is-open { display: block; }
  .site-nav .nav-list { flex-direction: column; align-items: stretch; }
  .site-nav a { font-size: 1rem; padding: 0.75rem 0.5rem; }
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: clamp(2rem,4vw,3rem) 0 clamp(2rem,4vw,3rem);
  overflow: hidden;
}

/* Orbs */
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); }
.orb-1 { width: 720px; height: 720px; top: -260px; right: -160px; background: radial-gradient(circle, rgba(0,212,255,0.19) 0%, transparent 60%); animation: driftA 14s ease-in-out infinite alternate; }
.orb-2 { width: 620px; height: 620px; bottom: -160px; left: -210px; background: radial-gradient(circle, rgba(139,92,246,0.22) 0%, transparent 60%); animation: driftB 18s ease-in-out infinite alternate; }
.orb-3 { width: 420px; height: 420px; top: 40%; left: 42%; background: radial-gradient(circle, rgba(0,245,176,0.12) 0%, transparent 60%); animation: driftA 22s ease-in-out infinite alternate-reverse; }
@keyframes driftA { from { transform: translate(0,0) scale(1); } to { transform: translate(40px,-32px) scale(1.12); } }
@keyframes driftB { from { transform: translate(0,0) scale(1); } to { transform: translate(-32px,42px) scale(1.07); } }

.hero-inner { position: relative; max-width: 850px; }

/* Hero badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.45rem 1.05rem; border-radius: 999px;
  border: 1px solid rgba(0,212,255,0.35); background: rgba(0,212,255,0.08);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.75rem;
  box-shadow: 0 0 24px rgba(0,212,255,0.1), inset 0 1px 0 rgba(255,255,255,0.07);
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 10px var(--accent), 0 0 22px rgba(0,212,255,0.4);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.45; transform: scale(0.75); } }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 800;
  font-variation-settings: "opsz" 72, "wght" 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 1.35rem;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3), var(--accent));
  background-size: 250% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: shimmerGrad 7s ease-in-out infinite;
}
@keyframes shimmerGrad { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.hero-sub { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--muted); margin-bottom: 2.5rem; line-height: 1.7; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 3.75rem; }

/* Stats */
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 1px;
  background: var(--border); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,0.4);
}
.stat {
  flex: 1; min-width: 120px; padding: 1.3rem 1.65rem;
  background: var(--surface);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: flex; flex-direction: column; gap: 0.25rem;
  transition: background var(--trans);
  position: relative;
}
.stat::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.09), transparent);
}
.stat:hover { background: var(--surface-2); }
.stat-num {
  font-family: var(--font-head); font-size: 2.15rem; font-weight: 800;
  font-variation-settings: "opsz" 32, "wght" 800;
  letter-spacing: -0.04em; color: var(--accent);
  text-shadow: 0 0 35px rgba(0,212,255,0.45);
}
.stat span { font-size: 0.78rem; color: var(--muted); font-weight: 500; }

/* Scroll cue */
.scroll-cue { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .35rem; }
.scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, var(--accent), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0; transform: scaleY(0); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.8rem 1.65rem; border-radius: 999px;
  font-family: var(--font); font-weight: 600; font-size: 0.95rem;
  border: none; cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: all var(--trans);
  position: relative; overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; box-shadow: 0 0 32px var(--glow-blue), 0 4px 20px rgba(0,0,0,0.35);
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,0.2) 50%, transparent 62%);
  transform: translateX(-120%); transition: transform 0.6s ease;
}
.btn-primary:hover { box-shadow: 0 0 52px var(--glow-blue), 0 6px 26px rgba(0,0,0,0.35); transform: translateY(-2px); text-decoration: none; color: #fff; }
.btn-primary:hover::after { transform: translateX(150%); }
.btn-ghost {
  background: var(--surface); color: var(--text);
  border: 1px solid var(--border-hi);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: rgba(0,212,255,0.45); color: var(--accent); text-decoration: none; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,0.28); }
.btn-full { width: 100%; }

/* ================================================================
   SECTIONS — shared
   ================================================================ */
.section { padding: clamp(4.5rem,9vw,7rem) 0; position: relative; }
.section-dark { background: var(--bg-alt); }
.section-dark::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
}

.label-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.42rem 1rem; border-radius: 999px;
  background: rgba(0,212,255,0.09); border: 1px solid rgba(0,212,255,0.28);
  font-size: 0.73rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.1rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
}
.label-pill::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent); box-shadow: 0 0 8px var(--accent);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.8vw, 2.85rem);
  font-weight: 800; font-variation-settings: "opsz" 48, "wght" 800;
  letter-spacing: -0.035em; color: var(--text); margin-bottom: 1rem;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-sub { font-size: 1.05rem; color: var(--muted); max-width: 52ch; line-height: 1.78; }
.section-head { margin-bottom: 3.5rem; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin-inline: auto; }

.body-lg { font-size: 1.15rem; color: var(--text); margin-bottom: 1rem; line-height: 1.78; }
.body-text { font-size: 0.98rem; color: var(--muted); line-height: 1.82; margin-bottom: 0.9rem; }

/* ── Shared card inner top highlight ── */
.gcard, .advantage-card, .partner-card, .domain-item, .team-card {
  position: relative; overflow: hidden;
}
.timeline-card { position: relative; }
.gcard::before, .advantage-card::before, .partner-card::before,
.domain-item::before, .timeline-card::before, .team-card::before {
  content: ''; position: absolute; top: 0; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
  pointer-events: none;
}

/* ================================================================
   ABOUT
   ================================================================ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: start;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

.about-panels { display: flex; flex-direction: column; gap: 1.25rem; }

.gcard {
  padding: 1.85rem; border-radius: var(--radius);
  background: var(--surface);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
}
.gcard:hover { border-color: rgba(0,212,255,0.3); transform: translateY(-3px); box-shadow: 0 22px 55px rgba(0,0,0,0.32); }
.gcard-icon { font-size: 1.85rem; margin-bottom: 0.9rem; }
.gcard h3 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; letter-spacing: -0.025em; color: var(--text); margin-bottom: 0.65rem; }
.gcard p, .gcard ul { font-size: 0.95rem; color: var(--muted); }
.check-list { margin: 0; padding-left: 1.2rem; }
.check-list li { margin-bottom: 0.45rem; }

/* ================================================================
   ADVANTAGE
   ================================================================ */
.advantage-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.35rem;
}
@media (max-width: 1000px) { .advantage-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .advantage-grid { grid-template-columns: 1fr; } }

.advantage-card {
  padding: 1.85rem; border-radius: var(--radius);
  background: var(--surface);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
}
.advantage-card:hover { border-color: rgba(0,212,255,0.32); transform: translateY(-5px); box-shadow: 0 26px 65px rgba(0,0,0,0.36), 0 0 0 1px rgba(0,212,255,0.07); }
.adv-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px; font-size: 1.85rem;
  background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.16);
  margin-bottom: 1.15rem;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
}
.advantage-card h3 { font-family: var(--font-brand); font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.65rem; letter-spacing: -0.01em; }
.advantage-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.72; }

/* ================================================================
   DIVISIONS
   ================================================================ */
.divisions-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 1.75rem;
}
@media (max-width: 820px) { .divisions-grid { grid-template-columns: 1fr; } }

.division-card {
  position: relative; padding: 0;
  border-radius: calc(var(--radius) + 2px);
  background: var(--surface);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
.division-card:hover { transform: translateY(-9px); }

/* Animated top strip */
.div-strip { height: 4px; width: 100%; flex-shrink: 0; }
.div-green  .div-strip { background: linear-gradient(90deg,#00f5b0,#00c47a,#00f5b0); background-size:200%; animation:stripFlow 3s ease infinite; }
.div-blue   .div-strip { background: linear-gradient(90deg,#0096ff,#00d4ff,#0096ff); background-size:200%; animation:stripFlow 3s ease infinite 0.5s; }
.div-cyan   .div-strip { background: linear-gradient(90deg,#00d4ff,#007bcc,#00d4ff); background-size:200%; animation:stripFlow 3s ease infinite 1s; }
.div-purple .div-strip { background: linear-gradient(90deg,#8b5cf6,#d946ef,#8b5cf6); background-size:200%; animation:stripFlow 3s ease infinite 1.5s; }
@keyframes stripFlow { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.div-inner { padding: 1.85rem 2.1rem 2.1rem; display: flex; flex-direction: column; flex: 1; }

/* Ambient glow */
.div-glow {
  position: absolute; top: -80px; right: -80px;
  width: 310px; height: 310px; border-radius: 50%;
  filter: blur(72px); pointer-events: none; z-index: 0;
  transition: opacity 0.4s ease;
}
.div-green  .div-glow { background: rgba(0,245,176,0.18); }
.div-blue   .div-glow { background: rgba(0,150,255,0.22); }
.div-cyan   .div-glow { background: rgba(0,212,255,0.18); }
.div-purple .div-glow { background: rgba(139,92,246,0.26); }

.division-card::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.3) 100%);
  opacity: 0; transition: opacity 0.35s ease;
}
.division-card:hover::after { opacity: 1; }

/* Hover border glows */
.div-green:hover  { border-color: rgba(0,245,176,0.45); box-shadow: 0 34px 75px rgba(0,0,0,0.52), 0 0 0 1px rgba(0,245,176,0.12); }
.div-blue:hover   { border-color: rgba(0,150,255,0.45); box-shadow: 0 34px 75px rgba(0,0,0,0.52), 0 0 0 1px rgba(0,150,255,0.12); }
.div-cyan:hover   { border-color: rgba(0,212,255,0.45); box-shadow: 0 34px 75px rgba(0,0,0,0.52), 0 0 0 1px rgba(0,212,255,0.12); }
.div-purple:hover { border-color: rgba(139,92,246,0.5);  box-shadow: 0 34px 75px rgba(0,0,0,0.52), 0 0 0 1px rgba(139,92,246,0.15); }

.div-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 1.1rem; position: relative; z-index: 1;
}
.div-emoji-wrap {
  width: 54px; height: 54px; border-radius: 15px;
  display: grid; place-items: center;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  font-size: 1.8rem; flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
}
.div-green  .div-emoji-wrap { border-color: rgba(0,245,176,0.3); background: rgba(0,245,176,0.09); box-shadow: 0 4px 18px rgba(0,245,176,0.12); }
.div-blue   .div-emoji-wrap { border-color: rgba(0,150,255,0.3); background: rgba(0,150,255,0.09); box-shadow: 0 4px 18px rgba(0,150,255,0.12); }
.div-cyan   .div-emoji-wrap { border-color: rgba(0,212,255,0.3); background: rgba(0,212,255,0.09); box-shadow: 0 4px 18px rgba(0,212,255,0.12); }
.div-purple .div-emoji-wrap { border-color: rgba(139,92,246,0.35); background: rgba(139,92,246,0.09); box-shadow: 0 4px 18px rgba(139,92,246,0.14); }

.div-badge {
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 0.82rem; border-radius: 999px; border: 1px solid var(--border);
  color: var(--muted); background: rgba(255,255,255,0.04);
}

.div-name {
  font-family: var(--font-brand);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700; letter-spacing: -0.03em; color: var(--text);
  margin-bottom: 0.2rem; position: relative; z-index: 1; line-height: 1.1;
}
.div-green  .div-name { color: #e5fff5; }
.div-blue   .div-name { color: #e5f0ff; }
.div-cyan   .div-name { color: #e5f8ff; }
.div-purple .div-name { color: #f0eeff; }

.div-tagline {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.03em;
  text-transform: uppercase; margin-bottom: 1rem; position: relative; z-index: 1;
}
.div-green  .div-tagline { color: rgba(0,245,176,0.78); }
.div-blue   .div-tagline { color: rgba(0,150,255,0.78); }
.div-cyan   .div-tagline { color: rgba(0,212,255,0.78); }
.div-purple .div-tagline { color: rgba(167,139,250,0.78); }

.div-desc { font-size: 0.97rem; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.78; position: relative; z-index: 1; flex: 1; }

.div-tech { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.div-tech span {
  font-family: var(--font-brand); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.03em;
  padding: 0.3rem 0.78rem; border-radius: 8px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); color: var(--muted);
  transition: all 0.22s ease;
}
.div-green  .div-tech span { border-color: rgba(0,245,176,0.25); color: #3dffc0; background: rgba(0,245,176,0.07); }
.div-blue   .div-tech span { border-color: rgba(0,150,255,0.25); color: #55bbff; background: rgba(0,150,255,0.07); }
.div-cyan   .div-tech span { border-color: rgba(0,212,255,0.25); color: #5de0ff; background: rgba(0,212,255,0.07); }
.div-purple .div-tech span { border-color: rgba(167,139,250,0.28); color: #b49dff; background: rgba(139,92,246,0.08); }
.div-tech span:hover { filter: brightness(1.3); transform: translateY(-1px); }

.div-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.1rem; border-top: 1px solid var(--border); position: relative; z-index: 1;
}
.div-link { font-family: var(--font-brand); font-size: 0.82rem; font-weight: 600; color: var(--muted); transition: color var(--trans); text-decoration: none; letter-spacing: 0.01em; }
.div-arrow {
  width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center;
  border: 1px solid var(--border); background: rgba(255,255,255,0.04);
  font-size: 0.85rem; color: var(--muted); text-decoration: none; cursor: pointer; flex-shrink: 0;
  transition: all 0.25s ease;
}
.div-green  .div-link:hover { color: #00f5b0; }
.div-blue   .div-link:hover { color: #0096ff; }
.div-cyan   .div-link:hover { color: var(--accent); }
.div-purple .div-link:hover { color: var(--accent-2); }
.div-green:hover  .div-arrow { border-color: rgba(0,245,176,0.45); color: #00f5b0; background: rgba(0,245,176,0.12); }
.div-blue:hover   .div-arrow { border-color: rgba(0,150,255,0.45); color: #0096ff; background: rgba(0,150,255,0.12); }
.div-cyan:hover   .div-arrow { border-color: rgba(0,212,255,0.45); color: var(--accent); background: rgba(0,212,255,0.12); }
.div-purple:hover .div-arrow { border-color: rgba(139,92,246,0.5); color: var(--accent-2); background: rgba(139,92,246,0.12); }

/* ================================================================
   R&D
   ================================================================ */
.rd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: start; }
@media (max-width: 820px) { .rd-grid { grid-template-columns: 1fr; } }

.rd-domains { display: flex; flex-direction: column; gap: 1rem; }
.domain-item {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.35rem; border-radius: var(--radius);
  background: var(--surface);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
}
.domain-item:hover { border-color: rgba(0,212,255,0.28); transform: translateX(4px); box-shadow: 0 14px 44px rgba(0,0,0,0.28); }
.domain-icon {
  display: grid; place-items: center; flex-shrink: 0;
  width: 50px; height: 50px; border-radius: 13px; font-size: 1.7rem;
  background: rgba(0,212,255,0.07); border: 1px solid rgba(0,212,255,0.16);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.domain-item h4 { font-family: var(--font-brand); font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.3rem; letter-spacing: -0.01em; }
.domain-item p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* ================================================================
   ROADMAP / TIMELINE
   ================================================================ */
.timeline { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; position: relative; }
.timeline::before {
  content: ''; position: absolute; top: 2.2rem; left: calc(16.66% + 1rem); right: calc(16.66% + 1rem); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.55), rgba(139,92,246,0.45), transparent);
}
@media (max-width: 820px) { .timeline { grid-template-columns: 1fr; } .timeline::before { display: none; } }

.timeline-item { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.timeline-marker { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.t-year { font-family: var(--font-brand); font-size: 0.82rem; font-weight: 700; color: var(--muted); letter-spacing: 0.08em; }
.t-dot { width: 15px; height: 15px; border-radius: 50%; background: var(--bg); border: 2px solid var(--border); transition: border-color var(--trans), box-shadow var(--trans); }
.t-dot-active {
  background: var(--accent); border-color: var(--accent);
  box-shadow: 0 0 0 6px rgba(0,212,255,0.16), 0 0 28px var(--glow-blue);
  animation: dotPulse 2.2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 0 6px rgba(0,212,255,0.16), 0 0 28px var(--glow-blue); }
  50%      { box-shadow: 0 0 0 11px rgba(0,212,255,0.07), 0 0 44px var(--glow-blue); }
}

.timeline-card {
  width: 100%; padding: 1.65rem; border-radius: var(--radius);
  background: var(--surface);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
}
.timeline-card:hover { transform: translateY(-4px); box-shadow: 0 22px 55px rgba(0,0,0,0.32); }
.timeline-card-active { border-color: rgba(0,212,255,0.38); background: rgba(0,212,255,0.04); }
.t-now-badge {
  position: absolute; top: -0.62rem; right: 1rem;
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.22rem 0.72rem; border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff;
  box-shadow: 0 0 14px rgba(0,212,255,0.45);
}
.timeline-card h3 { font-family: var(--font-brand); font-size: 1.02rem; font-weight: 700; color: var(--text); margin-bottom: 0.65rem; letter-spacing: -0.01em; }
.timeline-card p { font-size: 0.88rem; color: var(--muted); margin-bottom: 1.1rem; line-height: 1.7; }
.t-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.t-tags span {
  font-family: var(--font-brand);
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.02em;
  padding: 0.22rem 0.55rem; border-radius: 6px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border); color: var(--muted);
  white-space: nowrap;
}
.timeline-card-active .t-tags span {
  border-color: rgba(0,212,255,0.18); color: rgba(0,212,255,0.85);
  background: rgba(0,212,255,0.05);
}

/* ================================================================
   PARTNER
   ================================================================ */
.partner-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.35rem; }
@media (max-width: 1000px) { .partner-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .partner-grid { grid-template-columns: 1fr; } }

.partner-card {
  padding: 1.9rem; border-radius: var(--radius);
  background: var(--surface);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 0.85rem;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
}
.partner-card:hover { border-color: rgba(139,92,246,0.45); transform: translateY(-5px); box-shadow: 0 26px 65px rgba(0,0,0,0.38), 0 0 0 1px rgba(139,92,246,0.1); }
.partner-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 16px; font-size: 1.85rem;
  background: rgba(139,92,246,0.09); border: 1px solid rgba(139,92,246,0.22);
  box-shadow: 0 4px 18px rgba(139,92,246,0.12);
}
.partner-card h3 { font-family: var(--font-brand); font-size: 1.08rem; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.partner-card p { font-size: 0.9rem; color: var(--muted); flex: 1; line-height: 1.72; }
.partner-cta {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.85rem; font-weight: 700; color: var(--accent-2);
  text-decoration: none; transition: color var(--trans);
}
.partner-cta::after { content: '→'; transition: transform 0.25s ease; display: inline-block; }
.partner-cta:hover { color: var(--accent); text-decoration: none; }
.partner-cta:hover::after { transform: translateX(4px); }

/* ================================================================
   TEAM
   ================================================================ */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.65rem; }
@media (max-width: 820px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  padding: 2.25rem; border-radius: var(--radius); text-align: center;
  background: var(--surface);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
}
.team-card:hover { border-color: rgba(0,212,255,0.32); transform: translateY(-5px); box-shadow: 0 30px 75px rgba(0,0,0,0.42), 0 0 45px rgba(0,212,255,0.06); }

.team-avatar { position: relative; width: 88px; height: 88px; margin: 0 auto 1.6rem; }
.avatar-ring {
  position: absolute; inset: -4px; border-radius: 50%;
  background: conic-gradient(from 0deg, var(--accent), var(--accent-2), var(--accent-3), var(--accent));
  animation: spinRing 6s linear infinite;
  filter: blur(0.4px);
}
@keyframes spinRing { to { transform: rotate(360deg); } }
.avatar-initial {
  position: absolute; inset: 4px; border-radius: 50%;
  background: linear-gradient(145deg, var(--bg-alt), var(--bg));
  display: grid; place-items: center;
  font-family: var(--font-brand); font-size: 1.9rem; font-weight: 700; letter-spacing: -0.02em;
  color: var(--accent);
}
.team-card h3 { font-family: var(--font-brand); font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 0.3rem; letter-spacing: -0.02em; }
.team-role { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 0.9rem; }
.team-bio { font-size: 0.88rem; color: var(--muted); line-height: 1.72; }

/* ================================================================
   CONTACT
   ================================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-details { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.25rem; }
.contact-item {
  display: flex; gap: 1.1rem; align-items: flex-start;
  padding: 1.1rem 1.35rem; border-radius: var(--radius-sm);
  background: var(--surface);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: border-color var(--trans), transform var(--trans);
}
.contact-item::before {
  content: ''; position: absolute; top: 0; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}
.contact-item:hover { border-color: rgba(0,212,255,0.26); transform: translateX(3px); }
.ci-icon { font-size: 1.35rem; flex-shrink: 0; }
.contact-item div { display: flex; flex-direction: column; gap: 0.15rem; }
.contact-item strong { font-size: 0.77rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted); }
.contact-item span, .contact-item a { font-size: 0.97rem; color: var(--text); }
.contact-item a:hover { color: var(--accent); }

/* Form */
.contact-form-wrap {
  background: rgba(255,255,255,0.028);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 2.3rem;
  position: relative; overflow: hidden;
  box-shadow: 0 36px 90px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.09);
}
.contact-form-wrap::before {
  content: ''; position: absolute; top: 0; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field span { font-size: 0.77rem; font-weight: 700; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
.field input, .field textarea, .field select {
  font-family: var(--font); font-size: 0.97rem;
  padding: 0.78rem 1rem; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.04);
  color: var(--text); outline: none;
  transition: border-color var(--trans), box-shadow var(--trans), background var(--trans);
}
.field input:hover, .field textarea:hover, .field select:hover { background: rgba(255,255,255,0.06); }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); opacity: 0.5; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: rgba(0,212,255,0.55);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.1), 0 0 22px rgba(0,212,255,0.06);
  background: rgba(0,212,255,0.03);
}
.field select option { background: var(--bg-alt); color: var(--text); }

.form-status { font-size: 0.92rem; min-height: 1.2rem; text-align: center; margin-top: 0.25rem; font-weight: 500; }
.form-status--ok  { color: #34d399; text-shadow: 0 0 20px rgba(52,211,153,0.4); }
.form-status--err { color: #f87171; text-shadow: 0 0 20px rgba(248,113,113,0.3); }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 3.5rem 0 0; position: relative; }
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(0,212,255,0.35) 35%, rgba(139,92,246,0.35) 65%, transparent 95%);
}
.footer-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 3.5rem; padding-bottom: 3rem; }
@media (max-width: 820px) { .footer-inner { grid-template-columns: 1fr; } }

.footer-brand { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-brand p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }
.footer-sub-brands { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.35rem; }
.footer-sub-brands span {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.28rem 0.65rem; border-radius: 7px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); color: var(--muted);
  transition: color var(--trans), border-color var(--trans);
  cursor: default;
}
.footer-sub-brands span:hover { color: var(--accent); border-color: rgba(0,212,255,0.32); }

.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
@media (max-width: 560px) { .footer-links { grid-template-columns: 1fr 1fr; } }
.footer-links div { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links strong { font-size: 0.73rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 0.3rem; }
.footer-links a { font-size: 0.9rem; color: var(--muted); transition: color var(--trans); text-decoration: none; }
.footer-links a:hover { color: var(--text); }

.footer-bottom { border-top: 1px solid var(--border); padding: 1.35rem 0; }
.footer-bottom .container { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 0.75rem; }
.footer-bottom span { font-size: 0.82rem; color: var(--muted); }

/* ================================================================
   PULL QUOTE (About)
   ================================================================ */
.pull-quote {
  position: relative;
  margin: 2rem 0 0;
  padding: 1.65rem 1.85rem 1.65rem 2.4rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(0,212,255,0.05), rgba(139,92,246,0.05));
  border: 1px solid rgba(0,212,255,0.15);
  border-left: 3px solid var(--accent);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.pull-quote::before {
  content: '"';
  position: absolute; top: -8px; left: 14px;
  font-family: var(--font-head); font-size: 4.2rem; font-weight: 800;
  line-height: 1; color: var(--accent); opacity: 0.45;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pull-quote p {
  font-family: var(--font-head); font-size: 1.08rem; font-weight: 500;
  font-style: italic; color: var(--text); line-height: 1.62;
  margin: 0 0 1rem; letter-spacing: -0.01em;
}
.pull-quote footer {
  display: flex; flex-direction: column; gap: 0.15rem; font-style: normal;
}
.pull-quote footer strong { font-family: var(--font-brand); font-size: 0.92rem; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.pull-quote footer span { font-size: 0.78rem; color: var(--muted); font-weight: 500; }

/* ================================================================
   DIVISION STATUS PILLS
   ================================================================ */
.div-meta {
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem;
}
.div-status {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.28rem 0.7rem; border-radius: 999px;
  border: 1px solid var(--border); background: rgba(255,255,255,0.05);
}
.div-status .status-dot {
  width: 6px; height: 6px; border-radius: 50%;
}
.div-status-live { color: #34d399; border-color: rgba(52,211,153,0.35); background: rgba(52,211,153,0.08); }
.div-status-live .status-dot { background: #34d399; box-shadow: 0 0 8px #34d399; animation: pulse 2s ease-in-out infinite; }
.div-status-pilot { color: #fbbf24; border-color: rgba(251,191,36,0.35); background: rgba(251,191,36,0.08); }
.div-status-pilot .status-dot { background: #fbbf24; box-shadow: 0 0 8px #fbbf24; animation: pulse 2s ease-in-out infinite 0.4s; }
.div-status-rnd { color: var(--accent-2); border-color: rgba(139,92,246,0.4); background: rgba(139,92,246,0.08); }
.div-status-rnd .status-dot { background: var(--accent-2); box-shadow: 0 0 8px var(--accent-2); animation: pulse 2s ease-in-out infinite 0.8s; }

/* ================================================================
   TEAM SOCIAL
   ================================================================ */
.team-social {
  display: flex; justify-content: center; gap: 0.55rem;
  margin-top: 1.25rem; padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 9px;
  border: 1px solid var(--border); background: rgba(255,255,255,0.04);
  color: var(--muted); transition: all var(--trans);
  text-decoration: none;
}
.social-link:hover {
  color: var(--accent); border-color: rgba(0,212,255,0.45);
  background: rgba(0,212,255,0.09);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,212,255,0.15);
  text-decoration: none;
}

/* ================================================================
   FAQ
   ================================================================ */
.faq-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem;
  max-width: 980px; margin-inline: auto;
}
@media (max-width: 820px) { .faq-grid { grid-template-columns: 1fr; } }

.faq-item {
  background: var(--surface);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  transition: border-color var(--trans), background var(--trans);
  overflow: hidden;
}
.faq-item:hover { border-color: rgba(0,212,255,0.22); }
.faq-item[open] { border-color: rgba(0,212,255,0.32); background: rgba(0,212,255,0.025); }

.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.4rem;
  cursor: pointer; list-style: none;
  font-family: var(--font-brand); font-size: 0.97rem; font-weight: 600;
  color: var(--text); letter-spacing: -0.01em;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary > span:first-child { flex: 1; }
.faq-toggle {
  display: grid; place-items: center; flex-shrink: 0;
  width: 26px; height: 26px; border-radius: 8px;
  border: 1px solid var(--border); background: rgba(255,255,255,0.04);
  color: var(--accent); font-size: 1rem; font-weight: 700;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
  background: rgba(0,212,255,0.12);
  border-color: rgba(0,212,255,0.4);
}
.faq-body {
  padding: 0 1.4rem 1.25rem;
  font-size: 0.94rem; color: var(--muted); line-height: 1.72;
}
.faq-body p { margin: 0; }
.faq-body strong { color: var(--text); font-weight: 600; }
.faq-body em { color: var(--accent); font-style: normal; font-weight: 600; }

/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-banner-section {
  padding: clamp(2.5rem,6vw,4rem) 0;
  position: relative;
}
.cta-banner {
  position: relative; overflow: hidden;
  padding: clamp(2.5rem,6vw,4.5rem) clamp(1.5rem,4vw,3.5rem);
  border-radius: calc(var(--radius) + 6px);
  background:
    linear-gradient(135deg, rgba(0,212,255,0.07), rgba(139,92,246,0.07)),
    var(--bg-alt);
  border: 1px solid rgba(0,212,255,0.18);
  text-align: center;
  box-shadow: 0 38px 90px rgba(0,0,0,0.45);
}
.cta-banner::before {
  content: ''; position: absolute; top: 0; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
}
.cta-banner-glow {
  position: absolute; top: -160px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.13) 0%, rgba(139,92,246,0.07) 35%, transparent 65%);
  filter: blur(50px); pointer-events: none; z-index: 0;
  animation: driftA 16s ease-in-out infinite alternate;
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner-inner .label-pill { margin-bottom: 1.25rem; }
.cta-banner-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800; font-variation-settings: "opsz" 64, "wght" 800;
  letter-spacing: -0.035em; color: var(--text); margin-bottom: 1.1rem; line-height: 1.08;
}
.cta-banner-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
  background-size: 200% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: shimmerGrad 7s ease-in-out infinite;
}
.cta-banner-sub {
  font-size: clamp(1rem, 1.5vw, 1.12rem); color: var(--muted);
  max-width: 56ch; margin: 0 auto 2rem; line-height: 1.7;
}
.cta-banner-actions {
  display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center;
}

/* ================================================================
   SCROLL ANIMATIONS
   ================================================================ */
[data-animate] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94); }
[data-animate="fade-right"] { transform: translateX(-36px); }
[data-animate="fade-left"]  { transform: translateX(36px); }
[data-animate].is-visible   { opacity: 1; transform: none; }
