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

:root {
  --bg: #080e0c;
  --bg-alt: #0c1610;
  --fg: #f0ece2;
  --fg-muted: #8a9e92;
  --accent: #c8903c;
  --accent-dim: rgba(200, 144, 60, 0.15);
  --cream: #f4ede0;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --section-pad: clamp(60px, 10vw, 120px);
}

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;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
  font-family: var(--font-body);
}

.section-eyebrow.light { color: var(--accent); }

/* === NAV === */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(24px, 5vw, 64px);
  position: relative;
  z-index: 10;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.05em;
}

.nav-tagline {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* === HERO === */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  min-height: 88vh;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--accent-dim), transparent);
  margin-right: -1px;
}

.hero-content {
  padding: clamp(40px, 6vw, 80px);
  padding-right: clamp(40px, 4vw, 80px);
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
}

.hero-headline {
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1.8rem;
  letter-spacing: -0.02em;
}

.hero-lede {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: clamp(24px, 4vw, 48px);
}

.stat { display: flex; flex-direction: column; gap: 4px; }

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  line-height: 1.3;
  max-width: 110px;
}

.hero-visual {
  position: relative;
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 380px;
}

.grid-cell {
  border-radius: 12px;
  background: var(--accent-dim);
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.grid-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200, 144, 60, 0.2);
  border-radius: inherit;
}

.grid-cell-1 { background: rgba(200, 144, 60, 0.25); }
.grid-cell-2 { background: var(--accent-dim); transform: rotate(3deg); }
.grid-cell-3 { background: rgba(200, 144, 60, 0.1); transform: rotate(-2deg); }
.grid-cell-4 { background: rgba(200, 144, 60, 0.15); transform: rotate(5deg); }
.grid-cell-5 { background: rgba(200, 144, 60, 0.35); }
.grid-cell-6 { background: var(--accent-dim); transform: rotate(-4deg); }
.grid-cell-7 { background: rgba(200, 144, 60, 0.1); transform: rotate(2deg); }
.grid-cell-8 { background: rgba(200, 144, 60, 0.2); transform: rotate(-3deg); }
.grid-cell-9 { background: rgba(200, 144, 60, 0.08); transform: rotate(1deg); }

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-alt);
  border: 1px solid var(--accent-dim);
  border-radius: 16px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.badge-inner { display: flex; align-items: center; gap: 12px; }

.badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-icon::after {
  content: '';
  width: 14px;
  height: 14px;
  border: 2px solid #080e0c;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  margin-top: -4px;
}

.badge-title {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--cream);
}

.badge-sub {
  display: block;
  font-size: 0.7rem;
  color: var(--fg-muted);
  margin-top: 2px;
}

/* === PROBLEM === */
.problem {
  padding: var(--section-pad);
  background: var(--bg-alt);
  position: relative;
}

.problem::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-dim), transparent);
}

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

.problem-headline {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: var(--cream);
  margin-bottom: 1.5rem;
  letter-spacing: -0.015em;
}

.problem-body {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 3rem;
  max-width: 680px;
}

.problem-items { display: flex; flex-direction: column; gap: 24px; }

.problem-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 24px;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
}

.problem-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,100,100,0.3);
  color: #ff6b6b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.problem-item h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
}

.problem-item p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* === WHY NOW === */
.why-now {
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}

.why-now::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,144,60,0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.why-now-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.why-now-headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--cream);
  margin-bottom: 0.8rem;
}

.why-now-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
}

.why-now-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  padding: 32px;
  border: 1px solid rgba(200,144,60,0.15);
  border-radius: 16px;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent), transparent);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,144,60,0.3);
}

.why-card-metric {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1;
}

.why-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* === INDUSTRIES === */
.industries {
  padding: var(--section-pad);
  background: var(--bg-alt);
  position: relative;
}

.industries::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-dim), transparent);
}

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

.industries-headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--cream);
  margin-bottom: 1rem;
}

.industries-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 540px;
  margin-bottom: 3.5rem;
  line-height: 1.7;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.industry-card {
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.industry-card:hover { border-color: rgba(200,144,60,0.25); }

.industry-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.industry-card:hover::after { opacity: 1; }

.industry-icon {
  color: var(--accent);
  margin-bottom: 16px;
}

.industry-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
}

.industry-card p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* === OUTCOMES === */
.outcomes {
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}

.outcomes::before {
  content: '';
  position: absolute;
  bottom: -300px;
  left: -100px;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,144,60,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.outcomes-inner { max-width: 900px; margin: 0 auto; }

.outcomes-headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--cream);
  margin-bottom: 3rem;
}

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

.outcome { position: relative; }

.outcome-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(200,144,60,0.15);
  line-height: 1;
  margin-bottom: 12px;
}

.outcome h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
}

.outcome p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* === CLOSING === */
.closing {
  padding: var(--section-pad);
  padding-top: calc(var(--section-pad) * 1.5);
  background: var(--bg-alt);
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.closing-rule {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  margin: 0 auto 3rem;
}

.closing-headline {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--cream);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

/* === FOOTER === */
.footer {
  padding: 48px clamp(24px, 5vw, 64px);
  border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-brand { display: flex; flex-direction: column; gap: 4px; }

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.05em;
}

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

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

.footer-copy {
  font-size: 0.75rem;
  color: rgba(138, 158, 146, 0.5);
  width: 100%;
  text-align: center;
  padding-top: 16px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 40px;
  }

  .hero-visual { display: none; }

  .hero-content { padding: 40px 24px; }

  .hero-stats { flex-direction: column; gap: 20px; }

  .why-now-grid,
  .industries-grid,
  .outcomes-grid { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .problem-item { flex-direction: column; gap: 12px; }
}
