/* ===========================================
   IDEOLOGOS Landing Page v2
   Matrix cyberpunk + glass frost + CRT magic
   =========================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #050505;
  --green: #00ff41;
  --green-50: rgba(0, 255, 65, 0.5);
  --green-30: rgba(0, 255, 65, 0.3);
  --green-15: rgba(0, 255, 65, 0.15);
  --green-08: rgba(0, 255, 65, 0.08);
  --green-04: rgba(0, 255, 65, 0.04);
  --cyan: #00ffd2;
  --cyan-30: rgba(0, 255, 210, 0.3);
  --text: #d0d0d0;
  --text-bright: #f0f0f0;
  --text-dim: #555;
  --text-mid: #888;
  --mono: 'JetBrains Mono', monospace;
  --sans: 'Inter', system-ui, sans-serif;
  --serif: 'Spectral', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ===========================================
   GRAIN OVERLAY
   =========================================== */
.grain::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  mix-blend-mode: overlay;
}

/* ===========================================
   PHOSPHOR GLOW (headings)
   =========================================== */
.phosphor-glow {
  text-shadow:
    0 0 15px rgba(0, 255, 65, 0.8),
    0 0 30px rgba(0, 255, 65, 0.4),
    2px 2px 0 var(--cyan-30);
  /* phosphor-pulse removed — text-shadow animation forces repaint every frame */
}

.phosphor-glow-subtle {
  text-shadow:
    0 0 10px rgba(0, 255, 65, 0.5),
    0 0 20px rgba(0, 255, 65, 0.2);
  /* phosphor-subtle removed — text-shadow animation forces repaint every frame */
}

@keyframes phosphor-pulse {
  0%, 100% {
    text-shadow: 0 0 15px rgba(0,255,65,0.8), 0 0 30px rgba(0,255,65,0.4), 2px 2px 0 rgba(0,255,210,0.3);
  }
  50% {
    text-shadow: 0 0 20px rgba(0,255,65,1), 0 0 40px rgba(0,255,65,0.5), 2px 2px 0 rgba(0,255,210,0.4);
    filter: brightness(1.05);
  }
}

@keyframes phosphor-subtle {
  0%, 100% { text-shadow: 0 0 10px rgba(0,255,65,0.5), 0 0 20px rgba(0,255,65,0.2); }
  50% { text-shadow: 0 0 15px rgba(0,255,65,0.7), 0 0 30px rgba(0,255,65,0.3); }
}

/* ===========================================
   GRADIENT TEXT
   =========================================== */
.gradient-text {
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--green));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: grad-shift 6s linear infinite;
}

@keyframes grad-shift {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ===========================================
   SCROLL REVEAL
   =========================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===========================================
   GLASS CARD
   =========================================== */
.glass-card {
  background: var(--green-04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--green-08);
  box-shadow: inset 0 1px 0 0 rgba(0,255,65,0.04), 0 4px 24px -4px rgba(0,0,0,0.4);
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.glass-card:hover {
  border-color: var(--green-15);
  background: var(--green-08);
}

/* ===========================================
   CYBER CARD (clip-path + bracket borders)
   =========================================== */
.cyber-card {
  background-color: var(--green-04);
  position: relative;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  background-image:
    linear-gradient(to right, var(--green-30) 0%, var(--green-30) 50px),
    linear-gradient(to bottom, var(--green-30) 0%, var(--green-30) 50px),
    linear-gradient(to left, var(--green-30) 0%, var(--green-30) 50px),
    linear-gradient(to top, var(--green-30) 0%, var(--green-30) 50px);
  background-size: 50px 2px, 2px 50px, 50px 2px, 2px 50px;
  background-position: 0 0, 0 0, 100% 100%, 100% 100%;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
}
.cyber-card:hover {
  background-image:
    linear-gradient(to right, var(--green-50) 0%, var(--green-50) 50px),
    linear-gradient(to bottom, var(--green-50) 0%, var(--green-50) 50px),
    linear-gradient(to left, var(--green-50) 0%, var(--green-50) 50px),
    linear-gradient(to top, var(--green-50) 0%, var(--green-50) 50px);
  background-size: 50px 2px, 2px 50px, 50px 2px, 2px 50px;
  background-position: 0 0, 0 0, 100% 100%, 100% 100%;
  background-repeat: no-repeat;
  background-color: var(--green-04);
  box-shadow: inset 0 0 15px rgba(0,255,65,0.06), 0 0 25px rgba(0,255,65,0.1);
}

/* Spotlight on cyber cards */
.spotlight-card { position: relative; overflow: hidden; }
.spotlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(300px circle at var(--mx, 50%) var(--my, 50%), rgba(0,255,65,0.07), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 1;
}
.spotlight-card:hover::before { opacity: 1; }

/* ===========================================
   PULSE GLOW
   =========================================== */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 15px 2px rgba(0,255,65,0.15), inset 0 0 12px rgba(0,255,65,0.1); }
  50% { box-shadow: 0 0 30px 6px rgba(0,255,65,0.25), inset 0 0 20px rgba(0,255,65,0.15); }
}
.pulse-glow { animation: pulse-glow 3s ease-in-out infinite; }

/* ===========================================
   NAV
   =========================================== */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: center;
  padding: 16px 32px;
  transition: all 0.3s;
}
.nav-links {
  position: absolute; right: 32px; top: 50%; transform: translateY(-50%);
}
#nav.scrolled {
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--green-08);
}
.nav-logo {
  font-family: var(--mono); font-weight: 700; font-size: 14px;
  letter-spacing: 0.15em; color: var(--green); text-decoration: none;
  text-shadow: 0 0 10px rgba(0,255,65,0.3);
}
.nav-links { display: flex; align-items: center; gap: 24px; font-family: var(--mono); font-size: 13px; }

.nav-links a { color: var(--text-mid); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--text-bright); }
.nav-cta {
  color: var(--green) !important;
  border: 1px solid var(--green-30);
  padding: 8px 18px;
  background: rgba(0, 255, 65, 0.08);
  transition: all 0.2s;
}
.nav-cta:hover { background: rgba(0,255,65,0.15); border-color: var(--green-50); }

/* ===========================================
   HERO
   =========================================== */
#hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  padding: 120px 32px 80px;
  text-align: center;
  background: var(--bg);
  /* Corner brackets — true corners */
  background-image:
    linear-gradient(to right, var(--green) 0%, var(--green) 100px),
    linear-gradient(to bottom, var(--green) 0%, var(--green) 100px),
    linear-gradient(to left, var(--green) 0%, var(--green) 100px),
    linear-gradient(to top, var(--green) 0%, var(--green) 100px);
  background-size: 100px 2px, 2px 100px, 100px 2px, 2px 100px;
  background-position: 20px 20px, 20px 20px, calc(100% - 20px) calc(100% - 20px), calc(100% - 20px) calc(100% - 20px);
  background-repeat: no-repeat;
  overflow: hidden;
}

/* CRT scanlines + radial green glow */
.hero-scanlines {
  position: absolute; inset: 0;
  background:
    /* Scanlines */
    repeating-linear-gradient(
      0deg,
      rgba(0, 255, 65, 0.06) 0px,
      transparent 1px,
      transparent 2px,
      rgba(0, 255, 65, 0.06) 3px
    ),
    /* Center CRT glow */
    radial-gradient(
      ellipse at center,
      rgba(0, 255, 65, 0.1) 0%,
      rgba(0, 255, 65, 0.04) 50%,
      transparent 100%
    );
  pointer-events: none;
  z-index: 3;
  /* animation removed — crt-flicker was imperceptible and expensive */
}

/* Perlin-style noise layer */
.hero-vignette {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0,255,65,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0,255,65,0.09) 0%, transparent 50%),
    radial-gradient(circle at 40% 70%, rgba(0,255,65,0.14) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(0,255,65,0.08) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(0,255,65,0.11) 0%, transparent 50%),
    radial-gradient(circle at 90% 85%, rgba(0,255,65,0.13) 0%, transparent 50%);
  background-size: 800px 800px, 600px 600px, 700px 700px, 500px 500px, 650px 650px, 550px 550px;
  pointer-events: none;
  z-index: 2;
  opacity: 0.7;
  mix-blend-mode: screen;
  filter: contrast(1.5) brightness(0.8);
  will-change: background-position;
  animation: perlin-drift 25s infinite ease-in-out alternate;
}

/* Dark vignette — hero section only (not fixed, doesn't bleed to footer) */
#hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 55% at 50% 45%, transparent 20%, rgba(0,0,0,0.65) 100%);
  pointer-events: none;
  z-index: 1;
}

@keyframes crt-flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.97; }
  52% { opacity: 1; }
  80% { opacity: 0.98; }
  82% { opacity: 1; }
}

@keyframes perlin-drift {
  0% { background-position: 0% 0%, 100% 0%, 20% 100%, 80% 20%, 40% 60%, 60% 80%; }
  50% { background-position: 40% 60%, 60% 40%, 50% 70%, 50% 50%, 70% 30%, 30% 50%; }
  100% { background-position: 0% 100%, 100% 100%, 20% 0%, 80% 0%, 40% 40%, 60% 20%; }
}

/* Ambient glow orbs */
.hero-glow {
  position: absolute;
  top: 25%; left: 45%;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,255,65,0.07), transparent 55%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  animation: glow-drift 12s ease-in-out infinite alternate;
}
.hero-glow-2 {
  position: absolute;
  bottom: 20%; right: 30%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,255,210,0.04), transparent 55%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: glow-drift 15s ease-in-out infinite alternate-reverse;
}

@keyframes glow-drift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(30px, -20px); }
}

/* Hero sequenced fade-in (everything starts hidden, fades in order) */
.hero-fade {
  opacity: 0;
  transform: translateY(12px);
  animation: hero-fade-in 0.7s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes hero-fade-in {
  to { opacity: 1; transform: translateY(0); }
}

.hero-content { max-width: 720px; position: relative; z-index: 4; }

.hero-kicker {
  font-family: var(--mono); font-size: 13px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--green-50); margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 600; line-height: 1.15;
  color: var(--text-bright);
  margin-bottom: 28px;
}

.word {
  display: inline-block; margin-right: 0.18em;
  opacity: 0; transform: translateY(16px);
  animation: word-in 0.6s ease forwards;
}
@keyframes word-in { to { opacity: 1; transform: translateY(0); } }

.hero-sub {
  font-size: 18px; line-height: 1.75; color: var(--text);
  max-width: 560px; margin: 0 auto 36px;
}
.hero-sub em { color: var(--green); font-family: var(--serif); }

.hero-cta {
  display: flex; gap: 16px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 20px;
}

.hero-note {
  font-family: var(--mono); font-size: 12px; color: var(--text-dim);
}

/* ===========================================
   BUTTONS
   =========================================== */
.btn-primary {
  display: inline-block; font-family: var(--mono);
  font-size: 14px; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--bg); background: var(--green);
  padding: 14px 32px; border: none; cursor: pointer; text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: all 0.2s;
}
.btn-primary:hover { background: #33ff66; transform: translateY(-2px); text-decoration: none; }

.btn-ghost {
  display: inline-block; font-family: var(--mono); font-size: 14px;
  letter-spacing: 0.05em; color: var(--text);
  padding: 14px 24px; border: 1px solid rgba(255,255,255,0.2);
  text-decoration: none; transition: all 0.2s;
}
.btn-ghost:hover { color: var(--text-bright); border-color: rgba(255,255,255,0.4); text-decoration: none; }

/* ===========================================
   SECTIONS
   =========================================== */
.section {
  padding: 120px 32px;
  position: relative;
}

/* Glowing section divider */
.section::after {
  content: '';
  position: absolute; bottom: 0; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,255,210,0.4) 30%, rgba(0,255,65,0.6) 50%, rgba(0,255,210,0.4) 70%, transparent);
  box-shadow: 0 0 12px rgba(0,255,65,0.3);
}

/* Section with ambient glow */
.section-glow::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(0,255,65,0.015) 0%, transparent 30%, transparent 70%, rgba(0,255,65,0.015) 100%);
  pointer-events: none;
}

.section-content { max-width: 960px; margin: 0 auto; }

.section-title {
  font-family: var(--serif);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 600; color: var(--text-bright);
  line-height: 1.3; margin-bottom: 16px;
  text-align: center;
}

.section-sub {
  font-size: 16px; color: var(--text-mid);
  margin-bottom: 48px; text-align: center;
}

/* ===========================================
   INSIGHT SECTION
   =========================================== */
.insight-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: 48px; align-items: start; margin-top: 48px;
}
.insight-text p { margin-bottom: 20px; font-size: 16px; line-height: 1.75; }
.insight-highlight {
  color: var(--green); font-family: var(--serif);
  font-style: italic; font-size: 18px !important;
}
.insight-stats { display: flex; flex-direction: column; gap: 20px; }
.stat-num {
  display: block; font-family: var(--mono);
  font-size: 36px; font-weight: 700; color: var(--green);
  text-shadow: 0 0 15px rgba(0,255,65,0.4);
  line-height: 1; margin-bottom: 8px;
}
.stat-label { display: block; font-size: 14px; color: var(--text); margin-bottom: 8px; }
.stat-source { display: block; font-family: var(--mono); font-size: 11px; color: var(--text-dim); }
.insight-stats .cyber-card { padding: 24px; text-align: center; }

/* ===========================================
   FEATURES FLOW (vertical timeline)
   =========================================== */
.features-flow {
  max-width: 680px; margin: 60px auto 0;
  display: flex; flex-direction: column;
  position: relative; padding-left: 24px;
}

/* Connecting line */
.features-flow::before {
  content: '';
  position: absolute; left: 60px; top: 60px; bottom: 60px;
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, var(--green-30) 10%, var(--green-30) 90%, transparent 100%);
  box-shadow: 0 0 8px rgba(0,255,65,0.15);
}

.flow-item {
  display: flex; gap: 28px;
  padding: 20px 0;
  position: relative;
  transition: transform 0.3s ease;
}
.flow-item:hover { transform: translateX(8px); }
.flow-item:hover .flow-icon {
  border-color: var(--green);
  box-shadow: 0 0 20px rgba(0,255,65,0.3), inset 0 0 10px rgba(0,255,65,0.1);
  text-shadow: 0 0 15px rgba(0,255,65,0.8);
}

.flow-icon {
  width: 72px; height: 72px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  border: 2px solid var(--green-30);
  font-size: 24px; color: var(--green);
  position: relative; z-index: 2;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.flow-icon i {
  filter: drop-shadow(0 0 8px rgba(0,255,65,0.4));
  transition: all 0.3s;
}

.flow-item:hover .flow-icon i {
  filter: drop-shadow(0 0 15px rgba(0,255,65,0.7));
  transform: scale(1.1);
}

.flow-body { flex: 1; padding-top: 4px; }

.flow-num {
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  color: var(--green); letter-spacing: 0.15em;
  opacity: 0.6; display: block; margin-bottom: 4px;
}

.flow-body h3 {
  font-family: var(--mono); font-size: 18px; font-weight: 600;
  color: var(--text-bright); margin-bottom: 8px; letter-spacing: 0.02em;
}

.flow-body p {
  font-size: 15px; line-height: 1.7; color: var(--text-mid); max-width: 520px;
}

/* ===========================================
   PRODUCT / SCREENSHOTS
   =========================================== */
.browser-frame {
  margin-top: 48px;
  border-radius: 10px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 80px -20px rgba(0,0,0,0.7), 0 0 40px -10px rgba(0,255,65,0.08);
}
.browser-chrome {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
}
.browser-url {
  flex: 1; text-align: center; font-family: var(--mono);
  font-size: 11px; color: var(--text-dim);
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.04);
  border-radius: 6px; padding: 4px 12px; margin: 0 48px;
}
.browser-content { background: var(--bg); }
.browser-content img { width: 100%; display: block; }

.product-details {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 32px;
}
.product-detail { overflow: hidden; padding: 0; }
.product-detail img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.product-detail p {
  padding: 12px 16px; font-family: var(--mono);
  font-size: 12px; color: var(--text-dim);
}

/* ===========================================
   WHO SECTION
   =========================================== */
.who-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 40px;
}
.who-yes, .who-no { padding: 32px; }
.who-yes h3, .who-no h3 {
  font-family: var(--mono); font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px;
}
.who-yes h3 { color: var(--green); }
.who-no h3 { color: var(--text-dim); }
.who-yes ul, .who-no ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.who-yes li, .who-no li {
  font-size: 15px; line-height: 1.6; padding-left: 24px; position: relative;
}
.who-yes li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; background: var(--green); clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); }
.who-no li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; background: var(--text-dim); clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); opacity: 0.5; }

.who-tagline {
  text-align: center; font-family: var(--serif);
  font-style: italic; font-size: 18px; color: var(--text-mid); margin-top: 40px;
}

/* ===========================================
   PRICING
   =========================================== */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px; margin-top: 48px;
}
.pricing-card {
  padding: 24px 16px; text-align: center;
  display: flex; flex-direction: column; gap: 6px;
}
.pricing-card.featured {
  box-shadow: 0 0 30px -8px rgba(0,255,65,0.15);
}
.pricing-card.featured .pricing-name { color: var(--green); }
.pricing-name {
  font-family: var(--mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--text-dim);
}
.pricing-price {
  font-family: var(--mono); font-size: 28px; font-weight: 700; color: var(--text-bright);
}
.pricing-msgs { font-size: 14px; color: var(--text-mid); }
.pricing-note { font-size: 12px; color: var(--text-dim); font-style: italic; margin-top: 4px; }
.pricing-cta { text-align: center; margin-top: 48px; }

/* ===========================================
   FAQ
   =========================================== */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 40px; }
.faq-item { padding: 0; cursor: pointer; }
.faq-item summary {
  list-style: none; padding: 20px 24px;
  font-family: var(--mono); font-size: 14px; font-weight: 500;
  color: var(--text-bright);
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 20px; color: var(--green);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 24px 20px; }
.faq-answer p { font-size: 15px; line-height: 1.7; color: var(--text-mid); }

/* ===========================================
   FOOTER
   =========================================== */
footer {
  padding: 48px 32px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-content {
  max-width: 960px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo {
  font-family: var(--mono); font-weight: 700; font-size: 13px;
  letter-spacing: 0.15em; color: var(--green-50);
  text-shadow: 0 0 8px rgba(0,255,65,0.2);
}
.footer-tagline { font-size: 13px; color: var(--text-dim); }
.footer-links { display: flex; gap: 20px; font-size: 13px; }
.footer-links a { color: var(--text-dim); }
.footer-links a:hover { color: var(--text); }

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 768px) {
  .section { padding: 80px 20px; }
  #hero { padding: 100px 20px 60px; }
  #nav { padding: 12px 16px; }
  .nav-links { gap: 12px; font-size: 12px; }

  .insight-grid { grid-template-columns: 1fr; gap: 32px; }
  .insight-stats { flex-direction: row; }
  .insight-stats .cyber-card { flex: 1; }

  .features-flow { padding-left: 0; }
  .features-flow::before { left: 36px; }
  .flow-icon { width: 56px; height: 56px; font-size: 20px; }
  .flow-item { gap: 20px; }

  .product-details { grid-template-columns: 1fr; }

  .who-grid { grid-template-columns: 1fr; }

  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .browser-url { margin: 0 12px; }

  .footer-content { flex-direction: column; text-align: center; }

  .hero-cta { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost { width: 100%; max-width: 300px; text-align: center; }

  /* Lighter hero effects on mobile */
  .hero-scanlines { opacity: 0.5; }
  .hero-glow, .hero-glow-2 { display: none; }

  #hero {
    background-size: 50px 1px, 1px 50px, 50px 1px, 1px 50px;
    background-position: 10px 10px, 10px 10px, calc(100% - 10px) calc(100% - 10px), calc(100% - 10px) calc(100% - 10px);
  }

  #nav { justify-content: space-between; }
  .nav-links { position: static; transform: none; }
}

@media (max-width: 480px) {
  .insight-stats { flex-direction: column; }
  .pricing-grid { grid-template-columns: 1fr; }
  .stat-num { font-size: 28px; }
  .features-flow::before { display: none; }
}

/* ===========================================
   REDUCED MOTION
   =========================================== */
@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-fade { opacity: 1; transform: none; transition: none; animation: none; }
  .word { opacity: 1; transform: none; animation: none; }
  .gradient-text, .phosphor-glow, .phosphor-glow-subtle, .pulse-glow { animation: none; }
  .grain::before { display: none; }
  .hero-glow, .hero-glow-2 { animation: none; }
  .hero-scanlines, .hero-vignette { animation: none; }
}
