:root {
  --bg: #060816;
  --bg-soft: #0c1230;
  --surface: rgba(15, 20, 45, 0.78);
  --surface-strong: rgba(13, 18, 39, 0.92);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f5f7ff;
  --muted: #b7bfda;
  --muted-strong: #dbe1ff;
  --primary: #ff4fa2;
  --primary-strong: #ff2b92;
  --secondary: #7a7cff;
  --accent: #4de2ff;
  --success: #8effb0;
  --warning: #ffdcae;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --radius-sm: 18px;
  --container: 1180px;
  --transition: 260ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(122, 124, 255, 0.18), transparent 30%),
    radial-gradient(circle at 20% 20%, rgba(255, 79, 162, 0.12), transparent 18%),
    linear-gradient(180deg, #060816 0%, #090d22 30%, #050712 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent 90%);
  pointer-events: none;
  z-index: -2;
}

body.cookie-modal-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.92em;
}

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

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

.page-glow {
  position: fixed;
  width: 38vw;
  height: 38vw;
  filter: blur(100px);
  opacity: 0.2;
  z-index: -3;
  border-radius: 50%;
  pointer-events: none;
}

.glow-left {
  background: rgba(255, 79, 162, 0.55);
  left: -10vw;
  top: 12vh;
}

.glow-right {
  background: rgba(77, 226, 255, 0.4);
  right: -10vw;
  top: 45vh;
}

.promo-bar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(7, 10, 24, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.promo-bar__inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.promo-bar p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted-strong);
}

.promo-bar span {
  color: var(--accent);
}

.promo-timer {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.promo-timer span {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.promo-timer strong,
.offer-timer strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.05em;
  color: var(--success);
}

.hero {
  padding-top: 72px;
}

.hero__grid,
.proof__grid,
.offer-card__body {
  display: grid;
  gap: 44px;
}

.hero__grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.hero__content h1 {
  margin: 14px 0 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.hero__lead {
  margin: 0 0 22px;
  max-width: 64ch;
  color: var(--muted-strong);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-copy {
  margin: 28px 0 22px;
}

.hero-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.78;
}

.hero-copy p:last-child {
  margin-bottom: 0;
}

.eyebrow,
.section-label,
.price-box__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 32px;
}

.section-heading h2 {
  margin: 14px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3.9vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-note {
  margin-top: 16px;
  color: var(--warning);
  max-width: 54ch;
  line-height: 1.6;
}

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

.btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition);
  overflow: hidden;
  cursor: pointer;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.22), transparent 65%);
  transform: translateX(-120%);
  transition: transform 700ms ease;
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  box-shadow: 0 16px 40px rgba(122, 124, 255, 0.22);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--muted-strong);
}

.btn--large,
.btn--full {
  width: 100%;
}

.glass-card,
.system-step,
.offer-card,
.faq-item,
.testimonial,
.benefit-card,
.proof-panel,
.legal-card,
.legal-side,
.cookie-banner,
.cookie-modal__dialog {
  background: linear-gradient(180deg, rgba(14, 18, 42, 0.86), rgba(7, 10, 24, 0.9));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.glass-card {
  border-radius: var(--radius);
  padding: 28px;
}

.hero__visual {
  position: relative;
}

.book-stack {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
}
.book-cover {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.book-card {
  width: min(100%, 430px);
  border-radius: 28px;
  padding: 24px;
  background:
    linear-gradient(165deg, rgba(255, 79, 162, 0.18), rgba(122, 124, 255, 0.12)),
    linear-gradient(180deg, rgba(13, 18, 39, 0.95), rgba(7, 10, 24, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.info-chip {
  position: absolute;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--text);
  background: rgba(10, 14, 35, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.22);
}

.chip-top {
  top: 10%;
  right: 2%;
}

.chip-bottom {
  bottom: 12%;
  left: -2%;
}

.stat-card {
  margin-top: -40px;
}

.stat-card__line {
  display: grid;
  gap: 10px;
}

.stat-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
}

.stat-card span {
  color: var(--muted);
  line-height: 1.7;
}

.image-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 520px;
  border-radius: 22px;
  border: 1.5px dashed rgba(255, 255, 255, 0.22);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 79, 162, 0.18), transparent 30%),
    radial-gradient(circle at 80% 30%, rgba(77, 226, 255, 0.14), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.05));
  overflow: hidden;
}

.image-placeholder::before {
  content: "";
  position: absolute;
  inset: auto -12% -18% auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 79, 162, 0.3), transparent 65%);
  filter: blur(18px);
}

.image-placeholder span {
  position: relative;
  z-index: 1;
  width: min(75%, 260px);
  text-align: center;
  color: var(--muted-strong);
  font-weight: 600;
  line-height: 1.5;
}

.image-placeholder--book {
  aspect-ratio: 0.78;
  min-height: 560px;
}

.image-placeholder--book.large {
  min-height: 460px;
}

.image-placeholder--wide {
  min-height: 420px;
}

.benefits-grid,
.system-grid,
.testimonials,
.footer__inner,
.offer-card__body,
.proof__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.benefits-grid,
.system-grid,
.testimonials {
  display: grid;
  gap: 22px;
}

.benefit-card,
.system-step,
.testimonial,
.proof-panel,
.legal-card {
  border-radius: 24px;
  padding: 28px;
}

.benefit-card h3,
.system-step h3,
.testimonial__meta strong,
.offer-card__header h2,
.final-cta__card h2,
.legal-side h1,
.legal-card h2 {
  font-family: "Space Grotesk", sans-serif;
}

.benefit-card h3,
.system-step h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
}

.benefit-card p,
.system-step p,
.testimonial p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.tick-list,
.offer-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  gap: 14px;
}

.tick-list li,
.offer-list li {
  position: relative;
  padding-left: 34px;
  color: var(--muted-strong);
  line-height: 1.7;
}

.tick-list li::before,
.offer-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

.system-step {
  position: relative;
  overflow: hidden;
}

.step-number {
  display: inline-flex;
  margin-bottom: 18px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--accent);
}

.proof__grid {
  display: grid;
  align-items: start;
  gap: 36px;
}

.proof-media {
  padding: 20px;
}

.testimonials {
  margin-top: 18px;
}

.testimonial {
  display: grid;
  gap: 18px;
}

.testimonial__badge {
  width: fit-content;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial__meta {
  display: grid;
  gap: 6px;
}

.testimonial__meta span {
  color: var(--muted);
  font-size: 0.94rem;
}

.proof-panel {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 24px;
}

.proof-stats {
  display: grid;
  gap: 14px;
}

.proof-stat {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-stat strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
}

.proof-stat span {
  color: var(--muted);
  line-height: 1.65;
}

.proof-notes {
  display: grid;
  gap: 16px;
}

.proof-note {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 14px;
  align-items: start;
}

.proof-note__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-top: 5px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 24px rgba(255, 79, 162, 0.45);
}

.proof-note strong {
  display: block;
  margin-bottom: 6px;
}

.proof-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.offer-card {
  border-radius: 34px;
  padding: 34px;
}

.offer-card__header {
  max-width: 760px;
  margin-bottom: 30px;
}

.offer-card__header h2 {
  margin: 18px 0 14px;
  font-size: clamp(2.15rem, 4.2vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.offer-card__header h2 span {
  color: var(--accent);
}

.offer-card__header p {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.75;
}

.offer-card__body {
  display: grid;
  align-items: center;
}

.offer-visual {
  display: flex;
  justify-content: center;
}

.offer-details {
  display: grid;
  gap: 22px;
}

.price-box {
  position: relative;
  overflow: hidden;
}

.price-box__tag {
  margin-bottom: 18px;
}

.price-box__prices {
  display: flex;
  align-items: end;
  gap: 16px;
}

.old-price {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
  font-size: 1.05rem;
}

.new-price {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.6rem, 7vw, 4rem);
  line-height: 1;
}

.price-box__subline {
  margin: 12px 0 0;
  color: var(--muted);
}

.urgency-box {
  padding: 22px 24px;
}

.urgency-box strong {
  display: inline-block;
  margin-bottom: 6px;
}

.urgency-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.offer-timer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-strong);
}

.offer-timer span {
  color: var(--muted);
}

.micro-note {
  margin: -8px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  border-radius: 22px;
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 24px 72px 24px 24px;
  font-weight: 700;
  font-size: 1.05rem;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.75;
}

.final-cta__card {
  text-align: center;
  padding: 42px 30px;
  max-width: 900px;
  margin: 0 auto;
}

.final-cta__card h2 {
  margin: 18px auto 16px;
  max-width: 18ch;
  font-size: clamp(2.1rem, 4.6vw, 3.8rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.final-cta__card p {
  max-width: 62ch;
  margin: 0 auto 16px;
  color: var(--muted);
  line-height: 1.75;
}

.site-footer {
  padding: 28px 0 calc(28px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(5, 7, 18, 0.7);
}

.footer__inner {
  display: grid;
  align-items: center;
  gap: 12px;
}

.footer__inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.94rem;
}

.footer__inner nav,
.legal-nav {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.footer__inner nav a,
.legal-nav a,
.footer-link-button {
  color: var(--muted);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.footer__inner nav a:hover,
.legal-nav a:hover,
.footer-link-button:hover {
  color: var(--text);
}

.footer-link-button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mobile-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 28;
  display: none;
}

.legal-page {
  min-height: 100vh;
}

.legal-header {
  position: sticky;
  top: 0;
  z-index: 28;
  backdrop-filter: blur(18px);
  background: rgba(7, 10, 24, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-header__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.legal-brand {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1.08rem;
}

.legal-section {
  padding-top: 52px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: 26px;
  align-items: start;
}

.legal-side {
  position: sticky;
  top: 100px;
  border-radius: 28px;
  padding: 28px;
}

.legal-side h1 {
  margin: 16px 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
}

.legal-side p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.72;
}

.legal-callout {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-callout strong {
  display: block;
  margin-bottom: 8px;
}

.legal-callout p {
  margin: 0;
}

.legal-content {
  display: grid;
  gap: 20px;
}

.legal-card h2 {
  margin: 0 0 16px;
  font-size: 1.45rem;
  line-height: 1.15;
}

.legal-card p,
.legal-card li {
  color: var(--muted-strong);
  line-height: 1.78;
  margin: 0 0 14px;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-table {
  margin-top: 18px;
  display: grid;
  gap: 1px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.legal-table__row {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 0.8fr;
  gap: 14px;
  padding: 16px;
  background: rgba(5, 7, 18, 0.92);
}

.legal-table__head {
  background: rgba(122, 124, 255, 0.14);
  color: var(--text);
  font-weight: 700;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  border-radius: 26px;
  padding: 22px;
  display: grid;
  gap: 18px;
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.cookie-banner__copy h3,
.cookie-modal__copy h3 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  line-height: 1.05;
}

.cookie-banner__copy p,
.cookie-modal__copy p,
.cookie-category p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.cookie-banner__actions,
.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(3, 4, 10, 0.62);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.cookie-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.cookie-modal__dialog {
  width: min(100%, 760px);
  border-radius: 30px;
  padding: 28px;
  display: grid;
  gap: 22px;
}

.cookie-modal__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.cookie-close {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.cookie-categories {
  display: grid;
  gap: 14px;
}

.cookie-category {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-category h4 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.cookie-switch {
  position: relative;
  width: 58px;
  height: 34px;
  flex: 0 0 auto;
}

.cookie-switch input {
  position: absolute;
  opacity: 0;
  inset: 0;
}

.cookie-switch__slider {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  transition: background var(--transition);
}

.cookie-switch__slider::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--text);
  transition: transform var(--transition);
}

.cookie-switch input:checked + .cookie-switch__slider {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.cookie-switch input:checked + .cookie-switch__slider::after {
  transform: translateX(24px);
}

.cookie-switch input:disabled + .cookie-switch__slider {
  background: rgba(142, 255, 176, 0.26);
}

.cookie-switch input:disabled + .cookie-switch__slider::after {
  transform: translateX(24px);
}

.floating {
  animation: floating 5.4s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms ease, transform 680ms ease;
}

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

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

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

  .reveal,
  .floating,
  .btn,
  .btn::after,
  .cookie-banner,
  .cookie-modal {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

@media (max-width: 1100px) {
  .hero__grid,
  .proof__grid,
  .offer-card__body,
  .benefits-grid,
  .system-grid,
  .testimonials,
  .footer__inner,
  .legal-layout,
  .legal-table__row {
    grid-template-columns: 1fr;
  }

  .hero__content h1 {
    max-width: 13ch;
  }

  .book-stack {
    min-height: auto;
  }

  .chip-top {
    top: 4%;
    right: 4%;
  }

  .chip-bottom {
    left: 4%;
    bottom: 4%;
  }

  .stat-card {
    margin-top: 18px;
  }

  .proof__visual {
    order: -1;
  }

  .proof-panel,
  .legal-side {
    position: static;
  }

  .footer__inner nav,
  .legal-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 68px 0;
  }

  .promo-bar__inner,
  .legal-header__inner,
  .cookie-banner__top,
  .cookie-modal__head {
    padding: 10px 0;
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .promo-timer {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding-top: 44px;
  }

  .hero__content h1 {
    font-size: clamp(2.4rem, 11vw, 3.6rem);
  }

  .book-card {
    padding: 18px;
  }

  .image-placeholder,
  .image-placeholder--book,
  .image-placeholder--wide {
    min-height: 340px;
  }

  .image-placeholder--book.large {
    min-height: 300px;
  }

  .glass-card,
  .benefit-card,
  .system-step,
  .testimonial,
  .offer-card,
  .proof-panel,
  .legal-card,
  .legal-side,
  .cookie-banner,
  .cookie-modal__dialog {
    padding: 22px;
  }

  .offer-card {
    border-radius: 28px;
  }

  .offer-timer,
  .cookie-category,
  .cookie-banner__actions,
  .cookie-modal__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner,
  .cookie-modal {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .cookie-category {
    grid-template-columns: 1fr;
  }

  .faq-item summary {
    padding: 20px 58px 20px 20px;
  }

  .faq-item p {
    padding: 0 20px 20px;
  }

  .mobile-cta {
    display: block;
  }

  body {
    padding-bottom: 92px;
  }

  body.legal-page {
    padding-bottom: 0;
  }
}
