:root {
  --ink: #151515;
  --ink-soft: #54524c;
  --violet: #5f3ee8;
  --violet-dark: #33206f;
  --violet-pale: #ece8ff;
  --lime: #ddff52;
  --coral: #ded8cd;
  --cream: #f4f1ea;
  --paper: #fffdf8;
  --white: #ffffff;
  --line: rgba(21, 21, 21, 0.13);
  --shadow: 0 28px 70px rgba(21, 21, 21, 0.11);
  --radius: 30px;
  --radius-sm: 18px;
  --shell: min(1180px, calc(100% - 44px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

img,
svg {
  max-width: 100%;
}

p {
  line-height: 1.65;
}

.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;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  color: var(--white);
  background: rgba(21, 21, 21, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  background: rgba(21, 21, 21, 0.97);
  box-shadow: 0 12px 30px rgba(21, 21, 21, 0.14);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.brand-mark {
  width: 31px;
  height: 31px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 3px;
  padding: 6px;
  background: var(--lime);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.brand-mark span {
  display: block;
  background: var(--ink);
  border-radius: 4px 4px 1px 1px;
}

.brand-mark span:nth-child(1) {
  height: 35%;
}

.brand-mark span:nth-child(2) {
  height: 62%;
}

.brand-mark span:nth-child(3) {
  height: 90%;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
  font-size: 0.88rem;
  font-weight: 650;
}

.main-nav > a:not(.nav-contact) {
  position: relative;
  opacity: 0.9;
}

.main-nav > a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--lime);
  transition: right 180ms ease;
}

.main-nav > a:not(.nav-contact):hover::after,
.main-nav > a[aria-current="page"]::after {
  right: 0;
}

.nav-contact {
  padding: 14px 20px;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid var(--lime);
  border-radius: 999px;
  transition: transform 180ms ease, background 180ms ease;
}

.nav-contact:hover {
  transform: translateY(-2px);
  background: #e7ff82;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 780px;
  padding: 176px 0 96px;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 3% 16%, rgba(95, 62, 232, 0.18), transparent 28%),
    radial-gradient(circle at 93% 84%, rgba(221, 255, 82, 0.24), transparent 26%),
    var(--paper);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(to top, rgba(244, 241, 234, 0.9), transparent);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.82;
  pointer-events: none;
  animation: orbDrift 9s ease-in-out infinite alternate;
}

.hero-orb-one {
  width: 520px;
  height: 520px;
  left: -190px;
  top: 110px;
  background:
    radial-gradient(circle at 35% 30%, rgba(221, 255, 82, 0.28), transparent 28%),
    radial-gradient(circle at 68% 64%, rgba(95, 62, 232, 0.22), transparent 33%),
    rgba(255, 253, 248, 0.4);
  filter: blur(42px);
}

.hero-orb-two {
  width: 440px;
  height: 440px;
  right: -170px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(221, 255, 82, 0.48), transparent 68%);
  filter: blur(25px);
  animation-delay: -3s;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--violet-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  display: inline-block;
  background: currentColor;
}

.hero .eyebrow {
  color: var(--violet-dark);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.82);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 5.75rem);
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 span {
  display: block;
  margin-top: 15px;
  color: var(--violet);
}

.hero-lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
}

.hero-actions,
.final-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 56px;
  padding: 0 24px;
  font-size: 0.92rem;
  font-weight: 800;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 14px 35px rgba(30, 26, 41, 0.2);
}

.button-primary:hover,
.button-lime:hover {
  background: #e8ff82;
  box-shadow: 0 18px 40px rgba(23, 22, 45, 0.22);
}

.button-lime {
  color: var(--ink);
  background: var(--lime);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-large {
  min-height: 64px;
  padding-inline: 30px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  border-bottom: 1px solid rgba(23, 22, 45, 0.3);
  padding-bottom: 4px;
}

.hero .text-link,
.text-link-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.hero .text-link {
  color: var(--ink);
  border-color: rgba(21, 21, 21, 0.24);
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.microcopy span {
  color: var(--violet);
  margin-right: -10px;
}

.profit-card {
  position: relative;
  padding: 28px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.97);
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: 34px;
  box-shadow: 0 34px 100px rgba(21, 21, 21, 0.14);
  transform: none;
  animation: cardFloat 6s ease-in-out infinite;
}

.profit-card::before {
  content: "";
  position: absolute;
  inset: -14px 18px 14px -18px;
  z-index: -1;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 38px;
}

.profit-card-top,
.roadmap-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.profit-card-top p,
.roadmap-header p {
  margin: 0 0 4px;
  color: #77738c;
  font-size: 0.72rem;
}

.profit-card-top strong,
.roadmap-header strong {
  font-size: 1rem;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  color: var(--violet-dark);
  background: var(--violet-pale);
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 750;
}

.live-pill i {
  width: 7px;
  height: 7px;
  background: var(--violet);
  border-radius: 50%;
}

.hero-focus-list {
  display: grid;
  gap: 0;
  margin: 34px 0 26px;
  border-top: 1px solid var(--line);
}

.hero-focus-list div {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.hero-focus-list span {
  color: var(--violet);
  font-size: 0.72rem;
  font-weight: 900;
}

.hero-focus-list strong {
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  letter-spacing: -0.025em;
}

.hero-focus-foot {
  padding: 18px;
  background: var(--cream);
  border-radius: 18px;
}

.hero-focus-foot span {
  display: block;
  color: var(--violet);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-focus-foot p {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.5;
}

.score-zone {
  display: grid;
  grid-template-columns: 136px 1fr;
  align-items: center;
  gap: 22px;
  margin: 30px 0;
}

.score-ring {
  width: 136px;
  height: 136px;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--violet) 0 64%, #e8e4ef 64% 100%);
  border-radius: 50%;
  transform: rotate(-25deg);
}

.score-ring::before {
  content: "";
  position: absolute;
  width: 103px;
  height: 103px;
  background: var(--paper);
  border-radius: 50%;
}

.score-ring div {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  transform: rotate(25deg);
}

.score-ring strong {
  font-size: 2.4rem;
  letter-spacing: -0.06em;
}

.score-ring span {
  color: #77738c;
  font-size: 0.72rem;
}

.score-copy > span {
  display: inline-block;
  padding: 7px 10px;
  color: var(--violet-dark);
  background: var(--violet-pale);
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 800;
}

.score-copy p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

.metric-list {
  display: grid;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.metric-row {
  display: grid;
  grid-template-columns: minmax(145px, 1.25fr) 1fr 28px;
  align-items: center;
  gap: 12px;
  font-size: 0.74rem;
}

.metric-row > div:first-child {
  display: flex;
  align-items: center;
  gap: 9px;
}

.metric-icon {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 8px;
  font-size: 0.62rem;
}

.metric-icon.violet {
  background: var(--violet);
}

.metric-icon.coral {
  color: var(--ink);
  background: var(--cream);
}

.metric-icon.lime {
  color: var(--ink);
  background: var(--lime);
}

.meter {
  height: 6px;
  overflow: hidden;
  background: #e9e6ef;
  border-radius: 999px;
}

.meter span {
  height: 100%;
  display: block;
  width: var(--meter-width, 60%);
  background: var(--violet);
  border-radius: inherit;
  transform-origin: left;
  animation: meterFill 900ms ease 450ms both;
}

.metric-row b {
  text-align: right;
}

.insight {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px;
  background: #eeeadf;
  border-radius: 15px;
}

.insight-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 11px;
  font-weight: 900;
}

.insight strong {
  font-size: 0.78rem;
}

.insight p {
  margin: 2px 0 0;
  color: #666275;
  font-size: 0.7rem;
  line-height: 1.4;
}

.proof-strip {
  color: var(--white);
  background: var(--ink);
}

.proof-grid {
  min-height: 145px;
  display: grid;
  grid-template-columns: 0.7fr 0.8fr 0.65fr 1.5fr;
  align-items: center;
  gap: 32px;
}

.proof-grid > div {
  display: flex;
  flex-direction: column;
  padding-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-grid strong {
  color: var(--lime);
  font-size: clamp(1.65rem, 2.4vw, 2.3rem);
  letter-spacing: -0.05em;
}

.proof-grid span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
}

.proof-grid > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.94rem;
  line-height: 1.55;
}

.section {
  padding: 112px 0;
}

.scorecard-band {
  padding: 38px 0;
  background: var(--cream);
}

.scorecard-band-inner {
  display: grid;
  grid-template-columns: 0.95fr 1fr auto;
  align-items: center;
  gap: clamp(26px, 4vw, 54px);
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.scorecard-band h2 {
  margin: 0;
  font-size: clamp(1.7rem, 2.6vw, 2.7rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.scorecard-band p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.score-levels {
  display: grid;
  gap: 9px;
}

.score-levels span {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.score-levels strong {
  display: inline-block;
  min-width: 62px;
  color: var(--violet);
}

.scorecard-promo {
  padding-top: 86px;
  background: var(--cream);
}

.promo-card {
  position: relative;
  min-height: 440px;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: 50px;
  padding: clamp(42px, 6vw, 76px);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.promo-card::after {
  content: "";
  position: absolute;
  width: 410px;
  height: 410px;
  right: -80px;
  bottom: -170px;
  background: radial-gradient(circle, rgba(221, 255, 82, 0.42), transparent 64%);
  filter: blur(10px);
}

.promo-copy {
  position: relative;
  z-index: 2;
}

.promo-copy h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(2.5rem, 4.3vw, 4.4rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.promo-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.promo-visual {
  position: relative;
  z-index: 1;
  min-height: 300px;
  display: grid;
  place-items: center;
}

.promo-gauge {
  width: 230px;
  height: 230px;
  display: grid;
  place-content: center;
  text-align: center;
  background:
    radial-gradient(circle at center, var(--violet) 0 57%, transparent 58%),
    conic-gradient(var(--lime) 0 67%, rgba(255, 255, 255, 0.2) 67% 100%);
  border-radius: 50%;
  box-shadow: 0 25px 70px rgba(30, 16, 82, 0.4);
}

.promo-gauge-value {
  color: var(--lime);
  font-size: 5.3rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.promo-gauge p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.floating-label {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(25, 14, 68, 0.2);
  font-size: 0.72rem;
  font-weight: 800;
}

.floating-label span {
  width: 8px;
  height: 8px;
  background: var(--violet);
  border-radius: 50%;
}

.label-one {
  top: 20px;
  right: 0;
}

.label-two {
  left: -5px;
  top: 125px;
}

.label-two span {
  background: var(--lime);
}

.label-three {
  right: -10px;
  bottom: 10px;
}

.label-three span {
  background: var(--ink-soft);
}

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

.section-heading h2,
.scorecard-feature-copy h2,
.decisions-heading h2,
.diagnostic-intro h2,
.outcomes-copy h2,
.founder-copy h2,
.guarantee-card h2,
.faq-heading h2,
.page-hero h1,
.page-section h2,
.scorecard-intro h1 {
  margin: 0;
  font-size: clamp(2.55rem, 5vw, 5.1rem);
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.section-heading > p:last-child {
  max-width: 700px;
  margin: 25px 0 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.scorecard-feature {
  background: var(--paper);
}

.scorecard-feature-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(60px, 8vw, 110px);
}

.scorecard-feature-copy h2 {
  max-width: 760px;
  font-size: clamp(2.9rem, 5vw, 5.2rem);
}

.scorecard-feature-copy > p:not(.eyebrow, .scorecard-reassurance) {
  max-width: 680px;
  margin: 25px 0 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.scorecard-benefits {
  display: grid;
  gap: 0;
  margin: 34px 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.scorecard-benefits li {
  display: grid;
  grid-template-columns: 135px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.scorecard-benefits strong {
  color: var(--violet);
  font-size: 0.84rem;
}

.scorecard-benefits span {
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.5;
}

.scorecard-reassurance {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 0.74rem;
}

.scorecard-preview {
  position: relative;
  padding: clamp(28px, 4vw, 42px);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 25px 65px rgba(21, 21, 21, 0.09);
}

.scorecard-preview::before {
  content: "";
  position: absolute;
  inset: 16px -14px -16px 14px;
  z-index: -1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.scorecard-preview-head span,
.scorecard-preview-priorities > span {
  color: var(--violet);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scorecard-preview-head strong {
  display: block;
  margin-top: 8px;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.scorecard-preview-score {
  display: flex;
  align-items: baseline;
  margin: 28px 0;
}

.scorecard-preview-score strong {
  color: var(--violet);
  font-size: clamp(4.8rem, 8vw, 7.4rem);
  letter-spacing: -0.09em;
  line-height: 0.8;
}

.scorecard-preview-score span {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.scorecard-preview-levels {
  display: grid;
  border-top: 1px solid var(--line);
}

.scorecard-preview-levels div {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  padding: 13px 0;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}

.scorecard-preview-levels div > span {
  font-size: 0.76rem;
  font-weight: 850;
}

.scorecard-preview-levels p {
  margin: 0;
  font-size: 0.8rem;
}

.scorecard-preview-levels .is-active {
  color: var(--ink);
  font-weight: 800;
}

.scorecard-preview-levels .is-active > span {
  color: var(--violet);
}

.scorecard-preview-priorities {
  display: grid;
  gap: 9px;
  margin-top: 27px;
}

.scorecard-preview-priorities > span {
  margin-bottom: 4px;
}

.scorecard-preview-priorities div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.84rem;
  font-weight: 750;
}

.scorecard-preview-priorities b {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 9px;
  font-size: 0.65rem;
}

.signal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(46px, 7vw, 92px);
  margin-top: 58px;
  border-top: 1px solid var(--line);
}

.signal-list article {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.signal-list span {
  color: var(--violet);
  font-size: 0.72rem;
  font-weight: 900;
}

.signal-list h3 {
  margin: 0;
  font-size: 1.12rem;
  letter-spacing: -0.025em;
}

.signal-list p {
  margin: 9px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.section-link {
  width: max-content;
  margin-top: 34px;
}

.decisions-section {
  background: var(--cream);
}

.decisions-heading {
  display: grid;
  grid-template-columns: 1.08fr 0.65fr;
  align-items: end;
  gap: clamp(44px, 8vw, 100px);
}

.decisions-heading h2 {
  max-width: 760px;
}

.decisions-heading > p {
  margin: 0;
  color: var(--ink-soft);
}

.decision-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 65px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.decision-list article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 15px;
  min-height: 230px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.decision-list article:first-child {
  padding-left: 0;
}

.decision-list article:last-child {
  padding-right: 0;
  border-right: 0;
}

.decision-list article > span {
  color: var(--violet);
  font-size: 0.72rem;
  font-weight: 900;
}

.decision-list h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.decision-list p {
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.next-step {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
  margin-top: 38px;
  padding: 28px 0 0;
}

.next-step strong {
  font-size: 1.08rem;
}

.next-step p {
  max-width: 720px;
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 58px;
}

.symptom-card {
  position: relative;
  min-height: 305px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid rgba(23, 22, 45, 0.1);
  border-radius: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.symptom-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 45px rgba(42, 32, 80, 0.1);
}

.card-index {
  position: absolute;
  top: 25px;
  right: 25px;
  color: #9b97a9;
  font-size: 0.7rem;
  font-weight: 800;
}

.pain-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 54px;
  color: var(--violet-dark);
  background: var(--violet-pale);
  border-radius: 16px;
  font-size: 1.25rem;
  font-weight: 900;
}

.symptom-card:nth-child(2) .pain-icon,
.symptom-card:nth-child(6) .pain-icon {
  color: var(--ink);
  background: var(--lime);
}

.symptom-card:nth-child(3) .pain-icon,
.symptom-card:nth-child(7) .pain-icon {
  color: var(--ink);
  background: var(--cream);
}

.symptom-card h3 {
  margin: 0;
  font-size: 1.18rem;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.symptom-card p {
  margin: 14px 0 0;
  color: #696577;
  font-size: 0.86rem;
  line-height: 1.55;
}

.symptom-card-cta {
  color: var(--white);
  background: var(--ink);
}

.symptom-card-cta .card-index,
.symptom-card-cta p {
  color: rgba(255, 255, 255, 0.62);
}

.symptom-card-cta .pain-icon {
  color: var(--ink);
  background: var(--lime);
}

.symptom-card-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 850;
}

.leak-section {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 20%, rgba(95, 62, 232, 0.2), transparent 28%),
    var(--ink);
}

.leak-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: clamp(50px, 8vw, 105px);
}

.leak-copy {
  position: sticky;
  top: 120px;
}

.leak-copy h2 {
  font-size: clamp(2.7rem, 4.7vw, 4.9rem);
}

.leak-copy > p:not(.eyebrow) {
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.68);
}

.leak-list {
  display: grid;
  gap: 12px;
}

.leak-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
}

.leak-list span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 13px;
  font-size: 0.7rem;
  font-weight: 900;
}

.leak-list h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.leak-list p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  line-height: 1.55;
}

.diagnostic-section {
  color: var(--white);
  background: var(--ink);
}

.diagnostic-intro {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 80px;
  align-items: end;
}

.diagnostic-intro h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.diagnostic-intro > div:last-child > p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.98rem;
}

.process-list {
  margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.process-row {
  display: grid;
  grid-template-columns: 70px 0.7fr 1.6fr 34px;
  align-items: center;
  gap: 24px;
  padding: 28px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.process-row > span {
  color: var(--lime);
  font-size: 0.75rem;
  font-weight: 850;
}

.process-row h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  letter-spacing: -0.04em;
}

.process-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.process-row i {
  font-size: 1.5rem;
  font-style: normal;
}

.audit-scope {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.audit-scope p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.5;
}

.audit-scope strong {
  color: var(--white);
}

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

.outcomes-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
}

.outcomes-copy h2 {
  font-size: clamp(2.7rem, 4.4vw, 4.6rem);
}

.outcomes-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--ink-soft);
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-soft);
  line-height: 1.45;
}

.check-list span {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 900;
}

.roadmap-card {
  padding: 30px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 26px 60px rgba(37, 31, 60, 0.1);
}

.roadmap-header {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.roadmap-header > span {
  padding: 8px 11px;
  color: var(--violet-dark);
  background: var(--violet-pale);
  border-radius: 99px;
  font-size: 0.68rem;
  font-weight: 800;
}

.roadmap-line {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 15px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.roadmap-line:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.roadmap-day {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--violet);
  border-radius: 14px;
  font-size: 0.68rem;
  font-weight: 850;
}

.roadmap-line:nth-child(3) .roadmap-day {
  color: var(--ink);
  background: var(--lime);
}

.roadmap-line:nth-child(4) .roadmap-day {
  color: var(--white);
  background: var(--ink);
}

.roadmap-line strong {
  font-size: 0.88rem;
}

.roadmap-line p {
  margin: 5px 0 0;
  color: #77738a;
  font-size: 0.7rem;
  line-height: 1.4;
}

.roadmap-line b {
  padding: 7px 9px;
  color: #656176;
  background: var(--paper);
  border-radius: 7px;
  font-size: 0.61rem;
}

.marc-section {
  background: var(--cream);
}

.marc-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.55fr;
  align-items: end;
  gap: 70px;
}

.marc-heading > p {
  margin: 0;
  color: var(--ink-soft);
}

.marc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 60px;
}

.marc-card {
  min-height: 285px;
  padding: 25px;
  border-radius: 22px;
}

.marc-card > span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 70px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  font-size: 1.15rem;
  font-weight: 900;
}

.marc-card h3 {
  margin: 0;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.marc-card p {
  margin: 11px 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
}

.marc-one {
  color: var(--white);
  background: var(--ink);
}

.marc-two {
  background: var(--lime);
}

.marc-three {
  background: var(--paper);
  border: 1px solid var(--line);
}

.marc-four {
  color: var(--white);
  background: var(--ink);
}

.centered-link {
  width: max-content;
  margin: 36px auto 0;
}

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

.founder-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
  gap: clamp(42px, 7vw, 92px);
}

.founder-copy h2 {
  font-size: clamp(2.45rem, 4.3vw, 4.4rem);
}

.founder-body {
  padding-top: 44px;
}

.founder-body > p:first-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.founder-signature {
  margin: 26px 0 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.founder-signature strong,
.founder-signature span {
  display: block;
}

.founder-signature strong {
  color: var(--violet);
  font-size: 0.9rem;
}

.founder-signature span {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.guarantee-section {
  padding-top: 20px;
  background: var(--cream);
}

.guarantee-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(22px, 4vw, 44px);
  padding: clamp(28px, 4vw, 42px) 0;
  background: transparent;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.guarantee-stamp {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: var(--lime);
  background: var(--ink);
  border-radius: 20px;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.guarantee-card .eyebrow {
  margin-bottom: 14px;
}

.guarantee-card h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.8rem);
}

.guarantee-card p:not(.eyebrow) {
  max-width: 650px;
  margin: 15px 0 0;
  color: rgba(23, 22, 45, 0.76);
  font-size: 0.9rem;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(50px, 9vw, 120px);
}

.faq-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-heading h2 {
  font-size: clamp(2.5rem, 4vw, 4.2rem);
}

.faq-heading > p:last-child {
  margin: 20px 0 0;
  color: var(--ink-soft);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--violet);
  border-radius: 50%;
  font-size: 1.1rem;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 700px;
  margin: -5px 55px 26px 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.final-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 20%, rgba(221, 255, 82, 0.23), transparent 28%),
    radial-gradient(circle at 5% 90%, rgba(95, 62, 232, 0.18), transparent 30%),
    var(--ink);
}

.final-cta-inner {
  text-align: center;
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta h2 {
  margin: 0 auto;
  max-width: 1000px;
  font-size: clamp(2.8rem, 5.5vw, 5.7rem);
  letter-spacing: -0.065em;
  line-height: 1;
}

.final-actions {
  justify-content: center;
}

.site-footer {
  padding: 70px 0 25px;
  color: var(--white);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.72fr 0.72fr 1.1fr;
  gap: 50px;
}

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

.footer-grid > div:first-child > p,
.footer-cta p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-grid strong {
  margin-bottom: 5px;
  color: var(--lime);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.footer-grid a:not(.brand) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
}

.footer-grid a:hover {
  color: var(--lime);
}

.footer-cta > a {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--lime);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 58px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.7rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-sm {
  transition-delay: 80ms;
}

.reveal-delay {
  transition-delay: 160ms;
}

.reveal-delay-lg {
  transition-delay: 240ms;
}

@keyframes meterFill {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes orbDrift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(18px, -14px, 0) scale(1.04);
  }
}

/* Interior pages */
.page-hero {
  padding: 175px 0 95px;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 20%, rgba(221, 255, 82, 0.26), transparent 25%),
    radial-gradient(circle at 6% 30%, rgba(95, 62, 232, 0.14), transparent 28%),
    var(--paper);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.55fr;
  align-items: end;
  gap: 70px;
}

.page-hero h1 {
  max-width: 850px;
}

.page-hero h1 span {
  color: var(--violet);
}

.page-hero .eyebrow-light {
  color: var(--violet-dark);
}

.page-hero aside {
  padding: 24px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 20px;
  transform: rotate(2deg);
}

.page-hero aside strong {
  display: block;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.page-hero aside p {
  margin: 9px 0 0;
  font-size: 0.82rem;
}

.page-section {
  padding: 105px 0;
}

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

.page-section.dark {
  color: var(--white);
  background: var(--ink);
}

.page-lead {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.page-lead > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.07rem;
}

.dark .page-lead > p {
  color: rgba(255, 255, 255, 0.66);
}

.content-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 55px;
}

.content-cards-four {
  grid-template-columns: repeat(4, 1fr);
}

.content-card {
  min-height: 250px;
  padding: 28px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.content-card strong {
  color: var(--violet);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.content-card h3 {
  margin: 35px 0 0;
  font-size: 1.35rem;
  letter-spacing: -0.035em;
}

.content-card p {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.seo-list {
  display: grid;
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--line);
}

.seo-list article {
  display: grid;
  grid-template-columns: 64px minmax(220px, 0.7fr) 1fr;
  gap: 28px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.seo-list span {
  color: var(--violet);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.seo-list strong {
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.seo-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.page-cta {
  padding: 90px 0;
  text-align: center;
  background: var(--lime);
}

.page-cta h2 {
  max-width: 850px;
  margin: 0 auto 28px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 55px;
}

.resource-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.resource-card.featured {
  color: var(--white);
  background: var(--violet);
}

.resource-tag {
  padding: 7px 10px;
  color: var(--violet-dark);
  background: var(--violet-pale);
  border-radius: 99px;
  font-size: 0.64rem;
  font-weight: 850;
  text-transform: uppercase;
}

.featured .resource-tag {
  color: var(--ink);
  background: var(--lime);
}

.resource-card h3 {
  margin: 50px 0 12px;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.resource-card p {
  margin: 0 0 25px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.featured p {
  color: rgba(255, 255, 255, 0.7);
}

.resource-card a {
  margin-top: auto;
  font-weight: 850;
  border-bottom: 1px solid currentColor;
}

/* Blog */
.blog-hero h1 {
  max-width: 930px;
}

.featured-post {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
}

.featured-post-copy h2,
.featured-post-copy h3,
.blog-heading h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.4vw, 4.6rem);
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.blog-section-intro {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
  gap: clamp(45px, 8vw, 100px);
  margin-bottom: 55px;
}

.blog-section-intro h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.4vw, 4.6rem);
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.blog-section-intro > p {
  margin: 0;
  color: var(--ink-soft);
}

.blog-topic-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.blog-topic-nav a {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 82px;
  padding: 0 24px;
  color: rgba(255, 255, 255, 0.72);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.82rem;
  font-weight: 800;
}

.blog-topic-nav a:first-child {
  padding-left: 0;
}

.blog-topic-nav a:last-child {
  padding-right: 0;
  border-right: 0;
}

.blog-topic-nav span {
  color: var(--lime);
  font-size: 0.68rem;
}

.blog-topic-nav a:hover {
  color: var(--white);
}

.featured-post-copy > p:not(.post-meta) {
  margin: 22px 0 30px;
  color: var(--ink-soft);
}

.post-meta {
  margin: 0 0 18px;
  color: #79766e;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.post-meta span {
  color: var(--violet);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.post-visual {
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  overflow: hidden;
  border-radius: 25px;
}

.post-visual > span {
  position: relative;
  z-index: 2;
  width: max-content;
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 99px;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-visual > strong {
  position: relative;
  z-index: 2;
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.post-visual-margin {
  min-height: 480px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 15%, rgba(221, 255, 82, 0.46), transparent 28%),
    var(--ink);
}

.visual-bars {
  position: absolute;
  inset: auto 30px 30px;
  height: 160px;
  display: flex;
  align-items: end;
  gap: 13px;
  opacity: 0.7;
}

.visual-bars i {
  width: 54px;
  background: var(--lime);
  border-radius: 9px 9px 2px 2px;
}

.visual-bars i:nth-child(1) { height: 40%; }
.visual-bars i:nth-child(2) { height: 82%; }
.visual-bars i:nth-child(3) { height: 60%; }
.visual-bars i:nth-child(4) { height: 100%; background: var(--violet); }

.blog-heading {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 70px;
  align-items: end;
}

.blog-heading > p {
  margin: 0;
  color: var(--ink-soft);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 58px;
}

.post-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.post-card .post-visual {
  min-height: 265px;
  color: var(--ink);
  border-radius: 0;
}

.post-visual-cash {
  background:
    radial-gradient(circle at 73% 68%, rgba(95, 62, 232, 0.24), transparent 32%),
    var(--lime);
}

.visual-orbit {
  position: absolute;
  width: 150px;
  height: 150px;
  right: -20px;
  bottom: -22px;
  border: 26px solid var(--ink);
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(15deg);
}

.post-visual-roas {
  color: var(--white) !important;
  background: var(--violet);
}

.visual-line {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 35px;
  height: 70px;
  border-top: 8px solid var(--lime);
  border-right: 8px solid var(--lime);
  transform: skewY(-10deg);
}

.post-visual-score {
  background: var(--cream);
}

.visual-score {
  position: absolute;
  right: 28px;
  bottom: 25px;
  width: 105px;
  height: 105px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border: 12px solid var(--lime);
  border-radius: 50%;
  font-size: 3rem;
  font-weight: 900;
}

.post-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
}

.post-card-copy h3 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.post-card-copy > p:not(.post-meta) {
  margin: 16px 0 24px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.post-link {
  margin-top: auto;
  padding-bottom: 4px;
  font-size: 0.82rem;
  font-weight: 900;
  border-bottom: 1px solid currentColor;
}

.blog-scorecard-section {
  background: var(--cream);
}

.blog-scorecard-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(50px, 8vw, 105px);
  padding: clamp(34px, 6vw, 70px);
  color: var(--white);
  background: var(--ink);
  border-radius: 28px;
}

.blog-scorecard-card h2 {
  max-width: 760px;
  font-size: clamp(2.5rem, 4.4vw, 4.6rem);
}

.blog-scorecard-card > div:first-child > p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.65);
}

.blog-scorecard-card .eyebrow {
  color: var(--lime);
}

.blog-scorecard-result {
  padding: 30px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 22px;
}

.blog-scorecard-result > span {
  color: var(--violet);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-scorecard-result > strong {
  display: block;
  margin-top: 28px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  letter-spacing: -0.045em;
}

.blog-scorecard-result > p {
  margin: 10px 0 26px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

/* Articles */
.article-hero {
  padding: 160px 0 90px;
  background:
    radial-gradient(circle at 86% 20%, rgba(221, 255, 82, 0.26), transparent 24%),
    radial-gradient(circle at 4% 28%, rgba(95, 62, 232, 0.13), transparent 27%),
    var(--paper);
}

.article-hero-inner {
  max-width: 980px;
}

.article-back {
  display: inline-block;
  margin-bottom: 45px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 800;
}

.article-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 6.2vw, 6.4rem);
  letter-spacing: -0.07em;
  line-height: 0.98;
}

.article-lead {
  max-width: 790px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 1.8vw, 1.28rem);
}

.article-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 740px);
  justify-content: center;
  gap: clamp(50px, 8vw, 105px);
  padding-top: 85px;
  padding-bottom: 115px;
}

.article-toc {
  position: sticky;
  top: 120px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding-top: 5px;
}

.article-toc strong {
  margin-bottom: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-toc a {
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.35;
}

.article-toc a:hover {
  color: var(--violet);
}

.article-body {
  font-size: 1.03rem;
}

.article-body > p:first-child {
  margin-top: 0;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.65;
}

.article-body h2 {
  scroll-margin-top: 125px;
  margin: 65px 0 20px;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.article-body p,
.article-body li {
  color: var(--ink-soft);
  line-height: 1.8;
}

.article-body ul,
.article-body ol {
  display: grid;
  gap: 10px;
  padding-left: 24px;
}

.article-callout {
  margin: 38px 0;
  padding: 26px 28px;
  background: var(--lime);
  border-radius: 18px;
}

.article-callout strong {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-callout p {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.55;
}

.article-table {
  margin: 30px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
}

.article-table > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

.article-table > div:last-child {
  border-bottom: 0;
}

.article-table strong,
.article-table span {
  font-size: 0.86rem;
}

.article-table .total {
  background: var(--ink);
  color: var(--white);
}

.article-cta {
  margin-top: 75px;
  padding: 38px;
  background: var(--cream);
  border-radius: 22px;
}

.article-cta h2 {
  margin-top: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(50px, 8vw, 105px);
}

.contact-note {
  padding: 28px;
  background: var(--lime);
  border-radius: 22px;
}

.contact-note h3 {
  margin-top: 0;
  font-size: 1.45rem;
}

.contact-note p {
  margin-bottom: 0;
  font-size: 0.86rem;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.75rem;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 15px 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(108, 70, 234, 0.12);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--violet-dark);
  font-weight: 750;
}

/* Scorecard */
.scorecard-page {
  min-height: 100vh;
  padding: 145px 0 90px;
  background:
    radial-gradient(circle at 90% 10%, rgba(221, 255, 82, 0.28), transparent 22%),
    radial-gradient(circle at 4% 28%, rgba(95, 62, 232, 0.12), transparent 26%),
    var(--cream);
}

.scorecard-shell {
  width: min(840px, calc(100% - 38px));
  margin-inline: auto;
}

.scorecard-intro {
  margin-bottom: 38px;
  text-align: center;
}

.scorecard-intro h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.scorecard-intro p {
  max-width: 650px;
  margin: 20px auto 0;
  color: var(--ink-soft);
}

.quiz-card,
.result-card {
  padding: clamp(28px, 5vw, 48px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.quiz-progress {
  height: 8px;
  margin-bottom: 36px;
  overflow: hidden;
  background: #e7e3dc;
  border-radius: 99px;
}

.quiz-progress span {
  width: 12.5%;
  height: 100%;
  display: block;
  background: var(--violet);
  border-radius: inherit;
  transition: width 250ms ease;
}

.question-count {
  color: var(--violet);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quiz-card h2 {
  margin: 15px 0 28px;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  letter-spacing: -0.045em;
  line-height: 1.15;
}

.answer-list {
  display: grid;
  gap: 11px;
}

.answer-button {
  width: 100%;
  padding: 17px 19px;
  color: var(--ink);
  text-align: left;
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  transition: border 160ms ease, background 160ms ease, transform 160ms ease;
}

.answer-button:hover,
.answer-button:focus-visible {
  background: var(--violet-pale);
  border-color: var(--violet);
  transform: translateX(3px);
  outline: none;
}

.result-card {
  text-align: center;
}

.result-score {
  width: 150px;
  height: 150px;
  display: grid;
  place-content: center;
  margin: 0 auto 25px;
  color: var(--white);
  background: var(--violet);
  border: 9px solid var(--violet-pale);
  border-radius: 50%;
}

.result-score strong {
  display: block;
  font-size: 3rem;
  letter-spacing: -0.06em;
  line-height: 1;
}

.result-score span {
  font-size: 0.72rem;
}

.result-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.045em;
}

.result-card > p {
  max-width: 610px;
  margin: 17px auto 0;
  color: var(--ink-soft);
}

.priority-box {
  margin: 30px 0;
  padding: 22px;
  text-align: left;
  background: var(--cream);
  border-radius: 16px;
}

.priority-box strong {
  display: block;
  margin-bottom: 11px;
  color: var(--violet);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.priority-box ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.priority-main,
.priority-secondary,
.priority-watch {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.priority-main span,
.priority-secondary span,
.priority-watch span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.priority-main p {
  margin: 0;
  color: var(--ink);
  line-height: 1.55;
}

.priority-main p strong,
.priority-secondary li strong {
  color: var(--ink);
}

.priority-secondary ul,
.priority-watch ul {
  line-height: 1.5;
}

.priority-watch {
  padding-bottom: 0;
}

.result-note {
  max-width: 680px !important;
  margin-top: 22px !important;
  font-size: 0.78rem;
}

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

.diagnostic-path {
  background: var(--cream);
}

.journey-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 50px;
}

.journey-list article {
  min-height: 220px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.journey-list span {
  color: var(--violet);
  font-size: 0.72rem;
  font-weight: 900;
}

.journey-list strong {
  display: block;
  margin-top: 45px;
  font-size: 1.1rem;
}

.journey-list p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.diagnostic-hero-lead {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.diagnostic-hero .hero-actions {
  margin-top: 30px;
}

.diagnostic-microcopy {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
}

.diagnostic-hero-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.diagnostic-hero-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.84rem;
}

.diagnostic-hero-list li::before {
  position: absolute;
  left: 0;
  content: "✓";
  font-weight: 900;
}

.diagnostic-outcome {
  background: var(--cream);
}

.deliverables-section {
  background: var(--cream);
}

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 55px;
}

.deliverable-grid article {
  grid-column: span 2;
  min-height: 250px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.deliverable-grid article:nth-child(4) {
  grid-column: 2 / span 2;
}

.deliverable-grid article > span {
  color: var(--violet);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.deliverable-grid h3 {
  margin: 45px 0 0;
  font-size: 1.35rem;
  letter-spacing: -0.035em;
}

.deliverable-grid p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 55px;
}

.fit-card {
  padding: clamp(28px, 4vw, 42px);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.fit-card-positive {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.fit-card > span {
  display: block;
  color: var(--violet);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fit-card-positive > span {
  color: var(--lime);
}

.fit-card ul {
  display: grid;
  gap: 17px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.fit-card li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.fit-card li::before {
  position: absolute;
  left: 0;
  color: var(--violet);
  content: "→";
  font-weight: 900;
}

.fit-card-positive li {
  color: rgba(255, 255, 255, 0.72);
}

.fit-card-positive li::before {
  color: var(--lime);
}

.fit-card .text-link {
  margin-top: 30px;
}

.diagnostic-final-cta > .shell > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(23, 22, 45, 0.72);
}

.diagnostic-final-cta .eyebrow {
  justify-content: center;
}

.page-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}

.marc-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 28px 0;
}

.marc-proof-grid > div {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.marc-proof-grid > div:first-child {
  padding-left: 0;
}

.marc-proof-grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.marc-proof-grid strong {
  color: var(--lime);
  font-size: 2rem;
}

.marc-proof-grid span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}

.marc-overview,
.marc-diagnostic-section {
  background: var(--cream);
}

.marc-detail-list {
  display: grid;
  gap: 0;
  margin-top: 58px;
  border-top: 1px solid var(--line);
}

.marc-detail-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: clamp(26px, 5vw, 70px);
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.marc-detail-letter {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 20px;
  font-size: 1.7rem;
  font-weight: 900;
}

.marc-detail-card:nth-child(2) .marc-detail-letter {
  color: var(--ink);
  background: var(--lime);
}

.marc-detail-card:nth-child(3) .marc-detail-letter {
  color: var(--white);
  background: var(--violet);
}

.marc-detail-label {
  margin: 0 0 10px;
  color: var(--violet);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.marc-detail-card h3 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.marc-detail-card > div:last-child > p:not(.marc-detail-label) {
  max-width: 820px;
  color: var(--ink-soft);
}

.marc-detail-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.marc-detail-card li {
  padding-top: 10px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

.marc-detail-card li strong {
  color: var(--ink);
}

.marc-shift-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 58px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.marc-shift-grid article {
  min-height: 230px;
  padding: 30px;
  background: var(--ink);
}

.marc-shift-grid span {
  color: var(--lime);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.marc-shift-grid article:nth-child(odd) span {
  color: rgba(255, 255, 255, 0.45);
}

.marc-shift-grid strong {
  display: block;
  max-width: 460px;
  margin-top: 35px;
  font-size: 1.35rem;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.marc-shift-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.case-study-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 55px;
}

.case-study-flow article {
  min-height: 245px;
  padding: 28px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.case-study-flow span {
  color: var(--violet);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-study-flow h3 {
  margin: 45px 0 0;
  font-size: 1.3rem;
  letter-spacing: -0.035em;
}

.case-study-flow p {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.fit-card-positive .button {
  margin-top: 30px;
}

.example-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 38px;
}

.form-protection {
  margin: 0;
  padding-top: 4px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.55;
}

.form-protection a {
  color: var(--violet);
  font-weight: 800;
}

.result-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1020px) {
  .journey-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .deliverable-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .deliverable-grid article,
  .deliverable-grid article:nth-child(4) {
    grid-column: auto;
  }

  .deliverable-grid article:last-child {
    grid-column: 1 / -1;
  }

  .marc-proof-grid > div {
    justify-content: center;
    padding-inline: 14px;
  }

  .blog-topic-nav a {
    justify-content: center;
    padding-inline: 12px;
  }
}

@media (max-width: 680px) {
  .journey-list {
    grid-template-columns: 1fr;
  }

  .journey-list article {
    min-height: 0;
  }

  .journey-list strong {
    margin-top: 24px;
  }

  .priority-box {
    padding: 18px;
  }

  .deliverable-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .deliverable-grid article,
  .deliverable-grid article:last-child {
    grid-column: auto;
    min-height: 0;
  }

  .deliverable-grid h3 {
    margin-top: 28px;
  }

  .diagnostic-hero .hero-actions,
  .page-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .diagnostic-hero .text-link,
  .page-cta-actions .text-link {
    align-self: center;
  }

  .marc-proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 0;
  }

  .marc-proof-grid > div,
  .marc-proof-grid > div:first-child,
  .marc-proof-grid > div:last-child {
    justify-content: flex-start;
    padding: 0 18px;
    border-right: 0;
  }

  .marc-detail-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .marc-shift-grid,
  .case-study-flow {
    grid-template-columns: 1fr;
  }

  .marc-shift-grid article,
  .case-study-flow article {
    min-height: 0;
  }

  .blog-topic-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-topic-nav a,
  .blog-topic-nav a:first-child,
  .blog-topic-nav a:last-child {
    justify-content: flex-start;
    min-height: 60px;
    padding: 0 12px;
    border-right: 0;
  }

  .blog-section-intro,
  .blog-scorecard-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: 0.78rem;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.85fr;
    gap: 38px;
  }

  .scorecard-feature-grid,
  .decisions-heading {
    grid-template-columns: 1fr;
  }

  .scorecard-preview {
    max-width: 620px;
  }

  .decision-list {
    grid-template-columns: 1fr;
  }

  .decision-list article,
  .decision-list article:first-child,
  .decision-list article:last-child {
    min-height: auto;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .decision-list article:last-child {
    border-bottom: 0;
  }

  .proof-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 28px 0;
  }

  .proof-grid > p {
    grid-column: 1 / -1;
  }

  .symptom-grid,
  .marc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .founder-body {
    padding-top: 0;
  }

  .guarantee-card {
    grid-template-columns: auto 1fr;
  }

  .guarantee-stamp {
    width: 72px;
    height: 72px;
  }

  .guarantee-card .button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 32px, 680px);
  }

  .nav-wrap {
    min-height: 72px;
  }

  .menu-toggle {
    width: 43px;
    height: 43px;
    display: grid;
    place-content: center;
    gap: 7px;
    padding: 0;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 19px;
    height: 2px;
    display: block;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 72px 0 auto;
    max-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    color: var(--ink);
    background: var(--paper);
    transition: max-height 250ms ease;
  }

  .main-nav.is-open {
    max-height: calc(100vh - 72px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(30, 22, 61, 0.14);
  }

  .main-nav > a,
  .main-nav > a:not(.nav-contact) {
    padding: 17px 24px;
    font-size: 0.94rem;
    border-bottom: 1px solid var(--line);
  }

  .main-nav > a:not(.nav-contact)::after {
    display: none;
  }

  .nav-contact {
    margin: 18px 22px 22px;
    text-align: center;
    border-bottom: 0 !important;
  }

  .hero {
    padding: 130px 0 75px;
  }

  .hero-grid,
  .promo-card,
  .scorecard-band-inner,
  .diagnostic-intro,
  .outcomes-grid,
  .marc-heading,
  .faq-grid,
  .page-hero-grid,
  .page-lead,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero .eyebrow,
  .hero-actions,
  .microcopy {
    justify-content: center;
  }

  .hero h1,
  .hero-lead {
    margin-inline: auto;
  }

  .profit-card {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .proof-grid {
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
  }

  .proof-grid > div {
    padding-right: 0;
    border-right: 0;
  }

  .promo-card {
    text-align: center;
  }

  .promo-copy .eyebrow {
    justify-content: center;
  }

  .promo-visual {
    min-height: 270px;
  }

  .diagnostic-intro {
    gap: 30px;
  }

  .signal-list {
    grid-template-columns: 1fr;
  }

  .scorecard-feature-grid {
    gap: 52px;
  }

  .next-step {
    grid-template-columns: 1fr;
  }

  .next-step .button {
    justify-self: start;
  }

  .process-row {
    grid-template-columns: 45px 0.7fr 1.3fr 20px;
  }

  .marc-heading {
    gap: 25px;
  }

  .guarantee-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .guarantee-stamp,
  .guarantee-card .button {
    grid-column: auto;
    justify-self: center;
  }

  .guarantee-card .eyebrow {
    justify-content: center;
  }

  .faq-heading {
    position: static;
  }

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

  .footer-cta {
    grid-column: 1 / -1;
  }

  .page-hero-grid {
    align-items: start;
  }

  .page-hero aside {
    max-width: 430px;
  }

  .content-cards,
  .resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-post,
  .blog-heading {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .post-card-tool {
    grid-column: 1 / -1;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .article-toc {
    position: static;
    padding: 22px;
    background: var(--cream);
    border-radius: 16px;
  }

  .seo-list article {
    grid-template-columns: 46px 1fr;
    gap: 14px 20px;
  }

  .seo-list p {
    grid-column: 2;
  }
}

@media (max-width: 580px) {
  :root {
    --shell: calc(100% - 28px);
    --radius: 24px;
  }

  .section,
  .page-section {
    padding: 78px 0;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13vw, 4.4rem);
  }

  .hero-actions,
  .final-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero .text-link,
  .final-actions .text-link {
    align-self: center;
  }

  .score-zone {
    grid-template-columns: 110px 1fr;
    gap: 16px;
  }

  .score-ring {
    width: 110px;
    height: 110px;
  }

  .score-ring::before {
    width: 82px;
    height: 82px;
  }

  .score-ring strong {
    font-size: 1.9rem;
  }

  .profit-card {
    padding: 20px;
    animation: none;
  }

  .scorecard-feature-copy h2 {
    font-size: clamp(2.65rem, 12vw, 4.2rem);
  }

  .scorecard-benefits li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .scorecard-preview {
    padding: 25px;
  }

  .scorecard-preview::before {
    display: none;
  }

  .decision-list {
    margin-top: 44px;
  }

  .metric-row {
    grid-template-columns: minmax(130px, 1.3fr) 0.9fr 25px;
  }

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

  .proof-grid > p {
    grid-column: auto;
    text-align: center;
  }

  .promo-card {
    padding: 36px 22px;
  }

  .promo-gauge {
    width: 185px;
    height: 185px;
  }

  .floating-label {
    font-size: 0.63rem;
  }

  .symptom-grid,
  .marc-grid,
  .content-cards,
  .resource-grid,
  .post-grid {
    grid-template-columns: 1fr;
  }

  .post-card-tool {
    grid-column: auto;
  }

  .post-visual-margin {
    min-height: 370px;
  }

  .post-card .post-visual {
    min-height: 235px;
  }

  .article-hero {
    padding: 135px 0 70px;
  }

  .article-hero h1 {
    font-size: clamp(2.7rem, 12vw, 4.4rem);
  }

  .article-layout {
    padding-top: 55px;
    padding-bottom: 80px;
  }

  .article-body {
    font-size: 0.98rem;
  }

  .article-body > p:first-child {
    font-size: 1.1rem;
  }

  .article-callout,
  .article-cta {
    padding: 24px;
  }

  .article-table > div {
    gap: 16px;
    padding: 14px 15px;
  }

  .seo-list article {
    grid-template-columns: 1fr;
  }

  .seo-list p {
    grid-column: auto;
  }

  .symptom-card {
    min-height: auto;
  }

  .pain-icon {
    margin-bottom: 38px;
  }

  .process-row {
    grid-template-columns: 35px 1fr 20px;
    gap: 12px;
  }

  .process-row p {
    grid-column: 2 / -1;
  }

  .process-row i {
    grid-column: 3;
    grid-row: 1;
  }

  .roadmap-line {
    grid-template-columns: 51px 1fr;
  }

  .roadmap-line b {
    grid-column: 2;
    justify-self: start;
  }

  .guarantee-stamp {
    width: 105px;
    height: 105px;
    font-size: 3rem;
  }

  .final-cta {
    padding: 88px 0;
  }

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

  .footer-grid > div:first-child,
  .footer-cta {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .page-hero {
    padding: 140px 0 75px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .field.full {
    grid-column: auto;
  }

}

/* About page */
.about-page-hero .page-hero-grid {
  align-items: center;
}

.about-hero-card {
  position: relative;
  overflow: hidden;
}

.about-hero-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -70px;
  bottom: -90px;
  background: rgba(221, 255, 82, 0.38);
  border-radius: 50%;
  filter: blur(3px);
}

.about-hero-card > * {
  position: relative;
  z-index: 1;
}

.about-hero-label {
  display: block;
  margin-bottom: 36px;
  color: var(--violet);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-origin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 62px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-origin-grid article {
  min-height: 285px;
  padding: 34px 32px 34px 0;
}

.about-origin-grid article + article {
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.about-origin-grid span,
.about-journey > article > span {
  color: var(--violet);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-origin-grid h3 {
  margin: 64px 0 13px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.about-origin-grid p,
.about-journey p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.6;
}

.about-approach-section,
.about-fit-section,
.about-faq-section {
  background: var(--cream);
}

.about-section-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: clamp(40px, 8vw, 110px);
}

.about-section-heading h2,
.about-founder-intro h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.55rem, 5vw, 5.1rem);
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.about-section-heading > p {
  margin: 0 0 8px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.about-principles {
  margin-top: 68px;
  border-top: 1px solid var(--line);
}

.about-principles article {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 30px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.about-principles article > span {
  color: var(--violet);
  font-size: 0.78rem;
  font-weight: 900;
}

.about-principles h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  letter-spacing: -0.04em;
}

.about-principles p {
  max-width: 740px;
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.about-founder-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(55px, 9vw, 130px);
}

.about-founder-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.about-founder-intro h2 {
  font-size: clamp(2.35rem, 4.2vw, 4.35rem);
}

.about-founder-copy {
  padding-top: 46px;
}

.about-founder-copy > p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.about-founder-copy .about-founder-quote {
  margin-top: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.about-journey {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 58px;
}

.about-journey article {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.about-journey h3 {
  margin: 70px 0 12px;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.about-journey .text-link {
  width: max-content;
  margin-top: auto;
  padding-top: 28px;
}

@media (max-width: 1020px) {
  .about-origin-grid,
  .about-journey {
    grid-template-columns: 1fr;
  }

  .about-origin-grid article {
    min-height: auto;
    padding: 28px 0;
  }

  .about-origin-grid article + article {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .about-origin-grid h3 {
    margin-top: 34px;
  }

  .about-journey article {
    min-height: 260px;
  }
}

@media (max-width: 820px) {
  .about-section-heading,
  .about-founder-grid {
    grid-template-columns: 1fr;
  }

  .about-founder-intro {
    position: static;
  }

  .about-founder-copy {
    padding-top: 0;
  }
}

@media (max-width: 580px) {
  .about-principles article {
    grid-template-columns: 46px 1fr;
    gap: 14px;
  }

  .about-journey article {
    min-height: 0;
  }

  .about-journey h3 {
    margin-top: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
