:root {
  --red: #ed0a1f;
  --red-deep: #c90016;
  --red-soft: #ff3345;
  --ink: #24201f;
  --ink-soft: #4f4845;
  --cream: #fff8ef;
  --paper: #fffdf9;
  --gold: #f6ca85;
  --gold-deep: #d59c47;
  --mint: #dff2e4;
  --green: #236b43;
  --rose: #ffe1e4;
  --line: rgba(36, 32, 31, .12);
  --shadow: 0 24px 70px rgba(83, 19, 25, .16);
  --radius-lg: 36px;
  --radius-md: 24px;
  --shell: 1200px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: white;
  background: var(--ink);
  border-radius: 12px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

.site-header {
  position: absolute;
  z-index: 30;
  inset: 0 0 auto;
  height: 82px;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  transition: background .25s ease, box-shadow .25s ease, color .25s ease, transform .25s ease;
}

.site-header.is-sticky {
  position: fixed;
  color: var(--ink);
  background: rgba(255, 253, 249, .92);
  box-shadow: 0 10px 35px rgba(36, 32, 31, .09);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.publisher {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.publisher-mark {
  width: 34px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--red);
  background: white;
  border-radius: 11px;
  font-weight: 950;
  box-shadow: 0 8px 20px rgba(80, 0, 8, .14);
}

.is-sticky .publisher-mark,
.publisher--footer .publisher-mark { color: white; background: var(--red); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.site-nav a {
  color: inherit;
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
  opacity: .84;
  transition: opacity .2s ease;
}

.site-nav a:hover { opacity: 1; }

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 19px;
  color: var(--red);
  background: white;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 10px 28px rgba(80, 0, 8, .12);
  transition: transform .2s ease, box-shadow .2s ease;
}

.is-sticky .header-cta { color: white; background: var(--red); }
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(80, 0, 8, .2); }

.hero {
  position: relative;
  min-height: 820px;
  padding: 138px 0 42px;
  color: white;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 2%, rgba(255, 255, 255, .17), transparent 24%),
    radial-gradient(circle at 82% 30%, rgba(255, 193, 172, .25), transparent 25%),
    linear-gradient(135deg, #f3182c 0%, #e6071d 55%, #c50016 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: auto -5% -230px;
  height: 270px;
  background: var(--paper);
  border-radius: 50% 50% 0 0 / 45% 45% 0 0;
}

.hero-orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
}

.hero-orbit--one { width: 620px; height: 620px; top: 100px; right: -210px; }
.hero-orbit--two { width: 420px; height: 420px; bottom: 80px; left: -240px; }

.hero-dots {
  position: absolute;
  width: 230px;
  height: 230px;
  left: 3%;
  bottom: 130px;
  opacity: .25;
  background-image: radial-gradient(circle, white 1.8px, transparent 2px);
  background-size: 20px 20px;
  transform: rotate(8deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(430px, .78fr);
  align-items: center;
  gap: clamp(50px, 7vw, 106px);
}

.partner-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  padding: 9px 14px 9px 11px;
  color: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 999px;
  background: rgba(110, 0, 12, .12);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.partner-label i {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(246, 202, 133, .15);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(58px, 6.3vw, 94px);
  line-height: .94;
  letter-spacing: -.065em;
  font-weight: 900;
}

.hero h1 em {
  display: inline-block;
  margin-top: 10px;
  padding: .05em .16em .11em;
  color: var(--ink);
  background: var(--gold);
  border-radius: .22em;
  font-style: normal;
  letter-spacing: -.055em;
  transform: rotate(-1.4deg);
  box-shadow: 0 10px 0 rgba(97, 0, 10, .12);
}

.hero-lead {
  max-width: 650px;
  margin: 28px 0 25px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
  letter-spacing: -.015em;
}

.trial-card {
  width: min(100%, 570px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: stretch;
  margin-bottom: 20px;
  color: var(--ink);
  background: white;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 22px;
  box-shadow: 0 22px 50px rgba(91, 0, 11, .2);
  overflow: hidden;
}

.trial-main {
  padding: 18px 23px 17px;
  background: linear-gradient(145deg, #fff7e9, #f6cf94);
}

.trial-main strong {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 27px;
  line-height: 1;
  letter-spacing: -.04em;
}

.trial-main strong span { font-size: 48px; font-weight: 950; }
.trial-main b { display: block; margin-top: 5px; font-size: 17px; text-transform: uppercase; letter-spacing: .05em; }

.trial-meta {
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line);
}

.trial-meta span { margin-bottom: 6px; color: var(--red); font-size: 13px; font-weight: 850; text-transform: uppercase; letter-spacing: .05em; }
.trial-meta strong { font-size: 19px; letter-spacing: -.02em; }
.trial-meta small { margin-top: 3px; color: #766d69; font-size: 13px; }

.primary-cta {
  width: min(100%, 570px);
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 10px 9px 25px;
  color: white;
  background: var(--ink);
  border: 0;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(91, 0, 11, .22);
  text-decoration: none;
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -.015em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.primary-cta i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--gold);
  border-radius: 13px;
  font-size: 24px;
  font-style: normal;
  transition: transform .2s ease;
}

.primary-cta:hover { transform: translateY(-3px); box-shadow: 0 23px 46px rgba(91, 0, 11, .28); background: #151211; }
.primary-cta:hover i { transform: rotate(6deg); }
.primary-cta:focus-visible, .header-cta:focus-visible, .site-nav a:focus-visible, summary:focus-visible, button:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.cta-note {
  width: min(100%, 570px);
  margin: 13px 0 0;
  color: rgba(255, 255, 255, .74);
  font-size: 12px;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 470px;
  justify-self: end;
}

.visual-shadow {
  position: absolute;
  inset: 8% -5% -2% 9%;
  border-radius: 42px;
  background: rgba(73, 0, 8, .25);
  filter: blur(28px);
  transform: rotate(6deg);
}

.visual-card {
  position: relative;
  z-index: 1;
  padding: 22px 20px 18px;
  background: rgba(255, 255, 255, .98);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 35px;
  box-shadow: 0 30px 80px rgba(80, 0, 8, .3);
  transform: rotate(2.4deg);
  overflow: hidden;
}

.visual-logo { width: 83%; margin: 0 auto 12px; padding: 4px 7px 0; }
.benefits-art { width: 100%; border-radius: 24px; }

.float-badge {
  position: absolute;
  z-index: 4;
  display: grid;
  place-content: center;
  color: var(--ink);
  background: var(--gold);
  border: 7px solid rgba(255, 255, 255, .96);
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(77, 0, 8, .27);
  text-align: center;
  line-height: .95;
}

.float-badge strong { display: block; font-size: 29px; letter-spacing: -.055em; }
.float-badge small { font-size: 10px; font-weight: 750; line-height: 1.12; }
.float-badge span { font-size: 9px; font-weight: 850; text-transform: uppercase; }
.float-badge--top { width: 100px; height: 100px; top: 15%; right: -36px; transform: rotate(7deg); }
.float-badge--bottom { width: 112px; height: 112px; left: -48px; bottom: 11%; background: var(--mint); transform: rotate(-7deg); }

.hero-facts {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
  padding-right: 40%;
}

.hero-facts > div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.fact-icon {
  flex: 0 0 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 255, 255, .95);
  border-radius: 13px;
  font-size: 13px;
  font-weight: 900;
}

.hero-facts p { margin: 0; min-width: 0; }
.hero-facts strong, .hero-facts small { display: block; }
.hero-facts strong { font-size: 13px; }
.hero-facts small { margin-top: 2px; color: rgba(255, 255, 255, .7); font-size: 10px; line-height: 1.3; }

.section { padding: 112px 0; }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading h2,
.formats h2,
.how h2,
.faq h2,
.final-offer h2 {
  margin: 8px 0 0;
  font-size: clamp(42px, 5vw, 67px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.section-heading > p,
.faq-heading > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.kicker {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.kicker--light { color: var(--gold); }

.benefits { padding-top: 82px; }

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

.benefit-card {
  position: relative;
  min-height: 335px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.benefit-card:hover { transform: translateY(-6px); box-shadow: 0 24px 54px rgba(40, 22, 21, .1); }
.benefit-card--red { color: white; background: var(--red); border-color: transparent; }
.benefit-card--ink { color: white; background: var(--ink); border-color: transparent; }
.benefit-card--gold { background: #f7cc8e; }
.benefit-card--mint { background: var(--mint); }
.benefit-card--rose { background: var(--rose); }
.benefit-card--cream { background: #fff7e9; }

.benefit-number {
  position: relative;
  z-index: 2;
  display: inline-block;
  font-size: 55px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.07em;
}

.benefit-icon {
  position: absolute;
  width: 122px;
  height: 122px;
  right: 20px;
  top: 20px;
  display: grid;
  place-items: center;
  color: currentColor;
  border: 1px solid currentColor;
  border-radius: 38% 62% 55% 45% / 45% 42% 58% 55%;
  opacity: .17;
  transform: rotate(6deg);
}

.benefit-icon svg { width: 55px; fill: none; stroke: currentColor; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }
.benefit-card h3 { position: relative; z-index: 2; margin: 84px 0 10px; font-size: 22px; line-height: 1.15; letter-spacing: -.03em; }
.benefit-card p { position: relative; z-index: 2; margin: 0; max-width: 310px; font-size: 14px; line-height: 1.55; opacity: .76; }

.formats {
  position: relative;
  padding: 105px 0;
  color: white;
  background: var(--ink);
  overflow: hidden;
}

.formats::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: -140px;
  border: 1px solid rgba(246, 202, 133, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(246, 202, 133, .025), 0 0 0 180px rgba(246, 202, 133, .018);
}

.formats-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: 80px; align-items: center; }
.formats h2 { font-size: clamp(45px, 5.2vw, 72px); }
.formats-copy > p { max-width: 590px; margin: 25px 0 29px; color: rgba(255, 255, 255, .66); font-size: 17px; line-height: 1.65; }

.format-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.format-tags span { padding: 11px 15px; border: 1px solid rgba(255, 255, 255, .15); border-radius: 999px; color: rgba(255, 255, 255, .86); background: rgba(255, 255, 255, .05); font-size: 13px; font-weight: 680; }

.phone-scene { position: relative; min-height: 500px; display: grid; place-items: center; }
.phone { position: relative; z-index: 2; width: 270px; padding: 12px; background: #0d0b0a; border: 1px solid rgba(255, 255, 255, .15); border-radius: 44px; box-shadow: 0 35px 80px rgba(0, 0, 0, .48); transform: rotate(4deg); }
.phone-top { position: absolute; z-index: 5; top: 20px; left: 50%; width: 88px; height: 25px; background: #0d0b0a; border-radius: 999px; transform: translateX(-50%); }
.phone-screen { min-height: 505px; padding: 55px 18px 22px; color: var(--ink); background: linear-gradient(155deg, #fffdfa, #f6eadc); border-radius: 33px; overflow: hidden; }
.mini-brand { display: flex; align-items: center; gap: 9px; font-size: 14px; }
.mini-brand span { width: 32px; height: 32px; display: grid; place-items: center; color: white; background: var(--red); border-radius: 10px; font-size: 12px; font-weight: 950; }
.bonus-balance { margin: 50px 0 32px; padding: 25px 20px; color: white; background: var(--red); border-radius: 25px; box-shadow: 0 18px 35px rgba(237, 10, 31, .23); }
.bonus-balance small, .bonus-balance span { display: block; opacity: .76; }
.bonus-balance strong { display: block; margin: 5px 0; font-size: 54px; line-height: 1; letter-spacing: -.07em; }
.barcode { height: 92px; display: flex; justify-content: center; gap: 4px; padding: 15px 12px; background: white; border-radius: 16px; }
.barcode i { display: block; width: 3px; background: var(--ink); }
.barcode i:nth-child(3n) { width: 7px; }
.barcode i:nth-child(4n) { width: 2px; }
.phone-screen > p { margin: 16px 0 0; text-align: center; color: #716864; font-size: 12px; }
.scene-coin { position: absolute; z-index: 3; display: grid; place-items: center; color: var(--ink); background: var(--gold); border: 7px solid rgba(255, 255, 255, .92); border-radius: 50%; font-weight: 950; box-shadow: 0 20px 35px rgba(0, 0, 0, .25); }
.scene-coin--one { width: 112px; height: 112px; right: 4%; top: 13%; font-size: 27px; transform: rotate(9deg); }
.scene-coin--two { width: 82px; height: 82px; left: 6%; bottom: 16%; color: white; background: var(--red); font-size: 24px; transform: rotate(-12deg); }
.scene-leaf { position: absolute; width: 110px; height: 55px; background: var(--green); border-radius: 100% 0 100% 0; opacity: .85; }
.scene-leaf--one { right: 2%; bottom: 3%; transform: rotate(-25deg); }
.scene-leaf--two { width: 85px; height: 43px; left: 4%; top: 13%; background: #6daa78; transform: rotate(22deg); }

.conditions { background: #fff9f0; }
.section-heading--narrow { align-items: start; }
.condition-table { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius-md); background: white; box-shadow: 0 20px 55px rgba(75, 45, 36, .07); overflow: hidden; }
.condition-table > div { min-height: 175px; display: flex; flex-direction: column; padding: 28px 24px; border-right: 1px solid var(--line); }
.condition-table > div:last-child { border-right: 0; }
.condition-table span { margin-bottom: auto; color: #847973; font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .07em; }
.condition-table strong { margin-top: 30px; font-size: 20px; line-height: 1.15; letter-spacing: -.03em; }
.condition-table small { margin-top: 6px; color: #817773; font-size: 12px; line-height: 1.35; }
.legal-callout { display: flex; align-items: flex-start; gap: 15px; margin-top: 20px; padding: 20px 22px; border: 1px solid rgba(237, 10, 31, .15); border-radius: 18px; color: #6c5350; background: rgba(237, 10, 31, .035); }
.legal-callout > span { flex: 0 0 26px; height: 26px; display: grid; place-items: center; color: white; background: var(--red); border-radius: 50%; font-family: Georgia, serif; font-size: 15px; font-weight: 700; }
.legal-callout p { margin: 1px 0 0; font-size: 13px; line-height: 1.55; }

.how-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr); align-items: center; gap: clamp(55px, 8vw, 120px); }
.steps { display: grid; gap: 0; margin: 40px 0 0; padding: 0; list-style: none; }
.steps li { position: relative; display: grid; grid-template-columns: 55px 1fr; gap: 20px; padding: 0 0 29px; }
.steps li:not(:last-child)::after { content: ""; position: absolute; top: 47px; bottom: 4px; left: 22px; width: 1px; background: var(--line); }
.steps li > span { width: 45px; height: 45px; display: grid; place-items: center; color: var(--red); background: var(--rose); border-radius: 14px; font-size: 12px; font-weight: 900; }
.steps h3 { margin: 1px 0 7px; font-size: 19px; letter-spacing: -.025em; }
.steps p { margin: 0; color: #756c68; font-size: 14px; line-height: 1.55; }

.price-card { position: relative; padding: 34px; color: white; background: var(--ink); border-radius: var(--radius-lg); box-shadow: 0 28px 70px rgba(36, 32, 31, .25); overflow: hidden; }
.price-card-glow { position: absolute; width: 280px; height: 280px; right: -100px; top: -110px; border-radius: 50%; background: rgba(237, 10, 31, .4); filter: blur(10px); }
.price-card > img { position: relative; width: 270px; margin-bottom: 35px; padding: 10px; background: white; border-radius: 15px; }
.price-label { position: relative; display: block; color: var(--gold); font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.price { position: relative; display: flex; align-items: flex-start; margin: 5px 0 14px; line-height: 1; }
.price > strong { font-size: 104px; letter-spacing: -.08em; }
.price > span { margin: 13px 0 0 7px; font-size: 35px; font-weight: 800; }
.price > small { align-self: flex-end; margin: 0 0 12px 12px; color: rgba(255, 255, 255, .64); font-size: 13px; }
.price-next { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 26px; padding: 14px 0; border-top: 1px solid rgba(255, 255, 255, .14); border-bottom: 1px solid rgba(255, 255, 255, .14); }
.price-next span { color: rgba(255, 255, 255, .55); }
.primary-cta--dark { position: relative; width: 100%; min-height: 61px; color: var(--ink); background: var(--gold); box-shadow: none; }
.primary-cta--dark i { color: white; background: var(--red); }
.primary-cta--dark:hover { color: white; background: var(--red); box-shadow: none; }
.link-status { position: relative; margin: 13px 0 0; color: var(--gold); text-align: center; font-size: 11px; line-height: 1.4; }
.safe-note { position: relative; display: block; margin-top: 18px; color: rgba(255, 255, 255, .48); font-size: 10px; line-height: 1.45; text-align: center; }

.faq { background: #fff9f0; }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(60px, 8vw, 130px); align-items: start; }
.faq-heading { position: sticky; top: 120px; }
.faq-heading h2 { margin-bottom: 22px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; display: flex; justify-content: space-between; gap: 25px; align-items: center; padding: 25px 0; cursor: pointer; list-style: none; font-size: 18px; font-weight: 800; letter-spacing: -.02em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; flex: 0 0 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%; }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; top: 50%; left: 50%; width: 10px; height: 1.5px; background: var(--ink); transform: translate(-50%, -50%); transition: transform .2s ease; }
.faq-list summary span::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-list details[open] summary span::after { transform: translate(-50%, -50%) rotate(0); }
.faq-list details p { max-width: 700px; margin: -5px 54px 25px 0; color: #756c68; font-size: 14px; line-height: 1.65; }

.final-offer { position: relative; padding: 105px 0; color: white; text-align: center; background: var(--red); overflow: hidden; }
.final-offer::before { content: "+"; position: absolute; left: 3%; top: -90px; color: rgba(255, 255, 255, .08); font-size: 440px; line-height: 1; font-weight: 250; }
.final-inner { position: relative; z-index: 2; max-width: 860px; }
.final-offer h2 { margin-inline: auto; font-size: clamp(48px, 6vw, 78px); }
.final-offer p { max-width: 690px; margin: 24px auto 28px; color: rgba(255, 255, 255, .82); font-size: 18px; line-height: 1.55; }
.final-offer p strong { color: var(--gold); }
.primary-cta--light { max-width: 510px; margin: 0 auto; color: var(--ink); background: white; }
.primary-cta--light:hover { color: white; background: var(--ink); }
.final-offer > .shell > small { display: block; margin-top: 13px; color: rgba(255, 255, 255, .62); font-size: 11px; }
.final-decor { position: absolute; border: 1px solid rgba(255, 255, 255, .19); border-radius: 50%; }
.final-decor--one { width: 420px; height: 420px; right: -190px; top: -150px; }
.final-decor--two { width: 280px; height: 280px; left: -150px; bottom: -140px; }

.site-footer { padding: 55px 0 30px; background: #181514; color: white; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 60px; padding-bottom: 38px; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.publisher--footer { color: white; }
.footer-about p { max-width: 430px; margin: 16px 0 0; color: rgba(255, 255, 255, .5); font-size: 13px; line-height: 1.55; }
.footer-links { display: grid; gap: 11px; align-content: start; text-align: right; }
.footer-links a { color: rgba(255, 255, 255, .72); font-size: 13px; text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-legal { display: grid; gap: 12px; padding-top: 26px; color: rgba(255, 255, 255, .42); font-size: 10px; line-height: 1.55; }
.footer-legal p { margin: 0; }
.footer-legal details { border: 0; }
.footer-legal summary { display: inline-block; color: rgba(255, 255, 255, .68); cursor: pointer; font-size: 11px; }
.footer-legal details p { max-width: 850px; margin-top: 10px; }

.cookie-notice {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 20px;
  width: min(440px, calc(100% - 40px));
  padding: 18px;
  color: white;
  background: rgba(24, 21, 20, .96);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, .3);
  backdrop-filter: blur(14px);
}
.cookie-notice[hidden], .toast[hidden] { display: none; }
.cookie-notice p { margin: 0 0 13px; color: rgba(255, 255, 255, .75); font-size: 12px; line-height: 1.45; }
.cookie-notice > div { display: flex; gap: 8px; }
.cookie-notice button { min-height: 40px; padding: 0 14px; color: white; background: var(--red); border: 0; border-radius: 10px; font: inherit; font-size: 12px; font-weight: 800; cursor: pointer; }
.cookie-notice .cookie-secondary { color: rgba(255, 255, 255, .8); background: rgba(255, 255, 255, .1); }

.toast { position: fixed; z-index: 110; left: 50%; bottom: 24px; width: min(480px, calc(100% - 32px)); padding: 15px 20px; color: white; background: var(--ink); border: 1px solid rgba(255, 255, 255, .16); border-radius: 15px; box-shadow: 0 18px 45px rgba(0, 0, 0, .28); text-align: center; font-size: 13px; font-weight: 700; transform: translateX(-50%); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.benefit-card:nth-child(2) { transition-delay: .06s; }
.benefit-card:nth-child(3) { transition-delay: .12s; }
.benefit-card:nth-child(4) { transition-delay: .06s; }
.benefit-card:nth-child(5) { transition-delay: .12s; }
.benefit-card:nth-child(6) { transition-delay: .18s; }

@media (max-width: 1020px) {
  .hero { min-height: auto; padding-bottom: 85px; }
  .hero::after { display: none; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) 390px; gap: 45px; }
  .hero h1 { font-size: clamp(55px, 7vw, 76px); }
  .hero-facts { padding-right: 0; margin-top: 55px; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .condition-table { grid-template-columns: repeat(2, 1fr); }
  .condition-table > div:nth-child(2) { border-right: 0; }
  .condition-table > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .formats-grid { gap: 35px; }
  .scene-coin--one { right: -2%; }
  .scene-coin--two { left: -2%; }
  .how-grid { grid-template-columns: 1fr 380px; gap: 50px; }
}

@media (max-width: 820px) {
  .shell { width: min(calc(100% - 34px), var(--shell)); }
  .site-nav { display: none; }
  .hero { padding-top: 120px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .partner-label { margin-inline: auto; }
  .hero h1, .hero-lead, .trial-card, .primary-cta, .cta-note { margin-left: auto; margin-right: auto; }
  .hero-visual { width: min(470px, 89%); justify-self: center; margin-top: 18px; }
  .hero-facts { margin-top: 55px; }
  .section { padding: 85px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .formats-grid { grid-template-columns: 1fr; text-align: center; }
  .formats-copy > p { margin-inline: auto; }
  .format-tags { justify-content: center; }
  .phone-scene { min-height: 540px; }
  .how-grid { grid-template-columns: 1fr; }
  .price-card { width: min(100%, 480px); margin-inline: auto; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-heading { position: static; }
}

@media (max-width: 600px) {
  :root { --radius-lg: 28px; --radius-md: 20px; }
  html { scroll-padding-top: 78px; }
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .site-header { height: 72px; }
  .publisher { font-size: 14px; }
  .publisher-mark { width: 32px; border-radius: 10px; }
  .header-cta { min-height: 40px; padding-inline: 15px; }
  .hero { padding: 105px 0 70px; }
  .partner-label { margin-bottom: 21px; font-size: 10px; }
  .hero h1 { font-size: clamp(48px, 15.8vw, 68px); }
  .hero h1 em { margin-top: 7px; }
  .hero-lead { margin-top: 22px; font-size: 16px; line-height: 1.5; }
  .trial-card { grid-template-columns: 1fr; text-align: left; }
  .trial-main { display: grid; grid-template-columns: auto 1fr; align-items: end; column-gap: 10px; }
  .trial-main b { margin-bottom: 4px; }
  .trial-meta { border-top: 1px solid var(--line); border-left: 0; }
  .primary-cta { min-height: 62px; border-radius: 17px; font-size: 16px; }
  .primary-cta i { width: 44px; height: 44px; }
  .hero-visual { width: calc(100% - 25px); margin-top: 15px; }
  .visual-card { padding: 15px 13px 13px; border-radius: 28px; }
  .benefits-art { border-radius: 19px; }
  .float-badge--top { width: 84px; height: 84px; right: -20px; }
  .float-badge--bottom { width: 94px; height: 94px; left: -22px; }
  .float-badge strong { font-size: 24px; }
  .hero-facts { grid-template-columns: 1fr; gap: 12px; margin-top: 47px; padding-inline: 8px; }
  .hero-facts > div { padding: 10px 12px; background: rgba(255, 255, 255, .07); border-radius: 16px; }
  .section { padding: 72px 0; }
  .section-heading h2, .formats h2, .how h2, .faq h2, .final-offer h2 { font-size: clamp(38px, 11vw, 53px); }
  .section-heading > p, .faq-heading > p { font-size: 15px; }
  .benefit-grid { grid-template-columns: 1fr; gap: 13px; }
  .benefit-card { min-height: 290px; padding: 25px; }
  .benefit-number { font-size: 50px; }
  .benefit-card h3 { margin-top: 66px; }
  .formats { padding: 75px 0; }
  .formats-copy > p { font-size: 15px; }
  .phone-scene { min-height: 510px; transform: scale(.9); margin: -15px 0 -35px; }
  .scene-coin--one { right: -6%; }
  .scene-coin--two { left: -5%; }
  .condition-table { grid-template-columns: 1fr; }
  .condition-table > div { min-height: 145px; border-right: 0; border-bottom: 1px solid var(--line); }
  .condition-table > div:last-child { border-bottom: 0; }
  .condition-table > div:nth-child(2) { border-bottom: 1px solid var(--line); }
  .condition-table strong { margin-top: 24px; }
  .legal-callout { padding: 17px; }
  .price-card { padding: 27px 22px; }
  .price-card > img { width: 240px; }
  .price > strong { font-size: 90px; }
  .price > span { font-size: 31px; }
  .price > small { margin-left: 8px; }
  .faq-list summary { font-size: 16px; line-height: 1.35; }
  .faq-list details p { margin-right: 0; }
  .final-offer { padding: 78px 0; }
  .final-offer p { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-links { text-align: left; }
  .cookie-notice { right: 14px; bottom: 14px; width: calc(100% - 28px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
