:root {
  --bg: #000607;
  --bg-soft: #001114;
  --bg-panel: #031719;
  --bg-panel-2: #062629;
  --text: #ffffff;
  --text-soft: #d7f2ef;
  --muted: #7da8a4;
  --line: rgba(0, 224, 199, 0.2);
  --line-strong: rgba(0, 245, 212, 0.58);
  --blue: #00a99a;
  --blue-strong: #00f5d4;
  --deep-teal: #006870;
  --mint: #00c9aa;
  --danger-muted: #52706d;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.52);
  --radius: 8px;
  --container: 1160px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(0, 245, 212, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 212, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 83, 84, 0.28), transparent 320px),
    var(--bg);
  background-size: 54px 54px, 54px 54px, auto, auto;
  color: var(--text);
  font-family: Montserrat, Poppins, "Aptos Display", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: -18%;
  z-index: 0;
  pointer-events: none;
}

body::before {
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(0, 245, 212, 0.1) 46%, transparent 53%),
    linear-gradient(245deg, transparent 0 54%, rgba(255, 255, 255, 0.055) 57%, transparent 63%),
    repeating-linear-gradient(90deg, rgba(0, 245, 212, 0.08) 0 1px, transparent 1px 112px),
    repeating-linear-gradient(0deg, rgba(0, 245, 212, 0.055) 0 1px, transparent 1px 112px);
  opacity: 0.55;
  transform: translate3d(-3%, -2%, 0) rotate(-1deg);
  animation: ambient-grid 22s linear infinite;
}

body::after {
  background:
    linear-gradient(105deg, transparent 0 36%, rgba(0, 245, 212, 0.13) 43%, transparent 50%),
    linear-gradient(105deg, transparent 0 62%, rgba(0, 169, 154, 0.09) 68%, transparent 75%);
  mix-blend-mode: screen;
  opacity: 0.42;
  transform: translate3d(-24%, 0, 0);
  animation: ambient-scan 11s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

body.nav-open {
  overflow: hidden;
}

main {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--blue-strong);
  outline-offset: 3px;
}

[id] {
  scroll-margin-top: 96px;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--blue-strong);
  color: var(--bg);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(0, 245, 212, 0.14);
  background: rgba(0, 8, 10, 0.84);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(0, 201, 170, 0.12);
  color: var(--text);
  box-shadow: 0 0 0 2px rgba(0, 245, 212, 0.28);
}

.nav-links .nav-cta {
  margin-left: 8px;
  background: var(--mint);
  color: #001010;
  box-shadow: 0 0 28px rgba(0, 201, 170, 0.28);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  background: #ffffff;
  color: var(--bg);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 201, 170, 0.08);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 72px 0 78px;
  isolation: isolate;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  opacity: 0.46;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 20%, rgba(0, 245, 212, 0.22), transparent 34%),
    linear-gradient(90deg, rgba(0, 6, 7, 0.98) 0%, rgba(0, 35, 38, 0.94) 46%, rgba(0, 6, 7, 0.98) 100%),
    linear-gradient(180deg, rgba(0, 245, 212, 0.13), rgba(0, 0, 0, 0.94) 88%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(0, 245, 212, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 212, 0.065) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 88%);
}

.hero-content {
  max-width: 1060px;
}

.hero-layout {
  max-width: 1040px;
  margin: 0 auto;
}

.hero-copy {
  min-width: 0;
  text-align: center;
}

.eyebrow,
.section-kicker {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(0, 245, 212, 0.36);
  border-radius: 999px;
  background: rgba(0, 201, 170, 0.11);
  color: var(--blue-strong);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 {
  max-width: 1030px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(46px, 7.1vw, 92px);
  font-weight: 950;
  letter-spacing: -0.025em;
}

.hero-subtitle {
  max-width: 860px;
  margin: 26px 0 0;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.hero-actions .btn {
  min-height: 50px;
  padding: 0 22px;
  font-size: 14px;
}

.btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  font-size: 15px;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary {
  background: var(--mint);
  color: #001010;
  box-shadow: 0 18px 46px rgba(0, 201, 170, 0.3), inset 0 -2px 0 rgba(0, 0, 0, 0.18);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 24px 58px rgba(0, 245, 212, 0.35);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--line-strong);
  background: rgba(0, 201, 170, 0.12);
  box-shadow: 0 0 0 2px rgba(0, 245, 212, 0.24);
}

.btn-full {
  width: 100%;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-offer-strip {
  width: min(100%, 680px);
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin: 28px auto 0;
  padding: 14px 20px;
  border: 1px solid rgba(0, 245, 212, 0.28);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 201, 170, 0.08), rgba(255, 255, 255, 0.08), rgba(0, 201, 170, 0.08));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero-offer-strip span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-offer-strip strong {
  color: #ffffff;
  font-size: 38px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.hero-points li {
  padding: 10px 12px;
  border: 1px solid rgba(0, 245, 212, 0.22);
  border-radius: 999px;
  background: rgba(0, 201, 170, 0.08);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

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

.section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(84%, 1060px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 245, 212, 0.3), transparent);
  transform: translateX(-50%);
}

.section:nth-of-type(even) {
  background: rgba(0, 201, 170, 0.025);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading,
.section-copy {
  position: relative;
}

.section-heading h2,
.section-copy h2,
.offer-copy h2,
.guarantee-box h2,
.faq-layout h2 {
  font-size: 44px;
  font-weight: 950;
  letter-spacing: -0.015em;
}

.section-heading p,
.section-copy p,
.offer-copy p,
.guarantee-box p,
.final-cta p {
  color: var(--text-soft);
  font-size: 18px;
}

.section-heading > p:last-child,
.section-copy > p:last-child,
.offer-copy > p:last-child {
  margin-bottom: 0;
}

.section-grid,
.offer-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 48px;
  align-items: center;
}

.section-problem {
  background:
    linear-gradient(135deg, rgba(0, 201, 170, 0.12), transparent 42%),
    rgba(0, 201, 170, 0.025);
}

.problem-stack {
  display: grid;
  gap: 14px;
}

.mini-card,
.agent-card,
.audience-card,
.module-card,
.comparison-card,
.bonus-card,
.offer-card,
.guarantee-box,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(6, 38, 41, 0.84), rgba(0, 12, 14, 0.9));
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.mini-card {
  position: relative;
  padding: 24px;
  overflow: hidden;
}

.mini-card::after,
.agent-card::after,
.module-card::after,
.bonus-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-strong), var(--mint), transparent);
  opacity: 0.75;
}

.mini-card-number {
  color: var(--blue-strong);
  font-size: 13px;
  font-weight: 900;
}

.mini-card h3,
.agent-card h3,
.audience-card h3,
.module-card h3,
.comparison-card h3,
.bonus-card h3 {
  margin: 10px 0 8px;
  font-size: 20px;
  line-height: 1.25;
}

.mini-card p,
.agent-card p,
.audience-card p,
.module-card p,
.bonus-card p,
.comparison-card li,
.offer-list li,
.faq-answer p,
.offer-note {
  color: var(--text-soft);
}

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

.agent-card {
  position: relative;
  min-height: 250px;
  padding: 24px;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.agent-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(8, 53, 57, 0.92), rgba(0, 16, 18, 0.94));
}

.agent-tag,
.module-card span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: var(--radius);
  background: rgba(0, 201, 170, 0.13);
  color: var(--blue-strong);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.audience-grid,
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.audience-card,
.bonus-card {
  padding: 24px;
}

.audience-card-wide {
  grid-column: span 2;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.module-card,
.bonus-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
}

.module-card {
  min-height: 238px;
}

.module-card:nth-child(7) {
  grid-column: span 3;
  min-height: auto;
}

.section-comparison {
  background:
    linear-gradient(90deg, rgba(0, 79, 83, 0.18), rgba(0, 201, 170, 0.08)),
    rgba(0, 201, 170, 0.025);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.comparison-card {
  padding: 30px;
}

.comparison-card-active {
  border-color: rgba(0, 245, 212, 0.42);
  background:
    linear-gradient(135deg, rgba(0, 201, 170, 0.2), rgba(0, 245, 212, 0.08)),
    rgba(3, 23, 25, 0.92);
}

.check-list,
.offer-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.offer-list li {
  position: relative;
  padding-left: 28px;
  margin-top: 12px;
}

.check-list li::before,
.offer-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--mint);
  font-weight: 900;
}

.muted-list li::before {
  color: var(--danger-muted);
}

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

.section-offer {
  background:
    linear-gradient(180deg, rgba(0, 201, 170, 0.11), rgba(0, 36, 39, 0.24)),
    var(--bg-soft);
}

.offer-layout {
  align-items: stretch;
}

.offer-copy {
  align-self: center;
}

.offer-card {
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(0, 201, 170, 0.2), rgba(0, 49, 53, 0.42)),
    rgba(3, 23, 25, 0.95);
  border-color: rgba(0, 245, 212, 0.36);
  transform: translateZ(0);
}

.offer-card-header {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.offer-card-header p {
  margin: 0 0 8px;
  color: var(--blue-strong);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-card-header strong {
  display: block;
  color: var(--text);
  font-size: 62px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.offer-card-header span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  font-weight: 700;
}

.offer-list {
  margin: 24px 0 26px;
}

.offer-note {
  margin: 16px 0 0;
  text-align: center;
  font-size: 14px;
}

.section-guarantee {
  padding: 84px 0;
}

.guarantee-box {
  max-width: 860px;
  padding: 34px;
  border-color: rgba(0, 245, 212, 0.3);
  background:
    linear-gradient(135deg, rgba(0, 201, 170, 0.13), rgba(0, 84, 89, 0.18)),
    rgba(3, 23, 25, 0.84);
}

.faq-layout {
  align-items: start;
}

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

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-weight: 850;
  cursor: pointer;
}

.faq-question:focus-visible {
  outline: 2px solid var(--blue-strong);
  outline-offset: -2px;
}

.faq-question span {
  position: relative;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(0, 245, 212, 0.42);
}

.faq-question span::before,
.faq-question span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 2px;
  background: var(--blue-strong);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-question span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 20px 20px;
  transition: max-height 260ms ease, opacity 220ms ease;
}

.faq-answer.is-open {
  opacity: 1;
}

.faq-answer p {
  margin: 0;
}

.final-cta {
  text-align: center;
  background:
    linear-gradient(135deg, rgba(0, 201, 170, 0.14), rgba(0, 54, 58, 0.2)),
    var(--bg);
}

.final-cta-content {
  max-width: 840px;
}

.final-cta .section-kicker {
  margin-left: auto;
  margin-right: auto;
}

.final-cta h2 {
  margin-bottom: 28px;
  font-size: 48px;
  font-weight: 950;
}

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  background: #05070d;
}

.footer-content {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 500;
}

.footer-content p {
  margin: 0;
}

.footer-content p:last-child {
  text-align: right;
}

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

.motion-ready .reveal {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, 34px, 0) scale(0.985);
  transition:
    opacity 780ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 780ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 780ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

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

.motion-ready .hero .reveal {
  transform: translate3d(0, 26px, 0) scale(0.99);
}

.motion-ready .agent-card.reveal,
.motion-ready .audience-card.reveal,
.motion-ready .module-card.reveal,
.motion-ready .bonus-card.reveal,
.motion-ready .mini-card.reveal,
.motion-ready .comparison-card.reveal,
.motion-ready .offer-card.reveal,
.motion-ready .faq-item.reveal {
  transform: translate3d(0, 42px, 0) scale(0.96);
}

.motion-ready .agent-card.reveal.is-visible,
.motion-ready .audience-card.reveal.is-visible,
.motion-ready .module-card.reveal.is-visible,
.motion-ready .bonus-card.reveal.is-visible,
.motion-ready .mini-card.reveal.is-visible,
.motion-ready .comparison-card.reveal.is-visible,
.motion-ready .offer-card.reveal.is-visible,
.motion-ready .faq-item.reveal.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

@keyframes ambient-grid {
  0% {
    transform: translate3d(-3%, -2%, 0) rotate(-1deg);
  }

  50% {
    transform: translate3d(2%, 1%, 0) rotate(-1deg);
  }

  100% {
    transform: translate3d(-3%, -2%, 0) rotate(-1deg);
  }
}

@keyframes ambient-scan {
  0% {
    opacity: 0;
    transform: translate3d(-34%, 0, 0);
  }

  14% {
    opacity: 0.44;
  }

  54% {
    opacity: 0.28;
  }

  100% {
    opacity: 0;
    transform: translate3d(34%, 0, 0);
  }
}

@media (max-width: 1080px) {
  .hero h1 {
    font-size: 52px;
  }

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

  .agent-card:last-child {
    grid-column: span 2;
  }

  .audience-grid,
  .bonus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 86px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(7, 10, 18, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links a,
  .nav-links .nav-cta {
    margin: 0;
    width: 100%;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding: 64px 0 70px;
  }

  .hero-copy {
    max-width: 760px;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-offer-strip {
    grid-template-columns: 1fr;
    gap: 6px;
    border-radius: var(--radius);
  }

  .section {
    padding: 78px 0;
  }

  .section-grid,
  .offer-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .section-copy h2,
  .offer-copy h2,
  .guarantee-box h2,
  .faq-layout h2 {
    font-size: 36px;
  }

  .module-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .module-card:nth-child(7) {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .nav {
    min-height: 68px;
  }

  .nav-links {
    left: 14px;
    right: 14px;
    top: 76px;
  }

  .hero {
    padding: 58px 0 58px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.08;
  }

  .hero-subtitle,
  .section-heading p,
  .section-copy p,
  .offer-copy p,
  .guarantee-box p,
  .final-cta p {
    font-size: 16px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: min(100%, 360px);
    min-height: 50px;
  }

  .hero-offer-strip strong {
    font-size: 34px;
  }

  .hero-points {
    display: grid;
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading h2,
  .section-copy h2,
  .offer-copy h2,
  .guarantee-box h2,
  .faq-layout h2 {
    font-size: 30px;
    line-height: 1.12;
  }

  .agent-grid,
  .audience-grid,
  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .agent-card:last-child,
  .audience-card-wide {
    grid-column: auto;
  }

  .agent-card,
  .module-card {
    min-height: auto;
  }

  .mini-card,
  .agent-card,
  .audience-card,
  .module-card,
  .comparison-card,
  .bonus-card,
  .offer-card,
  .guarantee-box {
    padding: 22px;
  }

  .offer-card-header strong {
    font-size: 52px;
  }

  .final-cta h2 {
    font-size: 32px;
    line-height: 1.12;
  }

  .footer-content {
    min-height: 128px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
  }

  .footer-content p:last-child {
    text-align: center;
  }

}

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

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

  body::before,
  body::after {
    animation: none !important;
    transform: none;
  }
}
