:root {
  --navy: #0a1628;
  --navy-light: #121f36;
  --navy-mid: #1a2d4a;
  --gold: #c9a227;
  --gold-light: #e8c84c;
  --cream: #f5f0e8;
  --white: #ffffff;
  --gray-300: #94a3b8;
  --gray-500: #64748b;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Hero */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 6vw 80px;
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 40%, var(--navy-mid) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 20%, rgba(201, 162, 39, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 162, 39, 0.3);
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 40px;
  width: fit-content;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 800px;
}

.hero h1 .accent {
  color: var(--gold);
}

.lede {
  font-size: 1.15rem;
  color: var(--gray-300);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-cta-primary {
  display: inline-block;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 5px;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.15s;
}

.hero-cta-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.hero-cta-secondary {
  display: inline-block;
  padding: 13px 24px;
  background: transparent;
  color: var(--cream);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  transition: border-color 0.2s, color 0.2s;
}

.hero-cta-secondary:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.hero-cta-ghost {
  display: inline-block;
  padding: 13px 16px;
  color: var(--gray-300);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}

.hero-cta-ghost:hover {
  color: var(--gold);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid rgba(201, 162, 39, 0.15);
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(201, 162, 39, 0.2);
}

/* Problem Section */
.problem {
  padding: 120px 6vw;
  background: var(--navy-light);
}

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

.section-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.problem h2,
.how h2,
.roles h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 56px;
}

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

.problem-card {
  background: var(--navy);
  border: 1px solid rgba(201, 162, 39, 0.1);
  border-radius: 12px;
  padding: 36px 28px;
  transition: border-color 0.3s;
}

.problem-card:hover {
  border-color: rgba(201, 162, 39, 0.3);
}

.problem-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
}

.problem-card p {
  font-size: 0.95rem;
  color: var(--gray-300);
  line-height: 1.6;
}

/* How Section */
.how {
  padding: 120px 6vw;
  background: var(--navy);
}

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

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

.how-card {
  position: relative;
  padding-top: 20px;
}

.how-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(201, 162, 39, 0.12);
  line-height: 1;
  margin-bottom: 16px;
}

.how-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.how-card p {
  font-size: 0.95rem;
  color: var(--gray-300);
  line-height: 1.7;
}

/* Roles Section */
.roles {
  padding: 100px 6vw;
  background: var(--navy-light);
}

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

.roles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.role-chip {
  background: var(--navy);
  border: 1px solid rgba(201, 162, 39, 0.2);
  color: var(--cream);
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s;
}

.role-chip:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.roles-note {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-top: 20px;
}

/* Closing */
.closing {
  padding: 140px 6vw;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  text-align: center;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.2;
}

.closing p {
  font-size: 1.05rem;
  color: var(--gray-300);
  line-height: 1.8;
}

/* Footer */
.site-footer {
  padding: 40px 6vw;
  background: var(--navy);
  border-top: 1px solid rgba(201, 162, 39, 0.1);
}

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

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--gold);
}

.footer-location {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 80px 24px 60px;
  }

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

  .stat-divider {
    display: none;
  }

  .problem-grid,
  .how-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .problem,
  .how,
  .roles,
  .closing {
    padding: 80px 24px;
  }

  .roles-list {
    gap: 10px;
  }

  .role-chip {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}