:root {
  --navy: #0c1b33;
  --navy-light: #142744;
  --gold: #c9a84c;
  --gold-light: #e8d7a3;
  --cream: #faf7f0;
  --cream-dark: #f0ead6;
  --text: #1a1a2e;
  --text-muted: #5a5a7a;
  --white: #ffffff;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  overflow: hidden;
  padding: 2rem;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 100px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.hero-gradient {
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* BRIDGE SECTION */
.bridge {
  padding: 5rem 2rem;
  background: var(--cream);
}

.bridge-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.bridge-card {
  flex: 1;
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  text-align: center;
}

.bridge-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.bridge-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
  font-weight: 400;
}

.bridge-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.bridge-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 60px;
}

.connector-line {
  width: 2px;
  height: 30px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-light));
}

.connector-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.2);
}

/* FEATURES */
.features {
  padding: 6rem 2rem;
  background: var(--navy);
}

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

.features-header {
  margin-bottom: 4rem;
}

.features-label {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 1rem;
}

.features-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  font-weight: 400;
  line-height: 1.2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.feature {
  padding: 2rem;
  border-left: 2px solid rgba(201,168,76,0.3);
  padding-left: 2rem;
}

.feature-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  font-style: italic;
}

.feature h3 {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* CLOSING */
.closing {
  padding: 6rem 2rem;
  background: var(--cream);
  text-align: center;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.closing-text {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.closing-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 400;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* FOOTER */
.site-footer {
  padding: 3rem 2rem;
  background: var(--navy);
  text-align: center;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer-contact {
  color: var(--gold);
  font-size: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .bridge-inner {
    flex-direction: column;
  }
  .bridge-connector {
    flex-direction: row;
    min-width: auto;
    width: 100%;
    justify-content: center;
  }
  .connector-line {
    width: 30px;
    height: 2px;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .closing-stats {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  .hero {
    min-height: 70vh;
  }
}