:root {
  --navy-950: #06132c;
  --navy-900: #0a1c3d;
  --navy-800: #102754;
  --ink: #101828;
  --muted: #5f6b7d;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-soft: #eaf1ff;
  --gold: #f5b82e;
  --green: #07835f;
  --surface: #f5f7fb;
  --line: #dfe5ef;
  --white: #fff;
  --shadow-sm: 0 10px 30px rgba(16, 24, 40, .07);
  --shadow-md: 0 24px 70px rgba(16, 24, 40, .12);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

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

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

body:has(dialog[open]) {
  overflow: hidden;
}

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

img {
  height: auto;
}

button,
input {
  font: inherit;
}

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

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

button {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: -60px;
  left: 16px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 10px;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(223, 229, 239, .9);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(160%) blur(18px);
}

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

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(16, 24, 40, .08);
}

.brand span {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.brand strong {
  overflow: hidden;
  font-size: 14px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand small {
  display: none;
  margin-top: 2px;
  color: #7b8494;
  font-size: 11px;
}

.site-header nav {
  display: none;
  align-items: center;
  gap: 30px;
}

.site-header nav a {
  position: relative;
  color: #475467;
  font-size: 13px;
  font-weight: 650;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .2s ease;
}

.site-header nav a:hover::after {
  transform: scaleX(1);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

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

.button:active {
  transform: translateY(0);
}

.button:focus-visible,
.text-link:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .28);
  outline-offset: 3px;
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(37, 99, 235, .24);
}

.button-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 16px 34px rgba(37, 99, 235, .31);
}

.button-outline {
  color: #24324a;
  background: var(--white);
  border-color: #ccd5e2;
}

.button-outline:hover {
  border-color: #9eb0c9;
  background: #f8faff;
}

.button-ghost {
  color: #e7eeff;
  border-color: rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .08);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, .14);
}

.button-small {
  min-height: 40px;
  padding-inline: 15px;
  border-radius: 11px;
  font-size: 12px;
}

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

.header-price-link {
  flex: 0 0 auto;
  padding: 9px 12px;
  color: #1f5fc4;
  border: 1px solid #c9d9ff;
  border-radius: 999px;
  background: #eff5ff;
  font-size: 11px;
  font-weight: 850;
}

.text-link {
  color: var(--blue);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(37, 99, 235, .35);
  text-underline-offset: 4px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 46px 0 58px;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 8%, rgba(73, 110, 255, .34), transparent 34%),
    radial-gradient(circle at 10% 90%, rgba(88, 59, 210, .34), transparent 34%),
    linear-gradient(140deg, var(--navy-950), #102a62 68%, #21105b);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 255, 255, .12);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.hero-glow-one {
  width: 260px;
  height: 260px;
  top: -80px;
  right: -80px;
  background: rgba(43, 112, 255, .22);
}

.hero-glow-two {
  width: 220px;
  height: 220px;
  bottom: -100px;
  left: -80px;
  background: rgba(110, 60, 255, .2);
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: #c9d7f4;
  font-size: 12px;
  font-weight: 700;
}

.eyebrow span {
  padding: 7px 10px;
  color: var(--white);
  background: linear-gradient(135deg, #1479f8, #7058f6);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(57, 100, 245, .3);
}

.mobile-hero-visual {
  position: relative;
  overflow: hidden;
  margin: 26px 0 28px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 23px;
  background: #0b1b3e;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
}

.mobile-hero-visual img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.mobile-product-meta {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 12px;
  color: #1c2434;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

.mobile-product-meta div {
  min-width: 0;
}

.mobile-product-meta small,
.mobile-product-meta strong {
  display: block;
}

.mobile-product-meta small {
  color: #687386;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .04em;
}

.mobile-product-meta strong {
  margin-top: 2px;
  color: #e23c31;
  font-size: 20px;
  letter-spacing: -.035em;
}

.mobile-product-meta del {
  margin-left: 4px;
  color: #667085;
  font-size: 9px;
}

.mobile-product-meta b {
  padding: 7px 9px;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(120deg, #c82c23, #b93c0a);
  font-size: 9px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(240, 68, 56, .25);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 17px;
  font-size: clamp(38px, 9.8vw, 54px);
  line-height: 1.02;
  letter-spacing: -.052em;
  text-wrap: balance;
}

.hero h1 span {
  color: #9fc0ff;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 0;
  color: #c9d4ea;
  font-size: 15px;
  line-height: 1.55;
}

.hero-actions {
  display: grid;
  gap: 14px;
  margin-top: 23px;
}

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

.hero-primary-cta {
  position: relative;
  min-height: 68px;
  justify-content: space-between;
  overflow: hidden;
  padding: 9px 10px 9px 19px;
  color: #fff;
  border-color: rgba(255, 255, 255, .28);
  background: linear-gradient(120deg, #3479f6 0%, #5365f4 52%, #7653f3 100%);
  box-shadow:
    0 18px 38px rgba(44, 91, 241, .42),
    inset 0 1px 0 rgba(255, 255, 255, .28);
}

.hero-primary-cta::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 150%;
  top: -25%;
  left: -110px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  transform: skewX(-18deg);
  animation: cta-shine 4.5s ease-in-out infinite;
}

.hero-primary-cta > span:first-child {
  position: relative;
  z-index: 1;
  display: block;
  text-align: left;
}

.hero-primary-cta strong,
.hero-primary-cta small {
  display: block;
}

.hero-primary-cta strong {
  font-size: 16px;
}

.hero-primary-cta small {
  margin-top: 4px;
  color: #e5ecff;
  font-size: 10px;
  font-weight: 700;
}

.hero-primary-cta .cta-arrow {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
}

.hero-primary-cta:hover {
  background: linear-gradient(120deg, #2469e8, #4a55e7 52%, #6742e7);
  box-shadow: 0 22px 46px rgba(44, 91, 241, .5);
}

.hero-secondary-cta {
  color: #fff;
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .11);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16);
}

.hero-secondary-cta:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .18);
}

.hero-preview-link {
  justify-self: center;
  padding: 4px 6px;
  color: #dce7ff;
  font-size: 12px;
  font-weight: 750;
}

.hero-preview-link span {
  margin-left: 4px;
  color: #8fb6ff;
}

.hero-checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 17px;
}

.hero-checkout-steps div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 10px;
  color: #dfe8fb;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 14px;
  background: rgba(255, 255, 255, .07);
}

.hero-checkout-steps b {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #06245b;
  border-radius: 50%;
  background: #aecdff;
  font-size: 11px;
  font-weight: 950;
}

.hero-checkout-steps span {
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.trust-row div {
  min-width: 0;
}

.trust-row strong,
.trust-row span {
  display: block;
}

.commerce-benefits {
  position: relative;
  z-index: 2;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 24, 40, .05);
}

.commerce-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px;
}

.commerce-benefit-grid > div {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 6px;
  text-align: center;
}

.commerce-benefit-grid span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: #2f6ce5;
  border: 1px solid #dbe6ff;
  border-radius: 10px;
  background: #f1f6ff;
}

.commerce-benefit-grid svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.commerce-benefit-grid strong {
  color: #344054;
  font-size: 9px;
  line-height: 1.25;
}

.trust-row strong {
  font-size: 13px;
}

.trust-row span {
  margin-top: 3px;
  color: #9fb0cd;
  font-size: 9px;
  line-height: 1.35;
}

.hero-product {
  display: none;
}

.problem-section,
.inside-section,
.preview-section,
.library-section,
.routine-section,
.fit-section,
.creator-section,
.offer-section,
.faq-section {
  padding: 68px 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-heading h2,
.inside-copy h2,
.routine-copy h2,
.fit-card h2,
.creator-card h2,
.offer-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 8vw, 46px);
  line-height: 1.06;
  letter-spacing: -.042em;
  text-wrap: balance;
}

.section-heading p,
.routine-copy > p,
.creator-card p,
.offer-copy > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.problem-section {
  color: var(--white);
  background: var(--navy-950);
}

.problem-section .section-kicker {
  color: #8bb5ff;
}

.problem-section .section-heading p {
  color: #aebdd6;
}

.feature-grid {
  display: grid;
  gap: 12px;
}

.feature-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  background: rgba(255, 255, 255, .055);
}

.feature-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 900;
}

.icon-blue {
  color: #b9d2ff;
  background: rgba(58, 119, 255, .22);
}

.icon-violet {
  color: #d3c1ff;
  background: rgba(129, 86, 239, .2);
}

.icon-green {
  color: #8ee4c7;
  background: rgba(24, 167, 120, .18);
}

.icon-orange {
  color: #ffd47a;
  background: rgba(230, 151, 24, .18);
}

.feature-card h3 {
  margin: 18px 0 8px;
  font-size: 17px;
  letter-spacing: -.02em;
}

.feature-card p {
  margin: 0;
  color: #aebbd0;
  font-size: 13px;
  line-height: 1.65;
}

.inside-section {
  overflow: hidden;
}

.inside-grid {
  display: grid;
  gap: 38px;
}

.inside-copy h2 {
  margin-bottom: 26px;
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.check-list li > span {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 10px;
  font-size: 10px;
  font-weight: 900;
}

.check-list div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.check-list strong {
  font-size: 14px;
}

.check-list small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.sample-sheet {
  padding: 18px;
  border: 1px solid #dce3ed;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.sheet-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 2px 2px 14px;
  color: #667085;
}

.sheet-top > div {
  display: flex;
  gap: 5px;
}

.sheet-top > div span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d2d8e2;
}

.sheet-top small {
  font-size: 9px;
}

.word-row {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 5px 8px;
  margin-bottom: 9px;
  padding: 14px 12px;
  border-left: 3px solid;
  border-radius: 10px;
  background: #f8faff;
}

.word-number {
  padding-top: 4px;
  color: #667085;
  font-size: 10px;
}

.word-main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}

.word-main strong {
  font-size: 16px;
}

.word-main em {
  color: var(--blue);
  font-size: 11px;
}

.word-main b {
  padding: 3px 5px;
  color: #fff;
  border-radius: 5px;
  font-size: 8px;
}

.meaning {
  grid-column: 2;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.word-row small {
  grid-column: 2;
  color: #667085;
  font-size: 10px;
}

.verb {
  border-color: #2c73ee;
}

.verb .word-main b {
  background: #1f5fc4;
}

.prep {
  border-color: #7b8496;
}

.prep .word-main b {
  background: #5e687a;
}

.adj {
  border-color: #ef781e;
}

.adj .word-main b {
  background: #ad4b00;
}

.sheet-note {
  padding: 9px 7px 2px;
  color: #667085;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.preview-section {
  background: var(--surface);
}

.preview-gallery {
  display: grid;
  gap: 16px;
}

.preview-card {
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease;
}

.preview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.preview-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.preview-card > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px;
}

.preview-card strong {
  font-size: 14px;
}

.preview-card small {
  color: var(--blue);
  font-size: 10px;
  font-weight: 750;
}

.library-section {
  overflow: hidden;
}

.library-intro {
  display: grid;
  gap: 24px;
  margin-bottom: 34px;
}

.library-intro .section-heading {
  margin: 0;
}

.library-visual {
  width: 100%;
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}

.product-grid {
  display: grid;
  gap: 16px;
}

.product-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.product-card:hover {
  border-color: #c5d2e4;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-preview {
  overflow: hidden;
  display: block;
  padding: 0;
  border: 0;
  background: #eef2f8;
  cursor: zoom-in;
}

.product-preview img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  transition: transform .35s ease;
}

.product-preview:hover img {
  transform: scale(1.025);
}

.product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.level-tag {
  align-self: flex-start;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.level-foundation {
  color: #2455c7;
  background: #e9efff;
}

.level-speaking {
  color: #087255;
  background: #dff8ee;
}

.level-ielts {
  color: #8a334f;
  background: #ffe8ef;
}

.level-complete {
  color: #704d00;
  background: #fff0b8;
}

.level-audio {
  color: #6340c8;
  background: #eee8ff;
}

.product-body h3 {
  margin: 14px 0 8px;
  font-size: 19px;
  line-height: 1.22;
  letter-spacing: -.025em;
}

.product-body > p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.product-buy {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-buy > div {
  display: flex;
  flex-direction: column;
}

.product-buy strong {
  font-size: 20px;
  letter-spacing: -.03em;
  white-space: nowrap;
}

.product-buy s {
  color: #8a93a3;
  font-size: 10px;
}

.product-buy .button {
  min-height: 42px;
  padding-inline: 13px;
  font-size: 11px;
}

.product-card-featured {
  color: var(--white);
  border-color: #173771;
  background: linear-gradient(150deg, #0a1a39, #112d64);
}

.bundle-image {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
}

.product-card-featured .product-body > p {
  color: #b9c6db;
}

.product-card-featured .product-buy s {
  color: #96a6c0;
}

.product-card-audio {
  border-color: #ded5ff;
  background:
    radial-gradient(circle at 14% 0, rgba(126, 87, 255, .16), transparent 34%),
    #fff;
}

.audio-cover {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  display: grid;
  align-content: end;
  padding: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 75% 20%, rgba(255, 255, 255, .25), transparent 18%),
    linear-gradient(145deg, #4f35c8, #120b3c 68%);
}

.audio-cover::before {
  content: "";
  position: absolute;
  inset: auto -40px -80px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .11);
}

.audio-disc {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, #fff 0 7px, transparent 8px),
    conic-gradient(from 45deg, #ffdd70, #f76bff, #5ed8ff, #ffdd70);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .24);
}

.audio-disc span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #15102f;
}

.audio-wave {
  display: flex;
  align-items: end;
  gap: 6px;
  height: 54px;
  margin-bottom: 20px;
}

.audio-wave i {
  width: 8px;
  border-radius: 999px;
  background: linear-gradient(#ffe077, #67e8f9);
  box-shadow: 0 0 18px rgba(103, 232, 249, .45);
}

.audio-wave i:nth-child(1) { height: 22px; }
.audio-wave i:nth-child(2) { height: 44px; }
.audio-wave i:nth-child(3) { height: 30px; }
.audio-wave i:nth-child(4) { height: 52px; }
.audio-wave i:nth-child(5) { height: 26px; }
.audio-wave i:nth-child(6) { height: 38px; }
.audio-wave i:nth-child(7) { height: 18px; }

.audio-cover strong,
.audio-cover small {
  position: relative;
  z-index: 1;
  display: block;
}

.audio-cover strong {
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.audio-cover small {
  margin-top: 6px;
  color: #d9d2ff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.product-card-plus {
  border-color: #5b3a00;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 212, 95, .2), transparent 30%),
    linear-gradient(145deg, #15100a, #3d2500 72%);
}

.product-card-pdf-only {
  color: var(--ink);
  border-color: #d7dde8;
  background: #f8faff;
}

.product-card-pdf-only .product-body > p {
  color: #667085;
}

.product-card-pdf-only .product-buy s {
  color: #8a93a3;
}

.product-card-pdf-only .saving-badge {
  color: #3b4a64;
  background: #e9eef7;
}

.audio-bundle-visual {
  position: relative;
  overflow: hidden;
}

.audio-bundle-visual > img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  opacity: .78;
  filter: saturate(1.08) contrast(1.04);
}

.mini-audio-card {
  position: absolute;
  right: 14px;
  bottom: 14px;
  min-width: 120px;
  padding: 12px 13px;
  color: #201300;
  border-radius: 16px;
  background: #ffd45f;
  box-shadow: 0 18px 34px rgba(0, 0, 0, .25);
}

.mini-audio-card span,
.mini-audio-card strong,
.mini-audio-card small {
  display: block;
}

.mini-audio-card span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  color: #fff;
  border-radius: 50%;
  background: #111827;
  font-size: 11px;
}

.mini-audio-card strong {
  font-size: 18px;
  letter-spacing: -.03em;
}

.mini-audio-card small {
  color: rgba(32, 19, 0, .72);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.saving-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  padding: 8px 10px;
  color: #3f2c00;
  background: #ffd45f;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
  font-size: 10px;
  font-weight: 900;
}

.product-note {
  max-width: 760px;
  margin: 18px auto 0;
  color: #667085;
  font-size: 11px;
  line-height: 1.65;
  text-align: center;
}

.routine-section {
  background: #f8faff;
}

.routine-grid {
  display: grid;
  gap: 34px;
}

.routine-visual {
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(145deg, #e9efff, #fff4d7);
}

.calendar-card {
  padding: 20px;
  border: 1px solid #e1e6ee;
  border-radius: 17px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.calendar-head span {
  font-size: 13px;
  font-weight: 850;
}

.calendar-head strong {
  color: var(--blue);
  font-size: 11px;
}

.calendar-days {
  display: grid;
  gap: 8px;
  padding: 15px 0;
}

.calendar-days div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 2px 8px;
  padding: 11px;
  border-radius: 9px;
  background: #f6f8fb;
}

.calendar-days span {
  grid-row: span 2;
  color: #667085;
  font-size: 9px;
}

.calendar-days strong {
  font-size: 12px;
}

.calendar-days small {
  color: #667085;
  font-size: 9px;
}

.progress-line {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #e6eaf1;
}

.progress-line span {
  width: 42%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), #7659f2);
}

.calendar-foot {
  display: block;
  margin-top: 12px;
  color: #667085;
  font-size: 9px;
  line-height: 1.45;
}

.plain-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.plain-badges span {
  padding: 8px 10px;
  color: #34435d;
  border: 1px solid #dfe5ef;
  border-radius: 9px;
  background: #fff;
  font-size: 10px;
  font-weight: 750;
}

.fit-section {
  padding-top: 0;
  background: #f8faff;
}

.fit-grid {
  display: grid;
  gap: 14px;
}

.fit-card {
  padding: 27px;
  border: 1px solid;
  border-radius: 22px;
}

.fit-yes {
  border-color: #c6eadc;
  background: #effaf5;
}

.fit-no {
  border-color: #e1e5ec;
  background: #fff;
}

.fit-label {
  display: inline-block;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.fit-yes .fit-label {
  color: #087550;
  background: #d5f3e6;
}

.fit-no .fit-label {
  color: #626b7b;
  background: #e9ebef;
}

.fit-card h2 {
  margin: 16px 0 20px;
  font-size: 25px;
}

.fit-card ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding-left: 19px;
  color: #4f596b;
  font-size: 12px;
  line-height: 1.55;
}

.creator-section {
  padding-top: 0;
  background: #f8faff;
}

.creator-card {
  display: grid;
  gap: 20px;
  padding: 28px;
  color: var(--white);
  border-radius: 25px;
  background:
    radial-gradient(circle at 88% 12%, rgba(84, 125, 255, .28), transparent 32%),
    linear-gradient(145deg, #071631, #102a59);
  box-shadow: var(--shadow-md);
}

.creator-card > img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, .09);
}

.creator-card .section-kicker {
  color: #8fb7ff;
}

.creator-card h2 {
  font-size: 27px;
}

.creator-card p {
  color: #afbdd3;
  font-size: 13px;
}

.creator-card .text-link {
  color: #fff;
}

.creator-stat {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .045);
  text-align: center;
}

.creator-stat strong,
.creator-stat span {
  display: block;
}

.creator-stat strong {
  font-size: 27px;
}

.creator-stat span {
  color: #9faec5;
  font-size: 10px;
}

.offer-section {
  color: var(--white);
  background:
    radial-gradient(circle at 8% 15%, rgba(66, 111, 245, .24), transparent 30%),
    linear-gradient(145deg, #071631, #102a59);
}

.offer-grid {
  display: grid;
  gap: 34px;
}

.offer-copy .section-kicker {
  color: #8fb7ff;
}

.offer-copy > p {
  color: #b4c0d4;
}

.offer-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: #e7ecf5;
  font-size: 12px;
}

.offer-list span {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  margin-right: 8px;
  color: #075b43;
  border-radius: 50%;
  background: #79dfbb;
  font-size: 10px;
  font-weight: 900;
}

.price-card {
  padding: 26px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .25);
}

.offer-pricing-stack {
  display: grid;
  gap: 16px;
}

.price-card-highlight {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 212, 95, .9);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, .34),
    0 0 0 1px rgba(255, 212, 95, .18) inset;
}

.price-card-entry {
  border-color: #b9ceff;
  box-shadow:
    0 28px 74px rgba(0, 0, 0, .22),
    0 0 0 1px rgba(52, 121, 246, .12) inset;
}

.price-card-entry .price-label {
  color: #1f5fd2;
}

.price-card-entry .button {
  background: linear-gradient(120deg, #f04438, #f97316);
  box-shadow: 0 16px 32px rgba(240, 68, 56, .28);
}

.price-card-entry .button:hover {
  background: linear-gradient(120deg, #dc2626, #ea580c);
}

.price-card-highlight::before {
  content: "Nên chọn";
  position: absolute;
  top: 16px;
  right: -34px;
  width: 132px;
  padding: 6px 0;
  color: #3f2c00;
  background: #ffd45f;
  font-size: 9px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(35deg);
}

.price-label {
  color: #687386;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.old-price {
  margin-top: 10px;
  color: #667085;
  font-size: 11px;
  text-decoration: line-through;
}

.price {
  display: flex;
  align-items: flex-start;
  margin: 7px 0 4px;
}

.price strong {
  font-size: 45px;
  line-height: 1;
  letter-spacing: -.055em;
}

.price span {
  margin: 4px 0 0 4px;
  font-size: 18px;
  font-weight: 900;
}

.price-card > p {
  margin-bottom: 20px;
  color: #667085;
  font-size: 11px;
}

.price-card .button {
  width: 100%;
}

.or-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 13px 0;
  color: #667085;
  font-size: 9px;
}

.or-divider::before,
.or-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}

.price-card > small {
  display: block;
  margin-top: 12px;
  color: #667085;
  font-size: 9px;
  line-height: 1.55;
  text-align: center;
}

.secure-line {
  margin-top: 17px;
  padding-top: 15px;
  color: #5f6b7d;
  border-top: 1px solid var(--line);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.secure-line span {
  color: var(--green);
}

.faq-grid {
  display: grid;
  gap: 28px;
}

.faq-grid .section-heading {
  margin-bottom: 0;
}

.accordion {
  border-top: 1px solid var(--line);
}

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

.accordion summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  list-style: none;
}

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

.accordion summary span {
  color: var(--blue);
  font-size: 22px;
  font-weight: 400;
  transition: transform .2s ease;
}

.accordion details[open] summary span {
  transform: rotate(45deg);
}

.accordion p {
  margin: -3px 34px 20px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

footer {
  padding: 42px 0 94px;
  border-top: 1px solid var(--line);
  background: #fff;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: #536075;
  font-size: 11px;
  font-weight: 700;
}

.footer-grid > p {
  margin: 0;
  color: #667085;
  font-size: 11px;
  line-height: 1.5;
}

.mobile-bar {
  position: fixed;
  z-index: 90;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 14px calc(9px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(216, 224, 236, .95);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 -10px 32px rgba(16, 24, 40, .12);
  backdrop-filter: blur(16px);
}

.mobile-bar div {
  min-width: 0;
}

.mobile-bar small,
.mobile-bar strong {
  display: block;
}

.mobile-bar small {
  color: #707a8b;
  font-size: 9px;
}

.mobile-bar strong {
  margin-top: 1px;
  font-size: 15px;
  letter-spacing: -.02em;
  white-space: nowrap;
}

.mobile-bar .button {
  min-height: 46px;
  flex: 0 0 auto;
  padding-inline: 18px;
  border-radius: 15px;
  background: linear-gradient(120deg, #3479f6, #6555ee);
  box-shadow: 0 10px 24px rgba(52, 100, 239, .32);
}

.lightbox,
.checkout-dialog {
  width: min(calc(100% - 24px), 780px);
  max-height: calc(100dvh - 24px);
  overflow: auto;
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 30px 100px rgba(0, 0, 0, .34);
}

.lightbox::backdrop,
.checkout-dialog::backdrop {
  background: rgba(5, 12, 26, .78);
  backdrop-filter: blur(7px);
}

.lightbox {
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.lightbox img {
  width: auto;
  max-height: calc(100dvh - 40px);
  margin: auto;
  border-radius: 18px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, .5);
}

.lightbox-close,
.dialog-close {
  position: absolute;
  z-index: 3;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #e2e7ef;
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 24px rgba(16, 24, 40, .14);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.lightbox-close {
  top: -12px;
  right: -5px;
}

.checkout-step {
  padding: 34px 20px 24px;
}

.checkout-kicker {
  display: inline-block;
  margin-bottom: 9px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.checkout-step h2 {
  margin: 0;
  padding-right: 34px;
  font-size: 27px;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.checkout-step > p {
  margin: 9px 20px 20px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.checkout-product-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 10px;
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid #dce4f1;
  border-radius: 13px;
  background: #f6f9ff;
}

.checkout-product-summary span {
  grid-column: 1 / -1;
  color: #778296;
  font-size: 9px;
}

.checkout-product-summary strong {
  font-size: 12px;
}

.checkout-product-summary b {
  color: var(--blue);
  font-size: 13px;
}

#checkout-form {
  display: grid;
  gap: 14px;
}

#checkout-form label {
  display: grid;
  gap: 6px;
  color: #344054;
  font-size: 11px;
  font-weight: 750;
}

#checkout-form label small {
  color: #8a93a3;
  font-weight: 500;
}

#checkout-form input[type="text"],
#checkout-form input[type="email"] {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  color: var(--ink);
  border: 1px solid #cfd7e3;
  border-radius: 11px;
  background: #fff;
  font-size: 13px;
}

#checkout-form input:focus {
  border-color: var(--blue);
}

#checkout-form .consent-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #667085;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
}

.consent-row input {
  margin-top: 2px;
}

.consent-row a {
  color: var(--blue);
  font-weight: 700;
}

#checkout-form .button {
  width: 100%;
}

.checkout-safe-note {
  margin: -4px 0 0;
  color: #667085;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.form-error {
  min-height: 17px;
  margin: -4px 0 0;
  color: #bd2c2c;
  font-size: 10px;
}

.qr-layout {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.qr-frame {
  width: min(260px, 100%);
  overflow: hidden;
  display: grid;
  place-items: center;
  margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #f6f7fa;
}

.qr-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.payment-details {
  display: grid;
  margin: 0;
}

.payment-details > div {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.payment-details dt {
  color: #818a9a;
  font-size: 9px;
}

.payment-details dd {
  margin: 3px 0 0;
  overflow-wrap: anywhere;
  font-size: 12px;
  font-weight: 850;
}

.payment-details button {
  margin-left: 5px;
  padding: 3px 6px;
  color: var(--blue);
  border: 0;
  border-radius: 5px;
  background: var(--blue-soft);
  cursor: pointer;
  font-size: 8px;
  font-weight: 800;
}

.payment-details .important {
  margin-top: 8px;
  padding: 11px;
  border: 1px solid #f0dc8d;
  border-radius: 10px;
  background: #fff5cf;
}

.payment-details .important dd {
  color: #745000;
  font-size: 15px;
  letter-spacing: .03em;
}

.payment-warning {
  margin: 15px 0;
  padding: 11px;
  color: #744f00;
  border-radius: 9px;
  background: #fff8dc;
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

.checkout-step > .button {
  width: 100%;
}

.checkout-note {
  margin: 10px 0 0 !important;
  color: #7d8696 !important;
  font-size: 9px !important;
  text-align: center;
}

.status-step {
  text-align: center;
}

.status-step .checkout-kicker {
  margin-top: 12px;
}

.status-step h2 {
  padding: 0;
}

.status-step > p {
  max-width: 510px;
  margin: 10px auto 20px;
}

.status-step .button {
  margin-top: 10px;
}

.status-spinner {
  width: 45px;
  height: 45px;
  margin: 0 auto 12px;
  border: 4px solid #e5ebf5;
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin .9s linear infinite;
}

.order-reference {
  display: inline-block;
  margin: 5px 0 10px;
  padding: 9px 12px;
  color: #5e687a;
  border-radius: 8px;
  background: #f2f4f8;
  font-size: 10px;
}

.status-product {
  margin: -6px 0 3px;
  color: #3b4a64;
  font-size: 10px;
  font-weight: 800;
}

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

.js .reveal {
  opacity: 1;
  transform: translateY(16px);
  transition: transform .6s ease;
}

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

.js .hero .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.delay-one {
  transition-delay: .07s;
}

.delay-two {
  transition-delay: .14s;
}

.delay-three {
  transition-delay: .21s;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes cta-shine {
  0%,
  62% {
    left: -110px;
  }

  82%,
  100% {
    left: calc(100% + 30px);
  }
}

@media (max-width: 959px) {
  .hero {
    padding-top: 18px;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
  }

  .mobile-hero-visual {
    order: 1;
    width: 100%;
    max-width: 600px;
    align-self: center;
    margin: 0 0 22px;
  }

  .eyebrow {
    order: 2;
    margin-bottom: 15px;
  }

  .hero h1 {
    order: 3;
  }

  .hero-lead {
    order: 4;
  }

  .hero-actions {
    order: 5;
  }

  .trust-row {
    order: 6;
  }
}

@media (min-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 48px));
  }

  .brand small {
    display: block;
  }

  .hero-actions {
    display: flex;
    align-items: center;
  }

  .hero-actions .button {
    width: auto;
    min-width: 270px;
  }

  .feature-grid,
  .product-grid,
  .fit-grid,
  .preview-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .checkout-step {
    padding: 40px;
  }

  .qr-layout {
    grid-template-columns: 240px 1fr;
    align-items: center;
  }
}

@media (min-width: 760px) {
  .problem-section,
  .inside-section,
  .preview-section,
  .library-section,
  .routine-section,
  .fit-section,
  .creator-section,
  .offer-section,
  .faq-section {
    padding: 90px 0;
  }

  .inside-grid,
  .routine-grid {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 60px;
  }

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

  .library-intro {
    grid-template-columns: 1fr 430px;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
  }

  .creator-card {
    grid-template-columns: auto 1fr 140px;
    align-items: center;
    gap: 25px;
    padding: 34px;
  }

  .offer-grid {
    grid-template-columns: 1fr 390px;
    align-items: center;
    gap: 70px;
  }

  .faq-grid {
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
  }

  footer {
    padding-bottom: 42px;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .footer-brand {
    grid-row: span 2;
  }

  .footer-links {
    justify-content: flex-end;
  }

  .footer-grid > p {
    text-align: right;
  }

  .mobile-bar {
    display: none;
  }
}

@media (min-width: 960px) {
  .nav-wrap {
    min-height: 72px;
  }

  .site-header nav {
    display: flex;
  }

  .hero {
    min-height: 720px;
    display: grid;
    align-items: center;
    padding: 72px 0 78px;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
    align-items: center;
    gap: 60px;
  }

  .mobile-hero-visual {
    display: none;
  }

  .hero h1 {
    font-size: clamp(54px, 5vw, 72px);
  }

  .hero-product {
    display: block;
  }

  .hero-ad-visual {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 32px;
    background: #0c1b3b;
    box-shadow: 0 36px 90px rgba(0, 0, 0, .35);
    transform: rotate(1deg);
  }

  .hero-ad-visual img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
  }

  .hero-price-chip,
  .hero-save-chip {
    position: absolute;
    padding: 12px 14px;
    color: var(--ink);
    border-radius: 14px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
    backdrop-filter: blur(12px);
  }

  .hero-price-chip {
    bottom: 18px;
    left: 18px;
  }

  .hero-save-chip {
    top: 18px;
    right: 18px;
    color: #493100;
    background: #ffd45f;
  }

  .hero-price-chip small,
  .hero-price-chip strong,
  .hero-save-chip strong,
  .hero-save-chip span {
    display: block;
  }

  .hero-price-chip small,
  .hero-save-chip span {
    font-size: 9px;
  }

  .hero-price-chip strong,
  .hero-save-chip strong {
    font-size: 18px;
  }

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

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

  .product-preview img,
  .bundle-image {
    aspect-ratio: 1;
  }

  .product-buy {
    align-items: stretch;
    flex-direction: column;
  }

  .product-buy .button {
    width: 100%;
  }
}

@media (min-width: 1180px) {
  .product-buy {
    align-items: center;
    flex-direction: row;
  }

  .product-buy .button {
    width: auto;
  }
}

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

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

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