: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;
}

/* Trust Bar */
.trust-bar {
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
  padding: 0 6vw;
}

.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 28px;
  flex: 1;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}

.trust-item:not(.non-link):hover {
  background: rgba(201, 162, 39, 0.04);
}

.trust-icon {
  color: var(--gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-text strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.trust-text em {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--gray-500);
}

.trust-divider {
  width: 1px;
  background: rgba(201, 162, 39, 0.12);
  align-self: stretch;
  flex-shrink: 0;
}

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

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

/* How — tabs */
.how-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.how-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--gray-500);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 24px 14px;
  cursor: pointer;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}

.how-tab:hover {
  color: var(--cream);
}

.how-tab.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

/* How — step flow */
.how-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-bottom: 40px;
}

.how-connector {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, rgba(201,162,39,0.3), rgba(201,162,39,0.1));
  margin-top: 28px;
  align-self: start;
}

.how-step {
  padding: 0 8px;
}

.how-step-num {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 800;
  color: rgba(201, 162, 39, 0.10);
  line-height: 1;
  margin-bottom: 12px;
}

.how-step-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 10px;
  line-height: 1.3;
}

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

.how-panel.hidden {
  display: none;
}

/* How — CTA row */
.how-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
}

.how-cta {
  display: inline-block;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.2s, transform 0.15s;
}

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

.how-link {
  color: var(--gray-500);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s;
}

.how-link:hover {
  color: var(--gold);
}

/* 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 {
    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;
  }

  /* Trust bar — stack on mobile */
  .trust-bar {
    padding: 0 24px;
  }

  .trust-bar-inner {
    flex-direction: column;
    gap: 0;
  }

  .trust-item {
    padding: 18px 0;
    flex: none;
  }

  .trust-divider {
    width: 100%;
    height: 1px;
    align-self: auto;
  }

  /* How — process steps stack on mobile */
  .how-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .how-connector {
    width: 2px;
    height: 32px;
    background: linear-gradient(180deg, rgba(201,162,39,0.3), rgba(201,162,39,0.1));
    margin: 0 0 0 18px;
    justify-self: start;
  }

  .how-step {
    padding: 0;
    margin-bottom: 4px;
  }

  .how-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .how-tab {
    white-space: nowrap;
    padding: 12px 16px 14px;
    font-size: 0.88rem;
  }

  .how-cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}