
:root {
  --navy: #111D2B;
  --navy-2: #17283B;
  --ink: #111827;
  --muted: #66727E;
  --soft: #F4F6F8;
  --line: #DFE5EA;
  --white: #FFFFFF;
  --gold: #C89B4B;
  --max-width: 1180px;
  --radius: 10px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
}
.skip-link:focus { left: 10px; }

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.narrow { max-width: 850px; }
.center { text-align: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.wordmark-main {
  font-size: 1.06rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.wordmark-sub {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav > a:not(.btn) {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}
.nav > a:not(.btn):hover { color: var(--ink); }

.hero {
  padding: 112px 0 104px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, .72fr);
  gap: 72px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin-top: 0;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-size: clamp(3.6rem, 7vw, 6.8rem);
  font-weight: 850;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 820;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
}

.hero-lead {
  max-width: 760px;
  margin: 0 0 15px;
  font-size: clamp(1.22rem, 2vw, 1.58rem);
  font-weight: 680;
  line-height: 1.45;
}

.hero-support {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 20px;
  border: 1px solid var(--navy);
  border-radius: 5px;
  color: var(--white);
  background: var(--navy);
  font-weight: 760;
  text-decoration: none;
  transition: transform .15s ease, opacity .15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: .94;
}

.btn-small {
  padding: 9px 15px;
  font-size: .9rem;
}

.text-link {
  color: var(--muted);
  font-weight: 650;
  text-decoration: none;
}

.hero-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.hero-card-label {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-card-question {
  margin: 0 0 18px;
  font-size: 1.5rem;
  font-weight: 780;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.hero-card-note {
  margin: 0;
  color: var(--muted);
}

.section { padding: 96px 0; }
.section-soft { background: var(--soft); }

.section-dark {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.section-heading {
  max-width: 800px;
  margin-bottom: 42px;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading-light > p:last-child {
  color: rgba(255,255,255,.72);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.card-index {
  display: block;
  margin-bottom: 38px;
  color: var(--gold);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.statement {
  max-width: 860px;
  margin: 38px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 1.25rem;
  font-weight: 720;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.12);
}

.step {
  min-height: 270px;
  padding: 24px;
  background: var(--navy);
}

.step-index {
  display: block;
  margin-bottom: 48px;
  color: var(--gold);
  font-size: .75rem;
  font-weight: 800;
}

.step p {
  margin-bottom: 0;
  color: rgba(255,255,255,.68);
  font-size: .92rem;
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 90px;
  align-items: start;
}

.body-copy p:first-child { margin-top: 0; }

.body-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.body-copy-light p {
  color: rgba(255,255,255,.72);
}

.strong-copy {
  color: var(--ink) !important;
  font-weight: 740;
}

.strong-copy-light {
  color: var(--white) !important;
}

.question-list {
  border-top: 1px solid var(--line);
}

.question-list p {
  margin: 0;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 650;
}

.founder-quote {
  max-width: 520px;
  font-size: 1.45rem;
  font-weight: 720;
  line-height: 1.42;
}

.founder-name {
  margin-top: 34px;
  font-weight: 820;
}

.founder-name span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-weight: 500;
}

.video-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  text-align: center;
}

.play-circle {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-size: .95rem;
}

.video-title {
  margin: 0 0 4px;
  font-weight: 820;
}

.video-note {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.contact-section {
  border-top: 1px solid var(--line);
  padding: 112px 0;
}

.contact-copy {
  max-width: 740px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 1.06rem;
}

.email-link {
  margin: 22px 0 0;
  font-weight: 720;
}

.email-link a { text-decoration: none; }

.site-footer {
  padding: 30px 0;
  color: rgba(255,255,255,.76);
  background: #0B121B;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-inner > div {
  display: flex;
  flex-direction: column;
}

.footer-inner strong {
  color: var(--white);
  letter-spacing: .08em;
}

.footer-inner span { font-size: .82rem; }

.footer-inner p {
  margin: 0;
  font-size: .9rem;
}

@media (max-width: 940px) {
  .nav > a:not(.btn) { display: none; }
  .section { padding: 76px 0; }
  .hero { padding: 88px 0 80px; }
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--max-width)); }
  .header-inner { min-height: 68px; }
  .btn-small { display: none; }
  .hero { padding-top: 62px; }
  h1 { font-size: clamp(3rem, 16vw, 4.8rem); }
  .cards,
  .steps { grid-template-columns: 1fr; }
  .card,
  .step { min-height: 0; }
  .step-index { margin-bottom: 28px; }
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
