:root {
  --ink: #171512;
  --muted: #675f55;
  --paper: #f5f0e7;
  --paper-2: #fffaf2;
  --cream: #e8ddce;
  --line: #d9ccb9;
  --amber: #d89843;
  --amber-dark: #926019;
  --teal: #0d4a3d;
  --wine: #6f2435;
  --night: #111814;
  --night-2: #16221c;
  --night-3: #1b2a23;
  --white: #fffdf8;
  --pink: var(--amber);
  --pink-hot: #e7aa59;
  --blue: var(--amber);
  --copper: var(--amber-dark);
  --line-dark: rgba(255, 255, 255, 0.13);
  --line-light: rgba(23, 21, 18, 0.15);
  --display: "Fraunces", "Playfair Display", Georgia, serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 24px 70px rgba(23, 21, 18, 0.16);
  color-scheme: light;
  font-family: var(--body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--night);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

::selection {
  background: var(--pink);
  color: var(--white);
}

.wrap {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.95'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.scrolled {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(9, 10, 14, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: flex;
  align-items: baseline;
  gap: 6px;
  letter-spacing: -0.03em;
}

.brand span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
}

.brand strong {
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 600;
}

.nav-links > a:not(.nav-buy) {
  position: relative;
  transition: color 180ms ease;
}

.nav-links > a:not(.nav-buy)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: var(--pink-hot);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links > a:not(.nav-buy):hover {
  color: var(--white);
}

.nav-links > a:not(.nav-buy):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-buy {
  padding: 10px 15px;
  border: 1px solid rgba(237, 95, 165, 0.48);
  background: rgba(204, 67, 134, 0.12);
  color: var(--white);
  transition: background 180ms ease, transform 180ms ease;
}

.nav-buy:hover {
  background: var(--pink);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.menu-button span,
.menu-button span::before,
.menu-button span::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button span {
  position: relative;
}

.menu-button span::before,
.menu-button span::after {
  position: absolute;
  left: 0;
}

.menu-button span::before { top: -6px; }
.menu-button span::after { top: 6px; }

.nav-open .menu-button span { background: transparent; }
.nav-open .menu-button span::before { top: 0; transform: rotate(45deg); }
.nav-open .menu-button span::after { top: 0; transform: rotate(-45deg); }

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding: 118px 0 78px;
  overflow: hidden;
  isolation: isolate;
  background: var(--night);
}

.hero-photo,
.hero-overlay,
.spotlight {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 48%;
  opacity: 0.38;
  filter: saturate(0.76) contrast(1.08);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(9, 10, 14, 0.98) 0%, rgba(9, 10, 14, 0.89) 39%, rgba(9, 10, 14, 0.48) 68%, rgba(9, 10, 14, 0.78) 100%),
    linear-gradient(0deg, rgba(9, 10, 14, 0.98) 0%, transparent 34%, rgba(9, 10, 14, 0.2) 100%);
}

.spotlight {
  z-index: -1;
  background:
    radial-gradient(circle at 76% 38%, rgba(204, 67, 134, 0.25), transparent 25%),
    radial-gradient(circle at 71% 48%, rgba(227, 160, 109, 0.18), transparent 17%);
  animation: breathe 8s ease-in-out infinite alternate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(112deg, transparent 0 68%, rgba(184, 221, 234, 0.05) 68.2%, transparent 68.5%);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.68fr);
  align-items: center;
  gap: clamp(52px, 8vw, 110px);
}

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

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 32px;
  height: 1px;
  background: var(--copper);
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3.7rem, 5.3vw, 5.8rem);
  line-height: 0.94;
  text-wrap: balance;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.72;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 55px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 16px 38px rgba(204, 67, 134, 0.28);
}

.button-primary:hover {
  background: var(--pink-hot);
  box-shadow: 0 20px 48px rgba(204, 67, 134, 0.38);
}

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

.button-full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
}

.text-link span {
  color: var(--copper);
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.hero-facts {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: fit-content;
  margin-top: 42px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.hero-facts div {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 8px;
  padding: 15px 22px;
  border-right: 1px solid var(--line-dark);
}

.hero-facts div:first-child { padding-left: 0; }
.hero-facts div:last-child { border-right: 0; }

.hero-facts strong {
  color: var(--copper);
  font-family: var(--display);
  font-size: 1.65rem;
  line-height: 1;
}

.hero-facts span {
  max-width: 72px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.68rem;
  line-height: 1.3;
}

.hero-offer {
  position: relative;
  align-self: center;
  min-height: 550px;
  padding: 22px 18px 0;
}

.offer-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  width: 88%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204, 67, 134, 0.28), rgba(204, 67, 134, 0.04) 55%, transparent 72%);
  filter: blur(8px);
  transform: translateX(-50%);
}

.book-stage {
  position: relative;
  min-height: 460px;
  perspective: 1200px;
}

.book-cover,
.card-peek {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.48);
}

.book-cover {
  z-index: 3;
  top: 0;
  left: 50%;
  width: 275px;
  transform: translateX(-49%) rotateY(-7deg) rotateZ(1deg);
  transform-origin: left center;
}

.book-cover::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 10px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent);
  content: "";
}

.book-cover img,
.card-peek img,
.package-book img,
.package-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-peek {
  top: 78px;
  width: 220px;
  opacity: 0.94;
}

.card-peek-one {
  z-index: 1;
  left: 6%;
  transform: rotate(-8deg) translateY(24px);
}

.card-peek-two {
  z-index: 2;
  right: 0;
  transform: rotate(7deg) translateY(12px);
}

.book-shadow {
  position: absolute;
  right: 12%;
  bottom: 8%;
  left: 14%;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.8);
  filter: blur(21px);
  transform: rotate(-2deg);
}

.offer-meta {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line-dark);
}

.offer-meta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-meta div {
  display: grid;
  justify-items: end;
}

.offer-meta strong {
  font-family: var(--display);
  font-size: 2.4rem;
  line-height: 0.95;
}

.offer-meta span {
  max-width: 190px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
  line-height: 1.35;
  text-align: right;
}

.scroll-note {
  position: absolute;
  right: 28px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-note span {
  width: 1px;
  height: 44px;
  background: linear-gradient(var(--copper), transparent);
}

.signal-bar {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: #0d0e13;
}

.signal-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  gap: clamp(18px, 4vw, 52px);
}

.signal-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--display);
  font-size: clamp(0.92rem, 1.5vw, 1.16rem);
  font-style: italic;
}

.signal-inner i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--pink);
}

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

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

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

.story {
  position: relative;
  padding: 110px 0 120px;
  overflow: hidden;
}

.story::before {
  position: absolute;
  top: -180px;
  left: -240px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(204, 67, 134, 0.08);
  filter: blur(80px);
  content: "";
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: start;
  gap: 38px clamp(38px, 6vw, 78px);
}

.story-marker {
  position: static;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr) auto;
  align-items: center;
  justify-items: start;
  gap: 18px;
  color: rgba(255, 255, 255, 0.42);
}

.story-marker span {
  color: var(--copper);
  font-family: var(--display);
  font-size: 1.6rem;
}

.story-marker div {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--pink), rgba(255, 255, 255, 0.08));
}

.story-marker small {
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  writing-mode: initial;
}

.story-copy {
  grid-column: 1;
}

.story-copy h2,
.protocol-intro h2,
.buy-story h2 {
  margin-bottom: 34px;
  font-size: clamp(2.6rem, 5.2vw, 5.5rem);
  line-height: 0.99;
  text-wrap: balance;
}

.story-copy > p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
}

.story-copy strong {
  color: var(--white);
}

.story-copy blockquote {
  position: relative;
  margin: 46px 0;
  padding: 12px 0 12px 38px;
  border-left: 1px solid var(--pink-hot);
}

.story-copy blockquote span {
  position: absolute;
  top: -31px;
  left: 20px;
  color: rgba(204, 67, 134, 0.28);
  font-family: var(--display);
  font-size: 7rem;
  line-height: 1;
}

.story-copy blockquote p {
  position: relative;
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  font-style: italic;
  line-height: 1.28;
}

.story-photo {
  position: static;
  grid-column: 2;
  align-self: start;
  margin: 0;
}

.story-photo::before {
  position: absolute;
  inset: -13px 13px 13px -13px;
  z-index: -1;
  border: 1px solid rgba(227, 160, 109, 0.42);
  content: "";
}

.story-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 39%;
  filter: saturate(0.82) contrast(1.05);
}

.story-photo figcaption {
  max-width: 330px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  line-height: 1.55;
}

.reframe {
  position: relative;
  padding: 150px 0;
  overflow: hidden;
  background: var(--pink);
  color: var(--white);
}

.reframe::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, transparent 0 54%, rgba(9, 10, 14, 0.13) 54.2%, transparent 54.4%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.14), transparent 26%);
  content: "";
}

.reframe-inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.52fr 1.4fr;
  gap: 30px 70px;
}

.reframe-inner > p:first-child {
  margin: 9px 0 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reframe h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5.8vw, 6rem);
  line-height: 0.98;
}

.reframe-line {
  align-self: start;
  width: 100%;
  height: 1px;
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.46);
}

.reframe-copy {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.04rem;
}

.pressure,
.package,
.audience,
.faq {
  padding: 110px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 18px;
  max-width: 1080px;
  margin-bottom: 52px;
}

.section-heading.compact {
  margin-bottom: 44px;
}

.section-heading .section-kicker,
.protocol-intro .section-kicker {
  margin-bottom: 0;
}

.section-heading .section-kicker {
  font-size: 0.78rem;
}

.section-heading h2,
.package-copy h2,
.audience-panel h2,
.faq-heading h2,
.rescue-copy h2,
.authority-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 4.8vw, 5rem);
  line-height: 1;
  text-wrap: balance;
}

.dark-kicker {
  color: #9a4b70;
}

.pressure-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.pressure-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "index title"
    ". copy";
  align-content: start;
  column-gap: 16px;
  row-gap: 14px;
  min-height: 0;
  padding: 28px 26px 30px;
  border-right: 1px solid var(--line-light);
  transition: background 220ms ease, transform 220ms ease;
}

.pressure-card:last-child {
  border-right: 0;
}

.pressure-card:hover {
  background: var(--paper-2);
  transform: translateY(-8px);
}

.pressure-card span {
  grid-area: index;
  display: inline-block;
  margin: 2px 0 0;
  color: var(--pink);
  font-family: var(--display);
  font-size: 1.2rem;
}

.pressure-card h3,
.protocol-step h3,
.package-items h3,
.mini-card h3 {
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: 1.65rem;
  line-height: 1.12;
}

.pressure-card p {
  grid-area: copy;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.pressure-card h3 {
  grid-area: title;
  margin: 0;
}

.pressure-close {
  max-width: 100%;
  margin: 38px 0 0;
  padding-left: 22px;
  border-left: 2px solid var(--pink);
  color: #3b3840;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.35;
}

.protocol {
  position: relative;
  padding: 115px 0 125px;
  overflow: hidden;
}

.protocol::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 86% 10%, rgba(184, 221, 234, 0.1), transparent 24%),
    linear-gradient(90deg, transparent 0 49.95%, rgba(255, 255, 255, 0.04) 50%, transparent 50.05%);
  content: "";
}

.protocol-intro {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 18px;
  max-width: 980px;
  margin-bottom: 58px;
}

.protocol-intro h2 {
  margin: 0;
}

.protocol-intro > p:last-child {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.59);
}

.protocol-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.protocol-track::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 34%;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), var(--pink));
  content: "";
}

.protocol-step {
  position: relative;
  min-height: 0;
  padding: 38px 34px 42px;
  overflow: hidden;
  background: #101116;
}

.protocol-step::after {
  position: absolute;
  right: -44px;
  bottom: -70px;
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--display);
  font-size: 15rem;
  line-height: 1;
  content: attr(data-step);
}

.step-meta {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 24px;
}

.step-number {
  margin: 0;
  color: var(--pink-hot);
  font-family: var(--display);
  font-size: 2.25rem;
}

.step-time {
  margin: 0;
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.protocol-step h3 {
  font-size: 2rem;
}

.protocol-step > p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.protocol-step ul,
.price-card ul,
.audience-panel ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.protocol-step li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
}

.protocol-step li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--copper);
  content: "";
}

.package-grid {
  display: grid;
  grid-template-columns: minmax(430px, 0.92fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(70px, 9vw, 130px);
}

.package-visual > p {
  max-width: 420px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: center;
}

.package-scene {
  position: relative;
  min-height: 620px;
  perspective: 1300px;
}

.package-scene::before {
  position: absolute;
  right: 5%;
  bottom: 4%;
  left: 5%;
  height: 80px;
  border-radius: 50%;
  background: rgba(19, 16, 19, 0.21);
  filter: blur(26px);
  content: "";
}

.package-book,
.package-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 32px 70px rgba(24, 18, 23, 0.2);
}

.package-book {
  z-index: 4;
  top: 12px;
  left: 50%;
  width: 310px;
  transform: translateX(-48%) rotateY(-7deg) rotateZ(1deg);
}

.package-card {
  width: 235px;
}

.package-card-one {
  z-index: 1;
  top: 90px;
  left: 0;
  transform: rotate(-9deg);
}

.package-card-two {
  z-index: 3;
  top: 118px;
  right: -5px;
  transform: rotate(9deg);
}

.package-card-three {
  z-index: 2;
  right: 16%;
  bottom: -10px;
  transform: rotate(3deg);
}

.package-copy h2 {
  margin-bottom: 42px;
}

.package-items {
  display: grid;
  margin-bottom: 38px;
  border-top: 1px solid var(--line-light);
}

.package-items article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line-light);
}

.package-items article > span {
  color: var(--pink);
  font-family: var(--display);
  font-size: 1.2rem;
}

.package-items h3 {
  margin-bottom: 5px;
  font-size: 1.35rem;
}

.package-items p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.cards-detail {
  padding: 105px 0 115px;
}

.cards-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 1fr;
  gap: 14px;
}

.mini-card {
  grid-column: span 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "index title"
    ". copy";
  align-content: start;
  column-gap: 16px;
  row-gap: 12px;
  min-height: 0;
  padding: 28px;
  border: 1px solid rgba(21, 21, 26, 0.12);
  background: rgba(255, 253, 249, 0.44);
  transition: background 200ms ease, transform 200ms ease;
}

.mini-card:nth-child(4) { grid-column: 2 / span 2; }
.mini-card:nth-child(5) { grid-column: 4 / span 2; }

.mini-card:hover {
  background: var(--paper-2);
  transform: translateY(-6px);
}

.mini-card strong {
  grid-area: index;
  display: block;
  margin: 1px 0 0;
  color: var(--pink);
  font-family: var(--display);
  font-size: 1.5rem;
}

.mini-card h3 {
  grid-area: title;
  margin: 0;
}

.mini-card p {
  grid-area: copy;
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.rescue {
  position: relative;
  padding: 115px 0;
  overflow: hidden;
}

.rescue::after {
  position: absolute;
  right: -150px;
  bottom: -180px;
  width: 570px;
  height: 570px;
  border: 1px solid rgba(204, 67, 134, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(204, 67, 134, 0.035), 0 0 0 110px rgba(204, 67, 134, 0.02);
  content: "";
}

.rescue-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(70px, 10vw, 150px);
}

.rescue-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}

.rescue-copy h2 {
  margin-bottom: 32px;
}

.rescue-copy > p:last-child {
  color: rgba(255, 255, 255, 0.58);
}

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

.rescue-list div {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 20px;
  min-height: 75px;
  border-bottom: 1px solid var(--line-dark);
  transition: padding-left 180ms ease, background 180ms ease;
}

.rescue-list div:hover {
  padding-left: 12px;
  background: linear-gradient(90deg, rgba(204, 67, 134, 0.1), transparent);
}

.rescue-list span {
  color: var(--copper);
  font-family: var(--display);
}

.rescue-list p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line-light);
}

.audience-panel {
  min-height: 0;
  padding: clamp(40px, 6vw, 72px);
  background: var(--paper-2);
}

.audience-panel.for {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: start;
  gap: 26px clamp(42px, 7vw, 92px);
}

.audience-panel.for .panel-label {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.audience-panel.for h2 {
  grid-column: 1;
  margin: 0;
}

.audience-panel.for ul {
  grid-column: 2;
  margin: 0;
}

.audience-panel.not-for {
  background: #ded6cc;
}

.panel-label {
  display: inline-block;
  margin-bottom: 75px;
  color: #974568;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.audience-panel h2 {
  margin-bottom: 36px;
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.audience-panel li {
  position: relative;
  padding: 13px 0 13px 26px;
  border-bottom: 1px solid var(--line-light);
  color: #4e4a50;
  font-size: 0.85rem;
}

.audience-panel li::before {
  position: absolute;
  top: 1.3rem;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
  content: "";
}

.not-for li::before {
  width: 9px;
  height: 1px;
  border-radius: 0;
  background: #6c6268;
}

.authority {
  padding: 0;
  overflow: hidden;
  background: #d8e8ed;
  color: var(--ink);
}

.authority-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: stretch;
  width: 100%;
  max-width: none;
}

.authority-photo {
  min-height: 800px;
  margin: 0;
}

.authority-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.authority-copy {
  align-self: center;
  max-width: 760px;
  padding: 100px clamp(48px, 9vw, 150px) 100px clamp(48px, 7vw, 110px);
}

.authority-copy h2 {
  margin-bottom: 34px;
}

.authority-copy > p:not(.section-kicker) {
  color: #4d5559;
}

.authority-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 46px;
  background: rgba(21, 21, 26, 0.16);
}

.authority-numbers div {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 0;
  padding: 20px;
  background: #d8e8ed;
}

.authority-numbers strong {
  font-family: var(--display);
  font-size: 1.7rem;
  line-height: 1;
}

.authority-numbers span {
  color: #596166;
  font-size: 0.68rem;
  line-height: 1.45;
}

.buy {
  position: relative;
  padding: 115px 0;
  overflow: hidden;
}

.buy::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 42%, rgba(204, 67, 134, 0.22), transparent 24%),
    radial-gradient(circle at 18% 100%, rgba(184, 221, 234, 0.08), transparent 25%);
  content: "";
}

.buy-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr minmax(340px, 0.62fr);
  align-items: center;
  gap: clamp(80px, 12vw, 170px);
}

.buy-story h2 {
  margin-bottom: 28px;
}

.buy-story > p:not(.section-kicker) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.6);
}

.buy-story blockquote {
  margin: 44px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid var(--line-dark);
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
  font-style: italic;
}

.price-card {
  position: relative;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(17, 19, 26, 0.91);
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.price-card::before {
  position: absolute;
  top: -1px;
  right: 30%;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), var(--pink));
  content: "";
}

.price-eyebrow {
  margin-bottom: 25px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.price strong {
  font-family: var(--display);
  font-size: clamp(5.5rem, 9vw, 8rem);
  line-height: 0.82;
  letter-spacing: -0.07em;
}

.price span {
  margin-top: 7px;
  color: var(--copper);
  font-family: var(--display);
  font-size: 1.8rem;
}

.price-note {
  margin: 16px 0 30px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
}

.price-card ul {
  margin: 0 0 34px;
}

.price-card li {
  position: relative;
  padding: 10px 0 10px 25px;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.price-card li::before {
  position: absolute;
  top: 1.25rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--pink-hot);
  border-bottom: 1.5px solid var(--pink-hot);
  content: "";
  transform: rotate(45deg);
}

.price-card small {
  display: block;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.65rem;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.48fr 1fr;
  align-items: start;
  gap: clamp(70px, 10vw, 150px);
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-heading h2 {
  margin-bottom: 20px;
}

.faq-heading > p:last-child {
  max-width: 320px;
  color: var(--muted);
}

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

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

.faq-list summary {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 30px;
  align-items: center;
  gap: 20px;
  padding: 27px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.25;
  list-style: none;
}

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

.faq-list summary span,
.faq-list summary span::after {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--ink);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: rotate(90deg);
}

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

.faq-list details p {
  max-width: 720px;
  margin: -6px 50px 28px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.finale {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 82svh;
  overflow: hidden;
  background: var(--night);
}

.finale > img,
.finale-overlay {
  position: absolute;
  inset: 0;
}

.finale > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
  filter: saturate(0.72) contrast(1.1);
}

.finale-overlay {
  background: linear-gradient(90deg, rgba(9, 10, 14, 0.97) 0%, rgba(9, 10, 14, 0.78) 48%, rgba(9, 10, 14, 0.33) 78%, rgba(9, 10, 14, 0.68) 100%);
}

.finale-copy {
  position: relative;
  padding: 100px 0;
}

.finale-copy p {
  margin-bottom: 15px;
  color: var(--copper);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.finale-copy h2 {
  max-width: 760px;
  margin-bottom: 40px;
  font-size: clamp(3.3rem, 7vw, 7rem);
  line-height: 0.94;
}

.footer {
  padding: 50px 0;
  border-top: 1px solid var(--line-dark);
  background: #07080b;
}

.footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.footer strong {
  font-family: var(--display);
  font-size: 1.35rem;
}

.footer p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.68rem;
}

.footer-links {
  display: flex;
  gap: 22px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.77rem;
}

.footer-links a:hover {
  color: var(--pink-hot);
}

.mobile-buy {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 190ms; }
.delay-3 { transition-delay: 280ms; }

@keyframes breathe {
  from { opacity: 0.75; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1.04); }
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
    gap: 40px;
  }

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

  .book-cover { width: 235px; }
  .card-peek { width: 190px; }

  .story-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    gap: 34px 38px;
  }

  .package-grid {
    grid-template-columns: minmax(370px, 0.86fr) 1fr;
    gap: 60px;
  }

  .package-book { width: 275px; }
  .package-card { width: 205px; }
}

@media (max-width: 900px) {
  .wrap {
    width: min(100% - 36px, 740px);
  }

  .menu-button {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 76px 0 auto;
    display: grid;
    gap: 0;
    padding: 12px 18px 22px;
    border-bottom: 1px solid var(--line-dark);
    background: rgba(9, 10, 14, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links > a:not(.nav-buy) {
    padding: 14px 3px;
    border-bottom: 1px solid var(--line-dark);
  }

  .nav-buy {
    margin-top: 12px;
    text-align: center;
  }

  .hero {
    align-items: start;
    padding-top: 124px;
  }

  .hero-photo {
    object-position: 50% 50%;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(9, 10, 14, 0.78) 0%, rgba(9, 10, 14, 0.9) 48%, rgba(9, 10, 14, 0.99) 100%),
      linear-gradient(90deg, rgba(9, 10, 14, 0.8), rgba(9, 10, 14, 0.3));
  }

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

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

  .hero-offer {
    width: min(100%, 480px);
    min-height: 540px;
    margin: 0 auto;
  }

  .scroll-note { display: none; }

  .story {
    padding: 110px 0;
  }

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

  .story-marker {
    position: static;
    grid-template-columns: auto 1fr auto;
    justify-items: start;
  }

  .story-marker div {
    width: 100%;
    height: 1px;
    align-self: center;
    background: linear-gradient(90deg, var(--pink), rgba(255, 255, 255, 0.08));
  }

  .story-marker small { writing-mode: initial; }

  .story-photo {
    position: static;
    grid-column: auto;
    width: min(100%, 520px);
    margin: 25px auto 0;
  }

  .story-photo img {
    aspect-ratio: 4 / 3;
  }

  .reframe-inner,
  .section-heading,
  .protocol-intro,
  .package-grid,
  .rescue-grid,
  .faq-grid,
  .buy-grid {
    grid-template-columns: 1fr;
  }

  .reframe-inner {
    gap: 28px;
  }

  .reframe-line { width: 100px; }

  .section-heading,
  .protocol-intro {
    gap: 20px;
  }

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

  .pressure-card:nth-child(2) { border-right: 0; }
  .pressure-card:nth-child(-n+2) { border-bottom: 1px solid var(--line-light); }

  .protocol-track {
    grid-template-columns: 1fr;
  }

  .protocol-step {
    min-height: 0;
  }

  .step-number { margin: 0; }

  .package-visual {
    width: min(100%, 620px);
    margin-inline: auto;
  }

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

  .mini-card,
  .mini-card:nth-child(4),
  .mini-card:nth-child(5) {
    grid-column: auto;
  }

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

  .rescue-copy,
  .faq-heading {
    position: static;
  }

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

  .audience-panel {
    min-height: auto;
  }

  .audience-panel.for {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .audience-panel.for .panel-label,
  .audience-panel.for h2,
  .audience-panel.for ul {
    grid-column: auto;
  }

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

  .authority-photo {
    min-height: 570px;
  }

  .authority-copy {
    max-width: 740px;
    margin: 0 auto;
    padding: 90px 28px;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 68px;
  }

  body {
    padding-bottom: 70px;
    font-size: 15px;
  }

  .wrap {
    width: min(100% - 28px, 560px);
  }

  .nav {
    min-height: 68px;
  }

  .nav-links {
    top: 68px;
  }

  .brand {
    display: grid;
    gap: 0;
    line-height: 1.1;
  }

  .brand span { font-size: 0.7rem; }
  .brand strong { font-size: 0.78rem; }

  .hero {
    min-height: auto;
    padding: 105px 0 88px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 15vw, 4.7rem);
  }

  .hero-lead {
    font-size: 0.96rem;
  }

  .hero-actions {
    align-items: stretch;
    gap: 16px;
  }

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

  .hero-actions .text-link {
    justify-content: center;
  }

  .hero-facts {
    width: 100%;
  }

  .hero-facts div {
    grid-template-columns: 1fr;
    align-content: center;
    flex: 1;
    padding: 14px 11px;
  }

  .hero-facts div:first-child { padding-left: 11px; }
  .hero-facts strong { font-size: 1.5rem; }

  .hero-offer {
    min-height: 475px;
    padding-inline: 0;
  }

  .book-stage { min-height: 395px; }
  .book-cover { width: 215px; }
  .card-peek { top: 60px; width: 165px; }

  .signal-inner {
    min-height: 70px;
    gap: 11px;
  }

  .signal-inner p {
    font-family: var(--body);
    font-size: 0.63rem;
    font-style: normal;
    font-weight: 700;
  }

  .signal-inner i { width: 3px; height: 3px; }

  .story,
  .reframe,
  .pressure,
  .protocol,
  .package,
  .audience,
  .faq,
  .buy,
  .rescue {
    padding: 92px 0;
  }

  .story-copy h2,
  .protocol-intro h2,
  .buy-story h2,
  .section-heading h2,
  .package-copy h2,
  .audience-panel h2,
  .faq-heading h2,
  .rescue-copy h2,
  .authority-copy h2 {
    font-size: clamp(2.55rem, 12vw, 3.65rem);
  }

  .section-heading h2 {
    font-size: clamp(2.25rem, 10.5vw, 3.2rem);
  }

  .story-copy blockquote {
    margin: 34px 0;
    padding-left: 24px;
  }

  .story-copy blockquote p {
    font-size: 1.52rem;
  }

  .story-photo {
    width: calc(100% - 12px);
  }

  .reframe h2 {
    font-size: clamp(2.65rem, 12.5vw, 4rem);
  }

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

  .pressure-card,
  .pressure-card:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .pressure-card span {
    margin: 2px 0 0;
  }

  .protocol-intro {
    margin-bottom: 54px;
  }

  .protocol-step {
    padding: 30px 24px 34px;
  }

  .package-scene {
    min-height: 480px;
    overflow: hidden;
  }

  .package-book { width: 230px; }
  .package-card { width: 165px; }
  .package-card-one { top: 72px; left: -9px; }
  .package-card-two { top: 98px; right: -8px; }
  .package-card-three { right: 11%; bottom: -2px; }

  .cards-detail {
    padding: 84px 0 96px;
  }

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

  .mini-card,
  .mini-card:last-child {
    grid-column: auto;
    min-height: 0;
  }

  .mini-card strong {
    margin: 1px 0 0;
  }

  .audience-panel {
    padding: 42px 24px;
  }

  .panel-label {
    margin-bottom: 45px;
  }

  .authority-photo {
    min-height: 430px;
  }

  .authority-copy {
    padding: 76px 22px;
  }

  .authority-numbers {
    grid-template-columns: 1fr;
  }

  .authority-numbers div {
    min-height: 90px;
  }

  .price-card {
    padding: 32px 24px;
  }

  .faq-list summary {
    font-size: 1.23rem;
  }

  .finale {
    min-height: 76svh;
  }

  .finale-overlay {
    background: linear-gradient(180deg, rgba(9, 10, 14, 0.54), rgba(9, 10, 14, 0.94) 68%, rgba(9, 10, 14, 1));
  }

  .finale-copy {
    align-self: end;
    padding: 210px 0 80px;
  }

  .finale-copy h2 {
    font-size: clamp(3.1rem, 14vw, 4.6rem);
  }

  .footer {
    padding: 38px 0;
  }

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

  .mobile-buy {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 70px;
    padding: 10px 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(9, 10, 14, 0.94);
    backdrop-filter: blur(18px);
  }

  .mobile-buy div {
    display: grid;
  }

  .mobile-buy span {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.6rem;
  }

  .mobile-buy strong {
    font-family: var(--display);
    font-size: 1.25rem;
  }

  .mobile-buy a {
    padding: 11px 17px;
    background: var(--pink);
    font-size: 0.75rem;
    font-weight: 800;
  }
}

@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; }
}

/* Wspólny system wizualny stron produktowych Patryka */

::selection {
  background: var(--amber);
  color: #211604;
}

.site-header,
.site-header.scrolled {
  border-bottom-color: rgba(255, 250, 242, 0.16);
  background: rgba(17, 24, 20, 0.92);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 72px;
}

.brand {
  display: grid;
  line-height: 1.12;
}

.brand strong {
  font-family: var(--display);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand span {
  margin-top: 3px;
  color: rgba(255, 253, 248, 0.43);
  font-family: var(--body);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.92rem;
}

.nav-links > a:not(.nav-buy)::after {
  background: var(--amber);
}

.nav-links > a.active {
  color: var(--amber);
}

.nav-buy {
  border-color: rgba(216, 152, 67, 0.56);
  border-radius: 8px;
  background: transparent;
}

.nav-buy:hover {
  background: var(--amber);
  color: #211604;
}

.menu-button {
  border-color: rgba(255, 253, 248, 0.24);
  border-radius: 8px;
  background: transparent;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 24, 20, 0.98) 0%, rgba(17, 24, 20, 0.89) 39%, rgba(17, 24, 20, 0.48) 68%, rgba(17, 24, 20, 0.78) 100%),
    linear-gradient(0deg, rgba(17, 24, 20, 0.98) 0%, transparent 34%, rgba(17, 24, 20, 0.2) 100%);
}

.spotlight {
  background:
    radial-gradient(circle at 76% 38%, rgba(216, 152, 67, 0.25), transparent 25%),
    radial-gradient(circle at 71% 48%, rgba(13, 74, 61, 0.22), transparent 18%);
}

.hero::before {
  background: linear-gradient(112deg, transparent 0 68%, rgba(216, 152, 67, 0.07) 68.2%, transparent 68.5%);
}

h1,
h2 {
  font-weight: 800;
  letter-spacing: 0;
}

.eyebrow,
.section-kicker,
.dark-kicker {
  color: var(--amber);
}

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

.button {
  min-height: 48px;
  padding-inline: 18px;
  border-radius: 8px;
}

.button-primary {
  background: var(--amber);
  color: #211604;
  box-shadow: 0 16px 38px rgba(216, 152, 67, 0.25);
}

.button-primary:hover {
  background: #e4a653;
  box-shadow: 0 20px 48px rgba(216, 152, 67, 0.32);
}

.button-dark {
  background: var(--teal);
}

.text-link span,
.hero-facts strong {
  color: var(--amber);
}

.offer-glow {
  background: radial-gradient(circle, rgba(216, 152, 67, 0.3), rgba(216, 152, 67, 0.05) 55%, transparent 72%);
}

.book-cover,
.card-peek,
.package-book,
.package-card {
  border-radius: 4px;
}

.signal-bar {
  border-color: rgba(255, 253, 248, 0.16);
  background: var(--teal);
}

.signal-inner p {
  color: rgba(255, 253, 248, 0.78);
}

.signal-inner i {
  background: var(--amber);
}

.story::before {
  background: rgba(216, 152, 67, 0.08);
}

.story-marker span,
.finale-copy p {
  color: var(--amber);
}

.story-marker div {
  background: linear-gradient(var(--amber), rgba(255, 255, 255, 0.08));
}

.story-copy blockquote {
  border-left-color: var(--amber);
}

.story-copy blockquote span {
  color: rgba(216, 152, 67, 0.28);
}

.story-photo::before {
  border-color: rgba(216, 152, 67, 0.48);
}

.reframe {
  background: var(--teal);
}

.reframe::before {
  background:
    linear-gradient(118deg, transparent 0 54%, rgba(17, 24, 20, 0.18) 54.2%, transparent 54.4%),
    radial-gradient(circle at 80% 20%, rgba(216, 152, 67, 0.18), transparent 26%);
}

.pressure-grid {
  gap: 12px;
  border: 0;
}

.pressure-card,
.pressure-card:nth-child(2),
.pressure-card:nth-child(-n+2) {
  border: 1px solid rgba(23, 21, 18, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(23, 21, 18, 0.06);
}

.pressure-card:hover {
  background: var(--paper-2);
  box-shadow: 0 20px 42px rgba(23, 21, 18, 0.1);
}

.pressure-card span,
.package-items article > span,
.mini-card strong {
  color: var(--amber-dark);
}

.pressure-close {
  border-left-color: var(--amber);
  color: var(--ink);
}

.protocol::before {
  background:
    radial-gradient(circle at 86% 10%, rgba(216, 152, 67, 0.1), transparent 24%),
    linear-gradient(90deg, transparent 0 49.95%, rgba(255, 255, 255, 0.04) 50%, transparent 50.05%);
}

.protocol-track {
  gap: 12px;
  background: transparent;
}

.protocol-track::before,
.price-card::before {
  background: linear-gradient(90deg, var(--amber), var(--teal));
}

.protocol-step {
  border: 1px solid rgba(255, 253, 248, 0.13);
  border-radius: 8px;
  background: var(--night-2);
}

.step-number,
.step-time {
  color: var(--amber);
}

.protocol-step li::before {
  background: var(--amber);
}

.mini-card {
  border-color: rgba(23, 21, 18, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(23, 21, 18, 0.06);
}

.mini-card:hover {
  box-shadow: 0 20px 42px rgba(23, 21, 18, 0.1);
}

.rescue::after {
  border-color: rgba(216, 152, 67, 0.22);
  box-shadow: 0 0 0 55px rgba(216, 152, 67, 0.04), 0 0 0 110px rgba(216, 152, 67, 0.025);
}

.rescue-list div:hover {
  background: linear-gradient(90deg, rgba(216, 152, 67, 0.1), transparent);
}

.rescue-list span {
  color: var(--amber);
}

.audience-grid {
  gap: 16px;
  background: transparent;
}

.audience-panel {
  border: 1px solid rgba(23, 21, 18, 0.12);
  border-radius: 8px;
  background: var(--paper-2);
  box-shadow: 0 12px 28px rgba(23, 21, 18, 0.06);
}

.audience-panel.not-for {
  background: var(--cream);
}

.panel-label {
  color: var(--wine);
}

.audience-panel li {
  color: var(--muted);
}

.audience-panel li::before {
  background: var(--amber);
}

.not-for li::before {
  background: var(--wine);
}

.authority,
.authority-numbers div {
  background: #eef3ea;
}

.authority-copy > p:not(.section-kicker),
.authority-numbers span {
  color: var(--muted);
}

.buy::before {
  background:
    radial-gradient(circle at 68% 42%, rgba(216, 152, 67, 0.2), transparent 24%),
    radial-gradient(circle at 18% 100%, rgba(13, 74, 61, 0.2), transparent 25%);
}

.buy-story blockquote,
.price-eyebrow {
  color: var(--amber);
}

.price-card {
  border-color: rgba(216, 152, 67, 0.3);
  border-radius: 8px;
  background: rgba(22, 34, 28, 0.94);
}

.price span {
  color: var(--amber);
}

.price-card li::before {
  border-color: var(--amber);
}

.finale-overlay {
  background: linear-gradient(90deg, rgba(17, 24, 20, 0.97) 0%, rgba(17, 24, 20, 0.78) 48%, rgba(17, 24, 20, 0.33) 78%, rgba(17, 24, 20, 0.68) 100%);
}

.footer {
  background: #0c110e;
}

.footer-links a:hover {
  color: var(--amber);
}

@media (max-width: 900px) {
  .site-header .nav-links {
    background: rgba(17, 24, 20, 0.98);
  }
}

@media (max-width: 620px) {
  .brand strong {
    font-size: 1rem;
  }

  .brand span {
    font-size: 0.52rem;
  }

  .finale-overlay {
    background: linear-gradient(180deg, rgba(17, 24, 20, 0.54), rgba(17, 24, 20, 0.94) 68%, rgba(17, 24, 20, 1));
  }

  .mobile-buy {
    border-top-color: rgba(255, 253, 248, 0.16);
    background: rgba(17, 24, 20, 0.96);
  }

  .mobile-buy a {
    border-radius: 8px;
    background: var(--amber);
    color: #211604;
  }
}
/* Cross-page production QA overrides */
html,
body {
  overflow-x: clip;
}

.wrap,
:where([class*="-grid"], [class*="-cards"]) > * {
  min-width: 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 6px;
  background: #f0e5cf;
  color: #111813;
  font-weight: 800;
  transform: translateY(-160%);
}

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

.brand strong {
  font-family: Inter, system-ui, sans-serif;
  font-weight: 820;
  text-transform: uppercase;
}

.dark-kicker {
  color: #765019;
}

.faq-list summary {
  min-height: 44px;
}

.footer-links {
  flex-wrap: wrap;
}

@media (max-width: 340px) {
  .wrap {
    width: min(1180px, calc(100% - 32px));
  }

  .button {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .footer-inner {
    align-items: flex-start;
    flex-wrap: wrap;
    min-width: 0;
  }

  .footer-links {
    width: 100%;
    min-width: 0;
    gap: 12px 16px;
  }

  .brand span,
  .hero-facts span,
  .offer-meta span,
  .signal-inner p,
  .step-time,
  .story-marker small,
  .authority-numbers span,
  .price-card small,
  .footer p,
  .mobile-buy span {
    font-size: 11px;
  }
}
