:root {
  --bg: #050505;
  --bg-elevated: #0b0b0b;
  --panel: #101010;
  --panel-strong: #161616;
  --text: #f4f4f4;
  --muted: #b7b7b7;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #e10600;
  --accent-soft: rgba(225, 6, 0, 0.14);
  --accent-glow: rgba(225, 6, 0, 0.34);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(225, 6, 0, 0.16), transparent 32%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 26%),
    linear-gradient(180deg, #070707 0%, #030303 100%);
  font-family: "Bahnschrift", "Franklin Gothic Medium", "Arial Narrow", "Segoe UI", sans-serif;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 95%);
  opacity: 0.28;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -48px;
  z-index: 20;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(5, 5, 5, 0.84);
  border-bottom: 1px solid var(--line);
}

.header-inner,
.container {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.7rem;
  background: var(--accent);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 0 28px var(--accent-glow);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem 1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.nav a {
  padding: 0.45rem 0.2rem;
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.hero {
  position: relative;
  padding: 5rem 0 3.25rem;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -8rem -10rem auto;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 6, 0, 0.24), transparent 68%);
  filter: blur(14px);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.85rem;
  margin-bottom: 1.1rem;
  border: 1px solid rgba(225, 6, 0, 0.3);
  border-radius: 999px;
  background: rgba(225, 6, 0, 0.08);
  color: rgba(225, 6, 0, 0.92);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 8vw, 6.6rem);
  letter-spacing: -0.04em;
}

.hero-copy {
  max-width: 42rem;
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: clamp(1rem, 2.1vw, 1.18rem);
}

.purpose-line {
  max-width: 62ch;
  margin: 0.35rem 0 0.7rem;
  color: #e7d5d5;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(225, 6, 0, 0.35), 0 0 28px rgba(225, 6, 0, 0.35);
}

.button-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 16px 30px rgba(225, 6, 0, 0.25);
  animation: pulseCta 4.8s ease-in-out infinite;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(225, 6, 0, 0.28);
  background: rgba(225, 6, 0, 0.08);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: #f0c1c1;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: rgba(225, 6, 0, 0.6);
  text-underline-offset: 0.2em;
}

.text-link:hover,
.text-link:focus-visible {
  color: #fff;
}

.section {
  padding: 2.1rem 0 4.6rem;
}

.section-title {
  max-width: 16ch;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
}

.section-lead {
  max-width: 44rem;
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-headline {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.quick-flow {
  border-color: rgba(225, 6, 0, 0.2);
}

.flow-steps {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.flow-step {
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.flow-step strong {
  display: block;
  margin-bottom: 0.3rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.86rem;
}

.flow-step p {
  margin: 0;
  color: var(--muted);
}

.category-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.category-jump a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.category-jump a:hover,
.category-jump a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(225, 6, 0, 0.34);
  background: rgba(225, 6, 0, 0.08);
}

.section-divider {
  height: 1px;
  margin: 1.4rem 0 1.15rem;
  background: linear-gradient(90deg, transparent, rgba(225, 6, 0, 0.38), transparent);
}

.grid {
  display: grid;
  gap: 1.1rem;
}

.grid-2 {
  grid-template-columns: 1fr;
}

.grid-3 {
  grid-template-columns: 1fr;
}

.faq-grid {
  gap: 0.9rem;
}

.problem-grid,
.reading-grid {
  display: grid;
  gap: 0.85rem;
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.panel {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012));
  box-shadow: var(--shadow);
}

.panel-strong {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.panel h3 {
  margin-bottom: 0.7rem;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}

.panel p,
.panel li,
.card p {
  color: var(--muted);
}

.panel p,
.card p {
  max-width: 66ch;
}

.bullets {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.6rem;
}

.stat-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.stat {
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}

.stat strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.5rem;
}

.card {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.problem-card,
.reading-card {
  position: relative;
  display: grid;
  gap: 0.45rem;
  padding: 1rem 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.problem-card:hover,
.problem-card:focus-visible,
.reading-card:hover,
.reading-card:focus-visible {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(225, 6, 0, 0.35);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(225, 6, 0, 0.18), 0 0 28px rgba(225, 6, 0, 0.16);
  background: linear-gradient(165deg, rgba(225, 6, 0, 0.1), rgba(255, 255, 255, 0.03));
}

.problem-card strong,
.reading-card h3 {
  font-size: 1rem;
  line-height: 1.1;
}

.problem-card p,
.reading-card p {
  margin: 0;
  color: var(--muted);
}

.problem-icon-img {
  width: clamp(40px, 8vw, 58px);
  height: clamp(40px, 8vw, 58px);
  object-fit: contain;
  filter: grayscale(1) contrast(1.06);
  transition: transform 0.22s ease, filter 0.22s ease;
  transform-origin: center;
}

.reading-illustration {
  width: 100%;
  max-width: 112px;
  height: 86px;
  object-fit: contain;
  transition: transform 0.22s ease;
}

.problem-card:hover .problem-icon-img,
.problem-card:focus-visible .problem-icon-img,
.problem-card.is-hovered .problem-icon-img,
.reading-card:hover .reading-illustration,
.reading-card:focus-visible .reading-illustration,
.reading-card.is-hovered .reading-illustration {
  transform: scale(1.06);
}

.reading-label {
  color: rgba(225, 6, 0, 0.9);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reading-action {
  margin-top: 0.35rem;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 6, 0, 0.28);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.5);
}

.card,
.social-card,
.button,
.sticky-cta,
.category-jump a {
  will-change: transform;
}

.card:focus-within,
.social-card:hover,
.social-card:focus-visible {
  transform: translateY(-4px);
}

.floating-card {
  animation: floatCard 6.5s ease-in-out infinite;
}

.floating-card .problem-icon-img {
  animation: floatIcon 7.2s ease-in-out infinite;
}

.floating-card:nth-child(2) {
  animation-delay: 0.8s;
}

.floating-card:nth-child(3) {
  animation-delay: 1.6s;
}

.floating-card:nth-child(4) {
  animation-delay: 2.4s;
}

.card-label {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: rgba(225, 6, 0, 0.86);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.08rem;
  line-height: 1.05;
}

.cta-banner {
  padding: 1.5rem;
  border: 1px solid rgba(225, 6, 0, 0.24);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(225, 6, 0, 0.16), rgba(255, 255, 255, 0.02));
  box-shadow: 0 20px 45px rgba(225, 6, 0, 0.08);
}

.cta-banner h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  letter-spacing: -0.03em;
}

.cta-banner p {
  max-width: 52rem;
  margin: 0;
  color: #efd9d9;
}

.footer {
  padding: 1.5rem 0 2.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.alert-line {
  margin-top: 1.15rem;
  padding: 0.85rem 1rem;
  border-left: 4px solid var(--accent);
  background: rgba(225, 6, 0, 0.09);
  color: rgba(225, 6, 0, 0.95);
  font-weight: 700;
}

.trust-strip {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  padding: 1rem;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.quote-item {
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: #f1dada;
  font-size: 0.95rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.product-scroll {
  max-height: 78vh;
  overflow: auto;
  padding-right: 0.35rem;
  scroll-behavior: smooth;
}

.product-system {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.product-tile {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.product-system:hover .product-tile {
  opacity: 0.42;
  transform: scale(0.985);
  filter: brightness(0.86);
}

.product-system:hover .product-tile:hover,
.product-system:hover .product-tile:focus-visible,
.product-system:hover .product-tile:focus-within {
  opacity: 1;
  transform: scale(1.02);
  filter: brightness(1.08);
  border-color: rgba(225, 6, 0, 0.45);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.52), 0 0 0 1px rgba(225, 6, 0, 0.28);
}

.card-cta {
  margin-top: auto;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes pulseCta {
  0%,
  100% {
    box-shadow: 0 16px 30px rgba(225, 6, 0, 0.24);
  }
  50% {
    box-shadow: 0 16px 30px rgba(225, 6, 0, 0.34), 0 0 0 6px rgba(225, 6, 0, 0.06);
  }
}

@keyframes floatCover {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

.product-tile .cover-wrap img {
  animation: floatCover 6s ease-in-out infinite;
}

.product-tile:nth-child(even) .cover-wrap img {
  animation-delay: 1.4s;
}

.review-stars {
  margin: 0 0 0.45rem;
  color: #f1f1f1;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
}

.quote-item p {
  margin: 0;
  font-size: 0.92rem;
}

.cover-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #070707;
  aspect-ratio: 3 / 4;
}

.cover-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-title {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.06;
  letter-spacing: 0.02em;
}

.product-hook {
  margin: 0;
  color: var(--muted);
}

.subhead {
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  letter-spacing: 0.05em;
}

.about-grid {
  gap: 1.25rem;
  align-items: start;
}

.about-panel {
  border-color: rgba(225, 6, 0, 0.22);
  background: linear-gradient(180deg, rgba(225, 6, 0, 0.08), rgba(255, 255, 255, 0.015));
}

.section-header-inline {
  display: grid;
  gap: 0.65rem;
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.social-card {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.social-card:hover,
.social-card:focus-visible {
  border-color: rgba(225, 6, 0, 0.34);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.38);
}

.social-platform {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-url {
  color: rgba(225, 6, 0, 0.9);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}

.social-card p {
  margin: 0;
  color: var(--muted);
}

.trust-pills {
  gap: 0.75rem;
}

.trust-pill {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(225, 6, 0, 0.16);
  border-radius: 999px;
  background: rgba(225, 6, 0, 0.06);
  color: #f2dede;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.start-dominant .section-title {
  color: #fff;
  text-shadow: 0 0 16px rgba(225, 6, 0, 0.38);
}

.start-dominant .panel {
  border-color: rgba(225, 6, 0, 0.32);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(225, 6, 0, 0.16);
}

.friction-killers {
  margin: 0.55rem 0 0;
  color: #e7d1d1;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  line-height: 1.45;
}

.curiosity-line {
  margin: -0.1rem 0 0;
  color: rgba(225, 6, 0, 0.9);
  font-size: 0.8rem;
  font-weight: 700;
}

.books-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.library-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.library-card {
  padding: 0.72rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.library-card .cover-wrap {
  aspect-ratio: 4 / 5;
}

.library-title {
  margin: 0.55rem 0 0;
  color: #ece2e2;
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.bundle-panel {
  border: 1px solid rgba(225, 6, 0, 0.42);
  border-radius: var(--radius);
  padding: 1.35rem;
  background: linear-gradient(180deg, rgba(225, 6, 0, 0.2), rgba(225, 6, 0, 0.06));
}

.bundle-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

.start-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.start-card {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
}

.start-cover {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.start-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.micro-trust {
  margin: 0.55rem 0 0;
  color: #e6dada;
  font-size: 0.8rem;
  line-height: 1.35;
}

.pressure-block {
  padding: 1.25rem;
  border: 1px solid rgba(225, 6, 0, 0.35);
  border-radius: var(--radius);
  background: rgba(225, 6, 0, 0.09);
}

.pressure-block p {
  margin: 0;
  color: rgba(225, 6, 0, 0.95);
  font-size: clamp(1rem, 3.3vw, 1.15rem);
  font-weight: 700;
  line-height: 1.45;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 0.9rem;
  transform: translateX(-50%);
  z-index: 30;
  min-width: min(92vw, 420px);
  text-align: center;
  padding: 0.95rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 35px rgba(225, 6, 0, 0.45);
}

.sticky-cta:hover,
.sticky-cta:focus-visible {
  box-shadow: 0 0 0 1px rgba(225, 6, 0, 0.5), 0 0 30px rgba(225, 6, 0, 0.45);
}

.quick-links {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
}

.quick-links a {
  color: rgba(225, 6, 0, 0.95);
  text-decoration: underline;
  text-decoration-color: rgba(225, 6, 0, 0.5);
  text-underline-offset: 0.2em;
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.62s ease, transform 0.62s ease;
}

.fade-in.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  align-items: start;
}

.hero-card {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.hero-card h2 {
  margin-bottom: 0.65rem;
  font-size: 1.2rem;
}

.eyebrow-inline {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: rgba(225, 6, 0, 0.86);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-actions .micro-trust,
.product-card .micro-trust,
.start-card .micro-trust {
  width: 100%;
}

.mini-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.55rem;
  color: var(--muted);
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-link::after {
  content: ">";
  color: var(--accent);
}

.page-hero {
  padding-bottom: 2rem;
}

.page-hero h1 {
  max-width: 14ch;
}

.page-hero .hero-copy {
  max-width: 50rem;
}

@media (max-width: 900px) {
  .header-inner {
    padding: 0.8rem 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 3.5rem;
  }

  h1 {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .container {
    width: min(100% - 1.2rem, var(--max));
  }

  .hero {
    padding-bottom: 2.2rem;
  }

  .section {
    padding-bottom: 3rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .library-card {
    padding: 0.9rem;
  }

  .start-card {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .hero-mini-grid {
    grid-template-columns: 1fr;
  }

  .sticky-cta {
    min-width: calc(100% - 1rem);
    bottom: 0.5rem;
  }

  .trust-pill {
    border-radius: 16px;
  }

  .problem-card,
  .reading-card {
    padding: 0.95rem;
  }

  .reading-illustration {
    max-width: 96px;
    height: 78px;
  }
}

@media (min-width: 700px) {
  .grid-2,
  .hero-split,
  .bundle-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .books-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-system {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .start-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .problem-grid,
  .reading-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .grid-3,
  .stat-band,
  .quote-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .faq-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .books-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-system {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-split {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  }

  .social-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .problem-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .reading-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
