:root {
  --gold: #C9A84C;
  --gold-bright: #F0C55A;
  --gold-dim: #7A6128;
  --gold-pale: #2A2010;
  --green: #1DDB8B;
  --green-mid: #0F9E60;
  --green-dark: #065C38;
  --green-pale: #021F13;
  --bg: #070D0A;
  --bg2: #0C1710;
  --bg3: #101E15;
  --text: #D8EDE3;
  --text-dim: #7AAA8E;
  --border: rgba(29, 219, 139, 0.15);
  --border-gold: rgba(201, 168, 76, 0.25);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Exo 2', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Grid overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(29,219,139,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,219,139,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  background: rgba(7, 13, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: var(--green);
  text-decoration: none;
}

.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--green); }

.nav-badge {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 0.3rem 0.8rem;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8rem 3rem 5rem;
  text-align: center;
  z-index: 1;
  overflow: hidden;
}

/* Radial glow */
.hero::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(ellipse, rgba(29,219,139,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Corner accents */
.hero-corner {
  position: absolute;
  width: 80px; height: 80px;
  opacity: 0.4;
}

.hero-corner.tl { top: 6rem; left: 3rem; border-top: 1px solid var(--green); border-left: 1px solid var(--green); }
.hero-corner.tr { top: 6rem; right: 3rem; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.hero-corner.bl { bottom: 3rem; left: 3rem; border-bottom: 1px solid var(--green); border-left: 1px solid var(--green); }
.hero-corner.br { bottom: 3rem; right: 3rem; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); }

.hero-eyebrow {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--green-mid);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero h1 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero h1 .line1 { color: var(--text); }
.hero h1 .line2 { color: var(--green); }
.hero h1 .line3 { color: var(--gold); font-size: 0.6em; font-weight: 300; letter-spacing: 0.2em; }

.hero-sub {
  max-width: 640px;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.8;
  margin: 2rem auto 3rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.btn {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border: 1px solid;
  transition: all 0.25s;
  cursor: pointer;
  display: inline-block;
}

.btn-primary {
  background: var(--green-dark);
  border-color: var(--green);
  color: var(--green);
}

.btn-primary:hover {
  background: var(--green);
  color: var(--bg);
}

.btn-secondary {
  background: transparent;
  border-color: var(--border-gold);
  color: var(--gold-bright);
}

.btn-secondary:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold-bright);
}

/* ── SCROLLING TICKER ── */
.ticker-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 0;
}

.ticker {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.ticker span { color: var(--green); }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTIONS ── */
section {
  position: relative;
  z-index: 1;
  padding: 5rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-gold);
  max-width: 120px;
}

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.section-title em {
  font-style: normal;
  color: var(--green);
}

.section-body {
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 700px;
}

/* ── PILLAR GRID ── */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}

.pillar {
  background: var(--bg2);
  padding: 2rem 1.5rem;
  transition: background 0.2s;
}

.pillar:hover { background: var(--bg3); }

.pillar-num {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.65rem;
  color: var(--green-mid);
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
}

.pillar-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.pillar-body {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ── PROTOTYPE CARD ── */
.proto-wrap {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
}

.proto-wrap::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 300px; height: 300px;
  background: radial-gradient(ellipse at top right, rgba(201,168,76,0.08), transparent 70%);
  pointer-events: none;
}

.proto-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  display: inline-block;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1.5rem;
}

.proto-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 1rem;
}

.proto-body {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 2rem;
}

.proto-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--border);
  color: var(--text-dim);
}

.tag.green { border-color: rgba(29,219,139,0.3); color: var(--green); background: rgba(29,219,139,0.05); }
.tag.gold  { border-color: rgba(201,168,76,0.3);  color: var(--gold);  background: rgba(201,168,76,0.05); }

/* ── FEATURES LIST ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  margin-top: 0.55rem;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--green);
}

.feature-dot.gold {
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}

.feature-text {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ── AUDIENCE SECTION ── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.audience-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 1.25rem;
  transition: border-color 0.2s, background 0.2s;
}

.audience-card:hover {
  border-color: rgba(29,219,139,0.4);
  background: rgba(29,219,139,0.04);
}

.audience-card-icon {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.audience-card-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}

/* ── FUTURE HORIZONS ── */
.horizon-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border-gold);
  border: 1px solid var(--border-gold);
  margin-top: 2.5rem;
}

.horizon-item {
  background: var(--bg);
  padding: 1.5rem;
}

.horizon-item-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.horizon-item-text {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ── CTA SECTION ── */
.cta-block {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto 5rem;
}

.cta-block::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 200px;
  background: radial-gradient(ellipse at bottom, rgba(29,219,139,0.08), transparent 70%);
  pointer-events: none;
}

.cta-block h2 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.cta-block p {
  color: var(--text-dim);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 2rem;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-logo {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--green-mid);
}

.footer-logo span { color: var(--gold-dim); }

.footer-copy {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  opacity: 0.5;
}

/* ── DIVIDER ── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── HEX DECORATION ── */
.hex-grid {
  position: absolute;
  top: 0; right: 0;
  width: 320px; height: 100%;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.06;
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  section { padding: 4rem 1.5rem; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .cta-block { padding: 3rem 1.5rem; }
  footer { flex-direction: column; gap: 0.5rem; text-align: center; }
  .proto-wrap { padding: 2rem 1.5rem; }
}
