:root {
  --ink: #0B0D0F;
  --ink-2: #15191D;
  --ink-3: #1D2328;
  --paper: #F2F0EA;
  --white: #FFFFFF;
  --red: #D9292F;
  --muted: #9BA3AA;
  --line: rgba(255,255,255,.12);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
svg { display: block; width: 100%; height: 100%; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 900px; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; z-index: 1000; background: white; color: black; padding: 10px 14px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,13,15,.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; }
.brand-mark { width: 64px; height: 22px; }
.brand-mark path, .pulse-line path, .book-pulse path {
  fill: none; stroke: var(--red); stroke-width: 3; vector-effect: non-scaling-stroke;
}
.brand-name { font-size: 13px; letter-spacing: .12em; font-weight: 700; white-space: nowrap; }
.brand-name strong, .footer-brand strong { color: var(--red); }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { color: #D7DBDE; text-decoration: none; font-size: 14px; font-weight: 600; }
.site-nav a:hover { color: white; }
.nav-cta { border: 1px solid rgba(255,255,255,.22); padding: 9px 14px; }
.menu-btn { display: none; }

.hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 110px 0 90px;
  background:
    radial-gradient(circle at 82% 22%, rgba(217,41,47,.11), transparent 26%),
    linear-gradient(180deg, #0B0D0F 0%, #111519 100%);
  border-bottom: 1px solid var(--line);
}
.hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: center; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 800;
}
h1, h2, h3 { margin-top: 0; line-height: 1.02; letter-spacing: -.035em; }
h1 { font-size: clamp(52px, 7vw, 96px); max-width: 900px; margin-bottom: 28px; }
h1 span { color: var(--red); }
h2 { font-size: clamp(38px, 4.7vw, 64px); margin-bottom: 26px; }
h3 { font-size: 28px; margin-bottom: 14px; }
.hero-lead { max-width: 760px; font-size: 20px; color: #C9CED2; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 800;
}
.btn-primary { background: var(--red); color: white; }
.btn-primary:hover { filter: brightness(1.08); }
.btn-secondary { border: 1px solid rgba(255,255,255,.24); color: white; }
.btn-large { min-height: 58px; padding: 0 26px; }
.founder-line { margin-top: 28px; font-size: 13px; color: #8E979E; }

.hero-panel {
  background: linear-gradient(180deg, rgba(29,35,40,.95), rgba(18,22,26,.95));
  border: 1px solid rgba(255,255,255,.12);
  padding: 34px;
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
}
.pulse-line { height: 70px; margin-bottom: 26px; }
.panel-kicker { font-size: 11px; letter-spacing: .18em; font-weight: 800; color: #AAB1B6; }
.panel-big { font-size: 42px; line-height: 1; font-weight: 850; margin: 10px 0 18px; }
.panel-copy { color: #BBC1C5; }
.panel-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.panel-tags span {
  border: 1px solid rgba(255,255,255,.12);
  padding: 6px 9px;
  font-size: 11px;
  color: #C6CBD0;
}

.statement { padding: 58px 0; background: var(--red); color: white; }
.statement-text { margin: 0; text-align: center; font-size: clamp(23px, 3.2vw, 40px); line-height: 1.25; font-weight: 800; letter-spacing: -.02em; }

.section { padding: 110px 0; border-bottom: 1px solid var(--line); }
.section-dark { background: var(--ink-2); }
.two-col { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.section-copy { color: #C0C6CA; font-size: 18px; }
.section-copy p:first-child { margin-top: 0; }
.large-copy { font-size: 24px; line-height: 1.5; color: var(--paper); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 65px; }
.card {
  min-height: 260px;
  padding: 30px;
  background: var(--ink-2);
  border: 1px solid var(--line);
}
.card-num { display: block; color: var(--red); font-size: 12px; font-weight: 800; letter-spacing: .14em; margin-bottom: 48px; }
.card p { color: #AEB5BA; margin-bottom: 0; }

.founder-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.founder-card {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 18px;
  border-left: 3px solid var(--red);
  padding-left: 28px;
}
.initials {
  width: 110px; height: 110px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  background: var(--ink-3);
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -.05em;
}
.founder-card h2 { font-size: 42px; margin-bottom: 10px; }
.muted { color: #929AA0; margin: 3px 0; }

.book-section { background: linear-gradient(180deg, #0B0D0F, #101316); }
.book-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; align-items: center; }
.book-mock {
  width: min(360px, 100%);
  aspect-ratio: 2 / 3;
  padding: 28px 26px;
  background: #07090A;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 35px 90px rgba(0,0,0,.55);
  display: flex;
  flex-direction: column;
}
.book-topline { font-size: 12px; letter-spacing: .16em; font-weight: 800; color: #C6CBD0; }
.book-pulse { height: 64px; margin: 30px 0 20px; }
.book-title { font-size: clamp(44px, 5vw, 66px); line-height: .9; font-weight: 950; letter-spacing: -.06em; }
.book-sub { color: #AEB5BA; font-size: 10px; line-height: 1.5; letter-spacing: .08em; margin-top: 24px; }
.book-author { margin-top: auto; color: var(--red); font-size: 13px; letter-spacing: .15em; font-weight: 800; }
.status {
  display: inline-block;
  margin-top: 18px;
  border: 1px solid rgba(217,41,47,.65);
  color: #E96D72;
  padding: 8px 10px;
  font-size: 11px;
  letter-spacing: .13em;
  font-weight: 800;
}

.contact-section { background: var(--paper); color: var(--ink); }
.contact-box { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: center; }
.contact-box p { max-width: 700px; color: #515A61; }
.contact-box .eyebrow { color: #B91F25; }
.contact-box h2 { margin-bottom: 16px; }

.footer { padding: 44px 0 60px; background: #07090A; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.footer-brand { font-size: 14px; letter-spacing: .11em; font-weight: 800; }
.footer p { color: #7F888F; font-size: 12px; }
.footer-right { text-align: right; }

@media (max-width: 900px) {
  .menu-btn {
    display: inline-flex;
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,.2);
    padding: 9px 12px;
    font: inherit;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0; right: 0;
    padding: 22px 20px 26px;
    background: #0B0D0F;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 8px 0; }
  .hero { min-height: auto; padding-top: 86px; }
  .hero-grid, .two-col, .founder-grid, .book-grid, .contact-box, .footer-grid { grid-template-columns: 1fr; gap: 44px; }
  .cards { grid-template-columns: 1fr; }
  .hero-panel { max-width: 620px; }
  .footer-right { text-align: left; }
  .section { padding: 78px 0; }
}

@media (max-width: 560px) {
  .wrap { width: min(var(--max), calc(100% - 28px)); }
  .brand-mark { width: 50px; }
  .brand-name { font-size: 11px; letter-spacing: .08em; }
  h1 { font-size: clamp(48px, 14vw, 68px); }
  .hero-lead { font-size: 18px; }
  .hero-panel { padding: 24px; }
  .panel-big { font-size: 34px; }
  .statement { padding: 42px 0; }
  .section-copy, .large-copy { font-size: 18px; }
  .book-mock { margin: 0 auto; }
}
