/* ═══════════════════════════════════════════════════
   STRATEGORISK DRON MONITOR — styles.css v20260629b
   IaaS Intelligence Platform — repositioned
   Tokens: --bg #0E0C0A · --gold #C49A3C · --cream #F0EAD8
   ═══════════════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

/* ── TOKENS ── */
:root {
  --bg:       #0E0C0A;
  --bg2:      #141210;
  --bg3:      #1A1714;
  --bg4:      #201D19;
  --gold:     #C49A3C;
  --gold-dim: #8A6C29;
  --gold-lite:#E8C060;
  --cream:    #F0EAD8;
  --cream-dim:#B0A898;
  --white:    #FFFFFF;
  --green:    #4ADE80;
  --red:      #F87171;
  --blue:     #60A5FA;
  --yellow:   #FBBF24;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans:  "Inter", system-ui, sans-serif;
  --font-mono:  "JetBrains Mono", "Courier New", monospace;
  --r: 4px;
  --r-lg: 8px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1.0);
}

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 300; line-height: 1.15; }
em { font-style: italic; color: var(--gold); }
.mono { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; }
.eyebrow { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.body-lg { font-size: 1.1rem; line-height: 1.75; color: var(--cream); margin-bottom: 1.5rem; }
.body-md { font-size: 0.95rem; line-height: 1.75; color: var(--cream-dim); margin-bottom: 1.2rem; }
.section-title { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--cream); margin-bottom: 3rem; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-lite); }

/* ── CONTAINERS ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.8rem 1.8rem; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; border-radius: var(--r); cursor: pointer; transition: var(--transition); border: none; text-decoration: none; }
.btn-primary { background: var(--gold); color: var(--bg); }
.btn-primary:hover { background: var(--gold-lite); color: var(--bg); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--cream); border: 1px solid rgba(240,234,216,0.25); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-full { width: 100%; justify-content: center; padding: 1rem 2rem; }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal[data-delay="60"]  { transition-delay: 60ms; }
.reveal[data-delay="100"] { transition-delay: 100ms; }
.reveal[data-delay="120"] { transition-delay: 120ms; }
.reveal[data-delay="200"] { transition-delay: 200ms; }
.reveal[data-delay="300"] { transition-delay: 300ms; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
/* Safety: if JS stalls */
.reveal[data-split] { opacity: 1; transform: none; }

/* ════════════════════════
   SPLASH
   ════════════════════════ */
.splash {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
  /* CSS fallback: auto-ocultar si JS no responde */
  animation: splashAutohide 0.8s ease 3.5s forwards;
}
@keyframes splashAutohide {
  0%   { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; pointer-events: none; }
}
.splash.is-out { opacity: 0; visibility: hidden; pointer-events: none; animation: none; }

.splash-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(196,154,60,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,154,60,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridFade 4.5s ease forwards;
}
@keyframes gridFade { 0%,60%{opacity:1} 100%{opacity:0} }

.splash-center { position: relative; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.splash-sr { width: 120px; height: auto; animation: splashLogo 0.8s ease forwards; }
@keyframes splashLogo { from{opacity:0;transform:scale(0.85)} to{opacity:1;transform:scale(1)} }

.splash-lines { display: flex; flex-direction: column; align-items: center; gap: 0.8rem; }
.splash-lines [data-status] { color: var(--cream-dim); font-size: 0.65rem; letter-spacing: 0.2em; min-height: 1.2em; }
.splash-progress { width: 200px; height: 1px; background: rgba(196,154,60,0.2); }
.splash-bar { height: 1px; background: var(--gold); width: 0; animation: splashBar 2.6s ease-out forwards; }
@keyframes splashBar { from{width:0} to{width:100%} }

/* ════════════════════════
   NAV
   ════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  transition: background 0.4s, border-color 0.4s, padding 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(14,12,10,0.92);
  border-color: rgba(196,154,60,0.15);
  padding: 0.7rem 2rem;
  backdrop-filter: blur(12px);
}
.nav-logo { display: flex; align-items: center; gap: 0.9rem; text-decoration: none; }
.nav-sr { width: 48px; height: auto; }
.nav-divider { width: 1px; height: 32px; background: rgba(196,154,60,0.3); }
.nav-name { display: flex; flex-direction: column; }
.nav-brand { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.18em; color: var(--cream); }
.nav-sub { font-size: 0.58rem; color: var(--gold); letter-spacing: 0.15em; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.12em; color: var(--cream-dim); text-transform: uppercase; transition: color 0.25s; text-decoration: none; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--bg) !important; padding: 0.5rem 1.2rem !important; border-radius: var(--r); }
.nav-cta:hover { background: var(--gold-lite) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.4rem; }
.nav-toggle span { display: block; width: 22px; height: 1px; background: var(--cream); transition: var(--transition); }

/* ════════════════════════
   HERO
   ════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 2rem 80px;
  position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(196,154,60,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,154,60,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-glow {
  position: absolute;
  top: 20%; right: 10%;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(196,154,60,0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 6s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100%{opacity:0.5;transform:scale(1)} 50%{opacity:1;transform:scale(1.15)} }

/* Network nodes */
.hero-network {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.node {
  position: absolute;
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(196,154,60,0.3);
  border-radius: 2px;
  background: rgba(14,12,10,0.8);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  animation: nodePulse 4s ease-in-out infinite;
}
.node.n1 { top: 18%; left: 8%;  animation-delay: 0s; }
.node.n2 { top: 12%; right: 15%; animation-delay: 0.8s; }
.node.n3 { top: 38%; left: 4%;  animation-delay: 1.6s; }
.node.n4 { top: 72%; left: 12%; animation-delay: 0.4s; }
.node.n5 { top: 25%; right: 8%; animation-delay: 1.2s; }
.node.n6 { top: 65%; right: 10%; animation-delay: 2s; }
@keyframes nodePulse { 0%,100%{opacity:0.4;transform:scale(1)} 50%{opacity:0.8;transform:scale(1.03)} }

.net-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.pulse-ring  { animation: ringPulse 3s ease-out infinite; transform-origin: 400px 250px; }
.pulse-ring-2{ animation: ringPulse 3s ease-out infinite 0.8s; transform-origin: 400px 250px; }
@keyframes ringPulse { 0%{opacity:0.5;transform:scale(1)} 100%{opacity:0;transform:scale(2.2)} }

/* Hero content */
.hero-inner { position: relative; z-index: 2; max-width: 760px; }
.hero-eyebrow { color: var(--gold); margin-bottom: 1.2rem; }
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--cream);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero-sub { font-size: 1.1rem; color: var(--cream-dim); line-height: 1.75; margin-bottom: 2rem; max-width: 600px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

/* Intel ticker */
.hero-ticker {
  display: flex; align-items: center; gap: 1rem;
  border-top: 1px solid rgba(196,154,60,0.2);
  padding-top: 1.2rem;
  overflow: hidden;
}
.ticker-label { color: var(--gold); font-size: 0.6rem; letter-spacing: 0.18em; white-space: nowrap; }
.ticker-track { overflow: hidden; flex: 1; position: relative; }
.ticker-items {
  display: flex; gap: 4rem; align-items: center;
  animation: tickerScroll 28s linear infinite;
  width: max-content;
}
.ti { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-mono); font-size: 0.65rem; color: var(--cream-dim); white-space: nowrap; }
.ti-badge {
  display: inline-block; padding: 0.1rem 0.5rem;
  font-size: 0.55rem; letter-spacing: 0.1em;
  border-radius: 2px; text-transform: uppercase;
}
.ti-badge.risk    { background: rgba(248,113,113,0.2); color: #F87171; border: 1px solid rgba(248,113,113,0.3); }
.ti-badge.alert   { background: rgba(251,191,36,0.2);  color: #FBBF24; border: 1px solid rgba(251,191,36,0.3); }
.ti-badge.osint   { background: rgba(96,165,250,0.2);  color: #60A5FA; border: 1px solid rgba(96,165,250,0.3); }
.ti-badge.dd      { background: rgba(196,154,60,0.2);  color: var(--gold); border: 1px solid rgba(196,154,60,0.3); }
.ti-badge.geo     { background: rgba(74,222,128,0.2);  color: #4ADE80; border: 1px solid rgba(74,222,128,0.3); }
.ti-badge.fraud   { background: rgba(167,139,250,0.2); color: #A78BFA; border: 1px solid rgba(167,139,250,0.3); }
@keyframes tickerScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ════════════════════════
   SECTION WHAT
   ════════════════════════ */
.section-what { padding: 100px 0; }

.what-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-bottom: 4rem; }
.what-not { margin-top: 2rem; padding: 1.5rem; border: 1px solid rgba(196,154,60,0.15); border-radius: var(--r-lg); background: rgba(20,18,16,0.5); }
.wn-label { color: var(--red); margin-bottom: 0.6rem; }
.is-label  { color: var(--green); margin-top: 1rem; margin-bottom: 0.6rem; }
.wn-items { display: flex; flex-direction: column; gap: 0.3rem; font-size: 0.85rem; color: var(--cream-dim); }
.is-items span { color: var(--cream); }

/* Pillars visual */
.what-right { display: flex; justify-content: center; }
.pillars {
  position: relative; width: 360px; height: 360px;
  display: flex; align-items: center; justify-content: center;
}
.pillar-center {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  padding: 1.2rem 1.5rem;
  border: 1px solid rgba(196,154,60,0.4);
  background: rgba(14,12,10,0.9);
}
.pillar-name { font-size: 0.55rem; color: var(--gold); letter-spacing: 0.18em; }
.pillar {
  position: absolute;
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(196,154,60,0.3);
  background: rgba(14,12,10,0.85);
  font-size: 0.6rem; letter-spacing: 0.14em; color: var(--gold-lite);
  border-radius: 2px;
  animation: pillarFloat 5s ease-in-out infinite;
}
.pillar.p1 { top: 4%; left: 8%;  animation-delay: 0s; }
.pillar.p2 { top: 4%; right: 8%; animation-delay: 0.6s; }
.pillar.p3 { left: 0; top: 50%; transform: translateY(-50%); animation-delay: 1.2s; }
.pillar.p4 { right: 0; top: 50%; transform: translateY(-50%); animation-delay: 1.8s; }
.pillar.p5 { bottom: 4%; left: 8%; animation-delay: 2.4s; }
.pillar.p6 { bottom: 4%; right: 8%; animation-delay: 3s; }
@keyframes pillarFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.pillar.p3 { animation: pillarFloat3 5s ease-in-out 1.2s infinite; }
.pillar.p4 { animation: pillarFloat4 5s ease-in-out 1.8s infinite; }
@keyframes pillarFloat3 { 0%,100%{transform:translateY(-50%)} 50%{transform:translateY(calc(-50% - 6px))} }
@keyframes pillarFloat4 { 0%,100%{transform:translateY(-50%)} 50%{transform:translateY(calc(-50% - 6px))} }
.pillar-lines { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }

/* Stats */
.what-stats {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: rgba(196,154,60,0.1);
  border: 1px solid rgba(196,154,60,0.1);
}
.wstat {
  padding: 2rem 1.5rem; background: var(--bg2);
  text-align: center;
  transition: background var(--transition);
}
.wstat:hover { background: var(--bg3); }
.wstat-num { font-size: 2rem; color: var(--gold); display: block; margin-bottom: 0.5rem; }
.wstat-label { font-size: 0.75rem; color: var(--cream-dim); line-height: 1.4; }

/* ════════════════════════
   HOW IT WORKS
   ════════════════════════ */
.section-how { padding: 100px 0; background: var(--bg2); }
.how-steps { display: flex; align-items: flex-start; gap: 0; margin-top: 1rem; }
.how-step {
  flex: 1; padding: 2rem;
  border: 1px solid rgba(196,154,60,0.1);
  background: var(--bg);
  transition: border-color var(--transition), background var(--transition);
}
.how-step:hover { border-color: rgba(196,154,60,0.35); background: var(--bg3); }
.hs-num { font-size: 0.6rem; color: var(--gold-dim); letter-spacing: 0.2em; margin-bottom: 1rem; }
.hs-icon { width: 48px; height: 48px; margin-bottom: 1rem; color: var(--gold); opacity: 0.7; }
.how-step h3 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 300; color: var(--cream); margin-bottom: 0.8rem; }
.how-step p { font-size: 0.85rem; color: var(--cream-dim); line-height: 1.7; }
.how-arrow { font-size: 1.2rem; color: rgba(196,154,60,0.4); padding: 2rem 0; align-self: center; flex-shrink: 0; margin: 0 -0.5rem; z-index: 2; }

/* ════════════════════════
   MODULES
   ════════════════════════ */
.section-modules { padding: 100px 0; }
.modules-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(196,154,60,0.08);
}
.mod-card {
  background: var(--bg2); padding: 2rem;
  border-top: 2px solid transparent;
  transition: background var(--transition), border-color var(--transition);
}
.mod-card:hover { background: var(--bg3); border-top-color: var(--gold); }
.mod-card-featured { border-top-color: var(--gold); background: var(--bg3); }
.mod-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.mod-code { font-size: 0.62rem; color: var(--gold-dim); letter-spacing: 0.16em; }
.mod-tag { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.12em; padding: 0.2rem 0.5rem; border: 1px solid rgba(196,154,60,0.25); color: var(--gold); border-radius: 2px; }
.mod-title { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 300; color: var(--cream); margin-bottom: 0.8rem; }
.mod-desc { font-size: 0.82rem; color: var(--cream-dim); line-height: 1.7; margin-bottom: 1rem; }
.mod-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.mod-tags span { font-family: var(--font-mono); font-size: 0.58rem; padding: 0.15rem 0.5rem; border: 1px solid rgba(196,154,60,0.15); color: var(--cream-dim); border-radius: 2px; }

/* ════════════════════════
   QUESTIONS
   ════════════════════════ */
.section-questions { padding: 100px 0; position: relative; overflow: hidden; }
.questions-bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 50%, var(--bg) 100%);
}
.questions-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: center; position: relative; z-index: 1; margin-top: 1rem; }
.q-col { display: flex; flex-direction: column; gap: 1rem; }
.q-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.2rem 1.5rem;
  border: 1px solid rgba(196,154,60,0.1);
  background: rgba(20,18,16,0.6);
  transition: border-color var(--transition), background var(--transition);
}
.q-item:hover { border-color: rgba(196,154,60,0.3); background: var(--bg3); }
.q-item-ans { border-color: rgba(74,222,128,0.15); }
.q-item-ans:hover { border-color: rgba(74,222,128,0.3); }
.q-mark { font-family: var(--font-serif); font-size: 1.8rem; color: rgba(196,154,60,0.4); flex-shrink: 0; line-height: 1; }
.q-mark.ans { color: rgba(74,222,128,0.7); }
.q-item p { font-size: 0.88rem; color: var(--cream-dim); line-height: 1.5; padding-top: 0.2rem; }
.q-item-ans p { color: var(--cream); }
.q-arrow { display: flex; align-items: center; justify-content: center; }
.qa-center { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; padding: 1.5rem; border: 1px solid rgba(196,154,60,0.3); background: var(--bg2); }
.qa-center .mono { font-size: 0.58rem; color: var(--gold); letter-spacing: 0.15em; }

/* ════════════════════════
   SECTORS
   ════════════════════════ */
.section-sectors { padding: 80px 0; }
.sectors-strip {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0; margin-top: 1rem;
  border: 1px solid rgba(196,154,60,0.15);
}
.sector-item {
  padding: 1.5rem 2rem; flex: 1; min-width: 160px;
  text-align: center; transition: background var(--transition);
}
.sector-item:hover { background: var(--bg3); }
.sector-item span { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.12em; color: var(--cream-dim); text-transform: uppercase; }
.sector-item:hover span { color: var(--gold); }
.sector-sep { width: 1px; height: 60px; background: rgba(196,154,60,0.12); flex-shrink: 0; }

/* ════════════════════════
   AI
   ════════════════════════ */
.section-ai { padding: 100px 0; position: relative; overflow: hidden; }
.ai-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(196,154,60,0.05) 0%, transparent 65%);
}
.ai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; z-index: 1; margin-top: 1rem; }
.ai-caps { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 0.5rem; }
.ai-cap { display: flex; align-items: center; gap: 0.8rem; font-size: 0.88rem; color: var(--cream-dim); padding: 0.5rem 0; border-bottom: 1px solid rgba(196,154,60,0.08); }
.aic-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* AI sample card */
.ai-card { background: var(--bg3); border: 1px solid rgba(196,154,60,0.25); border-radius: var(--r-lg); overflow: hidden; }
.aic-header { display: flex; align-items: center; justify-content: space-between; padding: 0.8rem 1.2rem; background: var(--bg4); border-bottom: 1px solid rgba(196,154,60,0.15); }
.aic-tag { font-size: 0.6rem; color: var(--gold-dim); letter-spacing: 0.14em; }
.aic-time { font-size: 0.6rem; color: var(--cream-dim); }
.aic-alert { display: flex; align-items: center; gap: 1rem; padding: 1.2rem 1.2rem 0.5rem; }
.aic-badge { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.12em; padding: 0.25rem 0.6rem; background: rgba(248,113,113,0.2); color: var(--red); border: 1px solid rgba(248,113,113,0.3); border-radius: 2px; white-space: nowrap; }
.aic-alert h4 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 300; color: var(--cream); }
.aic-body { padding: 0.5rem 1.2rem 1rem; font-size: 0.82rem; color: var(--cream-dim); line-height: 1.65; }
.aic-footer { display: flex; justify-content: space-between; padding: 0.7rem 1.2rem; background: var(--bg4); border-top: 1px solid rgba(196,154,60,0.1); }
.aic-footer .mono { font-size: 0.6rem; color: var(--cream-dim); }
.aic-rec { padding: 0.8rem 1.2rem; border-top: 1px solid rgba(74,222,128,0.2); background: rgba(74,222,128,0.04); display: flex; gap: 0.6rem; align-items: flex-start; }
.aic-rec-label { color: var(--green); white-space: nowrap; font-size: 0.58rem; letter-spacing: 0.1em; padding-top: 0.1rem; }
.aic-rec span:last-child { font-size: 0.8rem; color: var(--cream-dim); line-height: 1.5; }

/* ════════════════════════
   ECOSYSTEM
   ════════════════════════ */
.section-ecosystem { padding: 100px 0; }
.eco-grid { display: flex; align-items: center; gap: 2rem; margin-top: 1rem; }
.eco-card { flex: 1; padding: 2.5rem; border: 1px solid rgba(196,154,60,0.15); background: var(--bg2); border-radius: var(--r-lg); }
.eco-card-dm { border-color: rgba(196,154,60,0.35); background: var(--bg3); }
.eco-plus { font-size: 3rem; color: rgba(196,154,60,0.3); flex-shrink: 0; }
.eco-tag { font-size: 0.62rem; color: var(--gold-dim); letter-spacing: 0.18em; margin-bottom: 0.5rem; }
.eco-name { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 300; color: var(--cream); margin-bottom: 0.3rem; }
.eco-sub { font-size: 0.8rem; color: var(--cream-dim); margin-bottom: 1.5rem; }
.eco-items { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.eco-items span { font-size: 0.85rem; color: var(--cream-dim); padding: 0.4rem 0; border-bottom: 1px solid rgba(196,154,60,0.08); display: flex; align-items: center; gap: 0.5rem; }
.eco-items span::before { content: "—"; color: rgba(196,154,60,0.4); }
.eco-badge { display: inline-block; font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.12em; padding: 0.4rem 0.8rem; border: 1px solid rgba(196,154,60,0.3); color: var(--cream-dim); border-radius: var(--r); }
.eco-badge-dm { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.eco-caption { text-align: center; margin-top: 3rem; font-size: 0.9rem; color: var(--cream-dim); max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.7; }

/* ════════════════════════
   CONTACT
   ════════════════════════ */
.section-contact { padding: 100px 0; position: relative; overflow: hidden; }
.contact-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(196,154,60,0.05) 0%, transparent 60%);
}
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; position: relative; z-index: 1; }
.contact-title { font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--cream); margin-bottom: 1rem; }
.contact-sub { font-size: 0.9rem; color: var(--cream-dim); line-height: 1.7; margin-bottom: 2rem; }
.contact-trust { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.ct-item { font-size: 0.68rem; color: var(--green); letter-spacing: 0.08em; }
.contact-info { display: flex; flex-direction: column; gap: 0.4rem; }
.ci-link { font-size: 0.75rem; color: var(--gold-dim); letter-spacing: 0.1em; transition: color 0.25s; }
.ci-link:hover { color: var(--gold); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.14em; color: var(--gold-dim); }
.form-input {
  background: var(--bg2); border: 1px solid rgba(196,154,60,0.2);
  color: var(--cream); padding: 0.75rem 1rem;
  font-family: var(--font-sans); font-size: 0.88rem;
  border-radius: var(--r); outline: none;
  transition: border-color var(--transition); width: 100%;
}
.form-input::placeholder { color: var(--cream-dim); opacity: 0.5; }
.form-input:focus { border-color: var(--gold); }
.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 80px; }
.form-note { font-size: 0.6rem; color: var(--cream-dim); opacity: 0.6; text-align: center; margin-top: 0.4rem; }

/* ════════════════════════
   FOOTER
   ════════════════════════ */
.footer { padding: 4rem 0 2rem; border-top: 1px solid rgba(196,154,60,0.15); background: var(--bg); }
.footer-top { display: flex; justify-content: space-between; gap: 3rem; margin-bottom: 3rem; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: flex-start; gap: 1rem; }
.footer-sr { width: 60px; height: auto; opacity: 0.8; }
.footer-name { display: block; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.18em; color: var(--cream); margin-bottom: 0.25rem; }
.footer-tagline { display: block; font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 0.2rem; }
.footer-sub { display: block; font-size: 0.62rem; color: var(--cream-dim); }
.footer-links { display: flex; gap: 3rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.fc-label { font-size: 0.6rem; letter-spacing: 0.18em; color: var(--gold); text-transform: uppercase; margin-bottom: 0.3rem; }
.footer-col a { font-size: 0.82rem; color: var(--cream-dim); transition: color 0.25s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding-top: 2rem; border-top: 1px solid rgba(196,154,60,0.1);
  font-size: 0.62rem; color: var(--cream-dim); opacity: 0.6;
}

/* ════════════════════════
   RESPONSIVE
   ════════════════════════ */
@media (max-width: 1024px) {
  .what-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .what-right  { display: none; }
  .ai-grid     { grid-template-columns: 1fr; gap: 3rem; }
  .eco-grid    { flex-direction: column; }
  .eco-plus    { align-self: center; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .questions-grid { grid-template-columns: 1fr; }
  .q-arrow     { display: none; }
  .what-stats  { grid-template-columns: repeat(3, 1fr); }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps   { flex-direction: column; }
  .how-arrow   { display: none; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .section-what, .section-how, .section-modules, .section-questions,
  .section-sectors, .section-ai, .section-ecosystem, .section-contact { padding: 60px 0; }
  .hero { padding: 100px 1.25rem 60px; }
  .hero-network { display: none; }
  .nav-links {
    display: none; flex-direction: column;
    position: fixed; inset: 60px 0 0 0;
    background: rgba(14,12,10,0.97);
    padding: 2rem; gap: 1.5rem; align-items: flex-start;
  }
  .nav-links.is-open { display: flex; }
  .nav-toggle { display: flex; }
  .what-stats  { grid-template-columns: repeat(2, 1fr); }
  .modules-grid { grid-template-columns: 1fr; }
  .sectors-strip { flex-direction: column; }
  .sector-sep { display: none; }
  .footer-top  { flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
