:root {
  --ink: #101621;
  --night: #17233a;
  --blue: #1f4c7a;
  --coral: #f3615a;
  --coral-dark: #d94c45;
  --mint: #2f8f83;
  --gold: #c79940;
  --paper: #ffffff;
  --warm: #fbf7f2;
  --mist: #f1f5f8;
  --line: rgba(16, 22, 33, 0.12);
  --text: #495465;
  --max: 1180px;
  --shadow: 0 22px 58px rgba(16, 22, 33, 0.16);
  --shadow-soft: 0 14px 34px rgba(16, 22, 33, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(16, 22, 33, 0.08);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  color: var(--night);
  font-weight: 900;
  text-decoration: none;
}

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

.brand span,
.footer-brand span {
  padding: 4px 8px;
  border: 1px solid rgba(31, 76, 122, 0.2);
  border-radius: 6px;
  color: var(--blue);
  font-size: 13px;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #4c5868;
  font-size: 14px;
  font-weight: 800;
}

.nav a,
.button,
.header-cta,
.footer-links a {
  text-decoration: none;
}

.nav a:hover,
.footer-links a:hover {
  color: var(--coral-dark);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 19px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta,
.button.primary {
  color: var(--paper);
  background: var(--coral);
  box-shadow: 0 12px 26px rgba(243, 97, 90, 0.26);
}

.button.secondary {
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.button.subtle {
  color: var(--paper);
  border: 1px solid rgba(243, 97, 90, 0.62);
  background: var(--coral);
  box-shadow: 0 10px 22px rgba(243, 97, 90, 0.2);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
  gap: 42px;
  align-items: center;
  overflow: hidden;
  padding: 26px max(24px, calc((100vw - var(--max)) / 2)) 26px;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(23, 35, 58, 0.96) 0%, rgba(31, 76, 122, 0.95) 58%, rgba(16, 22, 33, 0.98) 100%),
    var(--night);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 76px 76px;
  content: "";
  opacity: 0.48;
}

.hero::after {
  position: absolute;
  right: -140px;
  bottom: 34px;
  width: 520px;
  height: 260px;
  border: 36px solid rgba(243, 97, 90, 0.25);
  border-radius: 8px;
  content: "";
  transform: rotate(-8deg);
}

.hero-copy,
.hero-board {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.dark-band .eyebrow,
.final-cta .eyebrow {
  color: #ffd4d1;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 20px;
  color: var(--paper);
  font-size: 48px;
  line-height: 1;
}

h2 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 46px;
  line-height: 1.08;
}

h3 {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

h4 {
  margin-bottom: 10px;
  color: var(--night);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lead {
  max-width: 780px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.55;
}

.tag-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
  max-width: 780px;
}

.tag-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.cta-note {
  max-width: 780px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 800;
}

.hero-board {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.board-brand {
  display: grid;
  padding: 15px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
}

.board-brand img {
  display: block;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}

.board-brand span {
  justify-self: center;
  padding: 3px 9px;
  border: 1px solid rgba(31, 76, 122, 0.22);
  border-radius: 6px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.board-intro {
  margin: 22px 0 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.55;
}

.board-path {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.board-path span {
  display: grid;
  min-height: 70px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.board-button {
  width: 100%;
  margin-top: 4px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.proof-strip span {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 18px 16px;
  border-right: 1px solid var(--line);
  color: var(--night);
  text-align: center;
}

.proof-strip strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.proof-strip small {
  display: block;
  max-width: 220px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.28;
}

.proof-strip span:last-child {
  border-right: 0;
}

.section {
  padding: 104px max(24px, calc((100vw - var(--max)) / 2));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: 70px;
  align-items: start;
}

.section-kicker {
  max-width: 520px;
}

.text-stack {
  display: grid;
  gap: 18px;
}

.text-stack p,
.section-heading p,
.founder-copy p,
.service p,
.step p,
.reason-list p,
.network-card p,
.offer-card p,
.offer-card li,
.insight-card p,
.final-cta p,
.footer p {
  color: var(--text);
}

.text-stack p,
.section-heading p {
  font-size: 19px;
}

.dark-band {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(16, 22, 33, 0.98), rgba(31, 76, 122, 0.97) 62%, rgba(23, 35, 58, 1)),
    var(--night);
}

.dark-band h2,
.dark-band .section-heading p {
  color: var(--paper);
}

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

.steps,
.team-grid,
.offer-grid,
.insight-grid {
  display: grid;
  gap: 18px;
}

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

.step,
.service,
.reason-list article,
.network-card,
.offer-card,
.insight-card {
  border: 1px solid rgba(16, 22, 33, 0.1);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.step {
  min-height: 230px;
  padding: 26px;
}

.dark-band .step {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.step span {
  display: inline-block;
  margin-bottom: 22px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--coral);
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
}

.dark-band .step h3,
.dark-band .step p {
  color: var(--paper);
}

.dark-band .step p {
  opacity: 0.82;
}

.services-band,
.team-section,
.insights-section {
  background: var(--warm);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

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

.five-grid .service {
  grid-column: span 2;
}

.five-grid .service:nth-child(4),
.five-grid .service:nth-child(5) {
  grid-column: span 3;
}

.service {
  padding: 30px;
}

.highlight-service {
  color: var(--paper);
  background: var(--coral);
}

.highlight-service h3,
.highlight-service p {
  color: var(--paper);
}

.accent-panel {
  background: var(--paper);
}

.reason-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.reason-list article {
  padding: 26px 28px;
  border-left: 6px solid var(--coral);
}

.compact-list article {
  padding: 18px 22px;
}

.compact-list h3 {
  margin-bottom: 0;
  font-size: 18px;
}

.reason-list h3,
.service h3,
.step h3,
.offer-card h3,
.insight-card h3 {
  margin-bottom: 12px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.check-grid span {
  min-height: 78px;
  padding: 16px 17px;
  border: 1px solid rgba(16, 22, 33, 0.1);
  border-radius: 8px;
  color: var(--night);
  background: #fbfcfd;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.35;
}

.founder-section {
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
  background:
    linear-gradient(90deg, var(--mist), var(--paper) 58%, var(--warm));
}

.founder-photo {
  position: sticky;
  top: 110px;
}

.founder-photo img {
  display: block;
  width: 100%;
  max-height: 760px;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.caption {
  position: relative;
  margin: -58px 20px 0;
  padding: 18px 20px;
  border-radius: 8px;
  background: rgba(16, 22, 33, 0.94);
  color: var(--paper);
  box-shadow: var(--shadow-soft);
}

.caption strong,
.caption span {
  display: block;
}

.caption span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.founder-copy p {
  margin-bottom: 17px;
  font-size: 19px;
}

.network-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.network-card {
  min-height: 210px;
  padding: 24px;
}

.network-card span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 8px;
  color: var(--paper);
  background: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.network-card h3 {
  margin-bottom: 6px;
}

.offers-section {
  background: var(--paper);
}

.offer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.offer-card {
  padding: 30px;
}

.offer-card.flagship {
  border-color: rgba(243, 97, 90, 0.35);
  background: linear-gradient(180deg, #fff7f6, var(--paper));
}

.offer-tag {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 6px;
  color: var(--paper);
  background: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.offer-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
}

.offer-card li {
  padding-left: 2px;
}

.scope-note {
  max-width: 900px;
  margin: 28px 0 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
}

.disclaimer-box {
  margin-top: 22px;
  padding: 20px 22px;
  border: 1px solid rgba(31, 76, 122, 0.18);
  border-radius: 8px;
  color: var(--text);
  background: var(--mist);
  font-size: 14px;
  line-height: 1.55;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

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

.insight-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: 28px;
}

.insight-card span {
  margin-top: auto;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.final-cta {
  text-align: center;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(243, 97, 90, 0.96), rgba(31, 76, 122, 0.96)),
    var(--coral);
}

.final-cta h2 {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  color: var(--paper);
}

.final-cta p {
  max-width: 740px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.final-cta .button.primary {
  color: var(--night);
  background: var(--paper);
  box-shadow: 0 14px 30px rgba(16, 22, 33, 0.18);
}

.final-cta .secondary-line {
  margin-top: 22px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 850;
}

.footer {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto minmax(360px, 0.84fr);
  gap: 26px;
  align-items: start;
  padding: 38px max(24px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  background: #fbfcfd;
}

.footer img {
  display: block;
  width: 150px;
}

.footer p {
  margin-bottom: 0;
  font-size: 15px;
}

.footer-brand {
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  gap: 16px;
  color: var(--night);
  font-size: 14px;
  font-weight: 900;
}

.footer-disclaimer {
  max-width: 540px;
  font-size: 13px !important;
  line-height: 1.5;
}

@media (max-width: 1120px) {
  .nav {
    gap: 18px;
  }

  .nav-link {
    font-size: 13px;
  }
}

@media (max-width: 1020px) {
  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 40px;
  }

  .nav {
    display: none;
  }

  .hero,
  .split,
  .founder-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .founder-photo {
    position: static;
    max-width: 620px;
  }

  .five-grid,
  .steps,
  .network-grid,
  .offer-grid,
  .insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .five-grid .service,
  .five-grid .service:nth-child(4),
  .five-grid .service:nth-child(5) {
    grid-column: auto;
  }

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

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .site-header {
    gap: 12px;
    padding: 12px 18px;
  }

  .brand img {
    width: 112px;
  }

  .header-cta {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .hero,
  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .hero {
    gap: 28px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .hero::after {
    display: none;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 32px;
  }

  .lead,
  .text-stack p,
  .section-heading p,
  .founder-copy p,
  .final-cta p {
    font-size: 17px;
  }

  .hero-board {
    display: none;
  }

  .actions {
    width: 100%;
  }

  .actions .button {
    flex: 1 1 0;
    min-width: 0;
    padding: 10px 12px;
    font-size: 13px;
  }

  .actions .button.secondary {
    flex-grow: 1.45;
  }

  .cta-note {
    font-size: 13px;
    line-height: 1.4;
  }

  .tag-row {
    grid-template-columns: 1fr;
    overflow-x: visible;
    padding-bottom: 4px;
  }

  .tag-row span {
    min-height: 52px;
  }

  .service,
  .step,
  .reason-list article,
  .network-card,
  .offer-card,
  .insight-card {
    padding: 22px;
  }

  .proof-strip,
  .five-grid,
  .steps,
  .check-grid,
  .network-grid,
  .offer-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip span {
    min-height: 78px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip span:last-child {
    border-bottom: 0;
  }

  .check-grid span {
    min-height: 0;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
