:root {
  --ink: #090b0f;
  --dark: #0b0e13;
  --panel: #111722;
  --navy: #182433;
  --blue: #1c2bda;
  --purple: #9228a9;
  --magenta: #e72a67;
  --white: #f5f7fa;
  --paper: #ffffff;
  --pale: #eef2f7;
  --muted: #5b6b82;
  --grey: #929aa8;
  --line-dark: rgba(245,247,250,.14);
  --line-light: rgba(24,36,51,.14);
  --grad: linear-gradient(90deg, var(--blue) 0%, var(--purple) 48%, var(--magenta) 100%);
  --grad-text: linear-gradient(92deg, #7b86f2 0%, #c26ad9 48%, var(--magenta) 100%);
  --font-display: Jost, system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --font-body: Inter, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 620px at 75% 12%, rgba(28,43,218,.14), transparent 65%),
    radial-gradient(760px 560px at 12% 78%, rgba(231,42,103,.10), transparent 68%);
  z-index: -2;
}
body:after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(24,36,51,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,36,51,.055) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: .75;
  z-index: -1;
}

.site-header, .site-footer {
  max-width: 1320px;
  margin: auto;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header {
  border-bottom: 1px solid var(--line-light);
  position: relative;
  background: rgba(245,247,250,.86);
}
.site-header:after {
  content: "";
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: -1px;
  height: 1px;
  background: var(--grad);
}
.brand {
  text-decoration: none;
  font: 700 12px var(--font-display);
  letter-spacing: .25em;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}
.brand-mark {
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  background: linear-gradient(180deg, var(--magenta), var(--purple) 50%, var(--blue));
  filter: drop-shadow(0 0 8px rgba(231,42,103,.45));
}
.header-link {
  color: var(--muted);
  font-size: 13px;
}
.site-footer {
  border-top: 1px solid var(--line-light);
  color: var(--muted);
  font-size: 12px;
  background: var(--white);
}

.hero, .strategy-hero {
  max-width: 1320px;
  min-height: 760px;
  margin: auto;
  padding: 104px 32px 92px;
  display: grid;
  grid-template-columns: 1.16fr .84fr;
  gap: 84px;
  align-items: center;
}
.hero-copy, .strategy-hero > div:first-child { max-width: 760px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--magenta);
  font: 700 12px var(--font-display);
  letter-spacing: .24em;
  text-transform: uppercase;
}
.eyebrow:before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--grad);
}
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.03;
  margin: 0;
  color: #0e1726;
  letter-spacing: -.015em;
}
h1 { font-size: clamp(54px, 7vw, 96px); }
h2 { font-size: clamp(38px, 4.8vw, 68px); max-width: 760px; }
h3 { font-size: 26px; }
h1 em, h2 em {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1:after {
  content: "";
}
.hero-lede, .section-lede {
  color: var(--muted);
  font-size: 21px;
  max-width: 720px;
  margin-top: 26px;
}
.hero-promise {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.hero-promise span {
  border: 1px solid var(--line-light);
  background: rgba(255,255,255,.74);
  color: var(--navy);
  padding: 9px 12px;
  font: 700 11px var(--font-display);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 38px;
  color: var(--muted);
  font-size: 13px;
}
.button {
  display: inline-block;
  border: 1px solid var(--line-light);
  padding: 16px 25px;
  text-decoration: none;
  font: 700 12px var(--font-display);
  letter-spacing: .13em;
  text-transform: uppercase;
  cursor: pointer;
}
.button-primary {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 34px rgba(231,42,103,.22);
}
.button-secondary { color: var(--navy); background: transparent; }
.button-wide { width: 100%; text-align: center; }

.score-card {
  background: #fff;
  border: 1px solid var(--line-light);
  padding: 38px;
  box-shadow: 0 28px 80px rgba(14,23,38,.12);
  position: relative;
}
.score-card:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--grad);
}
.score-card-top, .risk-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.score-card-top {
  color: var(--muted);
  font: 700 11px var(--font-display);
  letter-spacing: .18em;
}
.score {
  font: 700 110px var(--font-display);
  margin: 34px 0;
  color: #0e1726;
  line-height: .9;
}
.score span { color: var(--muted); font-size: 25px; }
.risk-row {
  padding: 16px 0;
  border-top: 1px solid var(--line-light);
  font-size: 14px;
}
.risk { font: 700 10px var(--font-display); letter-spacing: .14em; }
.risk.high { color: var(--magenta); }
.risk.medium { color: #b27813; }
.risk.low { color: #16895c; }
.score-note { margin-top: 28px; color: var(--muted); font-size: 14px; }
.strategy-point { border-top: 1px solid var(--line-light); padding: 24px 0; }
.strategy-point:first-of-type { margin-top: 28px; }
.strategy-point b, .strategy-point span { display: block; }
.strategy-point b { color: #0e1726; font: 700 28px var(--font-display); }
.strategy-point span { color: var(--muted); font-size: 15px; margin-top: 4px; }

.proof-strip {
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  display: grid;
  grid-template-columns: repeat(4,1fr);
  max-width: 1320px;
  margin: auto;
  background: #fff;
}
.proof-strip div { padding: 34px 30px; border-right: 1px solid var(--line-light); }
.proof-strip strong, .proof-strip span { display: block; }
.proof-strip strong {
  font: 700 38px var(--font-display);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.proof-strip span { color: var(--muted); font-size: 12px; }

.section {
  max-width: 1320px;
  margin: auto;
  padding: 112px 32px;
}
.section-grid, .deliverables, .offer, .review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 84px;
}
.body-copy {
  color: var(--muted);
  font-size: 18px;
}
.problem, .testimonial, .faq {
  background: var(--dark);
  color: var(--white);
  max-width: none;
  padding-left: max(32px, calc((100vw - 1320px) / 2 + 32px));
  padding-right: max(32px, calc((100vw - 1320px) / 2 + 32px));
}
.problem h2, .testimonial h2, .faq h2, .problem h3, .faq h3 { color: var(--white); }
.problem .body-copy, .testimonial cite, .faq details p { color: var(--grey); }
.problem .section-grid, .problem .red-flags, .faq > * {
  max-width: 1256px;
  margin-left: auto;
  margin-right: auto;
}
.problem > .eyebrow, .faq > .eyebrow {
  max-width: 1256px;
  margin-left: auto;
  margin-right: auto;
}
.red-flags {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  margin-top: 72px;
  border: 1px solid var(--line-dark);
}
.red-flags article {
  padding: 36px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.red-flags span, .deliverable-list span, .steps span {
  color: var(--magenta);
  font: 700 12px var(--font-display);
  letter-spacing: .2em;
}
.deliverables {
  align-items: start;
}
.deliverables:after, .story-system:before {
  content: "";
  display: block;
}
.deliverable-list div {
  display: grid;
  grid-template-columns: 54px 1fr;
  border-top: 1px solid var(--line-light);
  padding: 22px 0;
}
.deliverable-list p { margin: 0; color: var(--navy); }
.story-system {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 84px;
  align-items: start;
  position: relative;
}
.story-system:before {
  position: absolute;
  left: 32px;
  bottom: 30px;
  width: 300px;
  height: 220px;
  opacity: .28;
  background:
    linear-gradient(120deg, transparent 35%, rgba(28,43,218,.18) 36%, rgba(231,42,103,.16) 66%, transparent 67%),
    linear-gradient(145deg, rgba(255,255,255,.8), rgba(238,242,247,.35));
  border: 1px solid var(--line-light);
  transform: perspective(700px) rotateX(58deg) rotateZ(-22deg);
  box-shadow:
    34px 24px 0 rgba(255,255,255,.46),
    68px 48px 0 rgba(255,255,255,.28),
    0 30px 70px rgba(14,23,38,.18);
  pointer-events: none;
}
.icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid var(--line-light);
  background: var(--line-light);
}
.icon-grid article {
  min-height: 250px;
  background: #fff;
  padding: 34px;
}
.problem .icon-grid article {
  background: var(--panel);
}
.icon-card {
  width: 58px;
  height: 58px;
  display: inline-block;
  margin-bottom: 30px;
  border: 1px solid var(--line-light);
  background-color: var(--white);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 34px 34px;
  box-shadow: inset 0 -2px 0 rgba(231,42,103,.22);
}
.icon-investment {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg' fill='none'%3E%3Cpath d='M8 29h24M10 25l7-8 5 5 8-12' stroke='%23182433' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M29 10h-7m7 0v7' stroke='%23E72A67' stroke-width='2.8' stroke-linecap='round'/%3E%3C/svg%3E");
}
.icon-story {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg' fill='none'%3E%3Cpath d='M10 12h20M10 20h16M10 28h10' stroke='%23182433' stroke-width='2.8' stroke-linecap='round'/%3E%3Cpath d='M7 7h26v26H7z' stroke='%23E72A67' stroke-width='2.2'/%3E%3C/svg%3E");
}
.icon-proof {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg' fill='none'%3E%3Ccircle cx='20' cy='20' r='11' stroke='%23182433' stroke-width='2.8'/%3E%3Cpath d='M15 20l3.5 3.5L26 16' stroke='%23E72A67' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.icon-raise {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg' fill='none'%3E%3Cpath d='M20 31V9m0 0l-7 7m7-7l7 7' stroke='%23182433' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9 31h22' stroke='%23E72A67' stroke-width='2.8' stroke-linecap='round'/%3E%3C/svg%3E");
}
.icon-grid h3 { margin-bottom: 12px; }
.icon-grid p { color: var(--muted); margin: 0; }
.calendar-section {
  background: var(--dark);
  color: var(--white);
  max-width: none;
  padding-left: max(32px, calc((100vw - 1320px) / 2 + 32px));
  padding-right: max(32px, calc((100vw - 1320px) / 2 + 32px));
  display: grid;
  grid-template-columns: .52fr 1.48fr;
  gap: 60px;
}
.calendar-section h2 { color: var(--white); }
.calendar-frame {
  border: 1px solid var(--line-dark);
  background: #fff;
  min-height: 760px;
}
.calendar-frame iframe {
  width: 100%;
  height: 760px;
  border: 0;
  display: block;
}
.how {
  background: var(--pale);
  max-width: none;
  padding-left: max(32px, calc((100vw - 1320px) / 2 + 32px));
  padding-right: max(32px, calc((100vw - 1320px) / 2 + 32px));
}
.how > * {
  max-width: 1256px;
  margin-left: auto;
  margin-right: auto;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  margin-top: 52px;
  border: 1px solid var(--line-light);
  background: var(--line-light);
}
.steps article {
  background: #fff;
  padding: 38px;
}
.steps h3 { margin-top: 40px; }
.steps p { color: var(--muted); }
.testimonial {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  text-align: center;
}
blockquote {
  font: 600 clamp(32px,4vw,58px) var(--font-display);
  line-height: 1.1;
  max-width: 900px;
  margin: 30px auto 12px;
  color: var(--white);
}
cite {
  color: var(--grey);
  font-style: normal;
  font-size: 13px;
  display: block;
  margin-bottom: 72px;
}
.offer {
  align-items: center;
}
.offer-card, .price-panel {
  background: #fff;
  border: 1px solid var(--line-light);
  padding: 48px;
  box-shadow: 0 24px 70px rgba(14,23,38,.10);
  position: relative;
}
.offer-card:before, .price-panel:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--grad);
}
.price {
  font: 700 82px var(--font-display);
  margin: 20px 0;
  color: #0e1726;
}
.price span { color: var(--muted); font-size: 15px; margin-right: 8px; }
.offer-card small { display: block; color: var(--muted); margin-top: 16px; }
.fit-copy p {
  border-bottom: 1px solid var(--line-light);
  padding: 15px 0;
  color: var(--navy);
}
.fit-copy a {
  display: inline-block;
  margin-top: 24px;
  color: var(--blue);
  font-weight: 600;
}
.faq details {
  border-top: 1px solid var(--line-dark);
  padding: 25px 0;
}
.faq summary {
  cursor: pointer;
  font: 600 22px var(--font-display);
  color: var(--white);
}
.faq details p { max-width: 760px; }

.form-shell {
  max-width: 1100px;
  margin: auto;
  padding: 86px 32px 120px;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 70px;
}
.form-intro h1 { font-size: 56px; }
.form-intro p { color: var(--muted); }
.intake-form {
  background: #fff;
  border: 1px solid var(--line-light);
  padding: 36px;
  box-shadow: 0 24px 70px rgba(14,23,38,.10);
}
.field-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { display: block; font-size: 12px; color: var(--navy); margin-bottom: 18px; }
input, select, textarea {
  width: 100%;
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--line-light);
  padding: 13px;
  margin-top: 7px;
  font: inherit;
}
textarea { resize: vertical; }
.upload span { display: block; color: var(--muted); margin-top: 6px; }
.checkbox { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); }
.checkbox input { width: auto; margin-top: 5px; }
.form-error { color: #fff; background: #722b35; padding: 14px; margin-bottom: 20px; }
.confirmation, .legal {
  max-width: 980px;
  min-height: 65vh;
  margin: auto;
  padding: 100px 32px;
}
.confirmation > p { color: var(--muted); font-size: 18px; max-width: 700px; }
.next-step {
  margin-top: 60px;
  background: #fff;
  padding: 38px;
  border: 1px solid var(--line-light);
}
.legal h1 { font-size: 58px; }
.legal h2 { margin-top: 44px; }
.legal p { color: var(--muted); }
.review-page, .review-hero, .review-proof, .review-fit { display: none; }

@media (max-width: 860px) {
  .site-header, .site-footer { padding: 20px 32px; }
  .brand { font-size: 10px; letter-spacing: .18em; }
  .hero, .strategy-hero, .section-grid, .deliverables, .offer, .form-shell {
    grid-template-columns: 1fr;
  }
  .story-system, .calendar-section { grid-template-columns: 1fr; }
  .icon-grid { grid-template-columns: 1fr; }
  .hero, .strategy-hero { padding-top: 70px; gap: 44px; }
  h1 { font-size: clamp(42px, 12vw, 62px); }
  h2 { font-size: clamp(34px, 10vw, 50px); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .proof-strip { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .red-flags { grid-template-columns: 1fr; }
  .field-pair { grid-template-columns: 1fr; gap: 0; }
  .site-footer { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 520px) {
  .site-header { flex-direction: column; align-items: flex-start; }
  .hero, .strategy-hero, .section { padding-left: 24px; padding-right: 24px; }
  .problem, .how, .testimonial, .faq {
    padding-left: 24px;
    padding-right: 24px;
  }
  .proof-strip { grid-template-columns: 1fr; }
  .offer-card, .price-panel, .intake-form { padding: 30px; }
}
