:root {
  --bg: #0a0a0c;
  --bg-elevated: #111115;
  --bg-card: #16161b;
  --fg: #e8e6e1;
  --fg-muted: #8a8880;
  --accent: #c9ff3c;
  --accent-dim: rgba(201, 255, 60, 0.12);
  --border: rgba(255,255,255,0.06);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1140px;
  --space: clamp(1.5rem, 4vw, 3rem);
}

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

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

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space);
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 700;
}

h2 em {
  font-style: italic;
  color: var(--accent);
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem var(--space) 3rem;
  position: relative;
  background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(201,255,60,0.04) 0%, transparent 70%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner { position: relative; max-width: 780px; }

.hero-tag {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll-hint span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--fg-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* === HOW === */
.how {
  padding: 8rem 0;
  border-top: 1px solid var(--border);
}

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

.how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.how-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  transition: border-color 0.3s;
}

.how-card:hover {
  border-color: rgba(201,255,60,0.2);
}

.how-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.how-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.how-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === NUMBERS === */
.numbers {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.num-block {
  text-align: center;
}

.num-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--accent);
  display: block;
  letter-spacing: -0.02em;
}

.num-desc {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* === NETWORK === */
.network {
  padding: 8rem 0;
  border-top: 1px solid var(--border);
}

.network h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 3rem;
}

.niche-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 4rem;
}

.niche-tag {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--fg);
  background: var(--accent-dim);
  letter-spacing: 0.02em;
  transition: background 0.3s, border-color 0.3s;
}

.niche-tag:hover {
  background: rgba(201,255,60,0.2);
  border-color: rgba(201,255,60,0.3);
}

.network-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.network-detail h3 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.network-detail ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.network-detail li {
  font-size: 0.95rem;
  color: var(--fg-muted);
  padding-left: 1rem;
  position: relative;
  line-height: 1.6;
}

.network-detail li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.network-detail li strong {
  color: var(--fg);
  font-weight: 500;
}

/* === CLOSING === */
.closing {
  padding: 8rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
  background: radial-gradient(ellipse 70% 40% at 50% 60%, rgba(201,255,60,0.04) 0%, transparent 70%);
}

.closing h2 {
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.closing-text {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

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

.site-footer .section-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* === MOBILE === */
@media (max-width: 768px) {
  .how-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .network-detail { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero { min-height: 90vh; padding: 4rem var(--space) 5rem; }
  .hero-scroll-hint { bottom: 1.5rem; }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  .numbers-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .how-card { padding: 1.75rem; }
  .site-footer .section-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
}
/* === LIVE PUBLICATION CARD (network section) === */
.live-publication {
  background: var(--bg-card);
  border: 1px solid rgba(201,255,60,0.25);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.live-pub-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(201,255,60,0.3);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1.25rem;
}

.live-pub-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.live-pub-content { display: flex; flex-direction: column; gap: 0.75rem; }

.live-pub-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.live-pub-mark {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: #0a0a0c;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.live-pub-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--fg);
}

.live-pub-desc {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 600px;
}

.live-pub-stats {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.live-pub-dot { opacity: 0.4; }

.live-pub-cta {
  display: inline-block;
  background: var(--accent);
  color: #0a0a0c;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.65rem 1.4rem;
  border-radius: 8px;
  text-decoration: none;
  width: fit-content;
  transition: opacity 0.2s, transform 0.15s;
}

.live-pub-cta:hover { opacity: 0.85; transform: translateY(-1px); }

/* === LANDING NAV === */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem var(--space);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 12, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.site-nav__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.site-nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.site-nav__link:hover { color: var(--fg); }

.site-nav__cta {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: #0a0a0c;
  background: var(--accent);
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.site-nav__cta:hover { opacity: 0.85; }
