:root {
  --bg: #0D0D10;
  --bg2: #131318;
  --bg3: #1A1A22;
  --fg: #F0EFE9;
  --fg2: #A09F98;
  --accent: #B8F53A;
  --accent-dim: rgba(184, 245, 58, 0.12);
  --border: rgba(240, 239, 233, 0.08);
  --red: #FF4D4D;
  --green: #4DFF88;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.1;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8vw;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(184, 245, 58, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4vw;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-tag {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.4em 1em;
  border-radius: 2px;
  margin-bottom: 2rem;
}

.hero-text h1 {
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.hero-text h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--fg2);
  max-width: 460px;
  line-height: 1.7;
}

/* MARKET GRID */
.hero-visual {
  position: relative;
}

.market-grid {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
}

.grid-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding: 0.6em 1.2em;
  background: var(--bg3);
  color: var(--fg2);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

.grid-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding: 0.7em 1.2em;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.grid-row.even { background: rgba(255,255,255,0.02); }

.sym { font-weight: 500; color: var(--fg); }
.side { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.05em; }
.side.long { color: var(--green); }
.side.short { color: #FF7A7A; }
.pl { font-weight: 600; font-variant-numeric: tabular-nums; }
.pl.pos { color: var(--green); }
.pl.neg { color: #FF7A7A; }
.edge { color: var(--fg2); font-size: 0.7rem; font-variant-numeric: tabular-nums; }

.grid-footer {
  display: flex;
  justify-content: space-between;
  padding: 0.8em 1.2em;
  background: var(--accent-dim);
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--accent);
}

.session-tag {
  margin-top: 0.8rem;
  font-size: 0.7rem;
  color: var(--fg2);
  letter-spacing: 0.08em;
  text-align: center;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--fg2);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--fg2));
}

/* SESSION */
.session {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  padding: 8rem 8vw;
  align-items: center;
  border-top: 1px solid var(--border);
}

.session-label, .intel-label, .loop-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.session h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
}

.session-desc {
  color: var(--fg2);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.time-blocks { display: flex; flex-direction: column; gap: 1.5rem; }

.time-block { display: flex; align-items: flex-start; gap: 1rem; }

.time-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--fg2);
  margin-top: 0.4rem;
  flex-shrink: 0;
}
.time-dot.open { background: var(--green); }
.time-dot.active { background: var(--accent); }

.time-info strong { display: block; font-family: 'Syne', sans-serif; font-size: 0.9rem; margin-bottom: 0.2rem; }
.time-info span { color: var(--fg2); font-size: 0.85rem; }

/* CLOCK */
.session-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.clock-ring {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg2);
  position: relative;
}

.clock-ring::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid var(--border);
}

.clock-face { position: relative; width: 200px; height: 200px; }

.clock-marks .mark {
  position: absolute;
  width: 1px;
  height: 8px;
  background: var(--border);
  top: 0;
  left: 50%;
  transform-origin: center 100px;
}

.clock-hands .hand {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  border-radius: 2px;
}

.hand.hour {
  width: 3px;
  height: 55px;
  background: var(--fg);
  transform: translateX(-50%) rotate(var(--rot, 0deg));
}

.hand.minute {
  width: 2px;
  height: 75px;
  background: var(--accent);
  transform: translateX(-50%) rotate(var(--rot, 0deg));
}

.clock-center {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ny-label {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--fg2);
}

/* INTELLIGENCE */
.intelligence {
  padding: 8rem 8vw;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.intel-inner { max-width: 1200px; margin: 0 auto; }

.intel-desc {
  color: var(--fg2);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

.intelligence h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.agent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.agent-card {
  background: var(--bg);
  padding: 2rem;
}

.agent-card.highlight {
  background: var(--accent-dim);
  border: 1px solid rgba(184, 245, 58, 0.2);
}

.agent-icon {
  color: var(--accent);
  margin-bottom: 1rem;
}

.agent-card h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  font-family: 'Syne', sans-serif;
}

.agent-card p {
  color: var(--fg2);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* LOOP */
.loop {
  padding: 8rem 8vw;
  border-top: 1px solid var(--border);
}

.loop-inner { max-width: 1200px; margin: 0 auto; }

.loop-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
}

.loop-content p {
  color: var(--fg2);
  max-width: 540px;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 4rem;
}

.loop-stages {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 4rem;
}

.stage {
  flex: 1;
  padding: 2rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-right: none;
}

.stage:last-of-type { border-right: 1px solid var(--border); }

.stage-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.stage h4 {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.stage p { color: var(--fg2); font-size: 0.8rem; line-height: 1.5; }

.stage-arrow {
  width: 40px;
  height: 40px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.stage-arrow::after {
  content: '›';
  color: var(--fg2);
  font-size: 1.2rem;
}

.loop-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 0.8rem;
  background: var(--accent-dim);
  border: 1px solid rgba(184, 245, 58, 0.2);
  padding: 1.5rem 2.5rem;
  border-radius: 4px;
}

.loop-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
}

.loop-stat-label {
  font-size: 0.85rem;
  color: var(--fg2);
}

/* MANIFESTO */
.manifesto {
  padding: 10rem 8vw;
  border-top: 1px solid var(--border);
  background: var(--bg2);
  text-align: center;
}

.manifesto-inner { max-width: 800px; margin: 0 auto; }

.manifesto-tag {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg2);
  margin-bottom: 2rem;
}

.manifesto h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 2.5rem;
}

.manifesto h2 .accent { color: var(--accent); }

.manifesto-body {
  color: var(--fg2);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* FOOTER */
.site-footer {
  padding: 3rem 8vw;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.footer-brand p { color: var(--fg2); font-size: 0.8rem; }

.footer-meta span { color: var(--fg2); font-size: 0.75rem; line-height: 1.5; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 3rem; }
  .session { grid-template-columns: 1fr; padding: 5rem 6vw; }
  .session-visual { display: none; }
  .agent-grid { grid-template-columns: 1fr; }
  .loop-stages { flex-direction: column; }
  .stage { border-right: 1px solid var(--border); border-bottom: none; }
  .stage:last-of-type { border-bottom: 1px solid var(--border); }
  .stage-arrow { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .hero { padding: 0 6vw; }
}