:root {
  --ink: #071a2b;
  --ink-soft: #0d2940;
  --blue: #164fa3;
  --blue-bright: #246bd1;
  --gold: #c79a43;
  --gold-light: #e3c57f;
  --paper: #f3efe6;
  --cream: #fbf8f1;
  --white: #fffefd;
  --line-dark: rgba(7, 26, 43, 0.16);
  --line-light: rgba(255, 255, 255, 0.16);
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --shell: min(1180px, calc(100% - 40px));
  --shadow: 0 24px 70px rgba(7, 26, 43, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease;
}
.site-header.is-scrolled {
  background: rgba(7, 26, 43, 0.95);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-light);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: -0.02em; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  aspect-ratio: 1;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 0.1em;
}
.brand-name { font-size: 15px; text-transform: uppercase; letter-spacing: 0.12em; }
.site-nav { display: flex; align-items: center; gap: 28px; font-size: 13px; }
.site-nav a { color: rgba(255, 255, 255, 0.76); transition: color 160ms ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--white); }
.site-nav .nav-cta {
  padding: 11px 15px;
  border: 1px solid rgba(227, 197, 127, 0.7);
  color: var(--gold-light);
}
.menu-toggle { display: none; border: 0; background: transparent; padding: 10px; }
.menu-toggle span:not(.sr-only) { display: block; width: 23px; height: 1px; background: var(--white); margin: 5px; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 920px;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 38%, rgba(36, 107, 209, 0.28), transparent 31%),
    linear-gradient(135deg, #061626 0%, #09233a 63%, #0a2b4e 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent 4%, #000 34%, transparent 100%);
}
.orb { position: absolute; border-radius: 50%; border: 1px solid rgba(227,197,127,.28); }
.orb-one { width: 520px; height: 520px; right: -150px; top: 120px; }
.orb-two { width: 260px; height: 260px; right: 250px; bottom: 90px; }
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 10vw;
  align-items: center;
  min-height: 790px;
  padding-top: 86px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow span { width: 30px; height: 1px; background: currentColor; }
.eyebrow-dark { color: #9a6e24; }
.hero h1, .section h2, .proof h2, .insights h2, .contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: .98;
}
.hero h1 { max-width: 810px; font-size: clamp(54px, 7.1vw, 100px); }
em { color: var(--gold-light); font-weight: 400; }
.hero-lede { max-width: 690px; margin: 34px 0 0; color: rgba(255,255,255,.72); font-size: clamp(17px, 2vw, 21px); }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--gold-light); }
.button-secondary { color: var(--white); border-color: rgba(255,255,255,.4); }
.button-light { color: var(--ink); background: var(--cream); }
.button-dark { width: 100%; color: var(--white); background: var(--ink); }
.hero-panel {
  align-self: end;
  margin-bottom: 72px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.23);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
}
.panel-kicker { color: var(--gold-light); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.hero-panel > p { margin: 28px 0 0; font-family: var(--serif); font-size: 28px; line-height: 1.16; }
.hero-panel > p + p { color: rgba(255,255,255,.65); }
.panel-divider { height: 1px; margin: 30px 0 18px; background: var(--line-light); }
.panel-footer { display: flex; align-items: end; justify-content: space-between; color: rgba(255,255,255,.53); font-size: 11px; line-height: 1.4; }
.panel-footer span:first-child { max-width: 160px; }
.panel-number { color: var(--gold-light); font-family: var(--serif); font-size: 34px; }
.trust-line {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-block: 22px;
  border-top: 1px solid var(--line-light);
  color: rgba(255,255,255,.52);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.section { padding: 120px 0; }
.section-light { background: var(--cream); }
.section-paper { background: var(--paper); }
.section-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 80px; align-items: end; margin-bottom: 64px; }
.section-heading.compact { grid-template-columns: 1fr; }
.section h2, .proof h2, .insights h2, .contact h2 { font-size: clamp(45px, 5vw, 72px); }
.section h2 em, .contact h2 em { color: var(--blue); }
.section-intro { max-width: 500px; margin: 0 0 4px; color: #51606c; font-size: 17px; }
.strategy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.strategy-card { min-height: 500px; padding: 42px; color: var(--white); box-shadow: var(--shadow); }
.strategy-card-dark { background: var(--ink); }
.strategy-card-accent { background: var(--blue); }
.card-topline { display: flex; justify-content: space-between; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.2); color: var(--gold-light); font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.strategy-card h3 { max-width: 520px; margin: 52px 0 44px; font-family: var(--serif); font-size: clamp(30px, 3vw, 42px); font-weight: 400; line-height: 1.08; }
.feature-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 28px; margin: 0; padding: 0; list-style: none; }
.feature-list li { position: relative; padding-left: 17px; color: rgba(255,255,255,.68); font-size: 13px; }
.feature-list li::before { content: ""; position: absolute; top: .73em; left: 0; width: 5px; height: 5px; background: var(--gold-light); transform: rotate(45deg); }
.service-links { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 20px; border: 1px solid var(--line-dark); }
.service-links a { display: flex; justify-content: space-between; padding: 23px 28px; font-family: var(--serif); font-size: 18px; transition: background 160ms ease; }
.service-links a + a { border-left: 1px solid var(--line-dark); }
.service-links a:hover { background: var(--paper); }

.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.audience-card { min-height: 300px; padding: 28px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.audience-index { color: #997637; font-family: var(--serif); font-size: 14px; }
.audience-card h3 { margin: 85px 0 18px; font-family: var(--serif); font-size: 30px; font-weight: 400; }
.audience-card p { margin: 0; color: #5f6b74; font-size: 14px; }

.proof { padding: 125px 0 44px; color: var(--white); background: var(--ink); }
.proof-inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: start; }
.proof h2 em, .insights h2 em { color: var(--gold-light); }
.proof-copy > p:last-child { max-width: 470px; margin: 30px 0 0; color: rgba(255,255,255,.58); }
.metrics-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.metric { min-height: 225px; padding: 30px; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.metric:nth-child(3), .metric:nth-child(4) { border-bottom: 1px solid var(--line-light); }
.metric:nth-child(2n) { border-right: 1px solid var(--line-light); }
.metric strong { display: block; color: var(--gold-light); font-family: var(--serif); font-size: clamp(46px, 5vw, 72px); font-weight: 400; line-height: 1; }
.metric span { display: block; max-width: 230px; margin-top: 34px; color: rgba(255,255,255,.56); font-size: 12px; }
.proof-note { margin-top: 34px; color: rgba(255,255,255,.36); font-size: 10px; }

.readiness-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: center; }
.readiness-visual { position: relative; overflow: hidden; min-height: 520px; background: var(--blue); box-shadow: var(--shadow); }
.visual-label { position: absolute; z-index: 2; top: 30px; left: 30px; color: rgba(255,255,255,.65); font-size: 10px; letter-spacing: .17em; text-transform: uppercase; }
.readiness-rings span { position: absolute; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; }
.readiness-rings span:nth-child(1) { width: 460px; height: 460px; top: 90px; left: 90px; }
.readiness-rings span:nth-child(2) { width: 290px; height: 290px; top: 175px; left: 175px; }
.readiness-rings span:nth-child(3) { width: 110px; height: 110px; top: 265px; left: 265px; background: var(--gold-light); box-shadow: 0 0 80px rgba(227,197,127,.36); }
.readiness-axis { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(4, 1fr); }
.readiness-axis i { border-right: 1px solid rgba(255,255,255,.08); }
.readiness-copy h2 { margin-bottom: 32px; }
.readiness-copy > p:not(.eyebrow) { max-width: 620px; color: #5c6871; }
.text-link { display: inline-flex; gap: 30px; margin-top: 28px; padding-bottom: 7px; border-bottom: 1px solid currentColor; color: var(--blue); font-size: 12px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }

.section-blue { color: var(--white); background: var(--blue); }
.opportunity-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 100px; }
.opportunity-copy > p:not(.eyebrow) { max-width: 560px; margin: 30px 0; color: rgba(255,255,255,.7); }
.opportunity-list { border-top: 1px solid rgba(255,255,255,.28); }
.opportunity-list div { display: grid; grid-template-columns: 50px 1fr; gap: 18px; align-items: center; padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,.28); }
.opportunity-list div span { color: var(--gold-light); font-family: var(--serif); }
.opportunity-list div strong { font-family: var(--serif); font-size: 24px; font-weight: 400; }
.opportunity-list > p { margin: 28px 0 0; color: rgba(255,255,255,.5); font-size: 11px; }

.founder { background: var(--paper); }
.founder-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: center; }
.founder-mark { position: relative; display: grid; place-items: center; min-height: 570px; color: var(--gold-light); background: var(--ink); }
.founder-mark::before, .founder-mark::after { content: ""; position: absolute; inset: 50% auto auto 50%; border: 1px solid rgba(227,197,127,.25); border-radius: 50%; transform: translate(-50%, -50%); }
.founder-mark::before { width: 72%; aspect-ratio: 1; }
.founder-mark::after { width: 46%; aspect-ratio: 1; }
.founder-mark > span { position: relative; z-index: 1; font-family: var(--serif); font-size: 100px; }
.founder-mark > div { position: absolute; bottom: 28px; left: 30px; color: rgba(255,255,255,.48); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.founder-copy h2 { margin-bottom: 28px; }
.founder-copy > p:not(.eyebrow) { max-width: 640px; color: #586671; }
.founder-copy .founder-lede { color: var(--ink); font-family: var(--serif); font-size: 24px; line-height: 1.35; }

.insights { padding: 100px 0; color: var(--white); background: linear-gradient(120deg, var(--ink), #0f365a); text-align: center; }
.insights-inner { max-width: 850px; }
.insights .eyebrow { justify-content: center; }
.insights > div > p:last-child { max-width: 620px; margin: 30px auto 0; color: rgba(255,255,255,.58); }

.contact { padding: 125px 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.contact-copy > p:last-child { max-width: 500px; margin-top: 30px; color: #5b6871; }
.consultation-form { padding: 40px; border: 1px solid var(--line-dark); background: var(--white); box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.consultation-form label { display: block; margin-bottom: 18px; color: #46545f; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.consultation-form input, .consultation-form select, .consultation-form textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;
  border: 1px solid #cfd3d4;
  border-radius: 0;
  color: var(--ink);
  background: var(--cream);
  outline: none;
  text-transform: none;
}
.consultation-form input:focus, .consultation-form select:focus, .consultation-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(36,107,209,.12); }
.form-note { margin: 14px 0 0; color: #78828a; font-size: 10px; line-height: 1.5; }
.form-note.is-active { color: var(--blue); }

.site-footer { padding: 55px 0 28px; color: rgba(255,255,255,.66); background: #04111e; }
.footer-grid { display: grid; grid-template-columns: .8fr 1.2fr .5fr; gap: 50px; align-items: center; }
.footer-brand { color: var(--white); }
.footer-grid > p { max-width: 460px; font-family: var(--serif); font-size: 18px; }
.footer-grid nav { display: flex; flex-direction: column; align-items: flex-end; gap: 7px; font-size: 12px; }
.legal-row { display: flex; justify-content: space-between; gap: 30px; margin-top: 44px; padding-top: 20px; border-top: 1px solid var(--line-light); font-size: 9px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .site-nav {
    position: absolute;
    top: 82px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    background: var(--ink);
    border: 1px solid var(--line-light);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px; }
  .menu-toggle { display: block; }
  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; min-height: auto; padding-top: 190px; padding-bottom: 80px; }
  .hero-panel { max-width: 430px; margin: 0; }
  .trust-line { grid-template-columns: repeat(2, 1fr); }
  .section-heading, .proof-inner, .readiness-grid, .opportunity-grid, .founder-grid, .contact-grid { grid-template-columns: 1fr; gap: 55px; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .readiness-visual { min-height: 430px; }
  .founder-mark { min-height: 440px; }
}

@media (max-width: 640px) {
  :root { --shell: min(100% - 28px, 1180px); }
  .brand-name { font-size: 12px; }
  .hero-inner { padding-top: 150px; padding-bottom: 60px; }
  .hero h1 { font-size: clamp(48px, 14vw, 68px); }
  .hero-panel { padding: 24px; }
  .trust-line { grid-template-columns: 1fr; gap: 10px; }
  .section, .contact { padding: 86px 0; }
  .section-heading { margin-bottom: 44px; }
  .strategy-grid, .service-links, .audience-grid, .metrics-grid, .field-row, .footer-grid { grid-template-columns: 1fr; }
  .strategy-card { min-height: auto; padding: 30px 24px; }
  .strategy-card h3 { margin: 36px 0; }
  .feature-list { grid-template-columns: 1fr; }
  .service-links a + a { border-left: 0; border-top: 1px solid var(--line-dark); }
  .audience-card { min-height: 240px; }
  .audience-card h3 { margin-top: 55px; }
  .metric { min-height: 190px; border-right: 1px solid var(--line-light); border-bottom: 0 !important; }
  .metric:last-child { border-bottom: 1px solid var(--line-light) !important; }
  .readiness-visual { min-height: 340px; }
  .readiness-rings span:nth-child(1) { width: 320px; height: 320px; top: 80px; left: 40px; }
  .readiness-rings span:nth-child(2) { width: 210px; height: 210px; top: 135px; left: 95px; }
  .readiness-rings span:nth-child(3) { width: 80px; height: 80px; top: 200px; left: 160px; }
  .founder-mark { min-height: 390px; }
  .consultation-form { padding: 28px 20px; }
  .footer-grid nav { align-items: flex-start; }
  .legal-row { flex-direction: column; }
}

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