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

:root {
  --bg: #111111;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222222;
  --fg: #f5f0e8;
  --fg-muted: #9a9488;
  --accent: #f59e0b;
  --accent-dim: rgba(245,158,11,0.15);
  --border: rgba(245,158,11,0.2);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

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

/* NAV */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--accent);
  letter-spacing: 2px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 400;
}

/* HERO */
.hero {
  padding: 80px 48px 0;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: 1px;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 48px;
}
.hero-vertical {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-vertical-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  font-weight: 600;
}

/* HERO CONTENT FRAME */
.hero-visual { display: flex; justify-content: flex-end; }
.hero-content-frame {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 480px;
}
.content-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.content-card:first-child {
  grid-column: 1 / -1;
}
.content-card-video {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #2a1a0a 0%, #1a2a0a 50%, #0a1a2a 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 12px;
}
.content-card-video-sm {
  aspect-ratio: 4/3;
}
.video-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 2px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.video-overlay {
  z-index: 1;
  width: 100%;
}
.video-caption {
  font-size: 11px;
  color: rgba(245,240,232,0.7);
  line-height: 1.4;
}
.content-card-meta {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--border);
}
.content-card-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--fg);
}
.content-card-stat {
  font-size: 11px;
  color: var(--accent);
}

/* HERO BOTTOM BAR */
.hero-bottom-bar {
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 48px;
}
.hero-bottom-stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--accent);
  letter-spacing: 1px;
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.hero-bottom-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* SECTION LABEL */
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 600;
}

/* PROBLEM */
.problem { padding: 100px 48px; border-top: 1px solid var(--border); }
.problem-inner { max-width: 1200px; margin: 0 auto; }
.problem-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  margin-bottom: 60px;
  max-width: 700px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 28px;
}
.problem-icon {
  font-size: 24px;
  color: #e05c5c;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1;
}
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.problem-card p { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }
.problem-answer {
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.problem-answer-label {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--accent);
  letter-spacing: 1px;
  white-space: nowrap;
}
.problem-answer-text { font-size: 16px; color: var(--fg); line-height: 1.55; }

/* HOW */
.how { padding: 100px 48px; border-top: 1px solid var(--border); }
.how-inner { max-width: 1200px; margin: 0 auto; }
.how-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  margin-bottom: 60px;
  max-width: 600px;
}
.how-steps { display: flex; flex-direction: column; gap: 0; margin-bottom: 60px; }
.how-step {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.how-step:first-child { border-top: 1px solid var(--border); }
.how-step-number {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--accent);
  line-height: 1;
  min-width: 64px;
  letter-spacing: 1px;
}
.how-step-body h3 {
  font-family: var(--font-display);
  font-size: 26px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.how-step-body p { font-size: 16px; color: var(--fg-muted); max-width: 560px; line-height: 1.6; }
.how-quote {
  background: var(--bg-card);
  border-left: 3px solid var(--accent);
  padding: 28px 32px;
  border-radius: 0 4px 4px 0;
  margin-top: 20px;
}
.how-quote p {
  font-size: 18px;
  font-style: italic;
  color: var(--fg);
  line-height: 1.6;
  margin-bottom: 12px;
}
.how-quote-attr { font-size: 13px; color: var(--fg-muted); }

/* CONTENT GRID */
.content-grid-section { padding: 100px 48px; border-top: 1px solid var(--border); background: var(--bg); }
.content-grid-inner { max-width: 1200px; margin: 0 auto; }
.content-grid-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  margin-bottom: 48px;
  max-width: 600px;
}
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cg-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 24px;
  transition: border-color 0.2s;
}
.cg-card:hover { border-color: var(--accent); }
.cg-icon { font-size: 20px; color: var(--accent); margin-bottom: 16px; line-height: 1; }
.cg-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.cg-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* SERVICES */
.services { padding: 100px 48px; border-top: 1px solid var(--border); }
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.1;
  margin-bottom: 52px;
  max-width: 700px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.service-pillar {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px 20px;
  background: var(--bg-card);
}
.service-pillar h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.service-pillar p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }
.services-bottom { border-top: 1px solid var(--border); padding-top: 28px; }
.services-bottom-text { font-size: 15px; color: var(--fg-muted); max-width: 600px; line-height: 1.6; }

/* CLOSING */
.closing { padding: 120px 48px; border-top: 1px solid var(--border); }
.closing-inner { max-width: 1200px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1;
  margin-bottom: 28px;
}
.closing-sub { font-size: 18px; color: var(--fg-muted); max-width: 520px; line-height: 1.65; margin-bottom: 48px; }
.closing-tagline {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.closing-tagline span {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.closing-tagline span:nth-child(odd) { color: var(--accent); }

/* FOOTER */
.footer { border-top: 1px solid var(--border); padding: 40px 48px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-end; }
.footer-logo { font-family: var(--font-display); font-size: 24px; color: var(--accent); letter-spacing: 2px; display: block; margin-bottom: 8px; }
.footer-desc { font-size: 13px; color: var(--fg-muted); }
.footer-bottom span { font-size: 12px; color: var(--fg-muted); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { justify-content: flex-start; }
  .hero-content-frame { max-width: 100%; }
  .hero-bottom-bar { flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero-bottom-divider { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; gap: 20px; }
}
@media (max-width: 600px) {
  .nav, .hero, .problem, .how, .content-grid-section, .services, .closing, .footer { padding-left: 24px; padding-right: 24px; }
  .content-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-bottom-bar { gap: 20px; }
  .stat-number { font-size: 24px; }
  .how-step { gap: 20px; }
  .how-step-number { font-size: 36px; min-width: 48px; }
  .problem-answer { flex-direction: column; align-items: flex-start; }
}