:root {
  --petrol-950: #021b20;
  --petrol-900: #03282e;
  --petrol-800: #063b43;
  --petrol-700: #0a515a;
  --green: #35f16d;
  --green-bright: #47ff7b;
  --gold: #d6ad55;
  --cream: #edf0e9;
  --paper: #f7f8f4;
  --ink: #071315;
  --white: #f7faf6;
  --muted: #a9bec0;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(0, 10, 12, 0.28);
  --radius: 24px;
  --shell: min(1180px, calc(100vw - 48px));
  --header-h: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--petrol-950);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  color: var(--ink);
  background: var(--green);
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.editor-active {
  padding-bottom: 108px;
}

.editor-active [data-edit-key] {
  border-radius: 4px;
  cursor: text;
  outline: 0;
  transition: background 140ms ease, box-shadow 140ms ease;
}

.editor-active [data-edit-key]:hover {
  background: rgba(71, 255, 123, 0.06);
}

.editor-active [data-edit-key]:focus {
  background: rgba(71, 255, 123, 0.1);
  outline: 1px solid rgba(71, 255, 123, 0.82);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(71, 255, 123, 0.08);
}

.copy-editor-toolbar {
  position: fixed;
  z-index: 1000;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(150px, auto);
  gap: 18px;
  align-items: center;
  width: min(940px, calc(100vw - 44px));
  margin-inline: auto;
  padding: 14px 16px;
  border: 1px solid rgba(71, 255, 123, 0.38);
  border-radius: 16px;
  color: var(--white);
  background: rgba(2, 27, 32, 0.96);
  box-shadow: 0 18px 58px rgba(0, 8, 10, 0.48);
  backdrop-filter: blur(18px);
}

.copy-editor-heading {
  display: grid;
  gap: 1px;
  line-height: 1.2;
}

.copy-editor-heading strong {
  color: var(--green-bright);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.copy-editor-heading span,
.copy-editor-status {
  color: var(--muted);
  font-size: 0.76rem;
}

.copy-editor-actions {
  display: flex;
  gap: 8px;
}

.copy-editor-actions button {
  min-height: 38px;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.copy-editor-actions button:hover {
  border-color: rgba(71, 255, 123, 0.65);
}

.copy-editor-actions .is-primary {
  border-color: var(--green);
  color: var(--ink);
  background: var(--green);
}

.copy-editor-status {
  min-width: 150px;
  text-align: right;
}

@media (max-width: 760px) {
  .editor-active {
    padding-bottom: 178px;
  }

  .copy-editor-toolbar {
    right: 10px;
    bottom: 10px;
    left: 10px;
    grid-template-columns: 1fr;
    gap: 10px;
    width: calc(100vw - 20px);
    padding: 12px;
  }

  .copy-editor-actions {
    display: grid;
    grid-template-columns: 0.8fr 1.35fr 0.9fr;
  }

  .copy-editor-actions button {
    padding-inline: 8px;
  }

  .copy-editor-status {
    position: absolute;
    top: 15px;
    right: 14px;
    max-width: 45%;
    text-align: right;
  }
}

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

h1,
h2,
h3,
.brand,
.button,
.eyebrow,
.control-label,
.offer-label,
.product-kicker,
.principles,
.cover-title,
.cover-start {
  letter-spacing: -0.035em;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 118px 0;
}

.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;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--green);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(2, 27, 32, 0.86);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  column-gap: 7px;
  align-items: end;
  text-decoration: none;
  line-height: 0.85;
}

.brand-mark,
.brand-name {
  font-size: 1.28rem;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.brand-mark {
  color: var(--green);
}

.brand-name {
  color: var(--white);
}

.brand-by {
  grid-column: 1 / -1;
  padding-top: 5px;
  color: var(--muted);
  font-size: 0.59rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  color: #d5e2e1;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--green);
}

.main-nav .nav-cta {
  padding: 10px 16px;
  color: var(--ink);
  background: var(--green);
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible {
  color: var(--ink);
  background: var(--green-bright);
}

.header-cta {
  padding: 11px 16px;
  color: var(--ink);
  background: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, transform 160ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--green-bright);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 12px 9px;
  border: 1px solid var(--line);
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding-top: var(--header-h);
  background:
    radial-gradient(circle at 76% 28%, rgba(53, 241, 109, 0.1), transparent 24%),
    linear-gradient(118deg, var(--petrol-950) 0%, #03323a 57%, #06272d 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, black, transparent 82%);
}

.hero::after {
  content: "";
  position: absolute;
  top: 15%;
  right: -6%;
  width: 46vw;
  aspect-ratio: 1;
  border: 1px solid rgba(214, 173, 85, 0.26);
  border-radius: 50%;
  pointer-events: none;
}

.hero-word {
  position: absolute;
  z-index: 0;
  top: 17%;
  left: -1.5vw;
  color: transparent;
  font-size: clamp(6.2rem, 15.5vw, 15rem);
  font-weight: 950;
  letter-spacing: -0.09em;
  line-height: 0.72;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.075);
  white-space: nowrap;
  user-select: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(410px, 0.95fr);
  align-items: center;
  gap: 30px;
  min-height: calc(100svh - var(--header-h) - 72px);
  padding: 54px 0 76px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 30px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--gold);
}

.eyebrow-dark {
  color: var(--petrol-800);
}

.eyebrow-black {
  color: var(--ink);
}

.eyebrow-black span {
  background: var(--ink);
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(3.25rem, 5.6vw, 5.65rem);
  font-weight: 950;
  line-height: 0.86;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.hero h1 strong {
  display: block;
  margin-top: 15px;
  color: var(--green);
  font-family: inherit;
  font-size: 0.63em;
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 24px;
  color: #c4d4d3;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.68;
}

.hero-benefits {
  display: grid;
  gap: 10px;
  max-width: 630px;
  margin: 0 0 29px;
  padding: 0;
  list-style: none;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e4edec;
  font-size: 0.9rem;
  font-weight: 720;
}

.hero-benefits li span {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(53, 241, 109, 0.5);
  color: var(--green);
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.07em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: var(--green);
  box-shadow: 0 14px 34px rgba(53, 241, 109, 0.16);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-bright);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.02);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

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

.button-gold:hover,
.button-gold:focus-visible {
  background: #e5bf70;
}

.button-wide {
  width: 100%;
}

.hero-price-line {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 29px;
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-price-line strong {
  color: var(--white);
  font-size: 1.45rem;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.hero-price-line i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 545px;
}

.hero-photo-wrap {
  position: absolute;
  inset: 42px 8% 26px 12%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  background: transparent;
}

.hero-photo-wrap::before,
.hero-photo-wrap::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.hero-photo-wrap::before {
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(2, 27, 32, 0.3), transparent 17%, transparent 76%, rgba(2, 27, 32, 0.18) 81%, rgba(2, 27, 32, 0.82) 89%, var(--petrol-950) 94%),
    linear-gradient(to right, rgba(2, 27, 32, 0.74), transparent 24%, transparent 76%, rgba(2, 27, 32, 0.74));
}

.hero-photo-wrap::after {
  display: block;
  inset: -1px;
  background: radial-gradient(ellipse 68% 78% at 50% 46%, transparent 48%, rgba(2, 27, 32, 0.2) 68%, rgba(2, 27, 32, 0.86) 100%);
}

.hero-photo-wrap img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  object-position: 50% 50%;
  opacity: 0.9;
  filter: contrast(1.04);
  transform: translateY(10%) scale(1.06);
  transform-origin: center center;
  -webkit-mask-image: radial-gradient(ellipse 78% 90% at 50% 47%, #000 56%, rgba(0, 0, 0, 0.82) 69%, transparent 100%);
  mask-image: radial-gradient(ellipse 78% 90% at 50% 47%, #000 56%, rgba(0, 0, 0, 0.82) 69%, transparent 100%);
}

.hero-stamp {
  position: absolute;
  z-index: 4;
  top: 14%;
  right: -5%;
  display: grid;
  width: 108px;
  height: 108px;
  place-content: center;
  border: 1px solid rgba(214, 173, 85, 0.75);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(2, 27, 32, 0.72);
  text-align: center;
  backdrop-filter: blur(10px);
}

.hero-stamp span {
  color: var(--green);
  font-size: 1.45rem;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.hero-stamp small {
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-float,
.hero-signature {
  position: absolute;
  z-index: 4;
  border: 1px solid var(--line);
  background: rgba(2, 27, 32, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(15px);
}

.hero-float-days {
  left: -6%;
  bottom: 14%;
  width: 190px;
  padding: 18px 20px;
}

.hero-float small,
.hero-float span,
.hero-signature span {
  display: block;
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-float strong {
  display: block;
  margin: 3px 0;
  color: var(--white);
  font-size: 2rem;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.hero-float-days strong {
  margin: 7px 0 5px;
  color: var(--green);
  font-size: 1.08rem;
  letter-spacing: -0.045em;
}

.hero-signature {
  right: -4%;
  bottom: 5%;
  padding: 15px 18px;
}

.hero-signature strong {
  display: block;
  margin-top: 3px;
  color: var(--white);
  font-size: 0.88rem;
  text-transform: uppercase;
}

.trust-strip {
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--line);
  background: rgba(1, 18, 22, 0.82);
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 72px;
  align-items: center;
}

.trust-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 16px;
  border-right: 1px solid var(--line);
  color: #c4d3d2;
  font-size: 0.76rem;
  font-weight: 750;
  text-align: center;
}

.trust-strip span:first-child {
  border-left: 1px solid var(--line);
}

.trust-strip i {
  color: var(--green);
  font-style: normal;
  font-weight: 950;
}

.method,
.choice,
.faq {
  color: var(--ink);
  background: var(--cream);
}

.method::before,
.faq::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  pointer-events: none;
  background-image: radial-gradient(rgba(7, 19, 21, 0.16) 0.7px, transparent 0.7px);
  background-size: 8px 8px;
}

.section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 56px;
}

.section-heading h2,
.inside-heading h2,
.guarantee-copy h2,
.positioning-copy h2,
.faq-intro h2,
.final-cta h2 {
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5vw, 5.25rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.94;
  text-transform: uppercase;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: end;
}

.split-heading > p {
  max-width: 530px;
  margin-bottom: 4px;
  color: #425355;
  font-size: 1.02rem;
  line-height: 1.75;
}

.centered {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.centered > p:last-child {
  color: currentColor;
  opacity: 0.7;
  font-size: 1.02rem;
}

.method-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(7, 19, 21, 0.2);
  border-left: 1px solid rgba(7, 19, 21, 0.2);
}

.now-bridge {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 64px;
  align-items: end;
  margin-top: 72px;
  padding: 44px 46px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 12%, rgba(53, 241, 109, 0.14), transparent 31%),
    var(--petrol-900);
  box-shadow: var(--shadow);
}

.now-bridge::after {
  content: "ORA";
  position: absolute;
  right: -1%;
  bottom: -16%;
  color: transparent;
  font-size: clamp(7rem, 16vw, 13rem);
  font-weight: 950;
  letter-spacing: -0.1em;
  line-height: 0.8;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.055);
}

.now-bridge > div {
  position: relative;
  z-index: 1;
}

.now-bridge > div:first-child > span {
  display: block;
  margin-bottom: 17px;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.now-bridge h3 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.35rem, 4.7vw, 4.8rem);
  font-weight: 950;
  letter-spacing: -0.072em;
  line-height: 0.94;
  text-transform: uppercase;
}

.now-bridge p {
  max-width: 470px;
  margin-bottom: 24px;
  color: #c4d4d3;
  font-size: 0.95rem;
  line-height: 1.7;
}

.pain-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 105px;
}

.pain-card {
  min-height: 255px;
  padding: 30px;
  border: 1px solid rgba(7, 19, 21, 0.18);
  background: rgba(247, 248, 244, 0.65);
}

.pain-card > span {
  display: block;
  margin-bottom: 54px;
  color: var(--petrol-700);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.pain-card h3 {
  margin-bottom: 13px;
  font-size: clamp(1.35rem, 2.35vw, 2rem);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1.03;
  text-transform: uppercase;
}

.pain-card p {
  margin-bottom: 0;
  color: #526062;
  font-size: 0.9rem;
  line-height: 1.65;
}

.mechanism-heading {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 0 42px;
}

.mechanism-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(2.9rem, 6.5vw, 6.1rem);
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 0.9;
  text-transform: uppercase;
}

.mechanism-heading > p:last-child {
  max-width: 620px;
  color: #526062;
  font-size: 1rem;
}

.method-card {
  position: relative;
  min-height: 310px;
  padding: 34px;
  border-right: 1px solid rgba(7, 19, 21, 0.2);
  border-bottom: 1px solid rgba(7, 19, 21, 0.2);
  background: rgba(247, 248, 244, 0.62);
  transition: background 200ms ease, transform 200ms ease;
}

.method-card:hover {
  z-index: 2;
  background: var(--white);
  transform: translateY(-4px);
}

.step-number,
.inside-index {
  color: #738182;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.method-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 48px 0 26px;
  place-items: center;
  border: 1px solid #9eb3ac;
  color: var(--petrol-800);
  font-size: 1.25rem;
}

.method-card:nth-child(2) .method-icon {
  color: var(--ink);
  border-color: var(--green);
  background: var(--green);
}

.method-card h3,
.inside-card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
}

.method-card p,
.inside-card p {
  margin-bottom: 0;
  color: #526062;
  line-height: 1.68;
}

.selector-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(53, 241, 109, 0.07), transparent 24%),
    var(--petrol-900);
}

.selector-section::before {
  content: "29";
  position: absolute;
  top: 42px;
  right: 4%;
  color: transparent;
  font-size: clamp(9rem, 22vw, 20rem);
  font-weight: 950;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
}

.selector-shell {
  position: relative;
  z-index: 1;
  scroll-margin-top: calc(var(--header-h) + 14px);
  border: 1px solid var(--line);
  background: rgba(2, 27, 32, 0.56);
  box-shadow: var(--shadow);
}

.selector-shell:target {
  animation: selectorAttention 1200ms ease both;
}

@keyframes selectorAttention {
  0%, 100% {
    border-color: var(--line);
    box-shadow: var(--shadow);
  }
  35% {
    border-color: var(--green);
    box-shadow: 0 0 0 6px rgba(53, 241, 109, 0.14), var(--shadow);
  }
}

.selector-prompt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 28px;
  color: var(--ink);
  background: var(--green);
}

.selector-prompt > strong {
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.selector-prompt > div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.selector-prompt span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 800;
}

.selector-prompt b {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 1px solid rgba(7, 19, 21, 0.42);
  border-radius: 50%;
  font-size: 0.68rem;
}

.selector-prompt i {
  font-style: normal;
  font-weight: 900;
}

@media (prefers-reduced-motion: reduce) {
  .selector-shell:target {
    animation: none;
    border-color: var(--green);
  }
}

.selector-controls {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.selector-checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(300px, 0.72fr);
  grid-template-areas:
    "choice price action"
    "guarantee guarantee guarantee";
  gap: 13px 30px;
  align-items: center;
  padding: 22px 28px 19px;
  border-bottom: 1px solid rgba(53, 241, 109, 0.34);
  background:
    linear-gradient(90deg, rgba(53, 241, 109, 0.12), rgba(53, 241, 109, 0.035)),
    #031f24;
}

.selector-checkout.is-emphasized {
  animation: checkout-emphasis 620ms ease;
}

@keyframes checkout-emphasis {
  0%, 100% { box-shadow: inset 0 0 0 0 rgba(53, 241, 109, 0); }
  38% { box-shadow: inset 0 0 0 3px rgba(53, 241, 109, 0.68); }
}

.selector-checkout-choice {
  grid-area: choice;
  display: grid;
  gap: 2px;
}

.selector-checkout-choice small {
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.selector-checkout-choice strong {
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.selector-checkout-choice span {
  color: var(--muted);
  font-size: 0.73rem;
}

.selector-checkout-price {
  grid-area: price;
  display: grid;
  justify-items: end;
  min-width: 105px;
}

.selector-checkout-price .price-figure {
  font-size: 2.8rem;
  line-height: 0.82;
}

.selector-checkout-price > span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.selector-checkout > .button {
  grid-area: action;
  min-height: 60px;
}

.selector-checkout-guarantee {
  grid-area: guarantee;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #bfd0cf;
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-decoration: none;
}

.selector-checkout-guarantee b {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--green);
  font-size: 0.6rem;
}

.control-group {
  padding: 24px 28px;
}

.control-group + .control-group {
  border-left: 1px solid var(--line);
}

.control-label {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.segmented,
.day-options {
  display: grid;
  gap: 8px;
}

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

.day-options {
  grid-template-columns: repeat(3, 1fr);
}

.segment,
.day-options button {
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: #c9d6d5;
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.segment:hover,
.day-options button:hover,
.segment:focus-visible,
.day-options button:focus-visible {
  border-color: rgba(53, 241, 109, 0.7);
}

.segment.is-active,
.day-options button.is-active {
  color: var(--ink);
  border-color: var(--green);
  background: var(--green);
}

.segment {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 850;
  text-transform: uppercase;
}

.segment b {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.67rem;
}

.day-options button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.day-options strong {
  font-size: 1.4rem;
  font-weight: 950;
}

.day-options span {
  font-size: 0.74rem;
  font-weight: 750;
  text-transform: uppercase;
}

.product-stage {
  display: grid;
  grid-template-columns: minmax(330px, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: 70px;
  padding: 58px 66px 66px;
}

.digital-cover {
  position: relative;
  width: min(100%, 390px);
  aspect-ratio: 1075 / 1521;
  justify-self: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 48%, rgba(12, 83, 91, 0.7), transparent 35%),
    linear-gradient(145deg, #06414a, #032e35 65%, #021b20);
  box-shadow: 22px 26px 0 rgba(214, 173, 85, 0.09), 0 32px 70px rgba(0, 0, 0, 0.36);
}

.cover-noise {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: radial-gradient(rgba(255, 255, 255, 0.17) 0.55px, transparent 0.55px);
  background-size: 4px 4px;
}

.cover-topline {
  position: absolute;
  top: 5.2%;
  left: 6.8%;
  width: 8.5%;
  height: 3px;
  background: var(--gold);
}

.cover-brand {
  position: absolute;
  top: 8.1%;
  left: 6.8%;
  color: var(--ink);
  font-size: clamp(1rem, 2.7vw, 1.55rem);
  font-weight: 950;
  letter-spacing: -0.07em;
}

.cover-brand b {
  color: var(--green);
}

.cover-by {
  position: absolute;
  top: 13.1%;
  left: 6.8%;
  color: #cbd7d5;
  font-size: clamp(0.4rem, 1.2vw, 0.66rem);
  letter-spacing: 0.07em;
}

.cover-title {
  position: absolute;
  z-index: 3;
  top: 43.5%;
  left: 6.8%;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: clamp(2.05rem, 6vw, 3.8rem);
  font-weight: 950;
  line-height: 0.85;
}

.cover-title strong {
  font: inherit;
}

.cover-title b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold);
  font-size: 0.78rem;
  line-height: 1;
}

.cover-description {
  position: absolute;
  z-index: 4;
  top: 54.5%;
  left: 6.8%;
  display: grid;
  gap: 7px;
  max-width: 68%;
}

.cover-description strong {
  font-size: clamp(0.65rem, 1.7vw, 0.88rem);
  letter-spacing: 0.04em;
}

.cover-description > span {
  font-size: clamp(0.62rem, 1.5vw, 0.84rem);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.cover-description small {
  margin-top: 7px;
  color: #c6d2d1;
  font-size: clamp(0.49rem, 1.15vw, 0.67rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.digital-cover > img {
  position: absolute;
  z-index: 1;
  right: -3%;
  bottom: 2%;
  width: 56%;
  height: 50%;
  object-fit: contain;
  object-position: 50% 100%;
  filter: contrast(1.12);
  -webkit-mask-image: linear-gradient(to left, black 64%, transparent 100%);
  mask-image: linear-gradient(to left, black 64%, transparent 100%);
}

.cover-vignette {
  position: absolute;
  z-index: 2;
  right: -6%;
  bottom: -4%;
  width: 62%;
  height: 30%;
  background: rgba(0, 12, 15, 0.62);
  filter: blur(24px);
}

.cover-start {
  position: absolute;
  z-index: 4;
  bottom: 10.5%;
  left: 6.8%;
  color: var(--green);
  font-size: clamp(1.15rem, 3vw, 1.85rem);
  font-weight: 950;
  letter-spacing: 0.13em;
}

.cover-start::after {
  content: "";
  position: absolute;
  top: calc(100% + 24px);
  left: 0;
  width: 52px;
  height: 2px;
  background: var(--gold);
}

.cover-footer {
  position: absolute;
  z-index: 4;
  right: 6%;
  bottom: 3.8%;
  color: rgba(226, 235, 233, 0.74);
  font-size: clamp(0.34rem, 0.9vw, 0.51rem);
  letter-spacing: 0.24em;
}

.product-copy {
  max-width: 530px;
}

.product-kicker {
  margin-bottom: 6px;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-copy h3 {
  margin-bottom: 2px;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 1;
}

.product-split {
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-desc {
  margin-bottom: 25px;
  color: #bdcecd;
  font-size: 1rem;
  line-height: 1.7;
}

.product-list,
.offer-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-list {
  display: grid;
  gap: 11px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-list li {
  display: flex;
  gap: 10px;
  color: #dbe5e4;
  font-size: 0.91rem;
}

.product-list span {
  color: var(--green);
  font-weight: 950;
}

.product-promise {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-left: 3px solid var(--green);
  background: rgba(53, 241, 109, 0.075);
}

.product-promise strong,
.product-promise span {
  display: block;
}

.product-promise strong {
  color: var(--white);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.4;
}

.product-promise span {
  margin-top: 4px;
  color: #b9cbca;
  font-size: 0.88rem;
  line-height: 1.55;
}

.product-buy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0 20px;
}

.product-price strong {
  display: block;
  font-size: 3rem;
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 0.85;
}

.product-price span,
.no-expiry {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.no-expiry {
  padding: 7px 10px;
  border: 1px solid rgba(214, 173, 85, 0.55);
  color: var(--gold);
}

.microcopy {
  margin: 9px 0 0;
  color: #80989a;
  font-size: 0.68rem;
  text-align: center;
}

.product-stage.is-changing .digital-cover,
.product-stage.is-changing .product-copy {
  animation: productSwitch 280ms ease both;
}

@keyframes productSwitch {
  0% { opacity: 0.35; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

.delivery {
  color: var(--ink);
  background: var(--paper);
}

.delivery::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
  background-image: linear-gradient(90deg, rgba(7, 19, 21, 0.08) 1px, transparent 1px);
  background-size: calc(25% - 1px) 100%;
}

.delivery-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(7, 19, 21, 0.2);
  border-left: 1px solid rgba(7, 19, 21, 0.2);
  list-style: none;
}

.delivery-steps li {
  min-height: 210px;
  padding: 27px;
  border-right: 1px solid rgba(7, 19, 21, 0.2);
  border-bottom: 1px solid rgba(7, 19, 21, 0.2);
  background: rgba(247, 248, 244, 0.78);
}

.delivery-steps span {
  display: block;
  margin-bottom: 48px;
  color: var(--petrol-700);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.delivery-steps strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.35rem;
  font-weight: 950;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.delivery-steps p {
  margin: 0;
  color: #526062;
  font-size: 0.87rem;
  line-height: 1.6;
}

.value-stack {
  color: var(--ink);
  background:
    radial-gradient(circle at 13% 20%, rgba(53, 241, 109, 0.12), transparent 25%),
    var(--paper);
}

.value-stack-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: 88px;
  align-items: center;
}

.value-stack-copy h2 {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 6.2rem);
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 0.9;
  text-transform: uppercase;
}

.value-stack-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 28px;
  color: #435254;
  font-size: 1rem;
  line-height: 1.75;
}

.value-stack-copy > p:not(.eyebrow) strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.04em;
}

.value-once {
  display: inline-block;
  max-width: 520px;
  padding: 13px 16px;
  border-left: 4px solid var(--green);
  color: var(--petrol-800);
  background: rgba(53, 241, 109, 0.1);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.45;
}

.value-receipt {
  position: relative;
  padding: 34px;
  color: var(--white);
  border: 1px solid rgba(214, 173, 85, 0.46);
  background:
    linear-gradient(145deg, rgba(53, 241, 109, 0.07), transparent 48%),
    var(--petrol-900);
  box-shadow: var(--shadow);
}

.value-receipt::before {
  content: "29";
  position: absolute;
  top: 8px;
  right: 18px;
  color: transparent;
  font-size: 8rem;
  font-weight: 950;
  letter-spacing: -0.1em;
  line-height: 0.8;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
}

.value-receipt > * {
  position: relative;
  z-index: 1;
}

.value-receipt-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.value-receipt-top span {
  color: var(--green);
}

.value-receipt-top b {
  color: var(--gold);
  font-size: inherit;
}

.value-receipt ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.value-receipt li {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #d5e1e0;
  font-size: 0.88rem;
}

.value-receipt li strong {
  color: var(--green);
  font-size: 0.59rem;
  letter-spacing: 0.09em;
}

.value-total {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 25px;
}

.value-total span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.value-total strong {
  color: var(--white);
  font-size: 4rem;
  font-weight: 950;
  letter-spacing: -0.09em;
  line-height: 0.78;
}

.inside {
  overflow: hidden;
  background: #061f24;
}

.inside::after {
  content: "MT";
  position: absolute;
  top: -5%;
  right: -1%;
  color: transparent;
  font-size: min(37vw, 34rem);
  font-weight: 950;
  letter-spacing: -0.12em;
  line-height: 0.8;
  -webkit-text-stroke: 1px rgba(53, 241, 109, 0.06);
}

.inside-heading {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin-bottom: 55px;
}

.inside-heading > p:last-child {
  color: var(--muted);
  font-size: 1.03rem;
}

.inside-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 14px;
}

.inside-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.inside-card-featured {
  grid-row: span 2;
  min-height: 574px;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  border-color: var(--green);
  background: var(--green);
}

.inside-card-featured .inside-index,
.inside-card-featured p {
  color: rgba(7, 19, 21, 0.68);
}

.inside-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin: 55px 0 28px;
  place-items: center;
  border: 1px solid rgba(214, 173, 85, 0.55);
  color: var(--gold);
  font-weight: 850;
}

.inside-card h3 {
  color: var(--white);
}

.inside-card p {
  color: var(--muted);
}

.inside-card-featured h3 {
  margin-top: auto;
  color: var(--ink);
  font-size: 2.25rem;
  line-height: 1;
}

.tracker-visual {
  display: flex;
  height: 250px;
  align-items: end;
  gap: 12px;
  margin: 38px 0;
  padding: 24px;
  border-left: 1px solid rgba(7, 19, 21, 0.3);
  border-bottom: 1px solid rgba(7, 19, 21, 0.3);
}

.tracker-visual i {
  width: 25%;
  height: var(--h);
  background: var(--petrol-900);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.tutorial-library {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 20%, rgba(53, 241, 109, 0.1), transparent 34%),
    linear-gradient(135deg, #042e34 0%, #061f24 100%);
}

.tutorial-library-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1.22fr);
  align-items: center;
  gap: clamp(44px, 7vw, 100px);
}

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

.tutorial-library-copy h2 {
  margin: 16px 0 24px;
  color: var(--white);
  font-size: clamp(2.75rem, 5.7vw, 5.5rem);
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.tutorial-library-copy > p:last-of-type {
  max-width: 610px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.tutorial-library-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 34px;
}

.tutorial-instagram {
  display: grid;
  gap: 3px;
  color: var(--white);
  text-decoration: none;
}

.tutorial-instagram span {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tutorial-instagram strong {
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}

.tutorial-player {
  position: relative;
  z-index: 2;
  padding: 12px;
  border: 1px solid rgba(214, 173, 85, 0.38);
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.32);
}

.tutorial-player-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #02090a;
}

.tutorial-player-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.tutorial-player-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.1);
}

.tutorial-player-meta span {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  color: var(--muted);
  background: #07252a;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.tutorial-player-meta b {
  color: var(--green);
  font-size: 0.86rem;
}

.comparison {
  color: var(--ink);
  background: var(--cream);
}

.comparison-table {
  max-width: 980px;
  margin-inline: auto;
  border-top: 1px solid rgba(7, 19, 21, 0.2);
  border-left: 1px solid rgba(7, 19, 21, 0.2);
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(2, minmax(170px, 0.8fr));
}

.comparison-row > * {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 14px 20px;
  border-right: 1px solid rgba(7, 19, 21, 0.2);
  border-bottom: 1px solid rgba(7, 19, 21, 0.2);
}

.comparison-row > span {
  justify-content: flex-start;
  color: #344345;
  font-size: 0.9rem;
  font-weight: 750;
}

.comparison-row > i {
  color: #899293;
  background: rgba(255, 255, 255, 0.38);
  font-size: 1.25rem;
  font-style: normal;
}

.comparison-row > b {
  color: var(--ink);
  background: rgba(53, 241, 109, 0.18);
  font-size: 1.1rem;
}

.comparison-head > * {
  min-height: 82px;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.comparison-head > strong:last-child {
  color: var(--ink);
  background: var(--green);
}

.comparison-cta {
  display: flex;
  max-width: 980px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 28px auto 0;
  padding: 24px 26px;
  color: var(--white);
  background: var(--petrol-900);
}

.comparison-cta p {
  margin: 0;
  color: #c4d3d2;
}

.comparison-cta strong {
  color: var(--white);
}

.guarantee {
  color: var(--ink);
  background: var(--green);
}

.guarantee::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(7, 19, 21, 0.24);
  pointer-events: none;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 90px;
  align-items: center;
}

.guarantee-seal {
  position: relative;
  display: grid;
  width: min(100%, 300px);
  aspect-ratio: 1;
  place-content: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  text-align: center;
}

.guarantee-seal::before,
.guarantee-seal::after {
  content: "";
  position: absolute;
  inset: 15px;
  border: 1px dashed rgba(7, 19, 21, 0.5);
  border-radius: 50%;
}

.guarantee-seal::after {
  inset: -9px;
  border-style: solid;
  border-color: rgba(7, 19, 21, 0.25);
}

.guarantee-seal span {
  font-size: 7rem;
  font-weight: 950;
  letter-spacing: -0.12em;
  line-height: 0.7;
}

.guarantee-seal strong {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}

.guarantee-seal small {
  margin-top: 8px;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.22em;
}

.guarantee-copy h2 {
  font-size: clamp(3rem, 5.7vw, 5.7rem);
}

.guarantee-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.72;
}

.button-ink {
  margin: 5px 0 19px;
  color: var(--white);
  background: var(--ink);
}

.button-ink:hover,
.button-ink:focus-visible {
  color: var(--green);
  background: var(--petrol-900);
}

.guarantee-copy > small {
  display: block;
  max-width: 760px;
  color: rgba(7, 19, 21, 0.65);
  font-size: 0.68rem;
  line-height: 1.55;
}

.choice {
  background: var(--paper);
}

.offer-compare {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: stretch;
}

.offer-card {
  display: flex;
  flex-direction: column;
  min-height: 720px;
  padding: 38px;
  border: 1px solid rgba(7, 19, 21, 0.16);
}

.offer-system {
  color: var(--ink);
  background: #e8ece6;
}

.offer-coaching {
  position: relative;
  overflow: hidden;
  color: var(--white);
  border-color: rgba(214, 173, 85, 0.48);
  background:
    radial-gradient(circle at 100% 0, rgba(214, 173, 85, 0.14), transparent 32%),
    var(--petrol-900);
  box-shadow: var(--shadow);
}

.offer-coaching::after {
  content: "COACH";
  position: absolute;
  right: -2%;
  bottom: -2%;
  color: transparent;
  font-size: 7rem;
  font-weight: 950;
  letter-spacing: -0.09em;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.045);
}

.offer-card > * {
  position: relative;
  z-index: 2;
}

.offer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 68px;
}

.offer-label,
.offer-code {
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-system .offer-label {
  color: var(--petrol-700);
}

.offer-coaching .offer-label {
  color: var(--gold);
}

.offer-code {
  opacity: 0.55;
}

.offer-card h3 {
  margin-bottom: 7px;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.95;
}

.offer-subtitle {
  max-width: 510px;
  min-height: 54px;
  margin-bottom: 26px;
  opacity: 0.7;
}

.offer-main-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 24px 0;
  border-top: 1px solid rgba(7, 19, 21, 0.16);
  border-bottom: 1px solid rgba(7, 19, 21, 0.16);
}

.offer-main-price strong {
  font-size: 4.4rem;
  font-weight: 950;
  letter-spacing: -0.09em;
  line-height: 0.8;
}

.offer-main-price span {
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-card > ul {
  display: grid;
  gap: 13px;
  margin: 28px 0 32px;
}

.offer-card > ul li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
}

.offer-card > ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 950;
}

.offer-card .button {
  margin-top: auto;
}

.coaching-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 5px 0 0;
}

.coaching-prices > div {
  position: relative;
  display: grid;
  min-height: 124px;
  align-content: center;
  padding: 16px;
  border: 1px solid var(--line);
}

.coaching-prices > div.is-popular {
  border-color: var(--gold);
  background: rgba(214, 173, 85, 0.08);
}

.coaching-prices em {
  position: absolute;
  top: -9px;
  left: 50%;
  padding: 3px 7px;
  color: var(--ink);
  background: var(--gold);
  font-size: 0.47rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.09em;
  transform: translateX(-50%);
  white-space: nowrap;
}

.coaching-prices span {
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.coaching-prices strong {
  margin: 3px 0 1px;
  font-size: 1.48rem;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.coaching-prices small {
  color: #93a8a9;
  font-size: 0.57rem;
}

.price-figure {
  display: inline-flex !important;
  align-items: flex-start;
  gap: 0.08em;
  font-family: "Bodoni Moda", Didot, Georgia, serif;
  font-weight: 500 !important;
  font-variant-numeric: lining-nums proportional-nums;
  letter-spacing: -0.075em !important;
}

.price-figure > span {
  line-height: 0.82;
}

.price-figure > sup {
  position: relative;
  top: 0.08em;
  color: var(--green);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.27em;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.coaching-prices .price-figure > sup {
  color: var(--gold);
}

.hero-price-line .price-figure {
  margin-right: 0.08em;
  font-size: 1.12em;
}

.availability {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.availability i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(53, 241, 109, 0.1);
}

.coaching-bridge {
  overflow: hidden;
  border-top: 1px solid rgba(214, 173, 85, 0.55);
  background:
    radial-gradient(circle at 78% 18%, rgba(214, 173, 85, 0.1), transparent 25%),
    var(--petrol-950);
}

.coaching-bridge::before {
  content: "COACHING";
  position: absolute;
  right: -2%;
  bottom: -3%;
  color: transparent;
  font-size: clamp(7rem, 18vw, 17rem);
  font-weight: 950;
  letter-spacing: -0.09em;
  line-height: 0.8;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.045);
}

.coaching-bridge-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 78px;
  align-items: center;
}

.coaching-alternative {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 0 23px;
  color: var(--gold);
  font-size: clamp(1.25rem, 2.1vw, 1.8rem);
  font-weight: 950;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.coaching-alternative span {
  width: clamp(42px, 6vw, 78px);
  height: 3px;
  flex: 0 0 auto;
  background: var(--gold);
}

.coaching-bridge-copy h2 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6vw, 5.9rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.92;
  text-transform: uppercase;
}

.coaching-bridge-copy h2 strong {
  display: block;
  margin-top: 12px;
  color: var(--gold);
  font: inherit;
}

.coaching-bridge-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.coaching-bridge-copy ul {
  display: grid;
  gap: 11px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.coaching-bridge-copy li {
  position: relative;
  padding-left: 24px;
  color: #d6e1df;
  font-size: 0.9rem;
}

.coaching-bridge-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 950;
}

.coaching-panel {
  padding: 34px;
  border: 1px solid rgba(214, 173, 85, 0.5);
  background: rgba(3, 40, 46, 0.86);
  box-shadow: var(--shadow);
}

.coaching-panel .offer-top {
  margin-bottom: 29px;
}

.coaching-panel .offer-label {
  color: var(--gold);
}

.coaching-panel .coaching-prices {
  margin-bottom: 26px;
}

.positioning {
  overflow: hidden;
  background: var(--petrol-900);
}

.positioning::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -12%;
  width: 50vw;
  aspect-ratio: 1;
  border: 1px solid rgba(214, 173, 85, 0.15);
  border-radius: 50%;
}

.positioning-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 78px;
  align-items: center;
}

.positioning-manifesto {
  position: relative;
  min-height: 410px;
  display: grid;
  align-content: end;
  padding: 42px;
  overflow: hidden;
  border: 1px solid rgba(53, 241, 109, 0.34);
  background:
    radial-gradient(circle at 85% 10%, rgba(53, 241, 109, 0.16), transparent 36%),
    linear-gradient(145deg, rgba(53, 241, 109, 0.08), transparent 58%),
    rgba(255, 255, 255, 0.026);
}

.positioning-manifesto::before {
  content: "MT";
  position: absolute;
  top: -34px;
  right: -12px;
  color: transparent;
  font-size: 13rem;
  font-weight: 950;
  letter-spacing: -0.1em;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(53, 241, 109, 0.13);
}

.positioning-manifesto > span,
.positioning-manifesto > strong,
.positioning-manifesto > p {
  position: relative;
  z-index: 1;
}

.positioning-manifesto > span {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.positioning-manifesto > strong {
  font-size: clamp(2rem, 3.8vw, 3.65rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.98;
  text-transform: uppercase;
}

.positioning-manifesto > p {
  max-width: 430px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.positioning-copy h2 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 4.8vw, 4.8rem);
  font-weight: 950;
  letter-spacing: -0.07em;
  line-height: 0.94;
  text-transform: uppercase;
}

.positioning-cta {
  margin-top: 30px;
}

.positioning-copy .button span {
  font: inherit;
}

.positioning-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.principles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.principles span {
  padding: 9px 13px;
  border: 1px solid rgba(53, 241, 109, 0.45);
  color: var(--green);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 90px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-h) + 35px);
}

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

.faq-intro > p:last-child {
  color: #566466;
}

.accordion {
  border-top: 1px solid rgba(7, 19, 21, 0.24);
}

.accordion details {
  border-bottom: 1px solid rgba(7, 19, 21, 0.24);
}

.accordion summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 4px;
  font-size: 1rem;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

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

.accordion summary span {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(7, 19, 21, 0.35);
  font-size: 1.15rem;
  font-weight: 500;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.accordion details[open] summary span {
  color: var(--ink);
  border-color: var(--green);
  background: var(--green);
  transform: rotate(45deg);
}

.accordion details > div {
  max-width: 720px;
  padding: 0 55px 25px 4px;
  color: #536163;
  font-size: 0.92rem;
  line-height: 1.72;
}

.final-cta {
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 40%, rgba(53, 241, 109, 0.13), transparent 25%),
    var(--petrol-950);
}

.final-cta::after {
  content: "";
  position: absolute;
  right: 8%;
  width: 290px;
  aspect-ratio: 1;
  border: 1px solid rgba(214, 173, 85, 0.34);
  border-radius: 50%;
}

.final-word {
  position: absolute;
  right: -2%;
  bottom: -6%;
  color: transparent;
  font-size: clamp(8rem, 26vw, 26rem);
  font-weight: 950;
  letter-spacing: -0.1em;
  line-height: 0.8;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
}

.final-cta-inner {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  max-width: 850px;
  font-size: clamp(3.2rem, 7.8vw, 7.6rem);
}

.final-cta-inner > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.05rem;
}

.site-footer {
  padding: 48px 0 28px;
  border-top: 1px solid var(--line);
  background: #01161a;
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  padding-bottom: 35px;
}

.brand-footer {
  width: max-content;
}

.footer-top p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-top > a {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #718789;
  font-size: 0.62rem;
}

.launch-dialog {
  position: fixed;
  width: min(640px, calc(100vw - 32px));
  max-height: min(90vh, 820px);
  padding: 40px;
  overflow-y: auto;
  border: 1px solid rgba(214, 173, 85, 0.48);
  color: var(--white);
  background: var(--petrol-900);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.55);
}

.launch-dialog::backdrop {
  background: rgba(0, 12, 15, 0.78);
  backdrop-filter: blur(8px);
}

.dialog-close {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  color: var(--white);
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
}

.dialog-mark {
  display: block;
  margin-bottom: 22px;
  color: var(--green);
  font-size: 2rem;
  font-weight: 950;
  letter-spacing: -0.09em;
}

.dialog-kicker {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.launch-dialog h2 {
  margin-bottom: 14px;
  font-size: 2.5rem;
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 0.95;
  text-transform: uppercase;
}

.launch-dialog > p:not(.dialog-kicker) {
  color: var(--muted);
  line-height: 1.68;
}

.dialog-selection {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 20px 0 14px;
  padding: 17px 18px;
  border: 1px solid rgba(53, 241, 109, 0.36);
  background: rgba(53, 241, 109, 0.06);
}

.dialog-selection > div {
  display: grid;
  gap: 2px;
}

.dialog-selection small,
.dialog-control > span {
  color: var(--gold);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.dialog-selection strong {
  color: var(--white);
  font-size: 1.12rem;
  font-weight: 950;
}

.dialog-selection span {
  color: var(--muted);
  font-size: 0.7rem;
}

.dialog-selection > b {
  flex: 0 0 auto;
  color: var(--green);
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 2.3rem;
  font-weight: 500;
  letter-spacing: -0.08em;
}

.dialog-system-picker {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 14px;
  margin-top: 22px;
}

.dialog-system-picker[hidden] {
  display: none;
}

.dialog-control {
  display: grid;
  gap: 9px;
}

.dialog-control .segment,
.dialog-control .day-options button {
  min-height: 49px;
}

.dialog-control .segment {
  gap: 7px;
  font-size: 0.7rem;
}

.dialog-control .segment b {
  width: 23px;
  height: 23px;
}

.dialog-control .day-options button {
  gap: 5px;
}

.dialog-control .day-options strong {
  font-size: 1.15rem;
}

.dialog-control .day-options span {
  font-size: 0.58rem;
}

.dialog-action:disabled {
  color: var(--ink);
  background: var(--gold);
  cursor: default;
  opacity: 1;
  transform: none;
}

.launch-dialog .dialog-payment-note {
  margin: 10px 0 0;
  color: #afc2c1;
  font-size: 0.66rem;
  line-height: 1.4;
  text-align: center;
}

.launch-dialog .dialog-payment-note.is-warning {
  color: var(--gold);
}

.dialog-guarantee-link {
  display: block;
  margin: 7px auto 0;
  padding: 4px;
  border: 0;
  color: var(--green);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
}

.dialog-secondary {
  display: block;
  margin: 15px auto 0;
  padding: 6px;
  border: 0;
  color: #8ca09f;
  background: transparent;
  font-size: 0.66rem;
  text-decoration: underline;
  cursor: pointer;
}

.system-quiz-launch {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: 34px 38px;
  border-bottom: 1px solid rgba(53, 241, 109, 0.28);
  background:
    linear-gradient(110deg, rgba(53, 241, 109, 0.13), transparent 44%),
    #031f24;
}

.system-quiz-count {
  color: rgba(255, 255, 255, 0.13);
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(3.8rem, 7vw, 6rem);
  letter-spacing: -0.1em;
  line-height: 0.8;
  white-space: nowrap;
}

.system-quiz-launch small {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.system-quiz-launch h3 {
  margin-bottom: 9px;
  font-size: clamp(1.5rem, 2.6vw, 2.15rem);
  font-weight: 950;
  line-height: 0.98;
  text-transform: uppercase;
}

.system-quiz-launch p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.system-quiz-launch .button {
  min-width: 245px;
}

.quiz-dialog {
  width: min(720px, calc(100vw - 32px));
  min-height: 570px;
}

.quiz-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 0.65fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.quiz-header .dialog-kicker {
  margin-bottom: 4px;
}

.quiz-step-label {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.quiz-progress {
  height: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.quiz-progress i {
  display: block;
  width: 20%;
  height: 100%;
  background: var(--green);
  transition: width 240ms ease;
}

.quiz-progress-gold i {
  width: 16.666%;
  background: var(--gold);
}

.quiz-screen h2,
.quiz-result h2,
.coaching-form-step h2,
.coaching-result h2 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

[data-coaching-submit]:disabled,
[data-coaching-package]:disabled {
  cursor: wait;
  opacity: 0.65;
}

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

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

.quiz-options-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quiz-option {
  display: flex;
  gap: 13px;
  align-items: center;
  min-height: 68px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.84rem;
  font-weight: 780;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease, transform 150ms ease;
}

.quiz-option:hover,
.quiz-option:focus-visible,
.quiz-option.is-selected {
  border-color: var(--green);
  background: rgba(53, 241, 109, 0.1);
  transform: translateY(-2px);
}

.quiz-option > span {
  display: grid;
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(53, 241, 109, 0.38);
  color: var(--green);
  font-size: 0.64rem;
  font-weight: 950;
}

.quiz-option-version {
  justify-content: center;
  min-height: 115px;
  font-size: 1rem;
  text-transform: uppercase;
}

.quiz-option-version strong {
  color: var(--green);
  font-size: 2.4rem;
  letter-spacing: -0.08em;
}

.quiz-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.quiz-navigation small {
  color: #819696;
  font-size: 0.65rem;
}

.quiz-back {
  padding: 8px 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
}

.quiz-back:disabled {
  opacity: 0.3;
  cursor: default;
}

.quiz-result {
  padding-top: 6px;
}

.quiz-result .dialog-kicker,
.coaching-result .dialog-kicker {
  margin-bottom: 9px;
}

.quiz-result-split {
  margin: -13px 0 18px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.quiz-result > p:not(.dialog-kicker, .quiz-result-split, .dialog-payment-note),
.coaching-result > p:not(.dialog-kicker, .dialog-payment-note) {
  color: var(--muted);
  line-height: 1.65;
}

.quiz-result-price {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin: 24px 0 16px;
  padding: 17px 19px;
  border: 1px solid rgba(53, 241, 109, 0.34);
  background: rgba(53, 241, 109, 0.065);
}

.quiz-result-price span {
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.quiz-result-price strong {
  color: var(--green);
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 0.9;
}

.coaching-questionnaire-dialog {
  width: min(860px, calc(100vw - 32px));
  max-height: 94vh;
  border-color: rgba(214, 173, 85, 0.62);
  background:
    radial-gradient(circle at 90% 4%, rgba(214, 173, 85, 0.1), transparent 28%),
    var(--petrol-950);
}

.dialog-mark-gold {
  color: var(--gold);
}

.coaching-form-step > p {
  margin: -12px 0 24px;
  color: var(--muted);
}

.form-field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.form-field > span,
.form-field legend {
  color: #dce6e3;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.4;
}

.form-field input:not([type="radio"], [type="checkbox"], [type="file"]),
.form-field textarea,
.form-field select,
.form-field input[type="file"] {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.045);
  outline: 0;
  transition: border-color 150ms ease, background 150ms ease;
}

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

.form-field select option {
  color: var(--ink);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--gold);
  background: rgba(214, 173, 85, 0.06);
}

.form-field > small {
  color: var(--muted);
  font-size: 0.66rem;
}

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

.form-choice-group {
  padding: 0;
  border: 0;
}

.form-choice-group legend {
  margin-bottom: 9px;
}

.form-choice-group label {
  position: relative;
  display: block;
  margin-bottom: 8px;
  cursor: pointer;
}

.form-choice-group input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.form-choice-group label span {
  display: block;
  padding: 12px 14px 12px 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #d8e4e1;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.76rem;
  line-height: 1.35;
}

.form-choice-group label span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  width: 13px;
  height: 13px;
  border: 1px solid rgba(214, 173, 85, 0.62);
  border-radius: 50%;
  transform: translateY(-50%);
}

.form-choice-group input:checked + span {
  border-color: var(--gold);
  color: var(--white);
  background: rgba(214, 173, 85, 0.1);
}

.form-choice-group input:checked + span::before {
  border: 4px solid var(--petrol-950);
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.form-confirmation {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin: 24px 0 14px;
  padding: 16px;
  border: 1px solid rgba(214, 173, 85, 0.28);
  background: rgba(214, 173, 85, 0.055);
  color: #cbd9d6;
  font-size: 0.7rem;
  line-height: 1.55;
}

.form-confirmation input {
  margin-top: 3px;
  accent-color: var(--gold);
}

.form-medical-note {
  color: #91a5a3;
  font-size: 0.66rem;
  line-height: 1.5;
}

.form-field.has-error input,
.form-field.has-error textarea,
.form-field.has-error select,
.form-field.has-error label span,
.form-confirmation.has-error {
  border-color: #ff7b7b;
}

.form-error {
  margin: 0 0 12px;
  color: #ff9a9a;
  font-size: 0.72rem;
  font-weight: 800;
}

.coaching-form-navigation {
  position: sticky;
  bottom: -40px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 26px -40px -40px;
  padding: 16px 40px;
  border-top: 1px solid rgba(214, 173, 85, 0.22);
  background: rgba(2, 27, 32, 0.97);
  backdrop-filter: blur(16px);
}

.coaching-result-prices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 18px;
}

.coaching-result-prices button {
  position: relative;
  display: grid;
  gap: 3px;
  min-height: 150px;
  place-content: center;
  border: 1px solid rgba(214, 173, 85, 0.32);
  color: var(--white);
  background: rgba(214, 173, 85, 0.045);
  text-align: center;
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease, transform 150ms ease;
}

.coaching-result-prices button:hover,
.coaching-result-prices button:focus-visible {
  border-color: var(--gold);
  background: rgba(214, 173, 85, 0.11);
  transform: translateY(-3px);
}

.coaching-result-prices button.is-popular {
  border-color: var(--gold);
  background: rgba(214, 173, 85, 0.09);
}

.coaching-result-prices em {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  padding: 5px;
  color: var(--petrol-950);
  background: var(--gold);
  font-size: 0.55rem;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.coaching-result-prices span {
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.coaching-result-prices strong {
  color: var(--gold);
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 2.05rem;
  font-weight: 500;
}

.coaching-result-prices small {
  color: #91a5a3;
  font-size: 0.62rem;
}

.guarantee-terms-trigger {
  margin-left: 14px;
  padding: 10px 2px;
  border: 0;
  border-bottom: 1px solid rgba(7, 19, 21, 0.45);
  color: var(--ink);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.guarantee-terms-trigger:hover,
.guarantee-terms-trigger:focus-visible {
  border-color: var(--ink);
}

.guarantee-dialog {
  position: fixed;
  width: min(720px, calc(100vw - 32px));
  max-height: min(90vh, 860px);
  margin: auto;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(214, 173, 85, 0.5);
  border-radius: 4px;
  color: var(--white);
  background: var(--petrol-900);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.62);
}

.guarantee-dialog::backdrop {
  background: rgba(0, 12, 15, 0.82);
  backdrop-filter: blur(8px);
}

.guarantee-dialog-close {
  position: sticky;
  z-index: 5;
  top: 14px;
  float: right;
  width: 40px;
  height: 40px;
  margin: 14px 14px -54px 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  background: rgba(2, 27, 32, 0.88);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.guarantee-dialog-close:hover,
.guarantee-dialog-close:focus-visible {
  color: var(--ink);
  background: var(--green);
}

.guarantee-dialog-heading {
  position: relative;
  padding: 52px 72px 36px 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background:
    radial-gradient(circle at 92% 12%, rgba(53, 241, 109, 0.2), transparent 32%),
    linear-gradient(145deg, #042e35 0%, #03252b 100%);
}

.guarantee-dialog-heading::after {
  position: absolute;
  right: 42px;
  bottom: -24px;
  content: "30";
  color: rgba(53, 241, 109, 0.12);
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 8.5rem;
  line-height: 1;
  pointer-events: none;
}

.guarantee-dialog-kicker {
  display: inline-flex;
  margin-bottom: 15px;
  padding: 6px 9px;
  border: 1px solid rgba(214, 173, 85, 0.48);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.guarantee-dialog-heading h2 {
  position: relative;
  z-index: 1;
  max-width: 590px;
  margin: 0 0 18px;
  font-size: clamp(2.7rem, 7vw, 4.8rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.9;
  text-transform: uppercase;
}

.guarantee-dialog-heading h2 strong {
  color: var(--green);
}

.guarantee-dialog-heading p {
  position: relative;
  z-index: 1;
  max-width: 585px;
  margin: 0;
  color: #c2d3d2;
  font-size: 1rem;
  line-height: 1.65;
}

.guarantee-dialog-content {
  padding: 8px 48px;
}

.guarantee-dialog-content section {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.guarantee-dialog-content section:last-child {
  border-bottom: 0;
}

.guarantee-dialog-content section > span {
  color: var(--green);
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 1.85rem;
  line-height: 1;
}

.guarantee-dialog h3 {
  margin: 0 0 7px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.guarantee-dialog-content p,
.guarantee-dialog-definition p,
.guarantee-dialog-request p {
  margin: 0;
  color: #aec2c2;
  font-size: 1rem;
  line-height: 1.65;
}

.guarantee-dialog-definition,
.guarantee-dialog-request {
  margin: 0 48px 18px;
  padding: 22px 24px;
}

.guarantee-dialog-definition {
  border: 1px solid rgba(53, 241, 109, 0.34);
  background: rgba(53, 241, 109, 0.07);
}

.guarantee-dialog-definition h3 {
  color: var(--green);
}

.guarantee-dialog-request {
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.035);
}

.guarantee-dialog-request h3 {
  color: var(--gold);
}

.guarantee-dialog-legal {
  margin: 22px 48px 18px;
  color: #81999a;
  font-size: 0.78rem;
  line-height: 1.6;
}

.guarantee-dialog-confirm {
  width: calc(100% - 96px);
  margin: 0 48px 44px;
}

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

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

/* Guarantee-led offer system */
.header-guarantee {
  position: absolute;
  left: 50%;
  display: grid;
  justify-items: center;
  color: var(--white);
  line-height: 1.05;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.header-guarantee strong {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.header-guarantee span {
  margin-top: 3px;
  color: #c2d2d1;
  font-size: 0.51rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.guarantee-float {
  position: fixed;
  z-index: 90;
  top: 50%;
  right: 17px;
  display: grid;
  width: 112px;
  aspect-ratio: 1;
  place-content: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--green);
  box-shadow: 0 18px 52px rgba(0, 10, 12, 0.34);
  line-height: 0.88;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateY(-50%) rotate(4deg);
  transition: transform 160ms ease, background 160ms ease;
}

.guarantee-float:hover,
.guarantee-float:focus-visible {
  background: var(--green-bright);
  transform: translateY(-50%) rotate(0deg) scale(1.04);
}

.guarantee-float strong {
  font-size: 2.35rem;
  font-weight: 950;
  letter-spacing: -0.1em;
}

.guarantee-float span {
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.13em;
}

.guarantee-float small {
  margin-top: 7px;
  font-size: 0.47rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.25;
}

.guarantee-proof {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 780;
  letter-spacing: 0.075em;
  line-height: 1.25;
  text-decoration: none;
  text-transform: uppercase;
}

.guarantee-proof b {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--green);
  font-size: 0.7rem;
}

.guarantee-proof strong {
  color: var(--green);
}

.guarantee-proof-hero {
  margin-top: 0;
}

.guarantee-proof-product {
  width: 100%;
  justify-content: center;
  margin-top: 15px;
}

.guarantee-proof-final {
  margin-top: 22px;
}

.hero-stamp {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--green);
  box-shadow: 0 16px 42px rgba(0, 10, 12, 0.3);
  transform: rotate(6deg);
}

.hero-stamp span {
  color: var(--ink);
  font-size: 2.4rem;
  line-height: 0.78;
}

.hero-stamp small {
  margin-top: 7px;
  color: var(--ink);
  font-size: 0.49rem;
  line-height: 1.2;
}

.hero-signature {
  max-width: 245px;
}

.hero-signature span {
  line-height: 1.35;
}

.adaptation-note {
  display: grid;
  grid-template-columns: 0.44fr 1.56fr;
  gap: 30px;
  align-items: start;
  padding: 25px 28px 28px;
  border-top: 1px solid var(--line);
  background: rgba(53, 241, 109, 0.055);
}

.adaptation-note > strong {
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  line-height: 1.4;
}

.adaptation-note p {
  margin: 0;
  color: #b9cbca;
  font-size: 0.82rem;
  line-height: 1.65;
}

.guarantee-seal small {
  max-width: 145px;
  margin-inline: auto;
  line-height: 1.35;
}

.coaching-panel .offer-code {
  max-width: 235px;
  text-align: right;
}

@media (max-width: 1050px) {
  :root {
    --header-h: 74px;
  }

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

  .hero h1 {
    font-size: clamp(3.25rem, 7vw, 5rem);
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-stamp {
    right: 0;
  }

  .hero-signature {
    right: 0;
  }

  .guarantee-float {
    display: none;
  }

  .product-stage {
    gap: 46px;
    padding-inline: 40px;
  }

  .value-stack-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
    gap: 52px;
  }

  .inside-grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .inside-card-featured {
    grid-row: span 2;
  }

  .inside-card:last-child {
    grid-column: 2;
  }

  .offer-card {
    padding: 30px;
  }

  .coaching-prices > div {
    padding: 13px;
  }

  .coaching-bridge-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
    gap: 45px;
  }
}

@media (max-width: 850px) {
  :root {
    --shell: min(100% - 34px, 720px);
  }

  .section {
    padding: 88px 0;
  }

  .site-header {
    padding-inline: 17px;
  }

  .header-guarantee {
    display: none;
  }

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

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

  .main-nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px 17px 22px;
    border-bottom: 1px solid var(--line);
    background: rgba(2, 27, 32, 0.98);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .main-nav a {
    padding: 15px 5px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav .nav-cta {
    margin-top: 10px;
    text-align: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 72px;
  }

  .hero-copy {
    max-width: 660px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 12.7vw, 5.9rem);
  }

  .hero-lead {
    max-width: 580px;
  }

  .hero-visual {
    min-height: 500px;
    margin-top: 30px;
  }

  .hero-photo-wrap {
    inset-inline: 8%;
  }

  .hero-float-days {
    left: 1%;
  }

  .hero-stamp {
    right: 2%;
  }

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

  .trust-strip span:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .split-heading,
  .faq-grid,
  .positioning-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .now-bridge {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 38px;
  }

  .pain-grid {
    grid-template-columns: 1fr;
    margin-bottom: 75px;
  }

  .pain-card {
    min-height: 0;
  }

  .pain-card > span {
    margin-bottom: 30px;
  }

  .method-card {
    min-height: 245px;
  }

  .method-icon {
    margin-top: 34px;
  }

  .selector-controls {
    grid-template-columns: 1fr;
  }

  .selector-checkout {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "choice price"
      "action action"
      "guarantee guarantee";
  }

  .selector-prompt {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .control-group + .control-group {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .product-stage {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 30px;
    padding: 42px 28px 50px;
  }

  .adaptation-note {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .value-stack-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .value-stack-copy {
    max-width: 680px;
  }

  .digital-cover {
    width: min(100%, 320px);
  }

  .cover-title {
    font-size: clamp(1.7rem, 5.8vw, 3.2rem);
  }

  .cover-description > span {
    font-size: clamp(0.48rem, 1.5vw, 0.72rem);
  }

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

  .inside-card-featured {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 490px;
  }

  .inside-card:last-child {
    grid-column: 1 / -1;
  }

  .tutorial-library-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .tutorial-library-copy {
    max-width: 680px;
  }

  .guarantee-grid {
    grid-template-columns: 0.55fr 1.45fr;
    gap: 48px;
  }

  .guarantee-seal span {
    font-size: 5.2rem;
  }

  .offer-compare {
    grid-template-columns: 1fr;
  }

  .coaching-bridge-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .offer-card {
    min-height: 0;
  }

  .offer-card .button {
    margin-top: 20px;
  }

  .faq-intro {
    position: static;
  }

  .positioning-manifesto {
    min-height: 350px;
  }
}

@media (max-width: 650px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  .section {
    padding: 76px 0;
  }

  .header-cta {
    padding: 10px 12px;
    font-size: 0.61rem;
  }

  .eyebrow {
    margin-bottom: 17px;
    font-size: 0.62rem;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 52px;
    padding-bottom: 45px;
  }

  .hero-word {
    top: 13%;
    font-size: 7.5rem;
  }

  .hero h1 {
    margin-bottom: 19px;
    font-size: clamp(2.5rem, 12.2vw, 3.85rem);
    line-height: 0.88;
  }

  .hero h1 strong {
    margin-top: 10px;
  }

  .hero-lead {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .hero-benefits li {
    align-items: flex-start;
    font-size: 0.82rem;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-price-line {
    flex-wrap: wrap;
  }

  .hero-visual {
    min-height: 420px;
    margin-top: 12px;
  }

  .hero-photo-wrap {
    inset: 38px 8% 18px;
  }

  .hero-stamp {
    top: 6%;
    right: 0;
    width: 84px;
    height: 84px;
  }

  .hero-stamp span {
    font-size: 1.75rem;
  }

  .hero-stamp small {
    margin-top: 5px;
    font-size: 0.39rem;
  }

  .hero-float-days {
    left: -2%;
    bottom: 17%;
    width: 162px;
    padding: 14px 16px;
  }

  .hero-float strong {
    font-size: 1.65rem;
  }

  .hero-signature {
    right: 0;
    bottom: 4%;
  }

  .trust-strip-inner {
    width: 100%;
  }

  .trust-strip span {
    min-height: 58px;
    padding: 8px;
    font-size: 0.66rem;
  }

  .section-heading h2,
  .inside-heading h2,
  .guarantee-copy h2,
  .positioning-copy h2,
  .faq-intro h2,
  .final-cta h2 {
    font-size: clamp(2.35rem, 12vw, 3.65rem);
  }

  .section-heading {
    margin-bottom: 39px;
  }

  .method-card {
    min-height: 235px;
    padding: 27px;
  }

  .now-bridge {
    margin-top: 52px;
    padding: 28px 22px;
  }

  .now-bridge h3 {
    font-size: clamp(2.2rem, 11.5vw, 3.25rem);
  }

  .now-bridge .button {
    width: 100%;
  }

  .mechanism-heading h2 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .selector-shell {
    margin-inline: -2px;
  }

  .selector-prompt {
    padding: 14px 17px;
  }

  .selector-prompt > div {
    width: 100%;
    justify-content: space-between;
  }

  .selector-prompt span {
    font-size: 0.68rem;
  }

  .control-group {
    padding: 20px 17px;
  }

  .selector-checkout {
    gap: 13px 16px;
    padding: 19px 17px 17px;
  }

  .selector-checkout-choice strong {
    font-size: 1.15rem;
  }

  .selector-checkout-price .price-figure {
    font-size: 2.45rem;
  }

  .selector-checkout > .button {
    min-height: 56px;
    padding-inline: 12px;
    font-size: 0.72rem;
  }

  .selector-checkout-guarantee {
    align-items: flex-start;
    font-size: 0.54rem;
    line-height: 1.35;
    text-align: center;
  }

  .segment,
  .day-options button {
    min-height: 52px;
  }

  .day-options button {
    flex-direction: column;
    gap: 0;
  }

  .day-options span {
    font-size: 0.59rem;
  }

  .product-stage {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 40px 18px 38px;
  }

  .delivery-steps {
    grid-template-columns: 1fr;
  }

  .delivery-steps li {
    min-height: 0;
  }

  .delivery-steps span {
    margin-bottom: 26px;
  }

  .value-stack-copy h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .value-receipt {
    padding: 25px 18px;
  }

  .value-receipt-top,
  .value-receipt li,
  .value-total {
    gap: 14px;
  }

  .value-receipt li {
    font-size: 0.79rem;
  }

  .value-total strong {
    font-size: 3.35rem;
  }

  .digital-cover {
    width: min(86%, 340px);
    box-shadow: 14px 16px 0 rgba(214, 173, 85, 0.09), 0 25px 50px rgba(0, 0, 0, 0.32);
  }

  .cover-brand {
    font-size: 1.25rem;
  }

  .cover-by {
    font-size: 0.53rem;
  }

  .cover-title {
    font-size: 2.7rem;
  }

  .cover-description strong {
    font-size: 0.74rem;
  }

  .cover-description > span {
    font-size: 0.67rem;
  }

  .cover-description small {
    font-size: 0.56rem;
  }

  .cover-start {
    font-size: 1.42rem;
  }

  .product-copy h3 {
    font-size: 3.4rem;
  }

  .product-buy-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .adaptation-note {
    padding: 22px 18px 24px;
  }

  .guarantee-proof {
    align-items: flex-start;
    font-size: 0.58rem;
    letter-spacing: 0.055em;
  }

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

  .inside-card,
  .inside-card-featured,
  .inside-card:last-child {
    grid-column: auto;
    min-height: 260px;
  }

  .inside-card-featured {
    min-height: 485px;
  }

  .tutorial-library-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .tutorial-library-actions .button {
    width: 100%;
  }

  .tutorial-instagram {
    padding: 4px 2px;
  }

  .tutorial-player {
    padding: 7px;
  }

  .tutorial-player-meta {
    grid-template-columns: 1fr;
  }

  .tutorial-player-meta span {
    min-height: 46px;
  }

  .guarantee::before {
    inset: 9px;
  }

  .guarantee-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .guarantee-seal {
    width: 210px;
    margin-inline: auto;
  }

  .guarantee-seal span {
    font-size: 5rem;
  }

  .guarantee-copy h2 {
    font-size: 2.95rem;
  }

  .comparison-row {
    grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 0.82fr));
  }

  .comparison-row > * {
    min-height: 68px;
    padding: 10px 7px;
  }

  .comparison-row > span {
    font-size: 0.73rem;
    line-height: 1.3;
  }

  .comparison-head > * {
    min-height: 78px;
    font-size: 0.52rem;
    letter-spacing: 0.045em;
  }

  .comparison-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 22px 18px;
  }

  .comparison-cta .button {
    width: 100%;
  }

  .offer-card {
    padding: 27px 20px;
  }

  .offer-top {
    margin-bottom: 48px;
  }

  .offer-card h3 {
    font-size: 3.1rem;
  }

  .offer-main-price strong {
    font-size: 3.8rem;
  }

  .coaching-prices {
    grid-template-columns: 1fr;
  }

  .coaching-panel {
    padding: 27px 18px;
  }

  .coaching-bridge-copy h2 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .coaching-prices > div {
    min-height: 94px;
  }

  .coaching-prices em {
    top: 8px;
    right: 8px;
    left: auto;
    transform: none;
  }

  .positioning-manifesto {
    min-height: 315px;
    padding: 28px;
  }

  .accordion summary {
    min-height: 74px;
    font-size: 0.9rem;
  }

  .accordion details > div {
    padding-right: 30px;
    font-size: 0.86rem;
  }

  .final-cta {
    min-height: 560px;
    padding-bottom: 130px;
  }

  .final-cta::after {
    right: -25%;
    width: 250px;
  }

  .site-footer {
    padding-bottom: 106px;
  }

  .footer-top {
    grid-template-columns: 1fr auto;
    gap: 22px;
  }

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

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

  .system-quiz-launch {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 22px;
  }

  .system-quiz-count {
    font-size: 4rem;
  }

  .system-quiz-launch .button {
    width: 100%;
    min-width: 0;
  }

  .launch-dialog {
    width: calc(100vw - 16px);
    max-height: 94vh;
    padding: 42px 24px 25px;
  }

  .launch-dialog h2 {
    font-size: 2rem;
  }

  .quiz-dialog {
    min-height: 0;
  }

  .quiz-header {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 24px;
  }

  .quiz-options,
  .quiz-options-three,
  .quiz-options-two {
    grid-template-columns: 1fr;
  }

  .quiz-option {
    min-height: 58px;
  }

  .quiz-option-version {
    min-height: 82px;
  }

  .quiz-navigation {
    align-items: flex-start;
  }

  .quiz-navigation small {
    max-width: 150px;
    text-align: right;
  }

  .form-grid-two,
  .coaching-result-prices {
    grid-template-columns: 1fr;
  }

  .coaching-result-prices button {
    min-height: 120px;
  }

  .coaching-form-navigation {
    bottom: -25px;
    margin: 24px -24px -25px;
    padding: 14px 24px;
  }

  .coaching-form-navigation .button {
    padding-inline: 18px;
  }

  .dialog-system-picker {
    grid-template-columns: 1fr;
  }

  .dialog-selection {
    gap: 15px;
  }

  .dialog-selection > b {
    font-size: 2rem;
  }

  .guarantee-terms-trigger {
    display: block;
    margin: 12px 0 0;
  }

  .guarantee-dialog {
    width: calc(100vw - 16px);
    max-height: 94vh;
  }

  .guarantee-dialog-heading {
    padding: 52px 52px 30px 22px;
  }

  .guarantee-dialog-heading::after {
    right: 12px;
    bottom: -8px;
    font-size: 6.5rem;
  }

  .guarantee-dialog-kicker {
    font-size: 0.72rem;
  }

  .guarantee-dialog-heading h2 {
    font-size: clamp(2.45rem, 13vw, 3.8rem);
  }

  .guarantee-dialog-content {
    padding: 6px 22px;
  }

  .guarantee-dialog-content section {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 21px 0;
  }

  .guarantee-dialog-content section > span {
    font-size: 1.55rem;
  }

  .guarantee-dialog-definition,
  .guarantee-dialog-request {
    margin-right: 22px;
    margin-left: 22px;
    padding: 19px;
  }

  .guarantee-dialog-legal {
    margin-right: 22px;
    margin-left: 22px;
  }

  .guarantee-dialog-confirm {
    width: calc(100% - 44px);
    margin: 0 22px 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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