:root {
  --ink: #121212;
  --muted: #66666b;
  --paper: #f7f7f7;
  --panel: #ffffff;
  --panel-strong: #eeeeee;
  --line: #dddddd;
  --accent: #e50914;
  --accent-dark: #a80810;
  --accent-soft: rgba(229, 9, 20, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.14);
  --radius: 8px;
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

[data-theme="dark"] {
  --ink: #f4f4f4;
  --muted: #b8b8be;
  --paper: #090909;
  --panel: #111314;
  --panel-strong: #181b1c;
  --line: #292d2f;
  --accent: #ff2430;
  --accent-dark: #ff6169;
  --accent-soft: rgba(255, 36, 48, 0.18);
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  background:
    radial-gradient(circle at 12% 0, var(--accent-soft), transparent 28rem),
    linear-gradient(135deg, rgba(229, 9, 20, 0.05), transparent 34rem),
    var(--paper);
  color: var(--ink);
  transition: background 200ms ease, color 200ms ease;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 34%, rgba(229, 9, 20, 0.08) 34% 35%, transparent 35% 100%),
    linear-gradient(65deg, transparent 0 63%, rgba(229, 9, 20, 0.06) 63% 64%, transparent 64% 100%);
}

.web-canvas {
  position: fixed;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.86;
}

.site-effects {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.site-effects span {
  position: absolute;
  display: block;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgba(229, 9, 20, 0.2);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.16), transparent 62%);
  filter: blur(2px);
  animation: drift 14s ease-in-out infinite alternate;
}

.site-effects span:nth-child(1) {
  top: 12%;
  right: -8rem;
}

.site-effects span:nth-child(2) {
  bottom: 8%;
  left: -10rem;
  width: 30rem;
  height: 30rem;
  animation-delay: -4s;
}

.site-effects span:nth-child(3) {
  top: 52%;
  right: 26%;
  width: 16rem;
  height: 16rem;
  opacity: 0.6;
  animation-delay: -8s;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(28px, -34px, 0) scale(1.08);
  }
}

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

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 42px;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.top-actions,
.hero-actions,
.footer,
.footer div,
.price-row,
.theme-toggle,
.toggle-track {
  display: flex;
  align-items: center;
}

.brand {
  min-width: 230px;
  gap: 10px;
  font-weight: 950;
  text-decoration: none;
}

.logo-slot,
.brand-logo,
.brand-fallback {
  width: 40px;
  height: 40px;
  border-radius: 25px;
}

.logo-slot {
  position: relative;
  flex: 0 0 40px;
  overflow: hidden;
  background: linear-gradient(135deg, #202020, var(--accent));
}

.brand-logo,
.brand-fallback {
  position: absolute;
  inset: 0;
}

.brand-logo {
  display: none;;
  object-fit: contain;
  background: #101010;
}

.logo-slot.has-logo .brand-logo {
  display: block; 
}

.brand-fallback {
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 950;
}

.logo-slot.has-logo .brand-fallback {
  display: none;
}

.nav {
  justify-content: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.nav a,
.button,
.footer a {
  text-decoration: none;
}

.nav a {
  position: relative;
  padding: 8px 0;
  transition: color 160ms ease;
}

.nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav a:hover,
.nav a.is-active,
.footer a:hover {
  color: var(--accent);
}

.nav a.is-active::after {
  transform: scaleX(1);
}

.top-actions {
  justify-content: flex-end;
  gap: 10px;
  min-width: 260px;
}

.theme-toggle {
  width: 76px;
  min-height: 46px;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 6px;
  background: var(--panel);
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.toggle-track {
  position: relative;
  justify-content: space-between;
  width: 64px;
  height: 32px;
  padding: 0 8px;
  border-radius: 999px;
  background: #f0f0f0;
  border: 1px solid #d8d8d8;
}

[data-theme="dark"] .toggle-track {
  background: #292b2c;
  border-color: #3b3f41;
}

.toggle-icon {
  z-index: 1;
  color: #ffcd45;
  font-size: 0.9rem;
  line-height: 1;
}

.toggle-icon.moon {
  color: #f7f7f7;
}

.toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, background 180ms ease;
}

[data-theme="dark"] .toggle-thumb {
  transform: translateX(32px);
  background: #111111;
}

.button {
  min-height: 46px;
  justify-content: center;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 950;
  transition:
    transform 170ms ease,
    box-shadow 170ms ease,
    background 170ms ease,
    border-color 170ms ease;
}

.button:hover {
  transform: translateY(-4px) scale(1.06);
}

.hero-actions .button {
  min-height: 58px;
  padding: 16px 26px;
  font-size: 1.05rem;
}

.hero-actions .primary {
  box-shadow: 0 18px 46px rgba(229, 9, 20, 0.4);
}

.hero-actions .button:hover {
  transform: translateY(-6px) scale(1.08);
}

.primary,
.nav-purchase {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(229, 9, 20, 0.28);
}

.primary:hover,
.nav-purchase:hover {
  background: var(--accent-dark);
  box-shadow: 0 18px 44px rgba(229, 9, 20, 0.38);
}

.secondary {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: white;
  background: rgba(255, 255, 255, 0.04);
}

.secondary:hover {
  border-color: var(--accent);
  background: rgba(229, 9, 20, 0.22);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  padding: 130px 72px 82px;
  overflow: hidden;
  color: white;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.62) 56%, rgba(0, 0, 0, 0.22)),
    linear-gradient(0deg, rgba(80, 0, 4, 0.62), transparent 50%);
}

.hero-content {
  position: relative;
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ff5660;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0 auto;
  max-width: 820px;
  min-height: 11.7rem;
  font-size: 6.2rem;
  line-height: 0.94;
}

.typing-title::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.86em;
  margin-left: 0.08em;
  background: var(--accent);
  animation: blink 850ms steps(2, start) infinite;
  vertical-align: -0.08em;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

h2 {
  margin: 0;
  font-size: 3.8rem;
  line-height: 1;
}

h3 {
  margin: 0;
  font-size: 1.35rem;
}

.hero-copy {
  max-width: 690px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.16rem;
  line-height: 1.6;
}

.hero-actions {
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background:
    linear-gradient(90deg, rgba(229, 9, 20, 0.12), transparent, rgba(229, 9, 20, 0.12)),
    var(--panel);
  border-bottom: 1px solid var(--line);
}

.stats-band div {
  position: relative;
  overflow: hidden;
  min-height: 124px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 28px 48px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--panel) 88%, var(--accent) 12%), var(--panel));
  border-right: 1px solid var(--line);
}

.stats-band div:last-child {
  border-right: 0;
}

.stats-band div::before {
  position: absolute;
  inset: auto 22px 14px auto;
  width: 76px;
  height: 76px;
  content: "";
  border: 1px solid var(--accent);
  border-radius: 50%;
  opacity: 0.24;
  transform: rotate(18deg);
}

.stats-band strong {
  position: relative;
  font-size: 2.3rem;
  text-shadow: 0 0 22px rgba(229, 9, 20, 0.22);
}

.stats-band strong::after {
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 10px;
  content: "";
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(229, 9, 20, 0.5);
}

.stats-band span {
  position: relative;
  max-width: 280px;
  font-weight: 700;
}

.stats-band span,
.section-intro p,
.pack-card p,
.feature-list p,
.visual-copy p,
.steps p,
.cta-section p,
.footer {
  color: var(--muted);
  line-height: 1.65;
}

.section {
  position: relative;
  padding: 96px 72px;
  scroll-margin-top: 92px;
  transition: filter 180ms ease, transform 180ms ease;
}

.pack-section {
  padding-top: 74px;
}

body.is-scrolling .section {
  filter: blur(2px);
  transform: translateY(12px);
}

body.is-scrolling .section:hover {
  filter: blur(1px);
}

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

  .section {
    transition: none;
  }

  body.is-scrolling .section {
    filter: none;
    transform: none;
  }
}

.section::after {
  position: absolute;
  inset: 34px 42px auto auto;
  width: 92px;
  height: 92px;
  content: "";
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  opacity: 0.34;
  pointer-events: none;
}

.section-intro {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-intro p {
  max-width: 660px;
  margin: 18px 0 0;
}

.pack-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.56fr) minmax(420px, 1.44fr);
  gap: 20px;
  align-items: start;
}

.pack-layout::before {
  position: absolute;
  inset: 16% -24px auto auto;
  width: 44%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.42;
  pointer-events: none;
}

.pack-card,
.feature-list article,
.steps article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--panel) 90%, var(--accent) 10%), var(--panel));
}

.pack-card::before,
.feature-list article::before,
.steps article::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.pack-card:hover::before,
.feature-list article:hover::before,
.steps article:hover::before {
  transform: translateX(120%);
}

.pack-card:hover,
.feature-list article:hover,
.steps article:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.pack-card {
  display: grid;
  gap: 20px;
  align-content: center;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.pack-card.featured {
  min-height: 360px;
  justify-items: center;
  text-align: center;
  border-color: color-mix(in srgb, var(--accent) 72%, var(--line));
  background:
    radial-gradient(circle at 50% 20%, rgba(229, 9, 20, 0.18), transparent 17rem),
    linear-gradient(145deg, color-mix(in srgb, var(--panel) 82%, var(--accent) 18%), var(--panel));
}

.price-row {
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.price {
  color: var(--ink);
  font-size: 2.8rem;
  font-weight: 950;
  line-height: 1;
}

.tag {
  border-radius: var(--radius);
  padding: 8px 10px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.pack-card p,
.feature-list p,
.steps p,
.cta-section p {
  margin: 0;
}

.pack-card.featured p {
  max-width: 560px;
}

.pack-card.featured .button {
  width: min(100%, 340px);
  padding: 15px;
  min-height: 56px;
  margin-top: 6px;
  font-size: 1.35rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-list article {
  display: grid;
  gap: 12px;
  min-height: 172px;
  padding: 20px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.feature-list span,
.steps span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 950;
}

.feature-list h3 {
  font-size: 1.2rem;
}

.feature-list p {
  font-size: 0.96rem;
}

.visual-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(340px, 1.15fr);
  gap: 54px;
  align-items: center;
  background:
    radial-gradient(circle at 18% 48%, rgba(229, 9, 20, 0.28), transparent 22rem),
    radial-gradient(circle at 88% 45%, rgba(229, 9, 20, 0.18), transparent 16rem),
    linear-gradient(135deg, rgba(229, 9, 20, 0.16), transparent 55%),
    color-mix(in srgb, var(--panel) 62%, transparent);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.visual-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 62px,
      rgba(229, 9, 20, 0.055) 62px 64px
    );
  opacity: 0.72;
  transform: translateX(-40px);
  animation: cta-scan 5.5s linear infinite;
  pointer-events: none;
}

.visual-section::after {
  position: absolute;
  right: 42px;
  top: 34px;
  width: 96px;
  height: 96px;
  content: "";
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  opacity: 0.6;
  box-shadow: 18px -18px 42px rgba(229, 9, 20, 0.18);
  pointer-events: none;
}

.visual-copy {
  position: relative;
  z-index: 1;
}

.visual-copy::before {
  position: absolute;
  left: -70px;
  top: 18px;
  width: 5px;
  height: 170px;
  content: "";
  background: var(--accent);
  box-shadow: 0 0 36px rgba(229, 9, 20, 0.56);
}

.visual-copy p {
  max-width: 590px;
  margin: 18px 0 0;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.mini-grid span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background:
    radial-gradient(circle at 18% 0, rgba(229, 9, 20, 0.18), transparent 8rem),
    linear-gradient(135deg, color-mix(in srgb, var(--panel) 84%, var(--accent) 16%), var(--panel));
  font-weight: 850;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.mini-grid span:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 16px 34px rgba(229, 9, 20, 0.18);
}

.benefits-image-slot {
  position: relative;
  z-index: 1;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(229, 9, 20, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 26% 24%, rgba(229, 9, 20, 0.16), transparent 18rem),
    linear-gradient(135deg, rgba(229, 9, 20, 0.08), rgba(255, 255, 255, 0.01) 42%, transparent 72%),
    color-mix(in srgb, var(--panel) 28%, transparent);
  box-shadow:
    inset 0 0 90px rgba(229, 9, 20, 0.045),
    0 18px 70px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.benefits-image-slot:hover {
  transform: translateY(-5px);
  border-color: rgba(229, 9, 20, 0.42);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.18),
    0 0 38px rgba(229, 9, 20, 0.14);
}

.benefits-image-slot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  margin: 0 auto;
  filter: saturate(0.95) contrast(1.06);
}

.benefits-image-slot.has-image img {
  display: block;
}

.benefits-image-fallback {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0 42px,
      rgba(229, 9, 20, 0.028) 42px 44px
    ),
    radial-gradient(circle at 18% 12%, rgba(229, 9, 20, 0.1), transparent 14rem);
}

.benefits-image-slot.has-image .benefits-image-fallback {
  display: none;
}

.process-section {
  background:
    radial-gradient(circle at 18% 20%, var(--accent-soft), transparent 18rem),
    transparent;
}

.process-section .section-intro {
  position: relative;
}

.process-section .section-intro::before {
  position: absolute;
  left: -28px;
  top: -18px;
  width: 90px;
  height: 90px;
  content: "";
  border: 1px solid var(--accent);
  border-radius: 50%;
  opacity: 0.24;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.steps article {
  display: grid;
  gap: 14px;
  min-height: 230px;
  padding: 26px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.reveal-card {
  opacity: 0;
  transform: translateY(22px);
}

.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.cta-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(430px, 0.56fr);
  align-items: center;
  gap: 28px;
  background:
    radial-gradient(circle at 18% 48%, rgba(229, 9, 20, 0.28), transparent 22rem),
    radial-gradient(circle at 88% 45%, rgba(229, 9, 20, 0.18), transparent 16rem),
    linear-gradient(135deg, rgba(229, 9, 20, 0.16), transparent 55%),
    color-mix(in srgb, var(--panel) 62%, transparent);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.cta-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 62px,
      rgba(229, 9, 20, 0.06) 62px 64px
    );
  opacity: 0.65;
  transform: translateX(-40px);
  animation: cta-scan 5.5s linear infinite;
  pointer-events: none;
}

.cta-section::after {
  position: absolute;
  right: 72px;
  top: 38px;
  width: 96px;
  height: 96px;
  content: "";
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  opacity: 0.6;
  box-shadow: 18px -18px 42px rgba(229, 9, 20, 0.18);
}

@keyframes cta-scan {
  to {
    transform: translateX(64px);
  }
}

.cta-section div {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.cta-section p {
  margin: 18px 0 0;
}

.cta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.cta-pills span {
  border: 1px solid color-mix(in srgb, var(--accent) 42%, var(--line));
  border-radius: var(--radius);
  padding: 10px 13px;
  background: rgba(229, 9, 20, 0.1);
  color: var(--ink);
  font-weight: 850;
  box-shadow: 0 10px 26px rgba(229, 9, 20, 0.08);
}

.cta-action {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 210px;
  align-content: center;
  justify-items: center;
  transform: translateX(-34px);
  border: 1px solid rgba(229, 9, 20, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(229, 9, 20, 0.2), transparent 12rem),
    linear-gradient(135deg, rgba(229, 9, 20, 0.1), transparent);
  box-shadow: inset 0 0 70px rgba(229, 9, 20, 0.045);
}

.cta-section .cta-action {
  max-width: none;
}

.cta-section .button {
  text-align: center;
  z-index: 1;
  justify-self: center;
  width: min(100%, 360px);
  min-height: 100px;
  padding-inline: 20px;
  padding: 25px;
  font-size: 2.02rem;
  box-shadow:
    0 18px 46px rgba(229, 9, 20, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.cta-section .button::after {
  position: absolute;
  inset: -8px;
  z-index: -1;
  content: "";
  border-radius: var(--radius);
  background: rgba(229, 9, 20, 0.18);
  filter: blur(16px);
  opacity: 0;
  transition: opacity 180ms ease;
}

.cta-section .button:hover::after {
  opacity: 1;
}

.footer {
  justify-content: space-between;
  gap: 18px;
  padding: 30px 72px;
  border-top: 1px solid var(--line);
  background: #0b0c0d;
  color: #ffffff;
  font-size: 0.9rem;
}

.footer p {
  margin: 0;
  color: #ffffff;
}

.footer div {
  gap: 16px;
  font-weight: 850;
}

.footer a {
  color: #ffffff;
}

@media (max-width: 980px) {
  .topbar {
    flex-wrap: wrap;
    padding: 14px 24px;
  }

  .brand,
  .top-actions {
    min-width: auto;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-top: 4px;
  }

  .hero {
    min-height: 680px;
    padding: 110px 28px 72px;
  }

  h1 {
    min-height: 8.4rem;
    font-size: 4.4rem;
  }

  h2 {
    font-size: 2.9rem;
  }

  .stats-band,
  .pack-layout,
  .visual-section,
  .steps {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 76px 28px;
  }

  .footer {
    padding: 30px 28px;
  }
}

@media (max-width: 620px) {
  .top-actions {
    width: 100%;
  }

  .theme-toggle {
    flex: 0 0 76px;
  }

  .hero {
    min-height: 660px;
  }

  h1 {
    min-height: 8.6rem;
    font-size: 3rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .stats-band,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .stats-band div {
    padding: 24px;
  }

  .cta-section,
  .footer {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
