:root {
  --bg: #0a0a0f;
  --bg-alt: #12121a;
  --fg: #e8e6e3;
  --fg-dim: #8a8690;
  --accent: #ff3d00;
  --accent-glow: rgba(255, 61, 0, 0.3);
  --accent-alt: #ff6b35;
  --surface: #1a1a24;
  --border: #2a2a35;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* ═══════ HERO ═══════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px 60px;
  overflow: hidden;
  background: radial-gradient(ellipse at 20% 50%, rgba(255, 61, 0, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(255, 107, 53, 0.04) 0%, transparent 50%),
              var(--bg);
}

.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.9' 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-content {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.hero-tag {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 32px;
}

.hero h1 .accent {
  color: var(--accent);
  text-shadow: 0 0 60px var(--accent-glow);
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--fg-dim);
  max-width: 600px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
}

.hero-cta:hover {
  background: var(--accent-alt);
  box-shadow: 0 6px 24px var(--accent-glow);
  transform: translateY(-1px);
}

.hero-cta-ghost {
  display: inline-block;
  background: transparent;
  color: var(--fg-dim);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s;
}

.hero-cta-ghost:hover {
  color: var(--fg);
  border-color: var(--fg-dim);
}

.hero-meter {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column-reverse;
  gap: 4px;
  z-index: 1;
}

.meter-bar {
  width: 6px;
  border-radius: 3px;
  background: var(--accent);
  opacity: 0.3;
  animation: pulse-bar 1.8s ease-in-out infinite;
}

.meter-bar:nth-child(1) { height: 12px; animation-delay: 0s; }
.meter-bar:nth-child(2) { height: 20px; animation-delay: 0.1s; }
.meter-bar:nth-child(3) { height: 35px; animation-delay: 0.2s; }
.meter-bar:nth-child(4) { height: 50px; animation-delay: 0.15s; }
.meter-bar:nth-child(5) { height: 65px; animation-delay: 0.3s; }
.meter-bar:nth-child(6) { height: 80px; animation-delay: 0.05s; }
.meter-bar:nth-child(7) { height: 70px; animation-delay: 0.25s; }
.meter-bar:nth-child(8) { height: 55px; animation-delay: 0.35s; }
.meter-bar:nth-child(9) { height: 40px; animation-delay: 0.2s; }
.meter-bar:nth-child(10) { height: 28px; animation-delay: 0.1s; }
.meter-bar:nth-child(11) { height: 18px; animation-delay: 0.3s; }
.meter-bar:nth-child(12) { height: 10px; animation-delay: 0.15s; }

@keyframes pulse-bar {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ═══════ PROBLEM ═══════ */
.problem {
  padding: 120px 40px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 60px;
  max-width: 700px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.problem-card {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.problem-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

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

/* ═══════ SERVICES ═══════ */
.services {
  padding: 120px 40px;
  background: var(--bg);
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.services-tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.services h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 64px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}

.service-item {
  padding: 0;
}

.service-icon {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1;
}

.service-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}

.service-item p {
  color: var(--fg-dim);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ═══════ PROOF ═══════ */
.proof {
  padding: 100px 40px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.proof-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 72px;
}

.proof-stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.proof-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--fg);
  border-left: 3px solid var(--accent);
  padding-left: 32px;
  margin: 0;
}

.proof-quote cite {
  display: block;
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 500;
  color: var(--fg-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ═══════ CLOSING ═══════ */
.closing {
  padding: 140px 40px;
  background: var(--bg);
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--fg);
}

.closing-statement {
  font-size: 1.2rem;
  color: var(--fg-dim);
  line-height: 1.8;
  margin-bottom: 24px;
}

.closing-vision {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
}

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

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

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--fg);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-dim);
}

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 768px) {
  .hero { padding: 60px 24px 48px; }
  .hero-meter { display: none; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-cta, .hero-cta-ghost { text-align: center; }

  .problem { padding: 80px 24px; }
  .problem-grid { grid-template-columns: 1fr; gap: 20px; }

  .services { padding: 80px 24px; }
  .services-grid { grid-template-columns: 1fr; gap: 36px; }

  .proof { padding: 80px 24px; }
  .proof-stat-row { grid-template-columns: 1fr; gap: 40px; }

  .closing { padding: 80px 24px; }

  .site-footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}