/* Salary You Deserve — site styles.
   Premium, calm, editorial. Black · warm gold · ivory · white.
   No external requests, no gradients, restrained motion. */

/* ---------------------------------------------------------------- tokens */
:root {
  --ink:        #17130d;   /* near-black, warm */
  --ink-soft:   #4a4238;   /* muted body text */
  --ink-faint:  #6b6153;   /* captions, meta */
  --ivory:      #f6f1e8;   /* page background */
  --cream:      #fcfaf5;   /* raised surfaces */
  --white:      #ffffff;
  --gold:       #b0842b;   /* accent */
  --gold-deep:  #8a6410;   /* gold that passes AA on ivory */
  --brand-gold: #c6972e;   /* the logo gold — used for the wordmark only */
  --gold-tint:  rgba(176, 132, 43, .12);
  --gold-line:  rgba(176, 132, 43, .38);
  --line:       rgba(23, 19, 13, .12);
  --line-soft:  rgba(23, 19, 13, .07);
  --shadow:     0 1px 2px rgba(23,19,13,.04), 0 12px 32px rgba(23,19,13,.06);
  --shadow-lift:0 2px 6px rgba(23,19,13,.06), 0 22px 48px rgba(23,19,13,.10);

  --wrap: 1160px;
  --wrap-narrow: 760px;
  --radius: 6px;
  --radius-lg: 12px;

  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
          Arial, "Noto Sans", sans-serif;

  --step-eyebrow: .78rem;
  --lede: 1.22rem;
}

/* --------------------------------------------------------------- reset-ish */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }   /* the attribute must win over component display rules */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  font-size: 1.02rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration-color: var(--gold-line); text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--gold); }
h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -.014em; font-weight: 700; margin: 0; }
p { margin: 0; }
ul { margin: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---------------------------------------------------------------- layout */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 2.5rem); }
.wrap--narrow { max-width: var(--wrap-narrow); }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.75rem, 6vw, 4.5rem); }
.section--ink { background: var(--ink); color: var(--ivory); }
.section--cream { background: var(--cream); }
.section--line { border-top: 1px solid var(--line); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--ivory); padding: .7rem 1.1rem; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 2px; border-radius: 2px; }

/* --------------------------------------------------------- announcement bar */
.announce {
  background: var(--ink);
  color: var(--ivory);
  font-size: .88rem;
  line-height: 1.5;
  text-align: center;
}
.announce__inner { padding-block: .6rem; display: flex; gap: .55rem; justify-content: center; align-items: baseline; flex-wrap: wrap; }
.announce strong { color: #e9c877; font-weight: 600; letter-spacing: .01em; }
.announce span { color: rgba(246,241,232,.82); }

/* ------------------------------------------------------------------ header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246,241,232,.88);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; gap: 1.5rem; min-height: 68px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; flex: 0 0 auto; }
.brand__mark {
  width: 34px; height: 34px; border-radius: 7px; background: var(--ink);
  color: #e9c877; display: grid; place-items: center; font-weight: 700; font-size: 1.05rem; letter-spacing: -.03em;
}
.brand__name { font-weight: 700; letter-spacing: -.02em; font-size: 1.06rem; color: var(--ink); }
.brand__name b { color: var(--gold-deep); font-weight: 700; }

/* Wordmark logo — gold "SALARY YOU" + "DESERVE" in a black block */
.wordmark {
  display: inline-flex; align-items: center; gap: .32em;
  font-weight: 800; text-transform: uppercase; letter-spacing: .005em;
  font-size: 1.16rem; line-height: 1; white-space: nowrap;
}
.wordmark__gold { color: var(--brand-gold); }
.wordmark__box { background: var(--ink); color: #fff; padding: .16em .34em .2em; border-radius: 3px; }
/* On dark surfaces (footer) the black block would vanish — flip it to ivory. */
.wordmark--invert .wordmark__gold { color: var(--brand-gold); }
.wordmark--invert .wordmark__box { background: var(--ivory); color: var(--ink); }
@media (max-width: 400px) { .wordmark { font-size: 1.02rem; } }

.nav { display: flex; align-items: center; gap: .3rem; margin-left: auto; }
.nav__link {
  text-decoration: none; color: var(--ink-soft); font-weight: 500; font-size: .96rem;
  padding: .5rem .8rem; border-radius: var(--radius); line-height: 1;
}
.nav__link:hover { color: var(--ink); background: var(--gold-tint); }
.nav__link[aria-current="page"] { color: var(--ink); box-shadow: inset 0 -2px 0 var(--gold); border-radius: 0; }
.nav__cta { margin-left: .5rem; }

.nav-toggle {
  display: none; margin-left: auto; align-items: center; gap: .5rem;
  background: transparent; border: 1px solid var(--line); border-radius: var(--radius);
  padding: .5rem .8rem; font: inherit; font-weight: 600; font-size: .9rem; color: var(--ink); cursor: pointer;
}

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: .1rem;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: .8rem clamp(1.25rem, 5vw, 2.5rem) 1.2rem; margin: 0;
    box-shadow: var(--shadow);
  }
  .nav__link { padding: .8rem .4rem; font-size: 1.05rem; }
  .nav__cta { margin: .6rem 0 0; }
  .nav__cta .btn { width: 100%; }
}

/* ------------------------------------------------------------------ buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font: inherit; font-weight: 600; font-size: 1rem; line-height: 1;
  padding: .95rem 1.6rem; border-radius: var(--radius); border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none; transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.btn--primary:hover { background: #241d13; color: #f4d99a; }
.btn--gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-deep); color: #fff; border-color: var(--gold-deep); }
.btn--ghost { background: transparent; color: var(--ink); border-color: rgba(23,19,13,.28); }
.btn--ghost:hover { border-color: var(--ink); background: rgba(23,19,13,.04); }
.btn--small { padding: .6rem 1rem; font-size: .9rem; }
.btn--block { width: 100%; }
.section--ink .btn--ghost { color: var(--ivory); border-color: rgba(246,241,232,.35); }
.section--ink .btn--ghost:hover { border-color: var(--ivory); background: rgba(246,241,232,.08); }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }
.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; text-decoration: none;
  color: var(--gold-deep); font-size: .98rem;
}
.link-arrow::after { content: "\2192"; transition: transform .15s ease; }
.link-arrow:hover::after { transform: translateX(3px); }

/* ------------------------------------------------------------ typographic */
.eyebrow {
  display: inline-block; font-size: var(--step-eyebrow); font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); margin: 0 0 1rem;
}
.section--ink .eyebrow { color: #d9ab54; }
.lede { font-size: var(--lede); line-height: 1.6; color: var(--ink-soft); }
.section--ink .lede { color: rgba(246,241,232,.82); }
.measure { max-width: 62ch; }
.center { text-align: center; }
.center .btn-row { justify-content: center; }
.center .measure { margin-inline: auto; }

/* --------------------------------------------------------------------- hero */
.hero { padding-block: clamp(3.5rem, 8vw, 6rem); }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero h1 { font-size: clamp(2.35rem, 5.4vw, 3.85rem); letter-spacing: -.025em; }
.hero__lede { margin-top: 1.4rem; }
.hero .btn-row { margin-top: 2.1rem; }
.hero__note {
  margin-top: 1.9rem; padding-top: 1.4rem; border-top: 1px solid var(--line);
  font-size: .92rem; color: var(--ink-faint); max-width: 46ch;
}
.hero__figure { position: relative; }
.hero__figure img {
  width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lift);
  aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 20%;
}
.hero__badge {
  position: absolute; left: -1.4rem; bottom: 1.6rem;
  background: var(--ink); color: var(--ivory); padding: .9rem 1.2rem; border-radius: var(--radius);
  box-shadow: var(--shadow-lift); max-width: 15rem;
}
.hero__badge b { color: #e9c877; display: block; font-size: 1.5rem; letter-spacing: -.02em; }
.hero__badge span { font-size: .82rem; color: rgba(246,241,232,.8); line-height: 1.4; }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .hero__figure { max-width: 420px; margin-inline: auto; }
  .hero__badge { left: 0; }
}

/* -------------------------------------------------------------- section head */
.section-head { max-width: 60ch; }
.section-head.center { margin-inline: auto; }
.section-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
.section-head p { margin-top: 1rem; }

/* ------------------------------------------------------------- problem strip */
.problem h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); max-width: 20ch; }
.problem__body { margin-top: 1.4rem; display: grid; gap: 1.1rem; max-width: 60ch; }
.problem__kicker { color: var(--gold-deep); font-weight: 600; }

/* -------------------------------------------------------------- value cards */
.grid { display: grid; gap: 1.4rem; }
.grid--5 { grid-template-columns: repeat(5, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 1000px) { .grid--5 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: 1fr; } }
@media (max-width: 620px)  { .grid--5, .grid--2 { grid-template-columns: 1fr; } }

.pillar {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: .6rem;
  color: var(--ink);
}
.pillar__letter {
  font-size: 1.9rem; font-weight: 800; letter-spacing: -.02em; color: var(--gold-deep);
  line-height: 1; width: 2.6rem; height: 2.6rem; display: grid; place-items: center;
  border: 1.5px solid var(--gold-line); border-radius: 8px; background: var(--gold-tint);
}
.pillar h3 { font-size: 1.12rem; }
.pillar p { font-size: .95rem; color: var(--ink-soft); }

/* the five VALUE letters as a strip (self-check summary) */
.value-strip { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }
.value-chip {
  display: inline-flex; align-items: baseline; gap: .5rem;
  border: 1px solid var(--line); background: var(--cream); border-radius: 999px;
  padding: .5rem .95rem; font-size: .95rem;
}
.value-chip b { color: var(--gold-deep); font-weight: 800; }

/* ------------------------------------------------------------- program cards */
.program {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.7rem 1.6rem; display: flex; flex-direction: column; box-shadow: var(--shadow);
}
.program--feature { border-color: var(--gold-line); box-shadow: var(--shadow-lift); position: relative; }
.program__tag {
  align-self: flex-start; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold-deep); background: var(--gold-tint); border-radius: 999px; padding: .3rem .7rem; margin-bottom: .9rem;
}
.program h3 { font-size: 1.3rem; }
.program__desc { margin-top: .7rem; color: var(--ink-soft); font-size: .98rem; }
.program__list { list-style: none; padding: 0; margin: 1.1rem 0 1.4rem; display: grid; gap: .55rem; }
.program__list li { position: relative; padding-left: 1.5rem; font-size: .95rem; color: var(--ink-soft); }
.program__list li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: .55rem; height: .55rem;
  border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(45deg);
}
.program__foot { margin-top: auto; }
.program__status { font-size: .85rem; color: var(--ink-faint); margin-top: .8rem; }

/* ------------------------------------------------------------------- logos */
.logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.6rem, 5vw, 3.4rem); }
.logos img {
  height: 30px; width: auto; opacity: .62; filter: grayscale(1);
  transition: opacity .2s ease;
}
.logos img:hover { opacity: .9; }
.logos--ink img { filter: grayscale(1) brightness(0) invert(1); opacity: .55; }

/* ------------------------------------------------------------------- about */
.about__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about__figure img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lift); aspect-ratio: 4/5; object-fit: cover; object-position: 50% 18%; }
.about__quote {
  margin-top: 1.6rem; padding-left: 1.2rem; border-left: 3px solid var(--gold);
  font-size: 1.12rem; font-style: italic; color: var(--ink); max-width: 40ch;
}
@media (max-width: 820px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__figure { max-width: 340px; }
}

/* ------------------------------------------------------------------- final */
.final { text-align: center; }
.final h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); max-width: 18ch; margin-inline: auto; }
.final p { margin-top: 1.1rem; }
.final .btn-row { margin-top: 2rem; justify-content: center; }

/* ------------------------------------------------------------------- forms */
.form { display: grid; gap: 1.1rem; max-width: 460px; }
.field { display: grid; gap: .4rem; }
.field label { font-weight: 600; font-size: .92rem; }
.field input, .field textarea, .field select {
  font: inherit; padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: var(--radius);
  background: var(--white); color: var(--ink); width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold-deep); outline: none; }
.field__error { color: #a12b1e; font-size: .85rem; }
.form__consent { font-size: .82rem; color: var(--ink-faint); line-height: 1.5; }
.form-status { padding: .8rem 1rem; border-radius: var(--radius); font-size: .92rem; }
.form-status--ok { background: rgba(37,110,60,.12); color: #245c37; }
.form-status--error { background: rgba(161,43,30,.1); color: #a12b1e; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ------------------------------------------------------------------ footer */
.site-footer { background: var(--ink); color: rgba(246,241,232,.72); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; font-size: .92rem; }
.site-footer a { color: rgba(246,241,232,.82); text-decoration: none; text-underline-offset: 3px; }
.site-footer a:hover { color: #e9c877; text-decoration: underline; text-decoration-color: var(--gold); }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; }
.site-footer__brand .brand__name { color: var(--ivory); }
.site-footer__brand p { margin-top: 1rem; max-width: 34ch; }
.site-footer h2 { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: #d9ab54; margin-bottom: 1rem; font-weight: 700; }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: .6rem; }
.site-footer__bottom {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(246,241,232,.14);
  display: flex; flex-wrap: wrap; gap: .6rem 1.2rem; justify-content: space-between; align-items: center;
  font-size: .84rem; color: rgba(246,241,232,.55);
}
.site-footer__bottom nav { display: flex; flex-wrap: wrap; gap: .3rem .9rem; }
.footer-link-btn { background: none; border: 0; font: inherit; color: rgba(246,241,232,.82); cursor: pointer; padding: 0; text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.footer-link-btn:hover { color: #e9c877; }
@media (max-width: 720px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } .site-footer__brand { grid-column: 1 / -1; } }

/* ------------------------------------------------------------- legal / prose */
.prose { max-width: 72ch; }
.prose h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 1.2rem; }
.prose h2 { font-size: 1.35rem; margin: 2.4rem 0 .8rem; }
.prose h3 { font-size: 1.1rem; margin: 1.8rem 0 .6rem; }
.prose p, .prose ul, .prose ol { margin: 0 0 1rem; color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 1.3rem; display: grid; gap: .4rem; }
.prose blockquote { margin: 1.2rem 0; padding-left: 1.1rem; border-left: 3px solid var(--gold); color: var(--ink); }
.prose .rule { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }
.prose a { color: var(--gold-deep); }
.page-lede { color: var(--ink-faint); font-size: .95rem; margin-bottom: 2rem; }

/* -------------------------------------------------------------- cookie banner */
.cookie {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 300;
  background: var(--cream); color: var(--ink); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lift);
}
.cookie .wrap { padding-block: 1.2rem; }
.cookie__inner { display: flex; gap: 1.5rem; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.cookie__title { font-size: 1.05rem; margin-bottom: .3rem; }
.cookie__inner p, .cookie__settings p { font-size: .9rem; color: var(--ink-soft); max-width: 62ch; }
.cookie__actions { flex-shrink: 0; }
.btn--consent { background: var(--white); border-color: var(--line); color: var(--ink); }
.btn--consent:hover { border-color: var(--ink); }
.btn--consent-primary { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.btn--consent-primary:hover { background: #241d13; color: #f4d99a; }
.consent-cat { padding: .8rem 0; border-top: 1px solid var(--line); }
.consent-cat__head { display: flex; align-items: center; gap: .6rem; font-weight: 600; }
.consent-cat p { margin-top: .3rem; padding-left: 1.6rem; }
@media (min-width: 720px) { .cookie { left: auto; right: 1.5rem; bottom: 1.5rem; max-width: 640px; } }

/* ============================================================ Salary Self-Check */
.ssc-root { position: relative; }

/* progress bar */
.ssc__bar {
  position: sticky; top: 68px; z-index: 40;
  height: 6px; background: var(--line); border-radius: 999px; overflow: hidden; margin-bottom: 2rem;
}
.ssc__bar-fill { height: 100%; width: 0; background: var(--gold); transition: width .25s ease; }

.ssc__section { margin-bottom: 2.5rem; }
.ssc__section-title { display: flex; align-items: center; gap: .6rem; font-size: 1.15rem; margin-bottom: 1.2rem; }
.ssc__section-letter {
  width: 2rem; height: 2rem; display: grid; place-items: center; flex: 0 0 auto;
  background: var(--gold-tint); color: var(--gold-deep); border: 1.5px solid var(--gold-line);
  border-radius: 7px; font-weight: 800;
}

/* one question */
.q { border: 0; margin: 0 0 .4rem; padding: 1.2rem 0; border-bottom: 1px solid var(--line-soft); }
.q__text { font-weight: 600; font-size: 1.02rem; color: var(--ink); padding: 0; display: block; }
.q__num {
  display: inline-grid; place-items: center; width: 1.6rem; height: 1.6rem; margin-right: .6rem;
  background: var(--ink); color: var(--ivory); border-radius: 50%; font-size: .82rem; font-weight: 700; vertical-align: middle;
}

/* 5-point scale */
.scale { display: flex; gap: .5rem; margin-top: 1rem; }
.scale__opt { flex: 1 1 0; cursor: pointer; }
.scale__opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.scale__dot {
  display: grid; place-items: center; height: 3rem; border: 1.5px solid var(--line);
  border-radius: var(--radius); background: var(--white); font-weight: 700; color: var(--ink-faint);
  transition: all .12s ease;
}
.scale__opt:hover .scale__dot { border-color: var(--gold); color: var(--ink); }
.scale__opt input:checked + .scale__dot { background: var(--ink); color: #f4d99a; border-color: var(--ink); }
.scale__opt input:focus-visible + .scale__dot { outline: 2px solid var(--gold-deep); outline-offset: 2px; }
.scale__ends { display: flex; justify-content: space-between; margin-top: .45rem; font-size: .8rem; color: var(--ink-faint); }

/* footer / submit */
.ssc__foot { margin-top: 2rem; }
.ssc__count { text-align: center; font-size: .9rem; color: var(--ink-faint); margin-bottom: .8rem; }
.ssc__note {
  text-align: center; color: #8a2a1e; font-weight: 600; font-size: .95rem; margin-bottom: .9rem;
  background: rgba(161,43,30,.08); border: 1px solid rgba(161,43,30,.3);
  border-radius: var(--radius); padding: .8rem 1rem;
}
/* a question the visitor skipped, made obvious after they try to submit */
.q--missing {
  background: rgba(161,43,30,.05); border-left: 3px solid #a12b1e;
  padding-left: .9rem; border-radius: 0 var(--radius) var(--radius) 0; scroll-margin-top: 90px;
}
.q--missing .q__num { background: #a12b1e; }

/* ---- result ---- */
.result__title { font-size: clamp(1.5rem, 3.4vw, 2.1rem); margin: .4rem 0 2rem; }
.result__sub { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; margin: 0 0 1rem; }

/* VALUE journey */
.journey { list-style: none; padding: 0; margin: 0 0 2.5rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.journey__step {
  display: flex; align-items: center; gap: .4rem; padding: .55rem .9rem; border-radius: 999px;
  border: 1px solid var(--line); font-weight: 600; font-size: .95rem; background: var(--cream); color: var(--ink-faint);
}
.journey__mark { font-weight: 800; }
.journey__step--done { color: var(--ink); border-color: var(--gold-line); }
.journey__step--done .journey__mark { color: var(--gold-deep); }
.journey__step--current { background: var(--ink); color: #f4d99a; border-color: var(--ink); }
.journey__step--upcoming { opacity: .6; }

/* five levels */
.result__levels { display: grid; gap: .5rem; margin-bottom: 2.5rem; }
.lvl { display: flex; align-items: center; justify-content: space-between; padding: .85rem 1.1rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); }
.lvl__name { font-weight: 600; }
.lvl__val { font-weight: 700; font-size: .9rem; padding: .25rem .7rem; border-radius: 999px; background: var(--gold-tint); color: var(--gold-deep); }
.lvl--developing .lvl__val, .lvl--needs_attention .lvl__val { background: rgba(23,19,13,.06); color: var(--ink-faint); }

/* biggest opportunity */
.opp { background: var(--cream); border: 1px solid var(--gold-line); border-radius: var(--radius-lg); padding: clamp(1.4rem, 4vw, 2.2rem); box-shadow: var(--shadow); margin-bottom: 2.5rem; }
.opp__motto { font-size: 1.2rem; font-style: italic; color: var(--gold-deep); margin-bottom: .8rem; }
.opp__title { font-size: clamp(1.4rem, 3.4vw, 2rem); }
.opp__sub { color: var(--ink-faint); margin: .4rem 0 1.1rem; }
.opp__summary { font-size: 1.08rem; color: var(--ink-soft); line-height: 1.6; }

/* email CTA */
.result__cta { background: var(--ink); color: var(--ivory); border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.4rem); }
.result__cta h3 { font-size: 1.35rem; }
.result__cta > p { color: rgba(246,241,232,.82); margin: .7rem 0 1.4rem; }
.result__cta .form { max-width: none; }
.result__cta .field label { color: var(--ivory); }
.result__cta .form__consent { color: rgba(246,241,232,.6); }
.result__cta .form__consent a { color: #e9c877; }
.result__retake { text-align: center; margin-top: 1.6rem; }
.result__retake .footer-link-btn { color: var(--ink-faint); }

@media (max-width: 520px) {
  .scale__dot { height: 2.7rem; }
  .ssc__bar { top: 60px; }
}

/* Self-Check hero staircase — portrait 2:3, show the full flight of steps */
.hero__figure--stair img { aspect-ratio: 2 / 3; object-fit: cover; object-position: center; }

/* optional marketing consent checkbox on the result form */
.form__check { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; color: var(--ink-soft); cursor: pointer; line-height: 1.5; }
.form__check input { margin-top: .15rem; flex: 0 0 auto; width: 1.15rem; height: 1.15rem; accent-color: var(--gold-deep); }
.result__cta .form__check { color: rgba(246,241,232,.82); }
.result__cta .form__check input { accent-color: #c6972e; }

/* ================================================================ Report page */
.report__state { padding-block: 2rem; }
.report__title { font-size: clamp(1.7rem, 4vw, 2.5rem); margin-bottom: 2rem; }
.report__h { font-size: 1.35rem; margin: 2.4rem 0 1rem; }
.report__h3 { font-size: 1.08rem; margin: 0 0 .5rem; }
.report__summary { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.3rem, 4vw, 2rem); margin-bottom: 1rem; }
.report__summary .report__h { margin-top: 0; }
.report__block { margin: 1.6rem 0; color: var(--ink-soft); }
.report__block p { color: var(--ink-soft); }
.report__q { font-style: italic; color: var(--ink); border-left: 3px solid var(--gold); padding-left: 1rem; }
.report__action { background: var(--gold-tint); border: 1px solid var(--gold-line); border-radius: var(--radius-lg); padding: 1.3rem 1.5rem; margin: 1.8rem 0; }
.report__action .report__h3 { color: var(--gold-deep); }
.report__note { font-size: .9rem; color: var(--ink-faint); }
.refs { list-style: none; padding: 0; display: grid; gap: .7rem; margin-top: .8rem; font-size: .9rem; color: var(--ink-soft); }
.refs li { padding-left: 1rem; border-left: 2px solid var(--line); }
.refs a { color: var(--gold-deep); word-break: break-word; }
.report__programs { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.report__tiers { display: grid; gap: 1rem; margin: 1.4rem 0; }
.report__tiers .tier { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.3rem; }
.report__tiers .tier h4 { font-size: 1.05rem; margin-bottom: .3rem; }
.report__tiers .tier p { color: var(--ink-soft); font-size: .95rem; }
@media (min-width: 680px) { .report__tiers { grid-template-columns: repeat(3, 1fr); } }

/* enriched instant result — five pillar cards with level meter */
.pillars { display: grid; gap: .8rem; margin-bottom: 2.5rem; }
.pillar-row { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.1rem 1.3rem; }
.pillar-row--focus { border-color: var(--gold-line); box-shadow: var(--shadow); }
.pillar-row__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.pillar-row__name { font-weight: 700; font-size: 1.05rem; }
.pillar-row__tag { font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-deep); background: var(--gold-tint); border-radius: 999px; padding: .2rem .55rem; }
.pillar-row__focus { font-size: .92rem; color: var(--ink-faint); margin-top: .25rem; }
.meter { display: flex; gap: .3rem; margin-top: .7rem; }
.meter__seg { height: 6px; flex: 1 1 0; border-radius: 999px; background: rgba(23,19,13,.1); }
.meter__seg--on { background: var(--gold); }
.pillar-row__note { font-size: .92rem; color: var(--ink-soft); margin-top: .6rem; }

.opp__idea { font-size: 1.05rem; color: var(--ink); margin-bottom: .8rem; font-weight: 500; }
.result__pattern { background: var(--cream); border-left: 3px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.2rem 1.4rem; margin-bottom: 2.5rem; }
.result__pattern .result__sub { margin-top: 0; }
.result__pattern p { color: var(--ink-soft); }

.cta-list { list-style: none; padding: 0; margin: 0 0 1.4rem; display: grid; gap: .5rem; }
.cta-list li { position: relative; padding-left: 1.6rem; color: rgba(246,241,232,.9); font-size: .96rem; }
.cta-list li::before { content: ""; position: absolute; left: 0; top: .4em; width: .5rem; height: .5rem; border-right: 2px solid #e9c877; border-bottom: 2px solid #e9c877; transform: rotate(45deg); }

/* prominent "100% free" badge on the result CTA */
.free-badge {
  display: inline-block; background: var(--gold); color: var(--ink);
  font-weight: 800; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
  padding: .35rem .85rem; border-radius: 999px; margin-bottom: 1rem;
}

/* confirmation panel that replaces a form after a successful send */
.form-sent { text-align: center; padding: 1.5rem 0; }
.form-sent__icon {
  width: 3.2rem; height: 3.2rem; margin: 0 auto 1.1rem; border-radius: 50%;
  background: var(--gold); color: var(--ink); display: grid; place-items: center; font-size: 1.5rem;
}
.form-sent__title { font-size: 1.5rem; margin-bottom: .6rem; }
.form-sent__text { font-size: 1.05rem; max-width: 48ch; margin: 0 auto; opacity: .9; line-height: 1.6; }

/* ---- richer full report: extra sections ---- */
.report__cost { background: rgba(161,43,30,.05); border-left: 3px solid #a12b1e; border-radius: 0 var(--radius) var(--radius) 0; padding: 1.2rem 1.4rem; margin: 1.8rem 0; }
.report__cost .report__h3 { color: #8a2a1e; }
.report__cost p { color: var(--ink-soft); }

.report__course { background: var(--cream); border: 1px solid var(--gold-line); border-radius: var(--radius-lg); padding: clamp(1.3rem,4vw,2rem); margin: 2.4rem 0; box-shadow: var(--shadow); }
.report__course .report__h { margin-top: 0; }
.report__course p { color: var(--ink-soft); }

.report__voices { margin: 2.6rem 0; }
.voice { margin: 0 0 1.4rem; padding: 1.3rem 1.5rem; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.voice blockquote { margin: 0 0 .7rem; font-size: 1.08rem; font-style: italic; color: var(--ink); }
.voice figcaption { font-size: .9rem; color: var(--ink-faint); font-weight: 600; }

.report__marcel { background: var(--ink); color: var(--ivory); border-radius: var(--radius-lg); padding: clamp(1.5rem,4vw,2.4rem); margin: 2.6rem 0; }
.report__marcel .report__h { margin-top: 0; color: #e9c877; }
.report__marcel p { color: rgba(246,241,232,.9); }
.report__sign { margin-top: 1rem; font-style: italic; color: rgba(246,241,232,.72); font-size: .95rem; }

.report__disclaimer { margin-top: .9rem; font-size: .85rem; color: var(--ink-faint); }

/* program pricing */
.program__price { margin: .1rem 0 .8rem; font-size: 1.55rem; font-weight: 800; line-height: 1; }
.program__price-old { color: var(--ink-faint); font-weight: 600; font-size: 1.05rem; text-decoration: line-through; margin-right: .45rem; }
.program__price-now { color: var(--gold-deep); }

/* ROI calculator */
.roi { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.4rem,4vw,2.2rem); box-shadow: var(--shadow); }
.roi__inputs { display: grid; gap: 1.1rem; }
@media (min-width: 620px) { .roi__inputs { grid-template-columns: 1fr 1.4fr; align-items: end; } }
.roi__eur { display: flex; align-items: center; border: 1.5px solid var(--line); border-radius: var(--radius); background: var(--white); padding-left: .8rem; }
.roi__eur span { color: var(--ink-faint); font-weight: 600; }
.roi__eur input { border: 0; padding: .8rem .6rem; font: inherit; width: 100%; background: transparent; }
.roi__eur input:focus { outline: none; }
.roi__eur:focus-within { border-color: var(--gold-deep); }
.roi__result { margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.roi__result--empty { color: var(--ink-faint); }
.roi__headline { font-size: clamp(1.25rem,3vw,1.5rem); font-weight: 700; }
.roi__headline strong { color: var(--gold-deep); }
.roi__detail { font-size: 1.1rem; color: var(--ink-soft); margin-top: .5rem; }
.roi__note { font-size: .95rem; color: var(--ink-faint); margin-top: .7rem; }
