/* ============================================================
   TokenizedCC.com — Premium Domain Landing
   CC = Carbon Credits | Climate Capital | Certified Carbon
   Aesthetic: Climate Data Lab · Scientific Authority · Urgent Green
   Palette: Deep forest, electric lime, data white, signal red
   Fonts: Fraunces + Manrope + Fira Code
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,300;0,400;0,600;0,700;0,900;1,300;1,600&family=Manrope:wght@300;400;500;600;700;800&family=Fira+Code:wght@300;400;500&display=swap');

/* ── Variables ───────────────────────────────────────────── */
:root {
  --forest:      #0a1a0d;
  --forest-2:    #0f2414;
  --forest-3:    #162e1a;
  --canopy:      #1e4025;
  --canopy-2:    #254d2e;
  --lime:        #7fff3a;
  --lime-2:      #a8ff6a;
  --lime-dim:    #3d8a18;
  --lime-pale:   #d4ffaa;
  --white:       #f2fff4;
  --white-dim:   #8ab894;
  --data:        #c8ffd4;
  --signal:      #ff4d2e;
  --signal-2:    #ff7055;
  --amber:       #ffb830;
  --amber-2:     #ffd080;
  --ink:         #061008;
  --silver:      #5a7a60;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Manrope', sans-serif;
  --font-mono:    'Fira Code', monospace;

  --max-w:   1180px;
  --gutter:  clamp(20px, 5vw, 60px);
  --radius:  3px;
  --border:  1px solid rgba(127,255,58,.12);
  --border-bright: 1px solid rgba(127,255,58,.28);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--forest);
  color: var(--data);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: var(--lime); text-decoration: none; transition: color .2s; }
a:hover { color: var(--lime-2); }
ul { list-style: none; }

/* ── Utility ─────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }

.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lime);
  border: 1px solid rgba(127,255,58,.28);
  background: rgba(127,255,58,.06);
  padding: 3px 10px;
  border-radius: 2px;
}
.tag.signal {
  color: var(--signal-2);
  border-color: rgba(255,77,46,.3);
  background: rgba(255,77,46,.07);
}
.tag.amber {
  color: var(--amber);
  border-color: rgba(255,184,48,.3);
  background: rgba(255,184,48,.07);
}
.tag.white {
  color: var(--data);
  border-color: rgba(200,255,212,.2);
  background: rgba(200,255,212,.05);
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .22s ease;
  border: none;
}
.btn-primary {
  background: var(--lime);
  color: var(--forest);
}
.btn-primary:hover {
  background: var(--lime-2);
  color: var(--forest);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(127,255,58,.3);
}
.btn-signal {
  background: var(--signal);
  color: var(--white);
}
.btn-signal:hover {
  background: var(--signal-2);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255,77,46,.3);
}
.btn-outline {
  background: transparent;
  color: var(--lime);
  border: 1px solid rgba(127,255,58,.4);
}
.btn-outline:hover {
  background: rgba(127,255,58,.1);
  border-color: var(--lime);
}

.section-label {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label .lnum { color: var(--lime); }
.section-label::after {
  content: '';
  display: inline-block;
  width: 30px; height: 1px;
  background: var(--canopy-2);
}

/* ── Carbon particle grid ────────────────────────────────── */
.carbon-grid {
  position: relative;
}
.carbon-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(127,255,58,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127,255,58,.03) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,26,13,.9);
  backdrop-filter: blur(16px);
  border-bottom: var(--border);
  transition: border-color .3s;
}
.nav.active { border-bottom-color: rgba(127,255,58,.25); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}
.nav-wordmark {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav-logo-line {
  font-family: var(--font-mono);
  font-size: .95rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: .04em;
  line-height: 1;
}
.nav-logo-line .tok { color: var(--lime); }
.nav-logo-sub {
  font-family: var(--font-mono);
  font-size: .46rem;
  letter-spacing: .2em;
  color: var(--silver);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color .2s;
}
.nav-links a:hover { color: var(--lime); }
.nav-links a.active { color: var(--lime); }
.nav-links .nav-cta {
  background: var(--lime);
  color: var(--forest);
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 700;
}
.nav-links .nav-cta:hover {
  background: var(--lime-2);
  color: var(--forest);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--lime);
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: 62px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Background: deep forest radial glow */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 65% 35%, rgba(30,64,37,.7) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 15% 70%, rgba(127,255,58,.05) 0%, transparent 50%),
    var(--forest);
}

/* Animated CO2 molecule / carbon network (CSS only) */
.hero-molecule {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  pointer-events: none;
}

/* Tree ring circles — concentric data rings */
.tree-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border-style: solid;
  border-color: rgba(127,255,58,.12);
  animation: ringBreath ease-in-out infinite;
}
.tree-ring:nth-child(1)  { width: 60px;  height: 60px;  border-width: 2px; animation-duration: 3s;  animation-delay: 0s;   border-color: rgba(127,255,58,.5); }
.tree-ring:nth-child(2)  { width: 100px; height: 100px; border-width: 1px; animation-duration: 4s;  animation-delay: .3s;  border-color: rgba(127,255,58,.35); }
.tree-ring:nth-child(3)  { width: 148px; height: 148px; border-width: 1px; animation-duration: 5s;  animation-delay: .6s;  border-color: rgba(127,255,58,.25); }
.tree-ring:nth-child(4)  { width: 200px; height: 200px; border-width: 1px; animation-duration: 6s;  animation-delay: .9s;  border-color: rgba(127,255,58,.18); }
.tree-ring:nth-child(5)  { width: 256px; height: 256px; border-width: 1px; animation-duration: 7s;  animation-delay: 1.2s; border-color: rgba(127,255,58,.12); }
.tree-ring:nth-child(6)  { width: 316px; height: 316px; border-width: 1px; animation-duration: 8s;  animation-delay: 1.5s; border-color: rgba(127,255,58,.08); }
.tree-ring:nth-child(7)  { width: 380px; height: 380px; border-width: 1px; animation-duration: 9s;  animation-delay: 1.8s; border-color: rgba(127,255,58,.06); }
.tree-ring:nth-child(8)  { width: 448px; height: 448px; border-width: 1px; animation-duration: 10s; animation-delay: 2.1s; border-color: rgba(127,255,58,.04); }
@keyframes ringBreath {
  0%,100% { opacity: .6; transform: translate(-50%,-50%) scale(1); }
  50%     { opacity: 1;  transform: translate(-50%,-50%) scale(1.015); }
}

/* Central carbon atom */
.mol-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--lime) 0%, var(--lime-dim) 70%);
  box-shadow:
    0 0 20px rgba(127,255,58,.5),
    0 0 60px rgba(127,255,58,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 500;
  color: var(--forest);
  z-index: 3;
  animation: centerPulse 3s ease-in-out infinite;
}
@keyframes centerPulse {
  0%,100% { box-shadow: 0 0 20px rgba(127,255,58,.5), 0 0 60px rgba(127,255,58,.2); }
  50%     { box-shadow: 0 0 30px rgba(127,255,58,.8), 0 0 90px rgba(127,255,58,.35); }
}

/* Orbiting data nodes on rings */
.orbit-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: orbitSpin linear infinite;
}
.orbit-ring-1 { width: 148px; height: 148px; animation-duration: 12s; }
.orbit-ring-2 { width: 256px; height: 256px; animation-duration: 20s; animation-direction: reverse; }
.orbit-ring-3 { width: 380px; height: 380px; animation-duration: 30s; }
@keyframes orbitSpin { from{transform:translate(-50%,-50%) rotate(0deg)} to{transform:translate(-50%,-50%) rotate(360deg)} }

.orbit-node {
  position: absolute;
  top: -14px; left: calc(50% - 14px);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--forest-3);
  border: 1.5px solid var(--lime-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  animation: orbitSpin linear infinite;
  box-shadow: 0 0 8px rgba(127,255,58,.2);
}
.orbit-ring-1 .orbit-node { animation-duration: 12s; animation-direction: reverse; }
.orbit-ring-2 .orbit-node { animation-duration: 20s; width: 32px; height: 32px; top: -16px; left: calc(50% - 16px); }
.orbit-ring-2 .orbit-node-2 { top: calc(100% - 16px); animation-direction: reverse; }
.orbit-ring-3 .orbit-node { animation-duration: 30s; animation-direction: reverse; width: 36px; height: 36px; top: -18px; left: calc(50% - 18px); border-color: rgba(127,255,58,.4); }

/* Data readout panels floating near molecule */
.mol-readout {
  position: absolute;
  background: rgba(10,26,13,.85);
  border: var(--border);
  border-radius: 3px;
  padding: 8px 12px;
  backdrop-filter: blur(8px);
  z-index: 4;
}
.mol-readout-label {
  font-family: var(--font-mono);
  font-size: .5rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--silver);
}
.mol-readout-val {
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 500;
  color: var(--lime);
  margin-top: 1px;
  animation: valBlink 4s ease-in-out infinite;
}
.mol-readout-val.signal { color: var(--signal-2); }
.mol-readout-val.amber  { color: var(--amber); }
@keyframes valBlink { 0%,90%,100%{opacity:1} 45%{opacity:.7} }
.mol-readout:nth-child(14) { top: 12%; left: 60%; }
.mol-readout:nth-child(15) { bottom: 20%; right: 4%; }
.mol-readout:nth-child(16) { top: 55%; left: 4%; }

/* Hero text */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}
.hero-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
  animation: statusBlink 2s ease-in-out infinite;
}
.status-dot.signal { background: var(--signal); box-shadow: 0 0 10px var(--signal); }
@keyframes statusBlink { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero-status-txt {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--silver);
}

.hero-domain {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.03em;
  color: var(--white);
}
.hero-domain .tok { color: var(--lime); }
.hero-domain .tld {
  font-size: .3em;
  font-weight: 300;
  font-family: var(--font-mono);
  color: var(--silver);
  letter-spacing: .12em;
  vertical-align: super;
  margin-left: 4px;
}

/* CC = Carbon Credits expandable subtitle */
.hero-cc-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0;
  padding: 6px 14px;
  background: rgba(127,255,58,.08);
  border: var(--border-bright);
  border-radius: 2px;
}
.hero-cc-tag span {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .1em;
}
.hero-cc-abbr { color: var(--lime); font-weight: 500; }
.hero-cc-expand { color: var(--white-dim); }
.hero-cc-sep { color: var(--canopy-2); }

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(.95rem, 1.7vw, 1.15rem);
  font-weight: 300;
  color: rgba(200,255,212,.65);
  line-height: 1.75;
  margin: 16px 0 32px;
  max-width: 490px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-data-row {
  display: flex;
  gap: 32px;
  padding-top: 28px;
  border-top: var(--border);
  flex-wrap: wrap;
}
.h-data-val {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--lime);
  line-height: 1;
  text-shadow: 0 0 20px rgba(127,255,58,.35);
}
.h-data-lbl {
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 4px;
  line-height: 1.4;
}

/* ── TICKER ───────────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  border-top: var(--border);
  border-bottom: var(--border);
  padding: 12px 0;
  background: var(--forest-2);
}
.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker-item {
  font-family: var(--font-mono);
  font-size: .63rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--silver);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ticker-item .up   { color: var(--lime); }
.ticker-item .down { color: var(--signal-2); }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── SECTIONS ─────────────────────────────────────────────── */
.section { padding: clamp(64px, 9vw, 112px) 0; }
.section-alt { background: var(--forest-2); }
.section-mid { background: var(--forest-3); }

.section-header { margin-bottom: clamp(40px, 6vw, 68px); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.3vw, 2.9rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--white);
}
.section-title em { font-style: italic; color: var(--lime); }
.section-title .signal-em { font-style: italic; color: var(--signal-2); }
.section-body {
  font-size: .95rem;
  color: rgba(200,255,212,.65);
  line-height: 1.82;
  max-width: 600px;
  margin-top: 16px;
  font-weight: 300;
}

/* ── CARDS ────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: rgba(127,255,58,.08);
  border: var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.card {
  background: var(--forest-2);
  padding: 30px 26px;
  position: relative;
  transition: background .2s;
}
.card:hover { background: var(--forest-3); }
.card-glow {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.card:hover .card-glow { opacity: 1; }
.card-num {
  position: absolute;
  top: 18px; right: 20px;
  font-family: var(--font-mono);
  font-size: .58rem;
  color: var(--lime-dim);
  letter-spacing: .1em;
  opacity: .6;
}
.card-icon { font-size: 1.6rem; margin-bottom: 14px; line-height: 1; }
.card-title {
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: .01em;
}
.card-body {
  font-size: .855rem;
  color: rgba(200,255,212,.6);
  line-height: 1.75;
  font-weight: 300;
}

/* ── SPLIT ────────────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-visual {
  background: var(--forest-3);
  border: var(--border);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.split-list { margin-top: 22px; display: flex; flex-direction: column; gap: 16px; }
.split-item { display: flex; gap: 14px; align-items: flex-start; }
.split-pip {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 6px var(--lime);
  flex-shrink: 0;
  margin-top: 8px;
}
.split-pip.signal { background: var(--signal); box-shadow: 0 0 6px var(--signal); }
.split-pip.amber  { background: var(--amber);  box-shadow: 0 0 6px var(--amber); }
.split-text { font-size: .9rem; color: rgba(200,255,212,.65); line-height: 1.72; font-weight: 300; }
.split-text strong { color: var(--white); font-weight: 600; }

/* ── CSS DIAGRAMS ─────────────────────────────────────────── */

/* Carbon credit token flow */
.diagram-cc-flow {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  gap: 10px;
  position: relative;
}
/* Background scanlines */
.diagram-cc-flow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 3px,
    rgba(127,255,58,.02) 3px,
    rgba(127,255,58,.02) 4px
  );
  pointer-events: none;
}
.ccf-top {
  display: flex;
  gap: 16px;
  align-items: center;
}
.ccf-source {
  background: var(--forest);
  border: 1px solid rgba(127,255,58,.2);
  border-radius: 3px;
  padding: 8px 14px;
  text-align: center;
}
.ccf-source-icon { font-size: 1.3rem; }
.ccf-source-lbl {
  font-family: var(--font-mono);
  font-size: .5rem;
  color: var(--silver);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 3px;
}
.ccf-arrow-v {
  width: 1px; height: 24px;
  background: linear-gradient(to bottom, var(--lime-dim), rgba(127,255,58,.2));
  position: relative;
}
.ccf-arrow-v::after {
  content: '▼';
  position: absolute;
  bottom: -12px; left: 50%;
  transform: translateX(-50%);
  color: var(--lime-dim);
  font-size: .6rem;
}
.ccf-verify {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--forest);
  border: 1px solid rgba(127,255,58,.3);
  border-radius: 2px;
  padding: 7px 12px;
}
.ccf-verify-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lime);
  animation: statusBlink 1.5s ease-in-out infinite;
}
.ccf-verify-lbl {
  font-family: var(--font-mono);
  font-size: .52rem;
  color: var(--lime);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.ccf-tokens-row {
  display: flex;
  gap: 10px;
}
.ccf-token {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--forest);
  border: 1.5px solid var(--lime-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: .52rem;
  font-weight: 500;
  color: var(--lime);
  animation: tokenBob 3s ease-in-out infinite;
  letter-spacing: .04em;
}
.ccf-token:nth-child(2) { animation-delay: .7s; }
.ccf-token:nth-child(3) { animation-delay: 1.4s; }
.ccf-token:nth-child(4) { animation-delay: 2.1s; }
@keyframes tokenBob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }
.ccf-token-lbl {
  font-family: var(--font-mono);
  font-size: .54rem;
  color: var(--silver);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 4px;
}
.ccf-bar-wrap {
  width: 85%;
  height: 3px;
  background: rgba(127,255,58,.1);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 4px;
}
.ccf-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--lime-dim), var(--lime));
  border-radius: 2px;
  animation: ccfBarAnim 4s ease-in-out infinite;
}
@keyframes ccfBarAnim {
  0%   { width: 10%; }
  60%  { width: 100%; }
  61%  { width: 0%; }
  100% { width: 10%; }
}

/* ESG compliance matrix */
.diagram-esg {
  width: 100%; height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto repeat(3, 1fr);
  padding: 16px;
  gap: 4px;
  position: relative;
}
.diagram-esg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 3px,
    rgba(127,255,58,.015) 3px,
    rgba(127,255,58,.015) 4px
  );
  pointer-events: none;
}
.esg-header {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: .5rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--silver);
  border-bottom: 1px solid rgba(127,255,58,.12);
  padding-bottom: 6px;
}
.esg-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(127,255,58,.08);
  padding: 8px 4px;
  border-radius: 2px;
  transition: background .3s;
  animation: esgCellActivate 6s ease-in-out infinite;
}
.esg-cell:nth-child(4)  { animation-delay: 0s; }
.esg-cell:nth-child(5)  { animation-delay: .5s; }
.esg-cell:nth-child(6)  { animation-delay: 1s; }
.esg-cell:nth-child(7)  { animation-delay: 1.5s; }
.esg-cell:nth-child(8)  { animation-delay: 2s; }
.esg-cell:nth-child(9)  { animation-delay: 2.5s; }
.esg-cell:nth-child(10) { animation-delay: 3s; }
.esg-cell:nth-child(11) { animation-delay: 3.5s; }
.esg-cell:nth-child(12) { animation-delay: 4s; }
@keyframes esgCellActivate {
  0%,80%,100% { background: transparent; }
  40%         { background: rgba(127,255,58,.07); border-color: rgba(127,255,58,.25); }
}
.esg-score {
  font-family: var(--font-mono);
  font-size: .85rem;
  font-weight: 700;
  color: var(--lime);
}
.esg-score.amber { color: var(--amber); }
.esg-score.signal { color: var(--signal-2); }
.esg-score.white { color: var(--data); }
.esg-label {
  font-family: var(--font-mono);
  font-size: .44rem;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: center;
  margin-top: 3px;
  line-height: 1.3;
}

/* AI agent network */
.diagram-ai {
  width: 100%; height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ai-center {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--forest);
  border: 2px solid var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 20px rgba(127,255,58,.25);
  animation: centerPulse 3s ease-in-out infinite;
}
.ai-pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(127,255,58,.15);
  animation: aiPulse 3s ease-out infinite;
}
.ai-pulse-ring:nth-child(2) { width: 90px;  height: 90px;  animation-delay: 0s; }
.ai-pulse-ring:nth-child(3) { width: 140px; height: 140px; animation-delay: 1s; }
.ai-pulse-ring:nth-child(4) { width: 200px; height: 200px; animation-delay: 2s; }
@keyframes aiPulse {
  0%   { opacity: .6; transform: scale(.9); }
  100% { opacity: 0;  transform: scale(1.1); }
}
.ai-node {
  position: absolute;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--forest-3);
  border: 1px solid var(--lime-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  animation: aiNodeGlow 4s ease-in-out infinite;
}
.ai-node:nth-child(5) { top: 10%; left: 50%; transform: translateX(-50%);   animation-delay: .5s; }
.ai-node:nth-child(6) { top: 50%; right: 8%; transform: translateY(-50%);   animation-delay: 1s; }
.ai-node:nth-child(7) { bottom:10%; left:50%; transform: translateX(-50%);  animation-delay: 1.5s; }
.ai-node:nth-child(8) { top: 50%; left: 8%; transform: translateY(-50%);    animation-delay: 2s; }
@keyframes aiNodeGlow {
  0%,100% { box-shadow: none; }
  50%     { box-shadow: 0 0 10px rgba(127,255,58,.2); }
}

/* ── BLOG CARDS ───────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--forest-2);
  border: var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,0,0,.4), 0 0 30px rgba(127,255,58,.05);
  border-color: rgba(127,255,58,.22);
}
.blog-card-stripe {
  height: 3px;
  background: linear-gradient(90deg, var(--lime-dim), var(--lime));
}
.blog-card-body { padding: 24px; flex: 1; }
.blog-card-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.blog-card-date {
  font-family: var(--font-mono);
  font-size: .58rem;
  color: var(--silver);
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 10px;
  transition: color .2s;
}
.blog-card:hover .blog-card-title { color: var(--lime); }
.blog-card-excerpt {
  font-size: .855rem;
  color: rgba(200,255,212,.55);
  line-height: 1.7;
  font-weight: 300;
}
.blog-card-footer {
  padding: 14px 24px;
  border-top: var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.read-more {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lime);
}
.read-time {
  font-family: var(--font-mono);
  font-size: .58rem;
  color: var(--silver);
}

/* ── METRICS ──────────────────────────────────────────────── */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1px;
  background: rgba(127,255,58,.07);
  border: var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.metric-card {
  background: var(--forest-2);
  padding: 28px 20px;
  text-align: center;
}
.metric-val {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--lime);
  line-height: 1;
}
.metric-lbl {
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 7px;
  line-height: 1.4;
}

/* ── TIMELINE ─────────────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 36px;
  max-width: 640px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 20px;
  width: 1px;
  background: linear-gradient(to bottom, var(--lime-dim), rgba(127,255,58,0));
}
.timeline-item {
  position: relative;
  padding-bottom: 36px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -40px; top: 7px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px rgba(127,255,58,.5);
}
.timeline-label {
  font-family: var(--font-mono);
  font-size: .6rem;
  color: var(--lime);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.timeline-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.timeline-body {
  font-size: .87rem;
  color: rgba(200,255,212,.6);
  line-height: 1.7;
  font-weight: 300;
}

/* ── OFFER ────────────────────────────────────────────────── */
.offer-hero {
  padding: 110px 0 72px;
  background: var(--forest-2);
  border-bottom: var(--border);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.offer-bg-rings {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.offer-bg-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(127,255,58,.07);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: offerRing 8s ease-out infinite;
}
.offer-bg-ring:nth-child(1) { width: 200px; height: 200px; animation-delay: 0s; }
.offer-bg-ring:nth-child(2) { width: 400px; height: 400px; animation-delay: 2.6s; }
.offer-bg-ring:nth-child(3) { width: 660px; height: 660px; animation-delay: 5.3s; }
@keyframes offerRing { 0%{opacity:.5} 100%{opacity:0} }

.offer-domain-display {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  margin: 20px 0;
}
.offer-domain-display .tok { color: var(--lime); }
.offer-form-wrap {
  max-width: 660px;
  margin: 0 auto;
  background: var(--forest-2);
  border: var(--border-bright);
  border-radius: 4px;
  padding: 44px;
}
.offer-form-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.offer-form-subtitle {
  font-size: .87rem;
  color: var(--silver);
  margin-bottom: 26px;
  font-weight: 300;
}
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 7px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--forest);
  border: 1px solid rgba(127,255,58,.18);
  border-radius: var(--radius);
  color: var(--data);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 300;
  padding: 11px 14px;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(127,255,58,.07);
}
.form-select { cursor: pointer; }
.form-select option { background: var(--forest); }
.form-textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit { width: 100%; padding: 15px; font-size: .82rem; margin-top: 6px; }
.form-note {
  font-family: var(--font-mono);
  font-size: .59rem;
  color: var(--silver);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
  opacity: .8;
}
.trust-signals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.trust-icon { font-size: 1.4rem; margin-bottom: 8px; }
.trust-title {
  font-family: var(--font-body);
  font-size: .84rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.trust-body { font-size: .78rem; color: var(--silver); line-height: 1.55; font-weight: 300; }
.listing-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 22px;
}
.listing-badge {
  background: rgba(127,255,58,.04);
  border: var(--border);
  border-radius: 3px;
  padding: 9px 18px;
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .08em;
  color: var(--silver);
}
.listing-badge span { color: var(--lime); }

/* ── WHY / POST HEROES ────────────────────────────────────── */
.why-hero {
  padding: 110px 0 72px;
  background: var(--forest-2);
  border-bottom: var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.why-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(127,255,58,.04) 0%, transparent 70%);
  pointer-events: none;
}
.why-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  max-width: 760px;
  margin: 16px auto;
}
.why-hero-title em { font-style: italic; color: var(--lime); }
.why-hero-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(200,255,212,.6);
  max-width: 520px;
  margin: 16px auto 0;
}
.post-hero {
  padding: 110px 0 56px;
  background: var(--forest-2);
  border-bottom: var(--border);
}
.post-header-meta {
  display: flex; gap: 10px; align-items: center;
  margin-bottom: 20px; flex-wrap: wrap;
}
.post-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  max-width: 820px;
  margin-bottom: 20px;
}
.post-lead {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(200,255,212,.7);
  max-width: 660px;
  line-height: 1.7;
}
.post-content { max-width: 740px; margin: 56px 0; }
.post-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  color: var(--white); margin: 40px 0 14px;
}
.post-content h3 {
  font-family: var(--font-body);
  font-size: .95rem; font-weight: 700;
  color: var(--lime);
  margin: 28px 0 8px; letter-spacing: .04em;
  text-transform: uppercase;
}
.post-content p {
  color: rgba(200,255,212,.65); line-height: 1.85;
  margin-bottom: 18px; font-size: .97rem; font-weight: 300;
}
.post-content strong { color: var(--data); font-weight: 600; }
.post-content ul { margin: 14px 0 18px; display: flex; flex-direction: column; gap: 9px; }
.post-content ul li {
  color: rgba(200,255,212,.65); font-size: .95rem;
  line-height: 1.7; padding-left: 18px;
  position: relative; font-weight: 300;
}
.post-content ul li::before {
  content: '◆';
  position: absolute; left: 0;
  color: var(--lime); font-size: .5rem; top: 6px;
}
.post-content blockquote {
  border-left: 2px solid var(--lime-dim);
  padding: 14px 24px; margin: 28px 0;
  background: rgba(127,255,58,.04);
  border-radius: 0 3px 3px 0;
}
.post-content blockquote p {
  font-family: var(--font-display);
  font-style: italic; font-size: 1.1rem;
  color: var(--white); margin: 0;
}
.post-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: .67rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--silver); margin-bottom: 36px;
  transition: color .2s;
}
.post-back:hover { color: var(--lime); }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer { border-top: var(--border); padding: 48px 0; background: var(--forest-2); }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  font-family: var(--font-mono);
  font-size: .9rem;
  font-weight: 500;
  color: var(--white);
}
.footer-logo span { color: var(--lime); }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a {
  font-family: var(--font-mono);
  font-size: .61rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--silver);
}
.footer-links a:hover { color: var(--lime); }
.footer-copy {
  font-family: var(--font-mono);
  font-size: .59rem;
  color: rgba(90,122,96,.5);
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: var(--border);
}

/* ── FADE ─────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse { direction: ltr; }
  .hero-molecule { display: none; }
  .trust-signals { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .offer-form-wrap { padding: 24px 18px; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: 1fr; gap: 1px; }
}
