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

:root {
  --bg: #0D0D0D;
  --bg-alt: #111111;
  --surface: #181818;
  --surface-2: #1c1c1c;
  --lime: #C8FF00;
  --lime-dim: rgba(200,255,0,0.08);
  --lime-glow: rgba(200,255,0,0.15);
  --fg: #F2F2F2;
  --fg-2: #999999;
  --fg-3: #555555;
  --border: rgba(255,255,255,0.07);
  --radius: 3px;
  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body: 'DM Sans', Arial, sans-serif;
}

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

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

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 0;
  position: relative;
}

.hero::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 50% at 75% 40%, rgba(200,255,0,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

/* LEFT */
.hero-left { max-width: 640px; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 28px;
}

.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--lime);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.0;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 16px;
  color: var(--fg-2);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 480px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--lime);
  padding-left: 16px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  color: var(--lime);
  letter-spacing: 0.05em;
}

.stat-label {
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.5;
  margin-top: 4px;
}

/* RIGHT - PHONE FRAME */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  width: 260px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 36px;
  padding: 16px;
  position: relative;
  box-shadow: 0 0 60px rgba(200,255,0,0.06), 0 24px 48px rgba(0,0,0,0.6);
}

.phone-notch {
  width: 80px; height: 24px;
  background: #111;
  border-radius: 0 0 16px 16px;
  margin: -16px auto 14px;
  position: relative;
  top: 0; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.phone-screen {
  background: #0e0e0e;
  border-radius: 24px;
  overflow: hidden;
  padding: 12px;
}

.ig-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.ig-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--lime-dim);
  border: 1px solid rgba(200,255,0,0.3);
}

.ig-name-block { flex: 1; }

.ig-name {
  width: 80px; height: 7px;
  background: var(--surface-2);
  border-radius: 2px;
}

.ig-time {
  width: 40px; height: 5px;
  background: var(--surface);
  border-radius: 2px;
  margin-top: 4px;
}

.ig-post-dark {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #1a1a1a 0%, #141414 100%);
  border-radius: 8px;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}

.ig-post-dark::after {
  content: '';
  position: absolute;
  top: 12px; right: 12px;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 2px;
}

.ig-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 10px;
}

.ig-mini-post {
  height: 70px;
  border-radius: 4px;
}

.ig-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 8px;
}

.ig-icon-heart, .ig-icon-cmt, .ig-icon-share {
  width: 18px; height: 18px;
  background: var(--surface);
  border-radius: 50%;
}

.ig-likes {
  width: 60px; height: 8px;
  background: var(--surface-2);
  border-radius: 2px;
  margin-bottom: 6px;
}

.ig-caption {
  width: 100%; height: 30px;
  background: linear-gradient(90deg, var(--surface) 0%, var(--surface) 40%, transparent 100%);
  border-radius: 2px;
}

/* BOTTOM BAR */
.hero-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px 48px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

.bar-sep { color: var(--lime); opacity: 0.4; }

/* === SECTION SHARED === */
.section-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}

.section-header {
  margin-bottom: 56px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--fg);
}

/* === SERVICES === */
.services {
  padding: 120px 48px;
  max-width: 1280px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--bg);
  padding: 40px 36px;
  position: relative;
  transition: background 0.2s;
}

.service-card:hover {
  background: var(--bg-alt);
}

.service-card:hover .service-icon {
  background: var(--lime-dim);
  border-color: rgba(200,255,0,0.3);
}

.service-icon {
  width: 44px; height: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.2s;
}

/* Icon shapes via CSS */
.icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  width: 16px; height: 16px;
}
.icon-grid::before, .icon-grid::after {
  content: '';
  background: var(--lime);
  border-radius: 1px;
  display: block;
}

.icon-reel::before {
  content: '';
  display: block;
  width: 14px; height: 14px;
  border: 2px solid var(--lime);
  border-radius: 50%;
}

.icon-caption::before {
  content: '';
  display: block;
  width: 14px; height: 3px;
  background: var(--lime);
  border-radius: 1px;
  margin-top: 5px;
  box-shadow: 0 6px 0 var(--lime), 0 12px 0 rgba(200,255,0,0.3);
}

.icon-tiktok::before {
  content: '';
  display: block;
  width: 14px; height: 14px;
  border: 2px solid var(--lime);
  border-radius: 4px 4px 4px 4px;
  transform: skewX(-10deg);
}

.icon-email::before {
  content: '';
  display: block;
  width: 14px; height: 10px;
  border: 2px solid var(--lime);
  border-radius: 1px 1px 2px 2px;
}

.icon-pdf::before {
  content: '';
  display: block;
  width: 12px; height: 15px;
  background: var(--lime);
  border-radius: 1px 3px 1px 1px;
  opacity: 0.5;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--fg);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.65;
}

/* === PROOF === */
.proof {
  background: var(--surface);
  padding: 100px 48px;
}

.proof-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.proof-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 32px;
}

blockquote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 44px);
  line-height: 1.2;
  color: var(--fg);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  font-style: normal;
  border: none;
  padding: 0;
}

.proof-attribution {
  font-size: 14px;
  color: var(--fg-3);
  margin-bottom: 56px;
}

.proof-divider {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 56px;
  color: var(--fg-3);
  font-size: 13px;
  letter-spacing: 0.05em;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.proof-stat {}

.proof-num {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--lime);
  letter-spacing: 0.05em;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}

.proof-desc {
  font-size: 13px;
  color: var(--fg-3);
  line-height: 1.65;
  max-width: 240px;
}

/* === MANIFESTO === */
.manifesto {
  padding: 120px 48px;
  max-width: 1280px;
  margin: 0 auto;
}

.manifesto-header { margin-bottom: 48px; }

.manifesto-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.manifesto-col h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--fg);
}

.manifesto-col p {
  font-size: 16px;
  color: var(--fg-2);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* === CLOSING === */
.closing {
  padding: 140px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(200,255,0,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner { position: relative; z-index: 1; }

.closing-tagline {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 96px);
  line-height: 1.05;
  letter-spacing: 0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 15px;
  color: var(--fg-3);
  letter-spacing: 0.05em;
}

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

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

.footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.05em;
  color: var(--lime);
}

.footer-tagline {
  font-size: 12px;
  color: var(--fg-3);
  margin-left: 16px;
}

.footer-links {
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 32px; }
  .hero-right { display: none; }
  .hero-left { max-width: 100%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-stats { grid-template-columns: repeat(2, 1fr); }
  .manifesto-body { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .hero-inner { padding: 0 24px; }
  .services, .proof, .manifesto, .closing { padding: 80px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-bottom-bar { flex-direction: column; gap: 8px; padding: 20px 24px; }
  .bar-sep { display: none; }
  .hero-stats { gap: 24px; }
  .stat-number { font-size: 36px; }
  .proof-stats { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}