:root {
  --ink: #143050;
  --ink-2: #1c2539;
  --muted: #5d666f;
  --line: rgba(20, 48, 80, 0.12);
  --paper: #ffffff;
  --soft: #f5f8fa;
  --soft-2: #eef4f8;
  --accent: #143050;
  --accent-2: #5d666f;
  --warning: #143050;
  --shadow: 0 18px 48px rgba(20, 48, 80, 0.1);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink-2);
  background: var(--paper);
  letter-spacing: 0;
}

body::before {
  content: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 28px;
  align-items: center;
  min-height: 76px;
  padding: 14px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 168px;
  height: auto;
  display: block;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  padding: 10px 0;
}

.nav a:hover {
  color: var(--ink);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 9px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
}

.header-cta {
  padding: 0 18px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 30px rgba(20, 48, 80, 0.18);
}

.button {
  padding: 0 20px;
  border: 1px solid transparent;
}

.button svg,
.header-cta svg {
  width: 18px;
  height: 18px;
}

.button.primary {
  background: var(--ink);
  color: #fff;
}

.button.secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.button.light {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.9fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  min-height: 760px;
  padding: clamp(48px, 7vw, 92px) clamp(20px, 4vw, 64px) clamp(42px, 6vw, 72px);
  background: var(--paper);
}

.hero-copy {
  max-width: 820px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--ink);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(34px, 3.4vw, 50px);
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--ink);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--ink);
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-copy > p {
  max-width: 650px;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 32px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 720px;
  margin: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 45px rgba(20, 48, 80, 0.08);
}

.proof-strip div {
  padding: 18px;
}

.proof-strip div + div {
  border-left: 1px solid var(--line);
}

.proof-strip dt {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.proof-strip dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(20, 48, 80, 0.18);
  pointer-events: none;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.visual-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  padding: 20px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  color: var(--ink);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.18);
}

.visual-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.visual-card strong {
  display: block;
  margin: 8px 0 18px;
  font-size: 20px;
  line-height: 1.22;
}

.progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--soft-2);
}

.progress span {
  display: block;
  height: 100%;
  background: var(--ink);
}

.visual-card small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.trust-strip {
  display: grid;
  grid-template-columns: minmax(320px, 0.62fr) 1fr;
  gap: 34px;
  align-items: center;
  padding: 34px clamp(20px, 4vw, 64px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trust-strip h2 {
  margin: 10px 0 0;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.12;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
}

.logo-grid img {
  width: 100%;
  height: 76px;
  object-fit: contain;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  filter: grayscale(1);
  opacity: 0.82;
}

.section {
  padding: clamp(66px, 8vw, 112px) clamp(20px, 4vw, 64px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) 1fr;
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
}

.section-heading.wide {
  max-width: 920px;
  margin-bottom: 34px;
}

.intro-band .section-heading p {
  max-width: 560px;
  margin: 18px 0 0;
}

.growth-model {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #fff;
}

.growth-model article,
.growth-output {
  min-height: 184px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.growth-model article span {
  display: block;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.growth-model h3 {
  color: var(--ink);
}

.growth-model p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.growth-output {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) 1fr;
  gap: 24px;
  align-items: center;
  min-height: auto;
  background: var(--ink);
}

.growth-output strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
}

.growth-output p {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 650;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #fff;
}

.tool-card {
  min-height: 250px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tool-card svg {
  width: 32px;
  height: 32px;
  margin-bottom: 26px;
  color: var(--ink);
}

.tool-card p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.62;
}

.image-feature {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(0, 0.82fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  background: #fff;
}

.feature-image {
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: 0 18px 55px rgba(20, 48, 80, 0.08);
}

.feature-image img {
  display: block;
  width: 100%;
  min-height: 420px;
  max-height: 560px;
  object-fit: cover;
  object-position: center center;
}

.feature-copy {
  max-width: 720px;
}

.confidence-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.confidence-list span {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
  color: var(--ink);
  font-weight: 850;
}

.confidence-list svg {
  width: 20px;
  min-width: 20px;
  color: var(--accent-2);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
  background: #fff;
}

.council-outcomes {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.council-outcomes div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.council-outcomes strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.council-outcomes span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 650;
}

.council-method {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 52px rgba(20, 48, 80, 0.07);
}

.method-header {
  padding: 28px;
  background: var(--ink);
  color: #fff;
}

.method-header span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.method-header strong {
  display: block;
  max-width: 420px;
  font-size: 28px;
  line-height: 1.12;
}

.method-step {
  display: grid;
  grid-template-columns: 92px 1fr;
  column-gap: 22px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}

.method-step:last-child {
  border-bottom: 0;
}

.method-step > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.method-step h3 {
  margin-bottom: 6px;
  color: var(--ink);
}

.method-step p {
  grid-column: 2;
  margin: 0;
  font-size: 15px;
  line-height: 1.58;
}

.breakfast {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: center;
  background: #fff;
}

.breakfast-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.breakfast-grid div {
  min-height: 156px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.breakfast-grid strong {
  color: var(--warning);
  font-size: 16px;
}

.breakfast-grid span {
  display: block;
  margin-top: 28px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.24;
  font-weight: 900;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 48px rgba(20, 48, 80, 0.07);
}

.price-card.highlighted {
  border-color: rgba(20, 48, 80, 0.36);
  box-shadow: 0 22px 70px rgba(20, 48, 80, 0.16);
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-head span,
.not-included span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-head strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 42px;
  line-height: 1;
}

.price-head small {
  color: var(--muted);
  font-weight: 800;
}

.price-card > p {
  min-height: 86px;
  margin: 22px 0;
  font-size: 15px;
}

.price-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 650;
}

.price-card li::before {
  position: absolute;
  left: 0;
  top: 0.2em;
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 2px;
  background: var(--ink);
  box-shadow: none;
}

.not-included {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.level-gate {
  margin: 2px 0 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
}

.level-gate span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.level-gate p {
  margin: 7px 0 0;
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 650;
}

.not-included p {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.5;
}

.founder-offer {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) 1fr;
  gap: 28px;
  margin-top: 22px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
}

.founder-offer h3 {
  color: #fff;
  margin: 10px 0 0;
}

.founder-offer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.maturity-section {
  background: #fff;
}

.maturity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.maturity-grid article {
  min-height: 250px;
  padding: 28px;
  background: #fff;
}

.maturity-grid svg {
  width: 30px;
  height: 30px;
  margin-bottom: 28px;
  color: var(--ink);
}

.maturity-grid p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.62;
}

.reciprocity-section {
  background: var(--soft);
}

.reciprocity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #fff;
}

.reciprocity-grid article {
  min-height: 248px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.reciprocity-grid strong {
  display: block;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 13px;
}

.reciprocity-grid h3 {
  color: var(--ink);
}

.reciprocity-grid p {
  margin: 0;
  font-size: 15px;
  line-height: 1.62;
}

.comparison-section {
  background: var(--soft);
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

th,
td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 14px;
}

th {
  color: var(--ink);
  background: #fff;
  font-size: 12px;
  text-transform: uppercase;
}

td {
  color: var(--muted);
  font-weight: 650;
}

td:first-child {
  color: var(--ink-2);
  font-weight: 900;
}

tr:last-child td {
  border-bottom: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-grid div {
  min-height: 230px;
  padding: 26px;
  background: #fff;
}

.process-grid strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
}

.process-grid p {
  margin: 0;
  font-size: 15px;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  margin: 0 clamp(20px, 4vw, 64px) clamp(40px, 6vw, 72px);
  padding: clamp(34px, 6vw, 62px);
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
}

.cta-section h2 {
  max-width: 840px;
  color: #fff;
}

.cta-section p {
  max-width: 740px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.cta-actions {
  display: grid;
  gap: 12px;
}

.cta-actions .button.primary {
  background: #fff;
  color: var(--ink);
}

.footer {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 26px clamp(20px, 4vw, 64px);
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
}

.footer img {
  width: 144px;
}

.footer span {
  color: var(--ink);
  font-weight: 900;
}

.footer p {
  margin: 0 0 0 auto;
  font-size: 13px;
}

@media (max-width: 1160px) {
  .tool-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 640px;
    min-height: 500px;
  }

  .hero-visual > img {
    min-height: 500px;
  }

  .logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: grid;
    place-items: center;
    justify-self: end;
  }

  .site-header.nav-open .nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .nav a {
    padding: 14px;
  }

  .intro-band,
  .split-section,
  .breakfast,
  .trust-strip,
  .image-feature,
  .founder-offer,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .maturity-grid,
  .reciprocity-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 138px;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-copy > p,
  p {
    font-size: 16px;
  }

  .proof-strip,
  .tool-grid,
  .growth-model,
  .logo-grid,
  .breakfast-grid,
  .pricing-grid,
  .maturity-grid,
  .reciprocity-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .growth-output,
  .method-step,
  .council-outcomes div {
    grid-template-columns: 1fr;
  }

  .method-step p {
    grid-column: 1;
  }

  .proof-strip div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .hero-visual,
  .price-card {
    padding: 20px;
  }

  .hero-visual {
    min-height: auto;
    padding: 0;
  }

  .hero-visual > img {
    min-height: 360px;
  }

  .visual-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .logo-grid img {
    height: 74px;
  }

  .breakfast {
    grid-template-columns: 1fr;
  }

  .footer {
    display: grid;
  }

  .footer p {
    margin-left: 0;
  }
}
