:root {
  --red: #d40511;
  --red-2: #a30310;
  --tint: #fdeaec;
  --tint-2: #fff6f6;
  --ink: #1a1a1a;
  --muted: #5c5c5c;
  --line: #e7dede;
  --dark: #1a1a1a;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(26, 26, 26, .10);
  --radius: 22px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,.94); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 18px; }
.logo { display: flex; align-items: center; }
.logo img { width: 190px; height: auto; display: block; }
.menu { display: flex; gap: 24px; align-items: center; font-size: 15px; color: var(--muted); }
.menu a:hover { color: var(--red); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; padding: 12px 18px; font-weight: 700;
  border: 1px solid transparent;
}
.btn-primary { background: var(--red); color: white; box-shadow: 0 10px 30px rgba(212, 5, 17, .22); }
.btn-primary:hover { background: var(--red-2); transform: translateY(-1px); }
.btn-secondary { border-color: var(--line); color: var(--red); background: white; }
.hero { padding: 82px 0 62px; background: radial-gradient(circle at top left, var(--tint), #fff 42%, var(--tint-2)); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 54px; align-items: center; }
.eyebrow { color: var(--red); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: 13px; }
h1 { font-size: clamp(42px, 6vw, 68px); line-height: .98; letter-spacing: -0.055em; margin: 14px 0 22px; }
.lead { font-size: 20px; color: var(--muted); max-width: 680px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.hero-card {
  background: white; border: 1px solid var(--line); border-radius: 30px; padding: 28px; box-shadow: var(--shadow);
  position: relative;
}
.hero-card:before { content: ""; position: absolute; inset: 14px; border-radius: 24px; border: 1px dashed #f0c4c8; pointer-events: none; }
.metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 20px; }
.metric { background: var(--tint-2); border-radius: 18px; padding: 18px; border: 1px solid var(--line); }
.metric strong { display:block; font-size: 28px; color: var(--red); line-height: 1; }
.metric span { font-size: 13px; color: var(--muted); }
.section { padding: 76px 0; }
.section.alt { background: var(--tint-2); }
.section-header { max-width: 760px; margin-bottom: 34px; }
h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1.05; letter-spacing: -.04em; margin: 8px 0 14px; }
h3 { font-size: 22px; margin: 0 0 10px; letter-spacing: -.02em; }
p { margin: 0 0 14px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: 0 8px 26px rgba(26,26,26,.05); }
.icon { width: 46px; height: 46px; border-radius: 14px; background: var(--tint); display: grid; place-items: center; color: var(--red); font-size: 23px; margin-bottom: 18px; }
.list { padding: 0; margin: 16px 0 0; list-style: none; }
.list li { padding-left: 26px; position: relative; margin: 10px 0; color: var(--muted); }
.list li:before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 900; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: start; }
.panel { background: var(--dark); color: white; border-radius: 30px; padding: 34px; box-shadow: var(--shadow); }
.panel p, .panel li { color: #d6d6d6; }
.panel .eyebrow { color: #ff8f97; }
.panel .list li:before { color: #ff8f97; }
.timeline { display: grid; gap: 16px; }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 16px; align-items: start; }
.step-num { width: 46px; height: 46px; border-radius: 16px; background: var(--red); color: white; display: grid; place-items: center; font-weight: 900; }
.cta { background: linear-gradient(135deg, #d40511, #7a0410); color: white; border-radius: 34px; padding: 46px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: center; }
.cta p { color: #ffe0e2; }
.form { background: white; border: 1px solid var(--line); border-radius: 24px; padding: 24px; box-shadow: var(--shadow); }
label { display:block; font-weight: 700; font-size: 14px; margin: 12px 0 6px; }
input, textarea, select { width: 100%; padding: 13px 14px; border-radius: 14px; border: 1px solid #e0cccd; font: inherit; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(212, 5, 17, .12); }
textarea { min-height: 130px; resize: vertical; }
.footer { padding: 34px 0; background: #1a1a1a; color: #cfcfcf; }
.footer-inner { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; align-items: center; }
.footer a { color: white; }
.footer a:hover { color: #ff8f97; }
.badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.badge { padding: 8px 12px; background: var(--tint); color: var(--red); border-radius: 999px; font-weight: 800; font-size: 13px; }
.mobile-note { display: none; }
@media (max-width: 850px) {
  .menu { display: none; }
  .mobile-note { display: inline-flex; }
  .hero-grid, .split, .cta { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .hero { padding-top: 58px; }
  .metric-grid { grid-template-columns: 1fr; }
  .cta { padding: 30px; }
}

.hidden { display: none !important; }

/* Leadership bio */
.leader { display: grid; grid-template-columns: .78fr 1.22fr; gap: 40px; align-items: start; }
.leader-card { background: white; border: 1px solid var(--line); border-radius: 30px; padding: 28px; box-shadow: var(--shadow); text-align: center; }
.avatar { width: 132px; height: 132px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center; font-size: 44px; font-weight: 900; color: white; background: linear-gradient(135deg, var(--red), var(--red-2)); border: 4px solid var(--tint); box-shadow: 0 10px 30px rgba(212,5,17,.22); object-fit: cover; }
.leader-card h3 { margin-bottom: 4px; }
.leader-role { color: var(--red); font-weight: 800; font-size: 15px; margin: 0 0 16px; }
.leader-links { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.leader-bio h2 { margin-top: 0; }
.quote { border-left: 3px solid var(--red); padding: 4px 0 4px 18px; margin: 22px 0 0; color: var(--ink); font-size: 18px; font-style: italic; }
@media (max-width: 850px) {
  .leader { grid-template-columns: 1fr; }
}
