

:root {
  
  --c-bg: #0a0a0b;
  --c-surface: #121214;
  --c-surface-2: #18181b;
  --c-line: #2a2a2e;
  --c-text: #f3f0ea;
  --c-muted: #a6a198;
  --c-accent: #dcab3c;         
  --c-accent-hi: #f0c860;
  --c-accent-press: #c4972f;   
  --c-on-accent: #0a0a0b;
  --c-negative: #8a847a;

  --f-display: "Bahnschrift", "DIN Condensed", "Avenir Next Condensed", "Roboto Condensed", "Arial Narrow", sans-serif-condensed, Impact, sans-serif;
  --f-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --gutter: clamp(1rem, 4vw, 2.5rem);
  --section-y: clamp(4.5rem, 11vw, 9rem);
  --radius: 4px;
  --max: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: var(--c-bg);
}

body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, p, ul, ol, blockquote, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: calc(var(--max) + 2 * var(--gutter));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

:focus-visible {
  outline: 3px solid var(--c-accent-hi);
  outline-offset: 3px;
  border-radius: 2px;
}
[tabindex="-1"]:focus { outline: none; }

.display {
  font-family: var(--f-display);
  font-stretch: 75%;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.display--xl { font-size: clamp(2.5rem, 7.2vw, 5.75rem); }
.display--lg { font-size: clamp(2.1rem, 5.4vw, 4.25rem); }
.display--md { font-size: clamp(1.7rem, 3.8vw, 2.9rem); line-height: 1.02; }

.accent { color: var(--c-accent); }

.eyebrow,
.section-index {
  font-family: var(--f-display);
  font-stretch: 75%;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.8125rem;
  color: var(--c-accent);
}
.section-index {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.75rem;
}
.section-index::after {
  content: "";
  width: 3rem;
  height: 1px;
  background: var(--c-accent);
}

.section { padding-block: var(--section-y); }
.section + .section { border-top: 1px solid var(--c-line); }

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  min-height: 4rem;
  padding: 0.95rem 1rem;
  border: 0;
  border-radius: var(--radius);
  background: var(--c-accent);
  color: var(--c-on-accent);
  font-family: var(--f-display);
  font-stretch: 75%;
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  
  transition: background-color 160ms ease, transform 160ms ease;
}
.cta__label { text-wrap: balance; }

.cta__end { white-space: nowrap; }
.cta__arrow {
  display: inline-block;
  vertical-align: -0.16em;
  margin-left: 0.55em;
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 160ms ease;
}
.cta:hover { background: var(--c-accent-hi); }
.cta:hover .cta__arrow { transform: translateX(3px); }
.cta:active { background: var(--c-accent-press); transform: translateY(1px); }
@media (min-width: 600px) {
  .cta { width: auto; min-width: min(100%, 30rem); padding-inline: 2.25rem; letter-spacing: 0.08em; }
}

.hero .cta,
.audience .cta { margin-top: 2rem; }
.product__close .cta { margin-top: 0.5rem; }   
.decision__close .cta { margin-top: 1rem; }    
.offer__card .cta { width: 100%; min-width: 0; } 

.hero {
  position: relative;
  isolation: isolate;
  background: var(--c-bg); 
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
}

.hero__media {
  position: relative;
  aspect-ratio: 4 / 3;
  max-height: 60vh;
  width: 100%;
  z-index: -1;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% 40%;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgb(10 10 11 / 0.35) 0%, rgb(10 10 11 / 0) 30%, rgb(10 10 11 / 0.7) 72%, var(--c-bg) 100%);
}
.hero__content { position: relative; margin-top: -2.5rem; }

.hero__logo { width: clamp(120px, 14vw, 170px); margin-bottom: 1.75rem; mix-blend-mode: screen; }
.hero__title {
  font-size: clamp(3rem, 12.5vw, 6rem);
  max-width: 12ch;
  text-wrap: wrap;
}
.hero__title-accent { display: block; }
.hero__lead {
  margin-top: 1.5rem;
  max-width: 34rem;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--c-accent);
  background: rgb(18 18 20 / 0.82);
  font-size: clamp(1.1rem, 1.9vw, 1.3rem);
  line-height: 1.45;
  font-weight: 500;
}
.hero__support {
  margin-top: 1rem;
  max-width: 34rem;
  color: var(--c-muted);
  font-size: 1rem;
}

.microproof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 1.1rem;
  font-size: 0.875rem;
  color: var(--c-muted);
}
.microproof li { display: inline-flex; align-items: center; gap: 0.45rem; }
.microproof li::before {
  content: "";
  width: 0.7rem;
  height: 0.4rem;
  border-left: 2px solid var(--c-accent);
  border-bottom: 2px solid var(--c-accent);
  transform: rotate(-45deg) translateY(-2px);
}
.microproof--center { justify-content: center; }

@media (min-width: 960px) {
  .hero {
    display: grid;
    align-items: center;
    
    min-height: min(100vh, 56rem);
    min-height: min(100svh, 56rem);
    padding-top: 3rem;
  }
  .hero__media {
    position: absolute;
    inset: 0 0 0 auto;
    width: min(70vw, 1040px);
    height: 100%;
    aspect-ratio: auto;
    max-height: none;
  }
  .hero__content { margin-top: 0; }
  .hero__media img { object-position: 28% 40%; }
  .hero__media::after {
    background:
      linear-gradient(to right, var(--c-bg) 0%, rgb(10 10 11 / 0.6) 9%, rgb(10 10 11 / 0) 22%),
      linear-gradient(to top, var(--c-bg) 0%, rgb(10 10 11 / 0) 24%),
      linear-gradient(to bottom, rgb(10 10 11 / 0.5) 0%, rgb(10 10 11 / 0) 18%);
  }
  .hero__content { max-width: calc(30rem + 2 * var(--gutter)); margin-inline: max(0px, calc((100% - var(--max)) / 2 - var(--gutter))) auto; }
  .hero__title { font-size: clamp(3.4rem, 5.6vw, 5.4rem); }
  .hero__lead, .hero__support { max-width: 28rem; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__content > * { animation: rise 700ms cubic-bezier(.2,.7,.2,1) both; }
  .hero__content > :nth-child(2) { animation-delay: 80ms; }
  .hero__content > :nth-child(3) { animation-delay: 160ms; }
  .hero__content > :nth-child(4) { animation-delay: 220ms; }
  .hero__content > :nth-child(n+5) { animation-delay: 280ms; }
  .hero__media { animation: fade 1100ms ease both; }
}
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

.career {
  padding-block: clamp(3rem, 7vw, 5rem) clamp(3rem, 6vw, 4.5rem);
  background: var(--c-surface);
  border-block: 1px solid var(--c-line);
}
.career__title {
  font-family: var(--f-display);
  font-stretch: 75%;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.22em;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 1.5;
  color: var(--c-muted);
}
.career__track {
  margin-top: 2.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--gutter);
  scrollbar-width: thin;
  scrollbar-color: var(--c-line) transparent;
}
.career__list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(42vw, 220px);
  gap: 0.9rem;
  padding-inline: var(--gutter);
  padding-bottom: 0.75rem;
  width: max-content;
}
.career__item { scroll-snap-align: start; }
.career__item img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 10px;
}
.career__caption {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-family: var(--f-display);
  font-stretch: 75%;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1rem;
}
.career__num { color: var(--c-accent); font-size: 0.8125rem; letter-spacing: 0.12em; }

@media (min-width: 1100px) {
  .career__track { overflow: visible; }
  .career__list {
    grid-auto-flow: row;
    grid-template-columns: repeat(6, 1fr);
    width: 100%;
    max-width: calc(var(--max) + 2 * var(--gutter));
    margin-inline: auto;
    gap: 1.1rem;
  }
  
  .career__item { position: relative; }
  .career__caption { padding-top: 0.9rem; border-top: 1px solid var(--c-line); }
  .career__item:first-child .career__caption { border-top-color: var(--c-accent); }
}

.career--marquee .career__track {
  display: flex;
  overflow: hidden;
  scroll-snap-type: none;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}
.career--marquee .career__list {
  --marquee-gap: 1rem;
  flex: none;
  display: flex;
  gap: var(--marquee-gap);
  width: max-content;
  max-width: none;
  margin: 0;
  padding: 0 var(--marquee-gap) 0.75rem 0;
  animation: career-marquee var(--marquee-duration, 45s) linear infinite;
}
.career--marquee .career__item {
  flex: none;
  width: clamp(9.5rem, 42vw, 12.5rem);
  scroll-snap-align: none;
}
.career--marquee .career__caption { padding-top: 0.9rem; border-top: 1px solid var(--c-line); }
.career--marquee .career__item:first-child .career__caption { border-top-color: var(--c-accent); }

.career--marquee.is-paused .career__list { animation-play-state: paused; }
@keyframes career-marquee { from { transform: translateX(0); } to { transform: translateX(-100%); } }

.career__controls { display: flex; justify-content: flex-end; margin-top: 1rem; }
.career__controls[hidden] { display: none; }
.career__toggle {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  background: var(--c-surface-2);
  border: 1px solid var(--c-line);
  border-radius: 50%;
  color: var(--c-muted);
  cursor: pointer;
  
  transition: color 160ms ease, border-color 160ms ease;
}
.career__toggle:hover { color: var(--c-text); border-color: var(--c-muted); }
.career__toggle svg { width: 0.875rem; height: 0.875rem; fill: currentColor; }
.career__toggle[data-state="playing"] .career__icon--play,
.career__toggle[data-state="paused"] .career__icon--pause { display: none; }

.problem__intro {
  margin-top: 2.5rem;
  max-width: 38rem;
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: var(--c-muted);
}
.problem__intro p + p { margin-top: 0.4rem; color: var(--c-text); }
.problem__question {
  margin-top: 2.5rem;
  max-width: 22ch;
}
.pain-list {
  display: grid;
  gap: 1px;
  margin-top: 3rem;
  background: var(--c-line);
  border: 1px solid var(--c-line);
}
.pain {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.5rem 1.35rem;
  background: var(--c-bg);
  font-size: 1.05rem;
  line-height: 1.5;
}
.pain__mark {
  flex: none;
  position: relative;
  width: 1.9rem;
  height: 1.9rem;
  margin-top: 0.05rem;
  border: 1px solid var(--c-negative);
  border-radius: 50%;
}
.pain__mark::before,
.pain__mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.8rem;
  height: 2px;
  background: var(--c-muted);
  transform: translate(-50%, -50%) rotate(45deg);
}
.pain__mark::after { transform: translate(-50%, -50%) rotate(-45deg); }

@media (min-width: 760px) {
  .pain-list { grid-template-columns: 1fr 1fr; }
  .pain { padding: 2rem 1.75rem; }
}

.problem__close {
  margin-top: clamp(3.5rem, 8vw, 6rem);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid var(--c-line);
}
.problem__note {
  margin-top: 1.5rem;
  max-width: 36rem;
  color: var(--c-muted);
}

.system { background: var(--c-surface); }
.system__support {
  margin-top: 1.5rem;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--c-muted);
}
.system__support strong { font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.pillars {
  display: grid;
  gap: 2.5rem;
  margin-top: clamp(3rem, 6vw, 4.5rem);
}
.pillar {
  padding-top: 1.5rem;
  border-top: 2px solid var(--c-accent);
}
.pillar__num {
  font-family: var(--f-display);
  font-stretch: 75%;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--c-accent);
}
.pillar__title {
  margin-top: 0.4rem;
  font-family: var(--f-display);
  font-stretch: 75%;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 4.2vw, 3.1rem);
  line-height: 1;
}
.pillar p { margin-top: 1rem; color: var(--c-muted); max-width: 26rem; }

@media (min-width: 860px) {
  .pillars { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
}

.system__statement {
  margin-top: clamp(3.5rem, 8vw, 6rem);
  display: grid;
  gap: 1.5rem;
}
.system__statement > p:last-child { max-width: 36rem; color: var(--c-muted); }
@media (min-width: 960px) {
  .system__statement { grid-template-columns: 1.3fr 1fr; align-items: end; gap: 4rem; }
}

.audience__grid { display: grid; gap: 3rem; }
.audience__intro { margin-top: 1.5rem; max-width: 30rem; color: var(--c-muted); font-size: 1.125rem; }

.check-list { display: grid; gap: 0; }
.check-list li {
  position: relative;
  padding: 1.1rem 0 1.1rem 2.4rem;
  border-bottom: 1px solid var(--c-line);
  font-size: 1.0625rem;
  line-height: 1.5;
}
.check-list li:first-child { border-top: 1px solid var(--c-line); }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 1.45rem;
  width: 0.95rem;
  height: 0.5rem;
  border-left: 2px solid var(--c-accent);
  border-bottom: 2px solid var(--c-accent);
  transform: rotate(-45deg);
}
.check-list--compact li { padding-block: 0.6rem; padding-left: 2rem; font-size: 1rem; }
.check-list--compact li::before { top: 0.95rem; width: 0.8rem; height: 0.42rem; }
.check-list--compact li:first-child { border-top: 0; }

@media (min-width: 960px) {
  .audience__grid { grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: start; }
  .audience__head { position: sticky; top: 2rem; }
}

.story { background: var(--c-surface); }
.story__lede {
  margin-top: 2rem;
  max-width: 40rem;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  line-height: 1.4;
  font-weight: 500;
}
.timeline {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  display: grid;
  gap: 0;
  border-left: 1px solid var(--c-line);
}
.timeline__item {
  position: relative;
  padding: 0 0 2.5rem 1.75rem;
}
.timeline__item::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0.45rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-accent);
}
.timeline__label {
  font-family: var(--f-display);
  font-stretch: 75%;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.2rem;
  color: var(--c-accent);
}
.timeline__item p { margin-top: 0.6rem; max-width: 42rem; color: var(--c-muted); }
@media (min-width: 900px) {
  .timeline { border-left: 0; border-top: 1px solid var(--c-line); }
  .timeline__item {
    display: grid;
    grid-template-columns: 17rem 1fr;
    gap: 2.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--c-line);
  }
  .timeline__item::before { display: none; }
  .timeline__item p { margin-top: 0; }
}

.story__close {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  display: grid;
  gap: 1.25rem;
  max-width: 48rem;
}
.story__close > p { color: var(--c-muted); }
.story__quote {
  margin-top: 1.5rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--c-accent);
}
.story__quote p {
  font-family: var(--f-display);
  font-stretch: 75%;
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  line-height: 1.08;
}

.product__title { text-align: center; }
.product__intro {
  margin: 1.75rem auto 0;
  max-width: 40rem;
  text-align: center;
  color: var(--c-muted);
  font-size: 1.125rem;
}
.modules {
  display: grid;
  gap: 1.5rem;
  margin-top: clamp(3rem, 6vw, 4.5rem);
}
.module {
  display: flex;
  flex-direction: column;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
}
.module__media { position: relative; aspect-ratio: 16 / 11; }

.module__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.module__media--tall img { object-position: 50% 8%; }
.module__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(10 10 11 / 0.92) 0%, rgb(10 10 11 / 0.55) 32%, rgb(10 10 11 / 0) 62%);
}
.module__title {
  position: absolute;
  z-index: 1;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 1.1rem;
  font-family: var(--f-display);
  font-stretch: 75%;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  line-height: 0.98;
}
.module__num {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  letter-spacing: 0.24em;
  color: var(--c-accent);
}
.module__body { padding: 1.35rem 1.35rem 1.6rem; }
.module__tagline { margin-bottom: 0.6rem; font-weight: 600; }
.module__video {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: var(--c-accent);
}
.module__video::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 0.55rem solid var(--c-accent);
  border-block: 0.35rem solid transparent;
}
@media (min-width: 900px) {
  .modules { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
  .module__body { padding: 1.6rem 1.75rem 2rem; }
  .module__title { left: 1.75rem; right: 1.75rem; bottom: 1.4rem; }
}

.bonuses {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.75rem;
}
.bonus {
  display: grid;
  background: var(--c-bg);
  border: 1px solid var(--c-accent);
  border-radius: var(--radius);
  overflow: hidden;
}
.bonus__media { position: relative; aspect-ratio: 16 / 10; }
.bonus__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 25%; }
.bonus__media--type {
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(135deg, transparent 0 18px, rgb(220 171 60 / 0.06) 18px 19px),
    var(--c-surface);
}
.bonus__media--type span {
  font-family: var(--f-display);
  font-stretch: 75%;
  font-weight: 700;
  font-size: clamp(6rem, 18vw, 9rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--c-accent);
}
.bonus__body { padding: 1.5rem 1.35rem 1.75rem; }
.bonus__tag {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  background: var(--c-accent);
  color: var(--c-on-accent);
  font-family: var(--f-display);
  font-stretch: 75%;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8125rem;
  border-radius: 2px;
}
.bonus__title {
  margin-top: 0.9rem;
  font-family: var(--f-display);
  font-stretch: 75%;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1;
}
.bonus__desc { margin: 0.75rem 0 0.5rem; color: var(--c-muted); }
@media (min-width: 900px) {
  .bonuses { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
}
@media (min-width: 560px) and (max-width: 899px), (min-width: 1180px) {
  .bonus { grid-template-columns: 38% 1fr; }
  .bonus__media { aspect-ratio: auto; min-height: 100%; }
}

.product__close {
  margin-top: clamp(4rem, 9vw, 7rem);
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 1.5rem;
}
.product__close > p:not(.display) { max-width: 40rem; color: var(--c-muted); }

.offer {
  background:
    radial-gradient(60% 50% at 50% 0%, rgb(220 171 60 / 0.10), transparent 70%),
    var(--c-bg);
  scroll-margin-top: 1rem;
}
.offer__wrap { display: grid; justify-items: center; }
.offer__card {
  width: 100%;
  max-width: 40rem;
  padding: clamp(1.75rem, 5vw, 3.25rem);
  background: var(--c-surface);
  border: 1px solid var(--c-accent);
  border-radius: 6px;
}
.offer__kicker {
  font-family: var(--f-display);
  font-stretch: 75%;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.875rem;
  color: var(--c-accent);
  text-align: center;
}
.offer__title {
  margin-top: 0.6rem;
  font-family: var(--f-display);
  font-stretch: 75%;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 4.4vw, 2.6rem);
  line-height: 1;
  text-align: center;
  text-wrap: balance;
}
.offer__items { margin-top: 2rem; border-top: 1px solid var(--c-line); }
.offer__items li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.25rem 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--c-line);
  font-size: 1rem;
}
.offer__value { color: var(--c-muted); white-space: nowrap; }
.offer__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 1.1rem;
  font-family: var(--f-display);
  font-stretch: 75%;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.2rem;
}
.offer__total-value { font-size: 1.6rem; }
.offer__anchor {
  margin-top: 2rem;
  text-align: center;
  color: var(--c-muted);
  font-size: 1.05rem;
  line-height: 1.5;
}
.offer__anchor s { text-decoration-thickness: 2px; text-decoration-color: var(--c-muted); }
.offer__price-block {
  margin: 1.75rem 0 2rem;
  padding: 1.75rem 1rem;
  text-align: center;
  border-block: 1px solid var(--c-line);
}
.offer__condition {
  display: inline-block;
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--c-accent);
  border-radius: 2px;
  font-family: var(--f-display);
  font-stretch: 75%;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.875rem;
  color: var(--c-accent);
}
.offer__access {
  margin-top: 1.1rem;
  font-family: var(--f-display);
  font-stretch: 75%;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.05rem;
}
.offer__price {
  font-family: var(--f-display);
  font-stretch: 75%;
  font-weight: 700;
  font-size: clamp(5rem, 16vw, 7.5rem);
  line-height: 1;
  color: var(--c-accent);
}
.offer__currency { font-size: 0.4em; vertical-align: 0.9em; margin-right: 0.08em; }
.offer__terms { margin-top: 0.4rem; color: var(--c-muted); }
.offer__status:not(:empty) {
  margin-top: 0.9rem;
  padding: 0.75rem 1rem;
  border: 1px dashed var(--c-muted);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--c-text);
  text-align: center;
}
.offer .microproof { margin-top: 1.25rem; }

.guarantee { background: var(--c-surface); }
.guarantee__grid { display: grid; gap: 2.5rem; align-items: center; }
.guarantee__grid > div > p { margin-top: 1rem; max-width: 38rem; color: var(--c-muted); }
.guarantee__grid .display { max-width: 20ch; }
.guarantee__badge {
  display: inline-block;
  margin-top: 1.75rem !important;
  padding: 0.55rem 1rem;
  background: var(--c-accent);
  color: var(--c-on-accent) !important;
  font-family: var(--f-display);
  font-stretch: 75%;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 1.05rem;
  border-radius: 2px;
}
.seal {
  display: grid;
  place-items: center;
  align-content: center;
  width: clamp(9rem, 26vw, 13rem);
  aspect-ratio: 1;
  border: 2px solid var(--c-accent);
  border-radius: 50%;
  box-shadow: inset 0 0 0 8px var(--c-surface), inset 0 0 0 9px rgb(220 171 60 / 0.5);
  font-family: var(--f-display);
  font-stretch: 75%;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--c-accent);
}
.seal__num { font-size: clamp(4rem, 11vw, 6rem); line-height: 0.85; }
.seal__label { letter-spacing: 0.3em; font-size: 1rem; margin-right: -0.3em; }
@media (min-width: 760px) {
  .guarantee__grid { grid-template-columns: auto 1fr; gap: 4rem; }
}

.decision__title { text-align: center; }
.decision__sub {
  margin-top: 1.1rem;
  text-align: center;
  font-family: var(--f-display);
  font-stretch: 75%;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-muted);
}
.choices {
  display: grid;
  gap: 1rem;
  margin-top: clamp(3rem, 6vw, 4rem);
  align-items: stretch;
}
.choice {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius);
}
.choice p { margin-top: 1rem; font-size: 1.0625rem; }
.choice__label {
  font-family: var(--f-display);
  font-stretch: 75%;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 1rem;
}
.choice--old { border: 1px dashed var(--c-line); color: var(--c-muted); }
.choice--old .choice__label { color: var(--c-negative); }
.choice--new { border: 1px solid var(--c-accent); background: var(--c-surface); }
.choice--new .choice__label { color: var(--c-accent); }
.choices__or {
  align-self: center;
  justify-self: center;
  font-family: var(--f-display);
  font-stretch: 75%;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--c-muted);
}
@media (min-width: 860px) {
  .choices { grid-template-columns: 1fr auto 1fr; gap: 2rem; }
}
.decision__close {
  margin-top: clamp(3.5rem, 8vw, 6rem);
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
}
.decision__line { color: var(--c-muted); font-size: clamp(1.1rem, 2vw, 1.35rem); }
.decision__close .display { max-width: 18ch; }

.faq__grid { display: grid; gap: 2.5rem; }
@media (min-width: 960px) {
  .faq__grid { grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
}
.faq__list { border-top: 1px solid var(--c-line); }
.faq__item { border-bottom: 1px solid var(--c-line); }
.faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 3.5rem;
  padding: 1.1rem 0;
  font-weight: 600;
  font-size: 1.0625rem;
  cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "";
  flex: none;
  width: 0.7rem;
  height: 0.7rem;
  border-right: 2px solid var(--c-accent);
  border-bottom: 2px solid var(--c-accent);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 180ms ease;
}
.faq__item[open] summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.faq__item summary:hover { color: var(--c-accent-hi); }
.faq__item p { padding: 0 2rem 1.4rem 0; color: var(--c-muted); max-width: 44rem; }

.final {
  isolation: isolate; 
  padding-block: var(--section-y);
  background: var(--c-surface);
  border-top: 1px solid var(--c-line);
}
.final__inner { display: grid; justify-items: center; gap: 2rem; text-align: center; }
.final__logo { width: clamp(140px, 20vw, 220px); mix-blend-mode: screen; }
.final .display { max-width: 12ch; }

.site-footer {
  padding-block: 3rem 3.5rem;
  border-top: 1px solid var(--c-line);
  font-size: 0.875rem;
  color: var(--c-muted);
}
.site-footer__brand {
  font-family: var(--f-display);
  font-stretch: 75%;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 1rem;
  color: var(--c-text);
}
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 1.1rem;
}

.pending-link { color: var(--c-muted); }
.site-footer__disclaimer { margin-top: 1.5rem; max-width: 46rem; line-height: 1.55; }
.site-footer__mvp { margin-top: 1rem; font-size: 0.8125rem; color: var(--c-negative); }

.site-footer__credit {
  margin-top: 3.5rem;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--c-negative);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation: none !important; }
  
  .career--marquee .career__list { animation: career-marquee var(--marquee-duration, 45s) linear infinite !important; }
  .career--marquee.is-paused .career__list { animation-play-state: paused !important; }
}
