:root {
  --ink: #0c1324;
  --ink-soft: #33415d;
  --muted: #556274;
  --line: #e2e8f0;
  --paper: #f7f9fc;
  --accent: #6d5cff;
  --accent-soft: #ece9ff;
  --teal: #23c7c7;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(12, 19, 36, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(226,232,240,0.9);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ink), var(--accent));
  color: white;
  font-size: 0.9rem;
  font-weight: 800;
}
.nav-links { display: flex; align-items: center; gap: 22px; color: var(--ink-soft); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.button:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.button.primary {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.button.ghost { background: transparent; border-color: transparent; padding-left: 0; padding-right: 0; }
.menu-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; position: relative; }
.menu-toggle span, .menu-toggle:before, .menu-toggle:after { content: ""; display: block; position: absolute; width: 22px; height: 2px; background: var(--ink); left: 11px; transition: 180ms ease; }
.menu-toggle span { top: 21px; }
.menu-toggle:before { top: 15px; }
.menu-toggle:after { top: 27px; }
body.menu-open .menu-toggle span { opacity: 0; }
body.menu-open .menu-toggle:before { transform: rotate(45deg); top: 21px; }
body.menu-open .menu-toggle:after { transform: rotate(-45deg); top: 21px; }
.hero {
  padding: 72px 0 54px;
  background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
}
h1, h2, h3 { line-height: 1.1; letter-spacing: -0.03em; margin: 0; }
h1 { font-size: clamp(2.5rem, 4.5vw, 4.3rem); max-width: 780px; }
h2 { font-size: clamp(2rem, 3vw, 2.7rem); }
.dek, .lede { font-size: 1.05rem; color: var(--muted); max-width: 700px; margin: 16px 0 0; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.trust-points {
  display: flex; gap: 18px; flex-wrap: wrap; list-style: none; padding: 0; margin: 24px 0 0; color: var(--ink-soft);
}
.trust-points li { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); }
.hero-card {
  padding: 16px;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--white);
}
.hero-card img { border-radius: 18px; width: 100%; height: auto; object-fit: cover; }
.stats-band { padding: 24px 0 8px; }
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(135deg, var(--accent-soft), #fdfcff);
}
.stats-grid strong { display: block; font-size: 1.4rem; }
.stats-grid span { color: var(--muted); font-size: 0.95rem; }
.section-pad { padding: 86px 0; }
.surface { background: var(--paper); }
.section-head { margin-bottom: 30px; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.info-card, .value-card, .leader-card { border: 1px solid var(--line); border-radius: 22px; background: var(--white); padding: 24px; box-shadow: 0 10px 30px rgba(12,19,36,0.04); }
.info-card h3, .value-card h3, .leader-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.info-card p, .value-card p, .leader-card p { margin: 0; color: var(--muted); }
.split-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: start; }
.steps { display: grid; gap: 16px; margin-top: 26px; }
.step { display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: start; padding: 16px 0; border-top: 1px solid var(--line); }
.step strong { color: var(--accent); font-size: 1.05rem; }
.step h3 { font-size: 1.08rem; margin-bottom: 4px; }
.step p { margin: 0; color: var(--muted); }
.quote-card, .statement-card {
  padding: 30px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--ink), #1f2c49);
  color: var(--white);
  box-shadow: var(--shadow);
}
.quote-card p, .statement-card p { font-size: 1.45rem; line-height: 1.3; margin: 0 0 12px; }
.quote-card span { color: rgba(255,255,255,0.76); }
.cta-card { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 30px; border-radius: 28px; background: linear-gradient(135deg, #0f172a, #17253f); color: var(--white); }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.site-footer { padding: 30px 0 42px; background: var(--ink); color: #d9e0eb; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 24px; }
.footer-brand { color: var(--white); margin-bottom: 10px; }
.site-footer h3 { color: var(--white); font-size: 1rem; margin-bottom: 8px; }
.site-footer p, .site-footer a { color: #c0c9d7; }
.about-hero {
  padding: 88px 0 70px;
  background: linear-gradient(135deg, var(--ink), #24304d);
  color: var(--white);
}
.about-hero .dek { color: rgba(255,255,255,0.78); max-width: 760px; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.leader-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.leader-card { display: flex; flex-direction: column; gap: 16px; }
.leader-card img { width: 100%; height: 240px; object-fit: cover; border-radius: 16px; }
.cta-band { padding-top: 0; }
@media (max-width: 900px) {
  .hero-grid, .split-grid, .card-grid, .leader-grid, .value-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 28px; }
  .stats-grid { grid-template-columns: 1fr; }
  .cta-card { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 720px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 76px 16px auto;
    display: grid;
    gap: 14px;
    padding: 18px;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: 180ms ease;
  }
  body.menu-open .nav-links { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .hero { padding-top: 48px; }
  .section-pad { padding: 68px 0; }
  .hero-actions, .cta-actions { flex-direction: column; align-items: flex-start; }
  .button { width: fit-content; }
}
