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

:root {
  --bg: #080808;
  --bg2: #0f0f0f;
  --bg3: #161616;
  --border: rgba(255,255,255,0.07);
  --green-accent: #7CFC00;
  --accent-dim: rgba(124,252,0,0.12);
  --accent-glow: rgba(124,252,0,0.25);
  --text: #f0ede8;
  --muted: #6b6762;
  --muted2: #888;
  --red: #e05252;
  --green: #52c97e;
}

html { 
  scroll-behavior: smooth; 
  overflow-x: hidden;
  width: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

/* NOISE TEXTURE */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' 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");
  pointer-events: none;
  z-index: 9999;
  opacity: .4;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 2rem;
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text);
  display: flex; align-items: center; gap: 8px;
}
.nav-logo span {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--green-accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.5; transform:scale(.7); }
}
.nav-links {
  display: flex; align-items: center; gap: 1.5rem;
  list-style: none;
}
.nav-links a {
  color: var(--muted2);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 500;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .02em;
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--green-accent);
  color: #000 !important;
  font-weight: 500 !important;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: .82rem !important;
  transition: opacity .2s !important;
}
.nav-cta:hover { opacity: .85; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 3rem;
  position: relative;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
}
.hero-glow {
  position: absolute;
  width: 600px; height: 400px;
  top: 20%; left: 50%; transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(124,252,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 5rem;
  align-items: center;
  min-height: 100vh;
  padding: 6rem 0;
}
.hero-left {
  display: flex; flex-direction: column;
  gap: 0;
}
.hero-right {
  display: flex; flex-direction: column; gap: 1rem;
  animation: fadeUp .7s ease .35s both;
}
.browser-frame {
  border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
  background: var(--bg2);
}
.browser-bar {
  background: var(--bg3); border-bottom: 1px solid var(--border);
  padding: 8px 12px;
  display: flex; align-items: center; gap: 10px;
}
.browser-dots { display: flex; gap: 5px; }
.browser-dot { width: 9px; height: 9px; border-radius: 50%; }
.browser-dot:nth-child(1) { background: #ff5f57; }
.browser-dot:nth-child(2) { background: #febc2e; }
.browser-dot:nth-child(3) { background: #28c840; }
.browser-url {
  flex: 1; background: var(--bg); border: 1px solid var(--border);
  border-radius: 4px; padding: 3px 10px;
  font-family: 'JetBrains Mono', monospace; font-size: .65rem;
  color: var(--muted); display: flex; align-items: center; gap: 6px;
}
.browser-url::before { content: '🔒'; font-size: .6rem; }
.browser-content { padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.bc-nav {
  height: 18px; background: var(--bg3); border-radius: 3px;
  display: flex; align-items: center; padding: 0 8px; gap: 8px;
}
.bc-nav-dot { width: 20px; height: 3px; border-radius: 2px; background: var(--green-accent); opacity: .6; }
.bc-nav-dot:nth-child(n+2) { background: rgba(255,255,255,.1); opacity: 1; width: 28px; }
.bc-hero-area { display: grid; grid-template-columns: 1.6fr 1fr; gap: 8px; }
.bc-main {
  background: var(--bg3); border-radius: 4px; padding: 10px;
  display: flex; flex-direction: column; gap: 5px;
}
.bc-headline { height: 8px; background: var(--text); border-radius: 2px; opacity: .7; width: 80%; }
.bc-headline2 { height: 8px; background: var(--text); border-radius: 2px; opacity: .35; width: 55%; }
.bc-body-lines { display: flex; flex-direction: column; gap: 3px; margin-top: 4px; }
.bc-line { height: 4px; border-radius: 2px; background: rgba(255,255,255,.12); }
.bc-line:nth-child(2) { width: 88%; }
.bc-line:nth-child(3) { width: 72%; }
.bc-btn { height: 16px; width: 60px; border-radius: 3px; background: var(--green-accent); margin-top: 6px; opacity: .85; }
.bc-sidebar { display: flex; flex-direction: column; gap: 6px; }
.bc-widget { background: var(--bg3); border-radius: 4px; flex: 1; padding: 6px 8px; }
.bc-widget-label { height: 3px; width: 40%; background: rgba(255,255,255,.15); border-radius: 2px; margin-bottom: 5px; }
.bc-widget-val { height: 10px; width: 55%; background: var(--green-accent); border-radius: 2px; opacity: .7; }
.lh-card {
  border: 1px solid var(--border); border-radius: 10px;
  background: var(--bg2); padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 1rem;
}
.lh-scores { display: flex; gap: .75rem; }
.lh-score { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.lh-circle {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: .8rem;
}
.lh-circle.perfect {
  background: rgba(124,252,0,0.12); border: 2px solid rgba(124,252,0,0.5);
  color: var(--green-accent);
}
.lh-circle.good {
  background: rgba(124,252,0,0.06); border: 2px solid rgba(124,252,0,0.2);
  color: rgba(124,252,0,0.65);
}
.lh-label {
  font-size: .58rem; color: var(--muted); text-transform: uppercase;
  letter-spacing: .06em; font-family: 'JetBrains Mono', monospace; text-align: center;
}
.lh-meta { flex: 1; border-left: 1px solid var(--border); padding-left: 1rem; }
.lh-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: .9rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 2px;
}
.lh-url { font-family: 'JetBrains Mono', monospace; font-size: .65rem; color: var(--green-accent); opacity: .7; }
.hero-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.hero-stat-box {
  border: 1px solid var(--border); border-radius: 8px;
  background: var(--bg2); padding: .75rem; text-align: center;
}
.hero-stat-box strong {
  display: block; font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem; font-weight: 900; color: var(--green-accent);
  line-height: 1; margin-bottom: 3px;
}
.hero-stat-box span {
  font-size: .62rem; color: var(--muted); text-transform: uppercase;
  letter-spacing: .08em; font-family: 'JetBrains Mono', monospace;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(124,252,0,0.25);
  background: rgba(124,252,0,0.06);
  padding: 5px 14px;
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: .7rem;
  font-weight: 700;
  color: var(--green-accent);
  margin-bottom: 1.75rem;
  animation: fadeUp .6s ease both;
  letter-spacing: .04em;
  text-transform: uppercase;
  align-self: flex-start;
}
.hero-badge::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--green-accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-badge-container {
  display: flex; gap: 0.5rem; margin-bottom: 1.75rem; flex-wrap: wrap;
}
.hero-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: .9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  animation: fadeUp .6s ease .1s both;
}
.hero-title em {
  font-style: italic;
  color: var(--green-accent);
}
.hero-title .line2 {
  display: block;
  -webkit-text-stroke: 2px rgba(240,237,232,0.3);
  color: rgba(0,0,0,0);
  background-color: transparent;
}
.hero-sub {
  font-size: 1rem;
  font-weight: 400;
  color: #8a8580;
  max-width: 420px;
  line-height: 1.8;
  margin-bottom: 2rem;
  animation: fadeUp .6s ease .2s both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: .75rem; align-items: center;
  animation: fadeUp .6s ease .3s both;
  margin-bottom: 2.5rem;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-accent);
  color: #000;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 5px;
  text-decoration: none;
  transition: transform .2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 20px rgba(124,252,0,0.2); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--muted2);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 11px 22px;
  border: 1px solid var(--border);
  border-radius: 5px;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,.2); color: var(--text); }

.hero-meta {
  display: flex; gap: 0; flex-wrap: nowrap;
  animation: fadeUp .6s ease .4s both;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  align-self: flex-start;
}
.hero-meta-item {
  display: flex; flex-direction: column; gap: 3px;
  padding: .9rem 1.4rem;
  border-right: 1px solid var(--border);
}
.hero-meta-item:last-child { border-right: none; }
.hero-meta-item strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--green-accent);
  letter-spacing: -0.01em;
  line-height: 1;
}
.hero-meta-item span {
  font-size: .62rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-family: 'JetBrains Mono', monospace;
}
.hero-divider { display: none; }

/* ─── TICKER ─── */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}
.ticker::before, .ticker::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 80px;
  z-index: 1;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--bg2), transparent); }
.ticker::after { right: 0; background: linear-gradient(-90deg, var(--bg2), transparent); }
.ticker-track {
  display: flex; gap: 2rem;
  animation: ticker 25s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: .75rem;
  color: var(--muted);
  white-space: nowrap;
}
.ticker-item .dot { color: var(--green-accent); }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── SECTION BASE ─── */
section {
  padding: 4rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: .75rem;
  font-weight: 700;
  color: var(--green-accent);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--green-accent);
  border-radius: 2px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: .95;
  margin-bottom: 1.25rem;
}
.section-desc {
  color: #a09b95;
  max-width: 500px;
  line-height: 1.75;
  font-size: 1rem;
  font-weight: 400;
}

/* ─── COMPARE TABLE ─── */
.compare-container {
  margin-top: 4rem;
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.6);
}
.compare-header {
  padding: 1.25rem 2rem;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.compare-tab {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.3s ease;
}
.compare-tab.active {
  background: var(--accent-dim);
  color: var(--green-accent);
  box-shadow: 0 0 20px rgba(124,252,0,0.1);
}
.compare-table-wrapper {
  overflow-x: auto;
  position: relative;
}
.compare-table-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(124,252,0,0.02) 50%, transparent 50%);
  background-size: 100% 4px;
  pointer-events: none;
  opacity: 0.3;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.compare-table th {
  text-align: left;
  padding: 1.5rem 2rem;
  background: rgba(255,255,255,0.01);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.compare-table th.highlight {
  color: var(--green-accent);
  background: rgba(124,252,0,0.02);
}
.compare-table td {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  font-size: 0.95rem;
  color: #a09b95;
  transition: all 0.2s ease;
}
.compare-table tbody tr:hover td {
  background: rgba(255,255,255,0.02);
  color: #fff;
}
.compare-table td:first-child {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: var(--muted2);
  width: 25%;
}
.compare-table td.highlight {
  color: #fff;
  font-weight: 600;
  background: rgba(124,252,0,0.01);
}
.compare-footer {
  padding: 1rem 2rem;
  background: rgba(0,0,0,0.2);
  border-top: 1px solid var(--border);
}
.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--muted2);
  letter-spacing: 0.05em;
}
.status-dot {
  width: 6px;
  height: 6px;
  background: var(--green-accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green-accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { opacity: 0.4; }
  50% { opacity: 1; }
  100% { opacity: 0.4; }
}

/* ─── EDITOR SHOWCASE ─── */
.editor-showcase {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}
.editor-img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 540px;
  object-position: top;
}
.editor-features {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.editor-feat-item {
  padding-left: 1.5rem;
  border-left: 2px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
}
.editor-feat-item:hover {
  border-left-color: var(--green-accent);
  transform: translateX(8px);
}
.editor-feat-item strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.editor-feat-item span {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 992px) {
  .editor-showcase { grid-template-columns: 1fr; gap: 3rem; }
}





/* ─── FEATURES GRID ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 3rem;
}
.feature-card {
  background: var(--bg);
  padding: 2rem;
  transition: background .2s;
  position: relative;
  overflow: hidden;
}
.feature-card:hover { background: var(--bg3); }
.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.feature-card:hover::after { opacity: 1; }
.feature-icon {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  display: block;
  filter: drop-shadow(0 0 10px rgba(124,252,0,0.15));
}
.feature-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: .6rem;
}
.feature-desc {
  font-size: .95rem;
  font-weight: 400;
  color: #a09b95;
  line-height: 1.7;
}
.feature-tag {
  display: inline-block;
  margin-top: .75rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: .65rem;
  color: var(--green-accent);
  border: 1px solid rgba(124,252,0,0.3);
  padding: 2px 8px;
  border-radius: 100px;
  background: var(--accent-dim);
}

/* ─── BRIDGE SECTION ─── */
.bridge-section {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.bridge-section::before {
  display: none;
}
.bridge-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.bridge-step {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(0,0,0,.3);
  transition: border-color .2s;
}
.bridge-step:hover { border-color: rgba(124,252,0,0.3); }
.bridge-step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: .7rem;
  color: var(--green-accent);
  background: var(--accent-dim);
  border: 1px solid rgba(124,252,0,0.2);
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}
.bridge-step-text strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 3px;
  color: var(--text);
}
.bridge-step-text span {
  font-size: .85rem;
  color: #7a7571;
  line-height: 1.5;
}

/* ─── QUICKSTART ─── */
.quickstart {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 3rem;
}
.qs-header {
  padding: .8rem 1.25rem;
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.qs-dots { display: flex; gap: 6px; }
.qs-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.qs-dot:nth-child(1) { background: #ff5f57; }
.qs-dot:nth-child(2) { background: #febc2e; }
.qs-dot:nth-child(3) { background: #28c840; }
.qs-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: .7rem;
  color: var(--muted);
}
.qs-body {
  padding: 1.75rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: .86rem;
  line-height: 2.1;
}
.qs-comment { color: var(--muted); }
.qs-cmd { color: var(--text); }
.qs-highlight { color: var(--green-accent); }
.qs-step { color: var(--green); }

/* ─── SECURITY ─── */
.sec-pipeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3.5rem;
  margin-bottom: 5rem;
  padding: 0 1rem;
}
.sec-node {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 1rem 0.75rem;
  border-radius: 10px;
  flex: 1;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.sec-node:hover {
  border-color: var(--green-accent);
  color: var(--text);
  background: var(--bg3);
  box-shadow: 0 0 20px rgba(124,252,0,0.05);
  transform: translateY(-2px);
}
.sec-arrow {
  color: var(--border);
  font-size: 1rem;
  font-weight: 900;
  opacity: 0.5;
}

.sec-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem 4rem;
  margin-top: 2rem;
}
.sec-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: transform 0.3s ease;
}
.sec-item:hover {
  transform: translateX(5px);
}
.sec-item-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
  filter: drop-shadow(0 0 10px rgba(124,252,0,0.15));
}
.sec-item strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.sec-item span {
  font-size: 0.95rem;
  color: #a09b95;
  line-height: 1.65;
  display: block;
}

/* ─── THEMES ─── */
.themes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.theme-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg2);
  transition: transform 0.3s;
}
.theme-card:hover { transform: translateY(-5px); }
.theme-preview-img {
  aspect-ratio: 16/10;
  background: var(--bg3);
  overflow: hidden;
  position: relative;
}
.theme-preview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.theme-card:hover .theme-preview-img img {
  opacity: 1;
}
.theme-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--green-accent);
  color: #000;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  z-index: 2;
}
.theme-badge.secondary {
  background: var(--text);
}
.theme-info {
  padding: 1.25rem;
  border-top: 1px solid var(--border);
}
.theme-info h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.theme-info p {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ─── MISSION ─── */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}
.mission-item {
  display: flex;
  gap: 1.25rem;
}
.mission-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.mission-content strong {
  display: block;
  font-size: 1.1rem;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 0.5rem;
}
.mission-content p {
  font-size: 0.95rem;
  color: #999;
  line-height: 1.6;
}

/* ─── VIDEO ─── */
.video-container {
  max-width: 960px;
  margin: 4rem auto 0;
}
.video-card {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  aspect-ratio: 16/9;
  text-decoration: none;
  transition: transform .5s cubic-bezier(0.2, 0.8, 0.2, 1), border-color .3s;
  box-shadow: 0 30px 60px -12px rgba(0,0,0,0.5);
}
.video-card:hover {
  transform: scale(1.02);
  border-color: var(--green-accent);
}
.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: opacity .5s ease, transform .5s ease;
}
.video-card:hover .video-thumb {
  opacity: 0.8;
  transform: scale(1.03);
}
.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 100%);
  z-index: 2;
}
.play-btn {
  width: 84px;
  height: 84px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  box-shadow: 0 0 0 0 rgba(124,252,0,0);
  transition: transform .4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .3s, background .3s;
}
.video-card:hover .play-btn {
  transform: scale(1.15);
  background: var(--green-accent);
  box-shadow: 0 0 40px rgba(124,252,0,0.4);
}
.video-overlay span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 1.2rem;
  color: #fff;
  text-shadow: 0 4px 12px rgba(0,0,0,0.6);
  transition: color .3s, transform .3s;
}
.video-card:hover .video-overlay span {
  color: var(--green-accent);
  transform: translateY(4px);
}

/* ─── CTA ─── */
.cta-section {
  text-align: center;
  padding: 7rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.cta-section .section-label { justify-content: center; }
.cta-section .section-label::before { display: none; }
.cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: .95;
  margin-bottom: 1.25rem;
}
.cta-title em {
  font-style: normal;
  color: var(--green-accent);
}
.cta-desc {
  color: #a09b95;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 440px;
  margin-left: auto; margin-right: auto;
}
.cta-actions {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem;
}
.cta-note {
  margin-top: 1.5rem;
  font-size: .78rem;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
}

/* ─── FOOTER ─── */
footer {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding: 3rem 3rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.footer-links a {
  color: var(--muted2);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 500;
  transition: color .2s;
}
.footer-links a:hover { color: var(--text); }
.footer-right {
  font-size: .7rem;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  opacity: 0.8;
}

/* ─── DIVIDER ─── */
.full-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from { opacity:0; transform: translateY(20px); }
  to { opacity:1; transform: translateY(0); }
}

/* ─── RESPONSIVE ─── */
.hero-link {
  color: #999;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color .3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-link:hover {
  color: var(--green-accent);
}

@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; gap: 4rem; }
  .hero-left { text-align: center; align-items: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-meta { align-self: center; }
  .hero-badge-container { justify-content: center; }
  .themes-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .mission-grid { grid-template-columns: 1fr; gap: 2rem; }
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .hero { padding: 5.5rem 1.25rem 2rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; padding: 0.5rem 0 2rem; }
  .hero-meta { 
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 2.5rem;
    width: 100%;
    max-width: 500px;
  }
  .hero-meta-item { 
    text-align: center; 
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .hero-meta-item:nth-child(2n) { border-right: none; }
  .hero-meta-item:nth-child(n+3) { border-bottom: none; }
  section { padding: 4rem 1.25rem; max-width: 100%; }
  .hero-right { 
    display: flex; 
    margin-top: 1rem;
  }
  .hero-stat-row { 
    grid-template-columns: 1fr; 
    gap: 1rem; 
  }
  .lh-card {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .lh-meta {
    border-left: none;
    border-top: 1px solid var(--border);
    padding: 1rem 0 0;
  }
  .bridge-section { grid-template-columns: 1fr; padding: 2rem; }
  .bridge-section::before { display: none; }
  .themes-grid { grid-template-columns: 1fr; }
  .sec-pipeline { 
    flex-direction: column; 
    align-items: center; 
    gap: 0.5rem; 
  }
  .sec-node { 
    width: 100%; 
    max-width: 280px; 
    text-align: center; 
    justify-content: center;
  }
  .sec-arrow {
    transform: rotate(90deg);
    margin: 0.25rem 0;
  }
  footer { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

/* ─── ENGAGEMENT TOAST ─── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 380px;
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  z-index: 10001;
  max-width: calc(100vw - 2rem);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  transform: translateY(150%) scale(0.9);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  pointer-events: none;
}
.toast.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.toast-x-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--muted2);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.toast-x-close:hover { color: var(--text); }
.toast-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast-title span {
  width: 8px;
  height: 8px;
  background: var(--green-accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green-accent);
}
.toast-desc {
  font-size: 0.9rem;
  color: #a09b95;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.toast-actions {
  display: flex;
  gap: 0.75rem;
}
.toast-btn {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.toast-btn-primary {
  background: var(--green-accent);
  color: #000;
}
.toast-btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
}
.toast-btn-secondary {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border: 1px solid var(--border);
}
.toast-btn-secondary:hover {
  background: rgba(255,255,255,0.1);
}

@media (max-width: 480px) {
  .toast {
    width: auto;
    left: 1rem;
    right: 1rem;
    bottom: 1.5rem;
    padding: 1.25rem;
  }
}

/* ─── LIGHTBOX (IMAGE ZOOM) ─── */
#lightbox {
  position: fixed; z-index: 20000; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.9); display: none; align-items: center; justify-content: center;
  cursor: zoom-out; backdrop-filter: blur(10px);
}
#lightbox.active { display: flex; }
#lightbox img { max-width: 90%; max-height: 85%; border-radius: 8px; box-shadow: 0 0 50px rgba(0,0,0,0.5); }
.lightbox-close {
  position: absolute; top: 2rem; right: 2rem; font-size: 2.5rem; color: #fff; cursor: pointer;
}
