/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0A0A0A;
  --fg: #F0F0EC;
  --accent: #B5FF00;
  --accent-dim: #8AB300;
  --muted: #888;
  --border: rgba(240,240,236,0.12);
  --card-bg: rgba(255,255,255,0.04);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.1; }

/* === NAV === */
.nav {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  padding: 0 48px;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 16px;
  height: 64px;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 800; font-size: 1.2rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem; color: var(--muted);
  font-weight: 300; letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* === SECTION SHARED === */
.section-header { margin-bottom: 56px; }
.section-label {
  font-size: 0.72rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--accent); display: block; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 580px;
  color: var(--fg);
}

/* === HERO === */
.hero {
  padding: 80px 48px 0;
  max-width: 1100px; margin: 0 auto;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 64px;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 8px;
}
.label-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); display: block;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--fg);
}
.hero-headline em {
  font-style: normal; color: var(--accent);
}
.hero-aside { max-width: 420px; }
.hero-sub {
  font-size: 1.05rem; color: rgba(240,240,236,0.7);
  line-height: 1.65; margin-bottom: 32px;
  font-weight: 300;
}
.hero-stats { display: flex; gap: 40px; }
.stat {}
.stat-num {
  display: block; font-family: var(--font-head);
  font-size: 1.8rem; font-weight: 800;
  color: var(--fg);
}
.stat-label {
  font-size: 0.78rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* === HERO VISUAL === */
.hero-visual { margin-bottom: 80px; }
.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.tile {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 28px 24px;
}
.tile-inner {}
.tile-label {
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--muted);
  margin-bottom: 20px;
}
.tile-bar {
  height: 3px; border-radius: 2px;
  margin-bottom: 16px; width: 60%;
}
.bar-lime { background: var(--accent); }
.bar-white { background: rgba(240,240,236,0.3); }
.tile-viewcount {
  font-family: var(--font-head);
  font-size: 1.6rem; font-weight: 800;
  color: var(--fg); margin-bottom: 4px;
}
.tile-caption {
  font-size: 0.75rem; color: var(--muted);
}

/* === SERVICES === */
.services {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  max-width: 1100px; margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  padding: 36px 28px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.service-card:hover { border-color: var(--accent); }
.service-icon { margin-bottom: 20px; }
.service-name {
  font-size: 1.05rem; font-weight: 700;
  margin-bottom: 12px; color: var(--fg);
}
.service-desc {
  font-size: 0.88rem; color: rgba(240,240,236,0.6);
  line-height: 1.65; font-weight: 300;
}
.service-card-accent {
  background: rgba(181,255,0,0.06);
  border-color: rgba(181,255,0,0.25);
}
.service-card-inner { display: flex; flex-direction: column; height: 100%; justify-content: center; }
.card-price {
  font-family: var(--font-head);
  font-size: 2.2rem; font-weight: 800;
  color: var(--accent); display: block;
}
.card-period {
  font-size: 0.9rem; color: var(--muted);
  margin-bottom: 16px; display: block;
}
.card-note {
  font-size: 0.85rem; color: rgba(240,240,236,0.6);
  line-height: 1.55; font-weight: 300;
}

/* === PROCESS === */
.process {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  max-width: 1100px; margin: 0 auto;
}
.process-steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 48px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.step:first-child { border-top: 1px solid var(--border); }
.step-num {
  font-family: var(--font-head);
  font-size: 3rem; font-weight: 800;
  color: rgba(240,240,236,0.08);
  line-height: 1;
  padding-top: 4px;
}
.step-title {
  font-size: 1.4rem; font-weight: 700;
  color: var(--fg); margin-bottom: 16px;
}
.step-desc {
  font-size: 0.95rem; color: rgba(240,240,236,0.6);
  line-height: 1.7; max-width: 560px; font-weight: 300;
}

/* === NICHES === */
.niches {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  background: rgba(181,255,0,0.03);
}
.niches-inner { max-width: 1100px; margin: 0 auto; }
.niches-header { margin-bottom: 56px; }
.niches-lead {
  font-size: 1.1rem; color: rgba(240,240,236,0.7);
  max-width: 480px; font-weight: 300; margin-top: 16px;
  line-height: 1.65;
}
.niche-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.niche-block {
  padding: 40px 28px;
  background: var(--bg);
  border: 1px solid var(--border);
}
.niche-icon { margin-bottom: 20px; }
.niche-block h3 {
  font-size: 1.1rem; font-weight: 700;
  color: var(--fg); margin-bottom: 12px;
}
.niche-block p {
  font-size: 0.88rem; color: rgba(240,240,236,0.6);
  line-height: 1.65; font-weight: 300;
}

/* === MANIFESTO === */
.manifesto {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  max-width: 1100px; margin: 0 auto;
}
.manifesto-inner { display: grid; grid-template-columns: 200px 1fr; gap: 64px; }
.manifesto-body {}
.manifesto-text {
  font-size: 1.05rem; color: rgba(240,240,236,0.7);
  line-height: 1.8; font-weight: 300;
  margin-bottom: 28px;
}
.manifesto-emphasis {
  font-family: var(--font-head);
  font-size: 1.3rem; font-weight: 700;
  color: var(--accent); line-height: 1.5;
}

/* === CLOSING === */
.closing {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(181,255,0,0.04) 100%);
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-badge {
  display: inline-block;
  background: rgba(181,255,0,0.12);
  border: 1px solid rgba(181,255,0,0.3);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 40px;
}
.badge-text {
  font-size: 0.72rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent);
}
.closing-headline {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.1; color: var(--fg);
  margin-bottom: 32px;
}
.closing-headline em {
  font-style: normal; color: var(--accent);
}
.closing-meta {}
.closing-sub {
  font-size: 1rem; color: rgba(240,240,236,0.6);
  font-weight: 300; margin-bottom: 12px;
}
.closing-pricing {
  font-family: var(--font-head);
  font-size: 1.1rem; font-weight: 700;
  color: var(--fg);
}

/* === FOOTER === */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  max-width: 1100px; margin: 0 auto;
}
.footer-inner {}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 800;
  color: var(--accent); display: block; margin-bottom: 12px;
}
.footer-desc {
  font-size: 0.82rem; color: var(--muted);
  max-width: 380px; line-height: 1.65; font-weight: 300;
  margin-bottom: 32px;
}
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; }
.footer-copy { font-size: 0.75rem; color: var(--muted); }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .hero { padding: 48px 24px 0; }
  .hero-headline { font-size: clamp(2.4rem, 9vw, 3.2rem); }
  .hero-stats { flex-direction: column; gap: 20px; }
  .tile-grid { grid-template-columns: 1fr; }
  .services { padding: 64px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .process { padding: 64px 24px; }
  .step { grid-template-columns: 1fr; gap: 16px; }
  .step-num { font-size: 2rem; }
  .niches { padding: 64px 24px; }
  .niche-row { grid-template-columns: 1fr; }
  .manifesto { padding: 64px 24px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 32px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 48px 24px; }
}