:root {
  --bg: #050505;
  --bg-2: #0b0906;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --line: rgba(241, 207, 124, 0.22);
  --line-soft: rgba(255, 255, 255, 0.1);
  --gold: #d8b45d;
  --gold-2: #f4dc93;
  --gold-3: #9a6b1f;
  --text: #fff8e8;
  --muted: #c9c0ad;
  --muted-2: #938977;
  --danger: #ffefe0;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.5);
  --radius: 26px;
  --max: 1180px;
  --font-display: "Anton", Impact, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 180, 93, 0.16), transparent 36rem),
    radial-gradient(circle at 0% 18%, rgba(244, 220, 147, 0.08), transparent 30rem),
    linear-gradient(180deg, #060606 0%, var(--bg) 48%, #090806 100%);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(216, 180, 93, 0.16);
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
}

.brand-icon {
  flex-shrink: 0;
  width: 32px;
  height: auto;
}

.brand-text {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff8e8;
  white-space: nowrap;
}

.brand-text em {
  font-style: normal;
  color: #C6A85C;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

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

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.eyebrow,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(216, 180, 93, 0.09);
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(216, 180, 93, 0.9);
}

.hero {
  overflow: hidden;
  padding-top: 54px;
  padding-bottom: 86px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: 680px;
  height: 680px;
  right: -180px;
  top: 20px;
  background: rgba(216, 180, 93, 0.22);
  filter: blur(92px);
}

.hero::after {
  width: 360px;
  height: 360px;
  left: -170px;
  bottom: 50px;
  background: rgba(244, 220, 147, 0.08);
  filter: blur(70px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 54px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 20px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1;
}

h1,
h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

h1 {
  font-size: clamp(3.25rem, 10vw, 6.8rem);
  max-width: 680px;
}

h2 {
  font-size: clamp(2.6rem, 10vw, 5.8rem);
  max-width: 920px;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.24;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

.subhead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2.4vw, 1.34rem);
  line-height: 1.66;
}

.pain-list {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.pain-list li {
  position: relative;
  padding: 13px 14px 13px 42px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.046);
  color: #fff4de;
  font-weight: 800;
}

.pain-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translateY(-50%) rotate(45deg);
  background: var(--gold);
  box-shadow: 0 0 14px rgba(216, 180, 93, 0.7);
}

.positioning {
  color: var(--gold-2);
  font-size: 1.05rem;
  font-weight: 900;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 240, 190, 0.45);
  border-radius: 999px;
  padding: 0 24px;
  background: linear-gradient(135deg, #ffe29a, #d5a747 48%, #8d611c);
  color: #090704;
  box-shadow: 0 16px 42px rgba(216, 180, 93, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  font-weight: 950;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 20px 50px rgba(216, 180, 93, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  box-shadow: none;
  border-color: var(--line);
}

.microcopy {
  color: var(--muted-2);
  font-size: 0.98rem;
  line-height: 1.45;
}

.review-line {
  color: var(--gold-2);
  font-size: 0.98rem;
  font-weight: 850;
  letter-spacing: 0.01em;
}

.price-card,
.offer-card {
  display: grid;
  gap: 10px;
  width: fit-content;
  min-width: min(100%, 310px);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 20px;
  background: rgba(6, 5, 3, 0.96) radial-gradient(circle at 100% 0%, rgba(216, 180, 93, 0.18), transparent 12rem);
  box-shadow: var(--shadow);
}

.hero-offer {
  position: absolute;
  left: 0;
  bottom: 14px;
  z-index: 3;
  max-width: 330px;
  backdrop-filter: blur(18px);
}

@supports (-webkit-backdrop-filter: blur(1px)) {
  .offer-card, .hero-offer {
    background: rgba(5, 4, 2, 0.97) !important;
    border-color: rgba(216, 180, 93, 0.5);
  }
}

.price-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 22px;
  color: var(--muted);
  font-weight: 800;
}

.price-line s {
  color: rgba(255, 255, 255, 0.42);
}

.launch-price {
  font-size: 2.65rem;
  color: var(--gold-2);
  font-weight: 950;
  letter-spacing: -0.04em;
}

.offer-inclusions {
  display: grid;
  gap: 8px;
  color: #fff2d6;
  font-size: 0.94rem;
  font-weight: 800;
}

.offer-inclusions span {
  position: relative;
  padding-left: 18px;
}

.offer-inclusions span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-pill {
  border: 1px solid rgba(216, 180, 93, 0.25);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(216, 180, 93, 0.075);
  color: #fff4dd;
  font-size: 0.88rem;
  font-weight: 850;
}

.hero-visual {
  position: relative;
  isolation: isolate;
  display: grid;
  justify-items: center;
  align-items: end;
  min-height: 560px;
}

.book-orbit {
  position: absolute;
  inset: 9% -8% 6%;
  z-index: -1;
  border: 0;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(244, 220, 147, 0.24), rgba(216, 180, 93, 0.1) 34%, transparent 64%);
  filter: blur(18px);
}

.book-img {
  width: min(86vw, 600px);
  filter:
    drop-shadow(0 0 80px rgba(216, 180, 93, 0.45))
    drop-shadow(0 0 140px rgba(216, 180, 93, 0.2))
    drop-shadow(36px 48px 42px rgba(0, 0, 0, 0.88));
  animation: floatBook 5s ease-in-out infinite;
}

.sold-badge {
  position: absolute;
  top: 24px;
  right: 4px;
  z-index: 2;
  border: 1px solid rgba(244, 220, 147, 0.52);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(7, 6, 4, 0.82);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.42), 0 0 28px rgba(216, 180, 93, 0.24);
  color: var(--gold-2);
  font-size: 0.86rem;
  font-weight: 950;
}

@keyframes floatBook {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.section-head {
  display: grid;
  gap: 16px;
  margin-bottom: 38px;
}

.section-head p {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.13rem;
  line-height: 1.72;
}

.grid {
  display: grid;
  gap: 20px;
}

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

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 26px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03));
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.24);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.58;
}

.card h3 {
  margin-bottom: 9px;
  color: #fff5df;
}

.card p,
.card li {
  color: var(--muted);
  line-height: 1.66;
  font-size: 1rem;
}

.problem-layout {
  display: grid;
  gap: 22px;
}

.statement-block {
  border: 1px solid rgba(216, 180, 93, 0.34);
  border-radius: 34px;
  padding: clamp(28px, 5vw, 52px);
  background:
    linear-gradient(135deg, rgba(216, 180, 93, 0.16), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.statement-block p {
  max-width: 930px;
  color: #fff2d6;
  font-size: clamp(1.45rem, 3.2vw, 2.5rem);
  line-height: 1.22;
  letter-spacing: -0.035em;
  font-weight: 850;
}

.leak-list {
  display: grid;
  gap: 12px;
}

.leak-list div {
  display: grid;
  gap: 5px;
  border-bottom: 1px solid var(--line-soft);
  padding: 16px 0;
}

.leak-list strong {
  color: var(--gold-2);
  font-size: 1.02rem;
}

.leak-list span {
  color: var(--muted);
  line-height: 1.55;
}

.for-section {
  padding-top: 42px;
}

.for-card {
  border: 1px solid rgba(216, 180, 93, 0.32);
  border-radius: 30px;
  padding: clamp(24px, 4vw, 34px);
  background:
    radial-gradient(circle at 0 0, rgba(216, 180, 93, 0.16), transparent 16rem),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
}

.card ul {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding-left: 18px;
}

.number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border: 1px solid rgba(216, 180, 93, 0.38);
  border-radius: 12px;
  color: var(--gold-2);
  font-weight: 950;
}

.flow {
  display: grid;
  gap: 14px;
}

.flow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  background: rgba(216, 180, 93, 0.07);
  font-weight: 900;
  min-height: 92px;
}

.flow-step span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--gold);
  color: #060504;
  font-size: 0.84rem;
}

.split {
  display: grid;
  gap: 24px;
  align-items: center;
}

.offer-panel {
  border: 1px solid rgba(216, 180, 93, 0.35);
  border-radius: 32px;
  padding: clamp(22px, 5vw, 38px);
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 180, 93, 0.16), transparent 23rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

/* =============================================
   Preview Grid — Workbook page cards
   ============================================= */

.preview-grid {
  display: grid;
  gap: 18px;
}

.preview-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  border: 1px solid rgba(26, 20, 11, 0.15);
  border-radius: 26px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 247, 225, 0.98), rgba(232, 213, 170, 0.95));
  background-image:
    linear-gradient(180deg, rgba(255, 247, 225, 0.98), rgba(232, 213, 170, 0.95)),
    repeating-linear-gradient(transparent, transparent 27px, rgba(131, 88, 24, 0.12) 27px, rgba(131, 88, 24, 0.12) 28px);
  background-blend-mode: normal;
  color: #17110a;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.32);
}

.preview-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 6px;
  background: linear-gradient(90deg, #8d611c, #d5a747, #ffe29a);
}

.preview-card--featured {
  grid-column: 1 / -1;
  min-height: 280px;
}

.wb-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.wb-label {
  display: inline-flex;
  border: 1px solid rgba(131, 88, 24, 0.25);
  border-radius: 999px;
  padding: 6px 10px;
  color: #775119;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wb-page {
  font-size: 0.72rem;
  color: #a07530;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.preview-card h3 {
  max-width: 320px;
  color: #111;
  font-size: 1.35rem;
}

.preview-card p {
  max-width: 360px;
  margin-top: 12px;
  color: #4d412f;
  line-height: 1.6;
}

.wb-exercise {
  border: 1px dashed rgba(131, 88, 24, 0.3);
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 12px;
  background: rgba(131, 88, 24, 0.05);
}

.wb-exercise-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a07530;
  margin-bottom: 4px;
}

.wb-exercise-prompt {
  font-style: italic;
  color: #5a3f22;
  font-size: 0.92rem;
  line-height: 1.55;
}

.wb-lines {
  display: grid;
  gap: 0;
  margin-top: 16px;
}

.wb-lines i {
  display: block;
  height: 1px;
  background: rgba(98, 73, 31, 0.22);
  margin-top: 28px;
}

.wb-lines i:nth-child(1) { width: 100%; }
.wb-lines i:nth-child(2) { width: 88%; }
.wb-lines i:nth-child(3) { width: 72%; }
.wb-lines i:nth-child(4) { width: 60%; }
.wb-lines i:nth-child(5) { width: 45%; }

/* Legacy preview-lines kept for backward compat */
.preview-lines {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.preview-lines i {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(98, 73, 31, 0.16);
}

.preview-lines i:nth-child(2) {
  width: 84%;
}

.preview-lines i:nth-child(3) {
  width: 62%;
}

/* =============================================
   Not-a-course section
   ============================================= */

.not-a-course .nac-inner {
  border: 1px solid rgba(216, 180, 93, 0.3);
  border-radius: 36px;
  padding: clamp(30px, 6vw, 60px);
  background: radial-gradient(circle at 50% 0%, rgba(216, 180, 93, 0.1), transparent 22rem),
              rgba(255, 255, 255, 0.04);
  text-align: center;
}

.nac-inner h2 { margin: 16px auto 20px; max-width: 820px; }
.nac-inner .subhead { margin: 0 auto 38px; }

.nac-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  text-align: left;
  margin: 0 0 32px;
}

.nac-point {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.nac-icon { font-size: 1.4rem; }
.nac-point strong { color: var(--gold-2); font-size: 1rem; }
.nac-point span:last-child { color: var(--muted); font-size: 0.92rem; line-height: 1.5; }

.nac-cta-line {
  color: var(--gold-2);
  font-weight: 900;
  font-size: 1.1rem;
}

/* =============================================
   Reviews grid
   ============================================= */

.reviews-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.stars { color: var(--gold); font-size: 1rem; margin-bottom: 10px; }

/* =============================================
   Value list
   ============================================= */

.value-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.value-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  color: #fff1d4;
  font-weight: 780;
}

.value-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(216, 180, 93, 0.8);
}

.quote-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-card blockquote {
  margin: 0;
  color: #fff5e2;
  font-size: 1.08rem;
  line-height: 1.55;
}

.quote-card cite {
  margin-top: 18px;
  color: var(--gold-2);
  font-style: normal;
  font-weight: 900;
}

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

.guarantee {
  display: grid;
  gap: 20px;
  align-items: center;
  border: 1px solid rgba(216, 180, 93, 0.4);
  border-radius: 34px;
  padding: clamp(24px, 5vw, 46px);
  background:
    radial-gradient(circle at 18% 10%, rgba(216, 180, 93, 0.18), transparent 20rem),
    rgba(255, 255, 255, 0.055);
}

.shield {
  display: grid;
  place-items: center;
  width: 112px;
  height: 128px;
  margin: 0 auto;
  clip-path: polygon(50% 0, 92% 16%, 82% 78%, 50% 100%, 18% 78%, 8% 16%);
  background: linear-gradient(135deg, #ffe6a3, #c89432 54%, #7d5518);
  color: #070604;
  font-size: 1.8rem;
  font-weight: 950;
  box-shadow: 0 18px 44px rgba(216, 180, 93, 0.2);
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: #fff5df;
  font-weight: 900;
}

details p {
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.62;
  font-size: 1rem;
}

.final-cta {
  text-align: center;
  padding: 84px 0 118px;
}

.final-offer {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(216, 180, 93, 0.42);
  border-radius: 38px;
  padding: clamp(30px, 7vw, 70px);
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 180, 93, 0.22), transparent 26rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.final-cta .section-head,
.final-offer {
  justify-items: center;
}

.final-cta p {
  margin-inline: auto;
}

.final-price {
  margin: 0 auto 20px;
}

.final-offer .trust-row {
  justify-content: center;
  margin-top: 20px;
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  padding: 28px 0 96px;
  color: var(--muted-2);
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(216, 180, 93, 0.28);
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(18px);
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 220ms ease, opacity 220ms ease;
}

.show-sticky .sticky-cta {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-price {
  display: grid;
  gap: 1px;
}

.sticky-price span:first-child {
  color: var(--muted-2);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.sticky-price span:last-child {
  color: var(--gold-2);
  font-size: 1.35rem;
  font-weight: 950;
}

.sticky-cta .button {
  min-height: 46px;
  padding: 0 16px;
  white-space: nowrap;
}

.reveal {
  animation: rise 650ms ease both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (min-width: 680px) {
  .grid.two,
  .grid.four {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .problem-layout {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

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

  .guarantee {
    grid-template-columns: auto 1fr;
  }

  .shield {
    margin: 0;
  }

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

@media (min-width: 920px) {
  .nav-links {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 3fr) minmax(360px, 2fr);
    align-items: start;
  }

  .hero {
    min-height: calc(100vh - 75px);
    display: grid;
    align-items: center;
  }

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

  .hero-visual {
    align-self: start;
  }

  .grid.four {
    grid-template-columns: repeat(4, 1fr);
  }

  .flow {
    grid-template-columns: repeat(7, 1fr);
  }

  .flow-step {
    grid-template-columns: 1fr;
    align-content: start;
  }

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

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

  .sticky-cta {
    display: none;
  }

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

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

@media (max-width: 430px) {
  .brand-icon {
    width: 26px;
  }

  .nav .button {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .section {
    padding: 68px 0;
  }

  body {
    font-size: 17px;
  }

  .hero {
    padding-top: 34px;
  }

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

  .book-img {
    width: min(104vw, 460px);
  }

  .sold-badge {
    bottom: 140px;
  }

  .hero-offer {
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(100%, 330px);
  }

  .card,
  .offer-panel {
    border-radius: 20px;
  }
}
