:root {
  --bg: #07111d;
  --bg-soft: #0c1724;
  --surface: rgba(11, 22, 35, 0.74);
  --surface-strong: rgba(14, 28, 44, 0.92);
  --line: rgba(148, 163, 184, 0.16);
  --text: #eef6ff;
  --muted: #99abc0;
  --accent: #34d399;
  --accent-2: #38bdf8;
  --accent-3: #fb7185;
  --shadow: 0 30px 80px rgba(2, 8, 18, 0.45);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 24%),
    radial-gradient(circle at top right, rgba(52, 211, 153, 0.14), transparent 20%),
    radial-gradient(circle at 50% 120%, rgba(251, 113, 133, 0.08), transparent 24%),
    linear-gradient(180deg, #07111d 0%, #091523 44%, #0b1726 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.age-gate-open {
  overflow: hidden;
}

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

button {
  border: 0;
  background: none;
  font: inherit;
  cursor: pointer;
}

.hidden {
  display: none !important;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--accent-2);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease, color 0.28s ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 18px 38px rgba(56, 189, 248, 0.24);
}

.button-secondary {
  color: var(--text);
  background: rgba(15, 28, 44, 0.78);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.age-modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(10, 22, 34, 0.48);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.age-modal[aria-hidden="false"] {
  display: grid;
}

.age-card {
  width: min(100%, 460px);
  padding: 38px;
  border-radius: 28px;
  background: var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
  text-align: center;
}

.age-card h2 {
  margin-bottom: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 2.4rem);
  line-height: 1.06;
}

.age-card p {
  color: var(--muted);
}

.age-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.warning-bar {
  position: sticky;
  top: 0;
  z-index: 45;
  padding: 12px 16px;
  color: #fff;
  background: linear-gradient(90deg, #020617, #111827);
  text-align: center;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 48px;
  z-index: 40;
  padding: 18px 0 0;
  transition: top 0.28s ease, padding 0.28s ease, transform 0.28s ease;
}

.site-header.scrolled {
  top: 10px;
  padding-top: 8px;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  background: rgba(8, 18, 31, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 34px rgba(2, 8, 18, 0.34);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.site-header .brand > img {
  width: 48px;
  height: auto;
  display: block;
  flex: 0 0 auto;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.85), transparent 30%),
    linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.brand-mark-image {
  width: 40px;
  height: 40px;
  background: url("img/favicon-96x96.png") center / cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.brand-text {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-text strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-cta {
  min-height: 46px;
  padding: 0 20px;
  white-space: nowrap;
}

.desktop-nav a,
.mobile-nav a {
  color: var(--muted);
  font-weight: 700;
  transition: color 0.25s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(15, 28, 44, 0.8);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  width: min(var(--container), calc(100% - 32px));
  margin: 10px auto 0;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 28px;
  background: rgba(8, 18, 31, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.mobile-nav.active {
  display: grid;
  gap: 14px;
}

.hero {
  padding: 64px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
  align-items: center;
  gap: 42px;
}

.hero-copy h1 {
  max-width: 12ch;
  margin-bottom: 20px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 0.94;
}

.hero-copy h1 span {
  color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-text {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
}

.hero-metrics li {
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: var(--radius-md);
  background: rgba(10, 20, 33, 0.7);
  backdrop-filter: blur(16px);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.35rem;
  font-family: "Space Grotesk", sans-serif;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.hero-glow {
  position: absolute;
  inset: 8% 10%;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.26), rgba(56, 189, 248, 0.24), rgba(251, 113, 133, 0.18));
  filter: blur(28px);
}

.hero-slider {
  position: relative;
  width: min(100%, 480px);
  aspect-ratio: 3 / 4;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 32px;
  background: rgba(10, 20, 33, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.slides {
  display: flex;
  min-height: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.slide {
  flex: 0 0 100%;
  min-height: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 0;
  padding: 38px 40px 54px;
  position: relative;
}

.slide-copy {
  position: relative;
  z-index: 2;
  max-width: 260px;
  padding-right: 12px;
}

.slide-copy p {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.slide-copy h2 {
  margin: 10px 0 16px;
  max-width: 9ch;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1;
}

.slide-copy span {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  color: #fff;
  background: rgba(238, 246, 255, 0.12);
  font-size: 0.84rem;
  font-weight: 800;
}

.device-stack {
  display: flex;
  justify-content: center;
  align-items: end;
  min-height: 250px;
}

.banner-placeholder {
  position: relative;
  width: 100%;
  min-height: 270px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  overflow: hidden;
  border: 1px dashed rgba(238, 246, 255, 0.14);
  background: rgba(7, 17, 29, 0.14);
}

.banner-full {
  position: absolute;
  inset: 0;
  min-height: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.banner-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-full img {
  border-radius: 32px;
  width: 100%;
  height: 100%;
}

.banner-full::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 32px;
  background: linear-gradient(90deg, rgba(8, 18, 31, 0.5) 0%, rgba(8, 18, 31, 0.16) 48%, rgba(8, 18, 31, 0.34) 100%);
}

.device {
  position: relative;
  width: 132px;
  height: 280px;
  padding: 18px 14px;
  border-radius: 34px;
  color: #fff;
  box-shadow: 0 28px 50px rgba(17, 32, 49, 0.18);
}

.device.large {
  width: 150px;
  height: 310px;
  border-radius: 36px;
}

.device i {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 56%;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  transform: translateX(-50%);
}

.device b {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 22px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lime { background: linear-gradient(180deg, #8ef59d, #16a34a); }
.gold { background: linear-gradient(180deg, #fcd34d, #f59e0b); }
.mint { background: linear-gradient(180deg, #9ff5d4, #10b981); }
.sky { background: linear-gradient(180deg, #93dcff, #0284c7); }
.blush { background: linear-gradient(180deg, #f9b7d0, #ec4899); }
.coral { background: linear-gradient(180deg, #fba9a1, #f97316); }
.violet { background: linear-gradient(180deg, #c6b3ff, #7c3aed); }
.ice { background: linear-gradient(180deg, #c0f2ff, #06b6d4); }
.amber { background: linear-gradient(180deg, #fdcf8b, #ea580c); }

.tone-lime { background: linear-gradient(135deg, rgba(142, 245, 157, 0.26), rgba(255, 255, 255, 0.4)); }
.tone-gold { background: linear-gradient(135deg, rgba(252, 211, 77, 0.22), rgba(255, 255, 255, 0.4)); }
.tone-mint { background: linear-gradient(135deg, rgba(159, 245, 212, 0.24), rgba(255, 255, 255, 0.4)); }
.tone-sky { background: linear-gradient(135deg, rgba(147, 220, 255, 0.24), rgba(255, 255, 255, 0.42)); }
.tone-blush { background: linear-gradient(135deg, rgba(249, 183, 208, 0.25), rgba(255, 255, 255, 0.42)); }
.tone-coral { background: linear-gradient(135deg, rgba(251, 169, 161, 0.24), rgba(255, 255, 255, 0.42)); }
.tone-violet { background: linear-gradient(135deg, rgba(198, 179, 255, 0.25), rgba(255, 255, 255, 0.44)); }
.tone-ice { background: linear-gradient(135deg, rgba(192, 242, 255, 0.25), rgba(255, 255, 255, 0.42)); }
.tone-amber { background: linear-gradient(135deg, rgba(253, 207, 139, 0.24), rgba(255, 255, 255, 0.42)); }
.tone-rose { background: linear-gradient(135deg, rgba(253, 194, 210, 0.24), rgba(255, 255, 255, 0.42)); }

.slider-button {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--text);
  background: rgba(12, 22, 34, 0.84);
  border: 1px solid rgba(148, 163, 184, 0.16);
  backdrop-filter: blur(14px);
  transform: translateY(-50%);
}

.slider-button.prev { left: 14px; }
.slider-button.next { right: 14px; }

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(238, 246, 255, 0.18);
}

.indicator.active {
  width: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

section {
  padding: 48px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.section-head h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.filter-tab {
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(12, 22, 34, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.18);
  font-weight: 800;
  backdrop-filter: blur(12px);
  transition: all 0.25s ease;
}

.filter-tab.active,
.filter-tab:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 28px rgba(56, 189, 248, 0.18);
}

.product-grid,
.reviews-grid,
.benefits-grid,
.footer-grid,
.description-grid {
  display: grid;
  gap: 18px;
}

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

.product-card,
.review-card,
.benefit-card,
.description-card {
  position: relative;
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.product-card {
  display: grid;
  gap: 14px;
}

.product-visual {
  display: grid;
  place-items: center;
  min-height: 300px;
  border-radius: 22px;
  overflow: hidden;
}

.product-placeholder {
  position: relative;
  border: 1px dashed rgba(238, 246, 255, 0.14);
}

.product-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-placeholder span {
  position: relative;
  z-index: 1;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(7, 17, 29, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card h3 {
  font-size: 1.02rem;
  line-height: 1.3;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.94rem;
}

.product-meta strong {
  color: var(--text);
}

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

.description-card h3 {
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.28rem;
}

.description-card p {
  color: var(--muted);
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

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

.review-card {
  display: grid;
  gap: 16px;
}

.review-image-slot {
  position: relative;
  width: 100%;
  min-height: 300px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 22px;
  border: 1px dashed rgba(238, 246, 255, 0.18);
}

.review-image-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background: transparent;
}

.review-image-slot span {
  position: relative;
  z-index: 1;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(7, 17, 29, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.avatar-lime { background: linear-gradient(135deg, rgba(34, 197, 94, 0.55), rgba(56, 189, 248, 0.4)); }
.avatar-sky { background: linear-gradient(135deg, rgba(56, 189, 248, 0.58), rgba(14, 165, 233, 0.38)); }
.avatar-coral { background: linear-gradient(135deg, rgba(251, 113, 133, 0.55), rgba(249, 115, 22, 0.4)); }

.review-text {
  color: var(--muted);
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-meta span {
  color: #f59e0b;
  letter-spacing: 0.08em;
}

.benefits-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.benefits .section-head h2 {
  color: var(--accent);
}

.benefit-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border-radius: 50%;
  color: #fff;
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.benefit-card h3 {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 1.9rem;
  font-size: clamp(1.2rem, 1.5vw, 1.7rem);
  text-align: center;
}

.benefit-card p {
  color: var(--muted);
  max-width: 33ch;
  margin: 0 auto;
  text-align: center;
}

.benefits .benefit-card {
  padding: 30px 28px 32px;
  border-color: rgba(148, 163, 184, 0.16);
  background: rgba(18, 24, 31, 0.82);
}

.site-footer {
  padding: 48px 0 28px;
}

.footer-shell {
  padding: 28px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 36px 36px 0 0;
  background: rgba(10, 20, 33, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-footer .brand-mark {
  width: 40px;
  height: 40px;
}

.brand-footer > img {
  width: 64px;
  height: auto;
  display: block;
  flex: 0 0 auto;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 800;
  color: var(--text);
  background: rgba(15, 28, 44, 0.88);
  border: 1px solid var(--line);
}

.social-links a svg {
  width: 20px;
  height: 20px;
  display: block;
}

.footer-grid {
  grid-template-columns: 1fr 1fr 1fr;
  margin: 28px 0;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.footer-grid h3 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.footer-grid a,
.footer-grid p {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

.footer-cities-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 2.5rem 0;
  padding: 0.25rem 0 1rem;
}

.cities-accordion {
  width: 100%;
}

.cities-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.1rem 1rem;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cities-toggle:hover {
  color: var(--accent);
}

.cities-arrow {
  color: var(--muted);
  transition: transform 0.35s cubic-bezier(.4, 0, .2, 1), color 0.2s;
  flex-shrink: 0;
}

.cities-toggle[aria-expanded="true"] .cities-arrow {
  transform: rotate(180deg);
  color: var(--accent);
}

.cities-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(.4, 0, .2, 1), opacity 0.35s ease;
  opacity: 0;
}

.cities-body.open {
  opacity: 1;
}

.footer-cities {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 1rem 0 0.5rem;
}

.footer-cities li {
  break-inside: avoid;
  min-width: 0;
}

.footer-cities li a {
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 0.8rem 1rem;
  border-radius: 16px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
  background: linear-gradient(180deg, rgba(14, 28, 44, 0.88), rgba(10, 20, 33, 0.76));
  border: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 0.2s ease, color 0.15s ease, border-color 0.2s ease, background 0.2s ease;
  white-space: normal;
  overflow-wrap: anywhere;
}

.footer-cities li a:hover {
  color: var(--accent);
  transform: translateY(-1px);
  border-color: rgba(52, 211, 153, 0.28);
  background: linear-gradient(180deg, rgba(18, 36, 56, 0.96), rgba(12, 24, 38, 0.88));
}

.footer-bottom p {
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1080px) {
  .product-grid,
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }
}

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

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header {
    top: 44px;
  }

  .hero-grid,
  .description-grid,
  .reviews-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-visual {
    order: -1;
  }

  .slide {
    min-height: 100%;
  }

  .footer-top,
  .footer-bottom,
  .section-head {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .hero,
  section {
    padding: 36px 0;
  }

  .header-shell {
    padding: 14px 16px;
  }

  .hero-metrics,
  .product-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .catalog .section-head {
    align-items: stretch;
  }

  .catalog .section-head .button {
    width: auto;
    min-width: 0;
    align-self: flex-start;
  }

  .catalog .filters {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .catalog .filter-tab {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
  }

  .hero-slider {
    width: min(100%, 380px);
  }

  .slide {
    min-height: 100%;
    padding: 24px 24px 46px;
  }

  .hero-slider,
  .slides {
    min-height: 0;
  }

  .slide-copy h2 {
    max-width: none;
  }

  .banner-placeholder {
    min-height: 220px;
  }

  .banner-full img,
  .banner-full::after {
    border-radius: 24px;
  }

  .age-actions,
  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .warning-bar {
    font-size: 0.66rem;
  }

  .footer-shell {
    padding: 22px 16px;
    border-radius: 28px 28px 0 0;
  }

  .footer-cities-section {
    margin: 2rem 0;
  }

  .cities-toggle {
    justify-content: space-between;
    padding: 1rem 0;
    text-align: left;
  }

  .footer-cities {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    padding-top: 0.85rem;
  }
}
