:root {
  --bg: #ffffff;
  --bg-elevated: #f8fafc;
  --surface: #ffffff;
  --border: #e2e8f0;
  --text: #0f172a;
  --muted: #64748b;
  --navy: #1e3a8a;
  --accent: #b8860b;
  --accent-2: #1e3a8a;
  --gradient: linear-gradient(135deg, #1e3a8a, #2563eb);
  --gold-gradient: linear-gradient(135deg, #b8860b, #d4a84b);
  --radius: 8px;
  --shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  --font: "Inter", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.container { width: min(1140px, calc(100% - 2.5rem)); margin-inline: auto; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  padding: 0.85rem 0;
  transition: background 0.3s, box-shadow 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}
.site-header__inner { display: flex; align-items: center; gap: 1.5rem; }
.brand { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--navy); }
.brand em { font-style: italic; color: var(--accent); font-weight: 500; }
.nav { display: flex; gap: 2rem; margin-left: auto; }
.nav a { color: var(--muted); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav a:hover { color: var(--navy); }
.menu-btn {
  display: none; width: 44px; height: 44px; border: 1px solid var(--border);
  border-radius: var(--radius); background: var(--surface); cursor: pointer; margin-left: auto;
}
.menu-btn span { display: block; width: 18px; height: 2px; margin: 5px auto; background: var(--navy); border-radius: 2px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.5rem; border-radius: var(--radius); font-weight: 600; font-size: 0.9rem;
  background: var(--navy); color: #fff; border: none;
  transition: transform 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-1px); background: #1e40af; }
.btn--outline {
  background: transparent; color: var(--navy); border: 1px solid var(--border); box-shadow: none;
}
.btn--outline:hover { border-color: var(--navy); transform: translateY(-1px); }
.btn--small { padding: 0.55rem 1.1rem; font-size: 0.85rem; }
.btn--light { background: #fff; color: var(--navy); border: 1px solid rgba(255,255,255,0.3); }

.hero { position: relative; padding: 8.5rem 0 4.5rem; overflow: hidden; }
.hero__glow {
  position: absolute; inset: 0 0 auto;
  height: 100%;
  background: linear-gradient(180deg, #f1f5f9 0%, #fff 60%);
  pointer-events: none;
}
.hero__grid {
  position: relative; display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem; align-items: center;
}
.pill {
  display: inline-block; padding: 0.35rem 0.85rem; margin-bottom: 1.25rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy); border: 1px solid var(--border); background: var(--bg-elevated);
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 600; line-height: 1.12; margin: 0 0 1.25rem; color: var(--navy);
}
.hero__lead { font-size: 1.1rem; color: var(--muted); max-width: 34rem; margin: 0 0 2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__panel { position: relative; min-height: 340px; }
.hero__ring {
  position: absolute; inset: 10%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
}
.metric-card {
  position: absolute; padding: 1.25rem 1.5rem; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--accent);
}
.metric-card--alt { bottom: 12%; right: 0; border-top-color: var(--navy); }
.metric-card:first-child { top: 10%; left: 0; }
.metric-card__label { display: block; font-size: 0.78rem; color: var(--muted); margin-bottom: 0.35rem; text-transform: uppercase; letter-spacing: 0.06em; }
.metric-card strong { font-size: 2rem; font-family: var(--font-display); color: var(--navy); }

.stats { padding: 0 0 4rem; background: var(--navy); color: #fff; margin-top: -1px; }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.stat {
  padding: 2.25rem 1.25rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stat:last-child { border-right: none; }
.stat strong { display: block; font-size: 1.65rem; font-family: var(--font-display); margin-bottom: 0.35rem; color: #fbbf24; }
.stat span { font-size: 0.82rem; opacity: 0.85; }

.section { padding: 5rem 0; }
.section-label {
  display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem;
}
.section h2 {
  font-family: var(--font-display); font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 600; line-height: 1.2; margin: 0 0 1rem; color: var(--navy);
}
.section-intro { max-width: 580px; margin-bottom: 2.5rem; }
.section-intro p { color: var(--muted); margin: 0; font-size: 1.05rem; }
.section-intro--center { text-align: center; margin-inline: auto; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.split__body p { color: var(--muted); font-size: 1.05rem; margin: 0 0 1.5rem; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.85rem; }
.check-list li {
  padding-left: 1.5rem; position: relative; font-weight: 500; color: var(--text);
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 0.5em;
  width: 6px; height: 6px; background: var(--accent); transform: rotate(45deg);
}

.about { background: var(--bg-elevated); border-block: 1px solid var(--border); }

.card-grid { display: grid; gap: 1.25rem; }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.feature-card {
  padding: 1.75rem; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); transition: transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover {
  transform: translateY(-3px); box-shadow: var(--shadow); border-color: #cbd5e1;
}
.feature-card__icon {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: #eff6ff; border-radius: var(--radius); color: var(--navy); margin-bottom: 1.25rem;
}
.feature-card__icon svg { width: 22px; height: 22px; }
.feature-card h3 { margin: 0 0 0.5rem; font-size: 1.05rem; color: var(--navy); }
.feature-card p { margin: 0; font-size: 0.92rem; color: var(--muted); }

.timeline {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.timeline li {
  padding: 1.75rem; background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius); border-left: 4px solid var(--navy);
}
.timeline__step {
  display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--accent); margin-bottom: 1rem;
}
.timeline h3 { margin: 0 0 0.5rem; font-size: 1.05rem; color: var(--navy); }
.timeline p { margin: 0; font-size: 0.9rem; color: var(--muted); }

.benefits { background: var(--bg); }
.benefits__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.benefits__copy p { color: var(--muted); margin: 0; }
.benefits__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.benefits__list li {
  padding: 1.25rem 1.5rem; background: var(--bg-elevated);
  border: 1px solid var(--border); border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}
.benefits__list strong { display: block; margin-bottom: 0.25rem; color: var(--navy); }
.benefits__list span { font-size: 0.9rem; color: var(--muted); }

.chip-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.chip-row span {
  padding: 0.5rem 1rem; border-radius: var(--radius); font-size: 0.88rem; font-weight: 500;
  background: var(--bg-elevated); border: 1px solid var(--border); color: var(--navy);
}

.platform-bar {
  text-align: center; padding: 2.5rem; background: var(--navy); color: #fff;
  border-radius: var(--radius);
}
.platform-bar .section-label { color: #fbbf24; }
.platform-bar p { margin: 0.5rem 0 0; font-size: 0.95rem; opacity: 0.9; }

.insight-card {
  padding: 1.75rem; background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius);
}
.insight-card h3 { margin: 0 0 0.5rem; font-size: 1.05rem; font-family: var(--font-display); color: var(--navy); }
.insight-card p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.cta-band { padding: 5rem 0; }
.cta-band__inner {
  text-align: center; padding: 4rem 2rem; border-radius: var(--radius);
  background: var(--gradient); color: #fff;
}
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.35rem); font-weight: 600; margin: 0 0 0.75rem; }
.cta-band p { opacity: 0.9; max-width: 30rem; margin: 0 auto 1.75rem; }

.site-footer { padding: 2rem 0; border-top: 1px solid var(--border); background: var(--bg-elevated); }
.site-footer__inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; }
.site-footer p { margin: 0; font-size: 0.85rem; color: var(--muted); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--d1 { transition-delay: 0.12s; }

@media (max-width: 960px) {
  .hero__grid, .split, .benefits__grid { grid-template-columns: 1fr; }
  .hero__panel { min-height: 280px; order: -1; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .card-grid--3, .timeline { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav, .site-header .btn--small { display: none; }
  .menu-btn { display: block; }
  .site-header.is-open .nav {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 1.25rem; right: 1.25rem;
    padding: 1rem; background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); margin-left: 0; box-shadow: var(--shadow);
  }
  .card-grid--3, .timeline, .stats__grid { grid-template-columns: 1fr; }
  .hero { padding-top: 7rem; }
}
