:root{
  --black:#000000;
  --near-black:#1d1d1f;
  --white:#fbfbfd;
  --dark-text:#f5f5f7;
  --dark-muted:#86868b;
  --light-muted:#6e6e73;
  --line-dark:rgba(255,255,255,0.14);
  --line-light:rgba(0,0,0,0.1);
  --accent:#b3122e;
  --bg-navy:#0a0e1a;
  --surface:#0f1524;
  --border-navy:#1e2740;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Inter', -apple-system, sans-serif;
  background:var(--white);
  color:var(--near-black);
  -webkit-font-smoothing:antialiased;
}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
.wrap{max-width:1180px; margin:0 auto; padding:0 24px;}

/* NAV */
nav{
  position:fixed; top:0; left:0; right:0; z-index:100;
  display:flex; align-items:center; justify-content:space-between;
  padding:0 32px; height:52px;
  background:rgba(0,0,0,0.72);
  backdrop-filter:saturate(180%) blur(20px);
  font-size:0.8rem; font-weight:500; color:var(--dark-text);
}
.navmark{display:flex; align-items:center; gap:8px;}
.navmark svg{width:18px; height:18px;}
.navlinks{display:flex; gap:34px;}
.navlinks a{color:var(--dark-muted); transition:color .2s;}
.navlinks a:hover, .navlinks a.current{color:var(--dark-text);}
.navcta{background:var(--dark-text); color:var(--black); padding:6px 16px; border-radius:980px; font-size:0.78rem; font-weight:600;}
.navcta.ghost{background:transparent; border:1px solid rgba(255,255,255,0.3); color:var(--dark-text); margin-right:14px;}
.navtoggle{display:none; background:none; border:none; color:var(--dark-text); font-size:1.3rem;}

/* SECTION HELPERS */
section{padding:0 24px;}
.section-inner{max-width:1180px; margin:0 auto; text-align:center; padding:130px 0;}
.bg-black{background:var(--black); color:var(--dark-text);}
.bg-white{background:var(--white); color:var(--near-black);}

.eyebrow{font-size:0.95rem; font-weight:600; color:var(--accent); margin-bottom:18px;}
.headline{font-weight:600; letter-spacing:-0.03em; line-height:1.05; font-size:clamp(2.4rem, 6vw, 5.2rem);}
.headline.thin{font-weight:300;}
.subhead{font-size:clamp(1.1rem, 2vw, 1.5rem); font-weight:400; max-width:640px; margin:22px auto 0; color:var(--light-muted); line-height:1.5;}
.bg-black .subhead{color:var(--dark-muted);}

.pill-row{display:flex; gap:28px; justify-content:center; margin-top:42px; flex-wrap:wrap; align-items:center;}
.pill{font-size:1.02rem; font-weight:500; display:inline-flex; align-items:center; gap:6px;}
.pill.filled{background:var(--accent); color:#fff; padding:12px 24px; border-radius:980px; transition:background .2s;}
.pill.filled:hover{background:#8f0e25;}
.pill.ghost{color:var(--accent);}
.pill.ghost:hover{text-decoration:underline;}

.reveal{opacity:0; transform:translateY(28px); transition:opacity .8s ease, transform .8s ease;}
.reveal.in{opacity:1; transform:translateY(0);}
@media (prefers-reduced-motion: reduce){ .reveal{opacity:1; transform:none; transition:none;} }

/* PAGE HERO (secondary pages, shorter than homepage) */
.page-hero{min-height:46vh; display:flex; align-items:center; justify-content:center; padding-top:52px;}
.page-hero .headline{font-size:clamp(2.4rem, 6vw, 4rem);}

footer{background:var(--black); color:var(--dark-muted); padding:40px 32px; font-size:0.78rem;}
.footer-inner{max-width:1180px; margin:0 auto; display:flex; justify-content:space-between; flex-wrap:wrap; gap:16px; border-top:1px solid var(--line-dark); padding-top:24px;}
.footer-links{display:flex; gap:22px;}
.footer-links a:hover{color:var(--dark-text);}

@media (max-width:900px){
  .navlinks{display:none;}
  .navtoggle{display:block;}
}
a:focus-visible, button:focus-visible, input:focus-visible{outline:2px solid var(--accent); outline-offset:2px;}
