:root {
  --navy: #0b1f3a;
  --navy-2: #142a4d;
  --ink: #0b1f3a;
  --paper: #f4f6f8;
  --slate: #4c5c78;
  --slate-light: #8b97ab;
  --gold: #4c5c78;
  --gold-light: #aab4c4;
  --muted: #5b6472;
  --green: #2f7d5f;
  --red: #b5453a;
  --border: #dde2e9;
  font-size: 16px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  margin: 0 0 16px;
  line-height: 1.15;
}

p { color: var(--muted); margin: 0 0 16px; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 19px;
  color: #fff;
  letter-spacing: 0.2px;
  position: relative;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
}
.logo span { color: var(--gold-light); }

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.btn-primary {
  background: var(--gold);
  color: #1a1304;
  padding: 14px 26px;
  font-size: 15px;
}
.btn-primary:hover { background: var(--gold-light); }
.btn-small {
  padding: 9px 18px;
  font-size: 13.5px;
  background: var(--gold);
  color: #1a1304;
}
.btn-small:hover { background: var(--gold-light); }
.btn-wide { width: 100%; padding: 15px; font-size: 16px; }

.hero {
  background: radial-gradient(circle at 80% 0%, #1c2c4d 0%, var(--navy) 55%);
  color: #fff;
  padding: 100px 0 90px;
}
.hero-inner { max-width: 760px; }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.hero h1 {
  color: #fff;
  font-size: 42px;
  margin-bottom: 22px;
}
.hero-sub {
  color: #c3cbd9;
  font-size: 18px;
  max-width: 620px;
  margin-bottom: 32px;
}
.hero-sub-bold {
  color: #e8ecf2;
  font-weight: 500;
}
.hero-note {
  margin-top: 18px;
  font-size: 13px;
  color: #828ca0;
}

.credibility-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.credibility-bar p {
  margin: 0;
  text-align: center;
  font-size: 12.5px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 600;
}

.section-sub {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
  font-size: 16px;
}

.problem { padding: 90px 0; }
.problem h2 {
  text-align: center;
  font-size: 30px;
  max-width: 700px;
  margin: 0 auto 16px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 30px 26px;
}
.card h3 { font-size: 18.5px; margin-bottom: 10px; }
.card p { font-size: 15px; margin: 0; }

.solution {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 90px 0;
}
.framework-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}
.monogram {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
}
.framework-name {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--slate);
}
.solution h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 16px;
}
.eval-list {
  max-width: 760px;
  margin: 0 auto;
}
.eval-row {
  display: flex;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}
.eval-row:first-child { padding-top: 0; }
.eval-row:last-child { border-bottom: none; }
.eval-num {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  min-width: 36px;
}
.eval-text h3 { font-size: 19px; margin-bottom: 8px; }
.eval-text p { margin: 0; font-size: 15px; }

.diagnostic-offer {
  background: var(--navy);
  padding: 90px 0;
}
.diagnostic-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}
.diagnostic-text .eyebrow { color: var(--gold-light); margin-bottom: 12px; }
.diagnostic-text h2 { color: #fff; font-size: 32px; margin-bottom: 20px; }
.diagnostic-text p { color: #c3cbd9; font-size: 16px; line-height: 1.7; }
.diagnostic-list-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 32px;
}
.diagnostic-list-label {
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.diagnostic-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.diagnostic-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 15px;
  color: #e2e6ed;
  padding-left: 20px;
  position: relative;
}
.diagnostic-list li:last-child { border-bottom: none; }
.diagnostic-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold-light);
  font-size: 13px;
}

.problem-lead {
  font-size: 18px;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 20px;
}

.what-i-do {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 90px 0;
}
.what-i-do-inner { max-width: 820px; margin: 0 auto; }
.what-i-do h2 { font-size: 30px; margin-bottom: 20px; }
.what-i-do .lede {
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.65;
}
.what-i-do p { font-size: 15.5px; margin-bottom: 40px; }
.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  border-top: 1px solid var(--border);
  padding-top: 36px;
}
.what-item h3 { font-size: 17px; margin-bottom: 10px; }
.what-item p { font-size: 14.5px; margin: 0; color: var(--muted); }

.problem-condensed {
  padding: 90px 0;
}
.problem-condensed-inner {
  max-width: 760px;
  margin: 0 auto;
}
.problem-condensed h2 { font-size: 30px; margin-bottom: 20px; }
.problem-condensed p { font-size: 16px; line-height: 1.7; }

.continuation {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 15px;
  color: var(--muted);
  font-style: italic;
}

.transform { padding: 90px 0; text-align: center; }
.transform h2 { font-size: 30px; margin-bottom: 16px; }

.sub-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}
.sub-list li {
  position: relative;
  padding-left: 16px;
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 6px;
}
.sub-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--slate);
  font-weight: 700;
}

.recommendations {
  background: var(--paper);
  border-top: 1px solid var(--border);
  padding: 90px 0;
}
.recommendations-inner { }
.recommendations h2 { font-size: 30px; margin-bottom: 16px; }
.recommendations > .container > p { font-size: 16px; max-width: 760px; }
.section-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--slate);
  margin: 36px 0 20px;
  display: block;
}
.recs-grid { margin-bottom: 36px; }
.recs-note {
  font-size: 15px;
  color: var(--muted);
  max-width: 760px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-style: italic;
}

.findings {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 90px 0;
}
.findings .eyebrow { color: var(--gold); display: block; margin-bottom: 10px; }
.findings h2 { font-size: 30px; text-align: center; }
.findings-list {
  max-width: 760px;
  margin: 0 auto;
}
.finding {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.finding:last-child { border-bottom: none; }
.finding h3 { font-size: 19px; margin-bottom: 12px; color: var(--ink); }
.finding p { font-size: 15.5px; margin: 0; line-height: 1.65; }

.measure {
  background: var(--navy);
  color: #fff;
  padding: 90px 0;
}
.measure-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.measure h2 { color: #fff; font-size: 30px; margin-bottom: 24px; }
.measure p { color: #c3cbd9; font-size: 16px; }

.process { padding: 90px 0; text-align: center; }
.process h2 { font-size: 30px; margin-bottom: 56px; }
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: left;
}
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 26px 22px;
}
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 15px;
}
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { font-size: 14.5px; margin: 0; }

.founder {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 90px 0;
}
.founder-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
}
.founder-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-text .eyebrow { color: var(--gold); margin-bottom: 8px; }
.founder-text h2 { font-size: 28px; margin-bottom: 10px; }
.founder-lede {
  font-size: 17px;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 18px;
}
.founder-text p { font-size: 15.5px; }

.waitlist {
  background: var(--navy-2);
  color: #fff;
  padding: 90px 0;
}
.waitlist-inner { max-width: 540px; margin: 0 auto; text-align: center; }
.waitlist h2 { color: #fff; font-size: 30px; }
.waitlist p { color: #c3cbd9; margin-bottom: 32px; }
.waitlist-form {
  display: grid;
  gap: 12px;
  text-align: left;
}
.waitlist-form input,
.waitlist-form select,
.waitlist-form textarea {
  padding: 14px 16px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  resize: vertical;
}
.waitlist-form select { color: #c3cbd9; }
.waitlist-form select option { color: #1a1304; }
.waitlist-form input::placeholder,
.waitlist-form textarea::placeholder { color: #8b94a6; }
.waitlist-form input:focus,
.waitlist-form select:focus,
.waitlist-form textarea:focus { outline: 2px solid var(--gold-light); }
.form-success {
  margin-top: 18px;
  color: var(--gold-light);
  font-weight: 600;
}

.footer { padding: 36px 0; background: var(--navy); }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer .logo { font-size: 16px; }
.footer p { color: #828ca0; font-size: 12.5px; margin: 0; }

@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .what-grid { grid-template-columns: 1fr; }
  .diagnostic-inner { grid-template-columns: 1fr; }
  .founder-inner { grid-template-columns: 1fr; text-align: center; }
  .founder-photo { margin: 0 auto; }
  .hero h1 { font-size: 32px; }
}

@media (max-width: 540px) {
  .grid-4 { grid-template-columns: 1fr; }
}
