:root {
  --ink: #fbf8ff;
  --muted: #cfc8df;
  --panel: rgba(42, 36, 62, 0.88);
  --line: rgba(149, 133, 238, 0.28);
  --cyan: #74dff0;
  --lime: #e2cf95;
  --purple: #9585ee;
  --violet: #695895;
  --shadow: 0 24px 80px rgba(8, 6, 18, 0.34);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Space Grotesk", "Aptos Display", "Segoe UI Variable", "Trebuchet MS", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 16% 10%, rgba(116, 223, 240, 0.13), transparent 30%),
    radial-gradient(circle at 86% 8%, rgba(149, 133, 238, 0.24), transparent 30%),
    radial-gradient(circle at 76% 72%, rgba(226, 207, 149, 0.09), transparent 28%),
    linear-gradient(135deg, #171326 0%, #231d3b 48%, #312642 100%);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(116, 223, 240, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(149, 133, 238, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.38), transparent 84%);
}

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

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

img[src=""] {
  display: none;
}

button {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  padding: 8px 0;
  backdrop-filter: blur(20px);
  background: rgba(24, 20, 40, 0.94);
  border-bottom: 1px solid rgba(149, 133, 238, 0.22);
  box-shadow: 0 12px 35px rgba(8, 6, 18, 0.28);
}

body {
  padding-top: 96px;
}

.hero {
  min-height: calc(100svh - 96px);
  padding-top: 42px;
}


.site-header .container {
  width: min(100% - 32px, 1080px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 12px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.header-logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(116, 223, 240, 0.3));
}

.header-logo span,
.footer-logo span,
.gradient-text {
  color: transparent;
  background: linear-gradient(95deg, #ffffff 0%, var(--cyan) 38%, #a99df2 70%, var(--lime) 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.drawer-header,
.drawer-cta {
  display: none;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  padding: 8px 4px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 250ms var(--ease);
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  border-radius: 99px;
  transition: width 280ms var(--ease), left 280ms var(--ease);
}

.nav-links a:hover::after {
  left: 0;
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  box-shadow: 0 0 20px rgba(149, 133, 238, 0.22);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), filter 220ms var(--ease);
}

.btn-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 8px 24px rgba(116, 223, 240, 0.28);
}

.nav-toggle {
  display: none;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(10, 6, 22, 0.58);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 350ms var(--ease), visibility 350ms var(--ease);
}

.nav-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.96fr);
  align-items: center;
  gap: 42px;
  min-height: calc(100svh - 64px);
  padding: 34px 0 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  margin: 0 0 22px;
  color: #efeaff;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(149, 133, 238, 0.32);
  border-radius: 999px;
  background: rgba(47, 40, 72, 0.72);
  box-shadow: 0 10px 34px rgba(8, 6, 18, 0.26), 0 0 20px rgba(149, 133, 238, 0.12);
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 14px rgba(226, 207, 149, 0.75);
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(56px, 7vw, 110px);
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.hero-subtitle {
  max-width: 620px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  color: #120c24;
  font-weight: 900;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease);
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  box-shadow:
    0 14px 30px rgba(116, 223, 240, 0.18),
    0 0 18px rgba(226, 207, 149, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.55) inset;
}

.btn-secondary {
  color: var(--ink);
  background: rgba(55, 47, 78, 0.82);
  box-shadow: 0 0 0 1px rgba(149, 133, 238, 0.28) inset, 0 10px 28px rgba(149, 133, 238, 0.12);
}

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

.btn-primary:hover {
  box-shadow:
    0 20px 44px rgba(116, 223, 240, 0.24),
    0 0 26px rgba(226, 207, 149, 0.18);
}

.hero-visual {
  position: relative;
  min-height: min(520px, calc(100svh - 140px));
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  transform: translateY(-20px);
}

.hero-image-frame {
  width: min(620px, 100%);
  height: min(520px, calc(100svh - 140px));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(116, 223, 240, 0.22);
  border-radius: 48px;
  background: rgba(35, 28, 55, 0.34);
  box-shadow:
    0 24px 70px rgba(8, 6, 18, 0.38),
    0 0 34px rgba(149, 133, 238, 0.12),
    inset 0 0 28px rgba(116, 223, 240, 0.04);
}

.hero-product-img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

section {
  padding: 82px 0;
}

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

.section-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.section-heading p {
  max-width: 430px;
  margin-bottom: 0;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.product-card,
.content-card,
.faq-item,
.review-card {
  border: 1px solid rgba(149, 133, 238, 0.24);
  background: var(--panel);
  box-shadow:
    0 20px 58px rgba(8, 6, 18, 0.28),
    0 0 24px rgba(116, 223, 240, 0.07);
  backdrop-filter: blur(18px);
}

.product-card {
  position: relative;
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 16px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.product-card img {
  width: 100%;
  display: block;
}

.product-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-image {
  display: grid;
  min-height: 220px;
  place-items: center;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 52% 36%, rgba(149, 133, 238, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(50, 43, 74, 0.9), rgba(35, 29, 55, 0.82));
  box-shadow: inset 0 0 0 1px rgba(149, 133, 238, 0.14), 0 0 28px rgba(149, 133, 238, 0.1);
}

.product-image span {
  color: #d8d1e8;
  font-weight: 800;
}

.product-card h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  letter-spacing: -0.035em;
}

.product-card p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.96rem;
}

.product-card .price-row {
  width: 100%;
  display: flex;
  margin-top: auto;
  padding-top: 8px;
}

.product-card .price-row .btn,
.product-card .price-row .buy-btn,
.product-card .price-row a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  text-align: center;
  border-radius: 18px;
}

.product-card:hover {
  transform: translateY(-9px);
  border-color: rgba(116, 223, 240, 0.34);
  box-shadow:
    0 28px 72px rgba(8, 6, 18, 0.36),
    0 0 28px rgba(116, 223, 240, 0.1),
    0 0 30px rgba(149, 133, 238, 0.16);
}

.small-btn {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 0.88rem;
}

.product-info-section {
  padding: 82px 0;
}

.product-info-section .section-heading {
  margin-bottom: 34px;
}

.product-info-block {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 34px;
  padding: 18px;
  border: 1px solid rgba(149, 133, 238, 0.24);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 18% 14%, rgba(116, 223, 240, 0.1), transparent 34%),
    radial-gradient(circle at 88% 78%, rgba(149, 133, 238, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(50, 43, 74, 0.76), rgba(35, 29, 55, 0.72));
  box-shadow:
    0 24px 70px rgba(8, 6, 18, 0.32),
    0 0 30px rgba(149, 133, 238, 0.1);
}

.product-info-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.product-info-content .eyebrow {
  margin-bottom: 14px;
  padding: 6px 10px;
  font-size: 0.62rem;
}

.product-info-content h3 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.product-info-content p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.product-info-image {
  position: relative;
  min-height: 420px;
  height: 100%;
  display: block;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(116, 223, 240, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at 48% 36%, rgba(116, 223, 240, 0.2), transparent 34%),
    radial-gradient(circle at 82% 74%, rgba(226, 207, 149, 0.1), transparent 30%),
    linear-gradient(135deg, rgba(45, 50, 82, 0.82), rgba(49, 39, 74, 0.72));
  box-shadow:
    0 24px 70px rgba(8, 6, 18, 0.38),
    0 0 34px rgba(149, 133, 238, 0.12),
    inset 0 0 28px rgba(116, 223, 240, 0.04);
}

.product-info-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

.product-info-image span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(243, 240, 255, 0.68);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.product-info-image img:not([src=""]) + span {
  display: none;
}

.spec-table {
  overflow: hidden;
  border: 1px solid rgba(149, 133, 238, 0.22);
  border-radius: 18px;
  background: rgba(243, 240, 255, 0.05);
}

.spec-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(149, 133, 238, 0.16);
}

.spec-row:last-child {
  border-bottom: 0;
}

.spec-head {
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(116, 223, 240, 0.07);
}

.spec-row strong,
.spec-row span {
  font-size: 0.78rem;
  line-height: 1.35;
}

.spec-row strong {
  color: #ffffff;
  font-weight: 900;
}

.spec-row span {
  color: #ded8eb;
}

.product-info-buy {
  width: fit-content;
  min-height: 46px;
  margin-top: 18px;
  padding: 12px 28px;
  align-self: flex-start;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-info-buy:hover {
  transform: translateY(-3px);
}

.reviews-static-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.reviews-static-grid .review-card {
  width: auto;
  min-height: 100%;
  flex: initial;
}

.review-card {
  min-height: 340px;
  padding: 20px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 10%, rgba(116, 223, 240, 0.09), transparent 34%),
    linear-gradient(145deg, rgba(50, 43, 74, 0.9), rgba(38, 32, 58, 0.84));
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(116, 223, 240, 0.28);
  box-shadow:
    0 30px 74px rgba(8, 6, 18, 0.36),
    0 0 30px rgba(149, 133, 238, 0.14);
}

.review-image {
  display: grid;
  min-height: 132px;
  place-items: center;
  margin-bottom: 18px;
  overflow: hidden;
  color: #d7ceef;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(149, 133, 238, 0.2);
  border-radius: 22px;
  background:
    radial-gradient(circle at 28% 24%, rgba(226, 207, 149, 0.14), transparent 28%),
    radial-gradient(circle at 72% 28%, rgba(149, 133, 238, 0.2), transparent 32%),
    linear-gradient(135deg, rgba(50, 43, 74, 0.9), rgba(35, 29, 55, 0.82));
  box-shadow: inset 0 0 0 1px rgba(149, 133, 238, 0.09), 0 0 24px rgba(149, 133, 238, 0.08);
}

.review-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stars {
  margin-bottom: 12px;
  color: var(--lime);
  letter-spacing: 0.12em;
  text-shadow: 0 0 10px rgba(226, 207, 149, 0.18);
}

.review-card p {
  color: #d7d0e4;
  font-weight: 650;
}

.reviews-track {
  width: auto;
  animation: none;
}

.reviews-shell {
  overflow: visible;
  mask-image: none;
}

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

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

.content-card h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

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

.seo-products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.seo-products-grid .content-card {
  min-height: 260px;
  padding: 34px;
  border-radius: 28px;
}

.seo-products-grid .content-card h3 {
  margin-bottom: 18px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.seo-products-grid .content-card p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.seo-content .section-heading h2 {
  max-width: 900px;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 0.95;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin-inline: auto;
}

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

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

.faq-icon,
.footer-arrow {
  display: inline-grid;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: rgba(116, 223, 240, 0.13);
  transition: transform 260ms var(--ease), background 260ms var(--ease);
}

.faq-answer,
.footer-collapse-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms var(--ease);
}

.faq-answer-inner {
  padding: 0 24px 24px;
  color: var(--muted);
}

.faq-item.is-open .faq-icon,
.footer-collapse.is-open .footer-arrow {
  background: rgba(226, 207, 149, 0.24);
  transform: rotate(180deg);
}

.site-footer {
  padding: 58px 0 30px;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 12%, rgba(116, 223, 240, 0.14), transparent 34%),
    radial-gradient(circle at 78% 82%, rgba(149, 133, 238, 0.22), transparent 36%),
    linear-gradient(135deg, #1e1832, #2a2243 48%, #362848);
  border-top-left-radius: 42px;
  border-top-right-radius: 42px;
  box-shadow: 0 -26px 80px rgba(8, 6, 18, 0.3), 0 -10px 38px rgba(149, 133, 238, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr 1fr;
  gap: 28px;
  margin-bottom: 22px;
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 14px;
  letter-spacing: -0.035em;
}

.site-footer p,
.site-footer a,
.footer-list li,
.footer-links span {
  color: rgba(251, 248, 255, 0.72);
}

.footer-links,
.footer-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a:hover {
  color: #ffffff;
  text-shadow: 0 0 14px rgba(149, 133, 238, 0.32);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.footer-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(116, 223, 240, 0.28));
}

.footer-collapse {
  padding: 18px;
  margin-bottom: 26px;
  border: 1px solid rgba(149, 133, 238, 0.22);
  border-radius: 22px;
  background: rgba(50, 43, 74, 0.64);
}

.footer-collapse-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 16px;
  padding: 0;
  color: var(--ink);
  font-weight: 900;
  text-align: center;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.footer-collapse-button .footer-arrow {
  position: absolute;
  right: 0;
}

.footer-collapse .footer-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 22px;
  padding-top: 18px;
}

.footer-collapse .footer-list li {
  width: auto;
}

.footer-collapse .footer-list a {
  display: inline-flex;
  padding: 6px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  color: rgba(251, 248, 255, 0.6);
  border-top: 1px solid rgba(149, 133, 238, 0.18);
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(13, 9, 28, 0.78);
  backdrop-filter: blur(18px);
}

.age-gate.is-visible {
  display: flex;
  animation: fade-in 240ms ease both;
}

.age-modal {
  width: min(100%, 560px);
  padding: 34px;
  text-align: center;
  border: 1px solid rgba(149, 133, 238, 0.28);
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 12%, rgba(116, 223, 240, 0.14), transparent 32%),
    radial-gradient(circle at 84% 82%, rgba(149, 133, 238, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(50, 43, 74, 0.98), rgba(31, 26, 48, 0.96));
  box-shadow: 0 30px 90px rgba(8, 6, 18, 0.46), 0 0 42px rgba(149, 133, 238, 0.16);
}

.age-modal h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

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

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

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 1200px) {
  .site-header .container {
    width: min(100% - 28px, 1000px);
  }

  .nav {
    gap: 8px;
    min-height: 52px;
    padding: 0 12px;
  }

  .nav-links {
    gap: 4px;
  }

  .nav-links a {
    padding: 5px 7px;
    font-size: 0.875rem;
  }

  .hero {
    gap: 32px;
    min-height: calc(100svh - 62px);
    padding-top: 26px;
    padding-bottom: 34px;
  }

  h1 {
    max-width: 660px;
    font-size: clamp(48px, 6.6vw, 88px);
  }

  .hero-subtitle {
    margin-bottom: 20px;
    font-size: clamp(1rem, 1.6vw, 1.15rem);
  }

  .hero-actions,
  .section-actions {
    margin-bottom: 20px;
  }

  .hero-visual {
    min-height: min(460px, calc(100svh - 150px));
  }

  .hero-image-frame {
    height: min(460px, calc(100svh - 150px));
  }
}

@media (max-width: 1020px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 32px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-image-frame {
    height: 430px;
  }

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

  .content-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 900px) {
  .product-info-block {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-info-image {
    min-height: 320px;
  }

  .product-info-content {
    padding: 16px;
  }

  .product-info-content h3 {
    font-size: clamp(1.7rem, 7vw, 2.8rem);
  }

 .product-info-block {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-info-image {
    order: 1;
    min-height: 320px;
  }

  .product-info-content {
    order: 2;
    padding: 16px;
  }

  .product-info-content h3 {
    font-size: clamp(1.7rem, 7vw, 2.8rem);
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual {
    min-height: auto;
    margin-top: 20px;
    transform: translateY(-25px);
  }

  .hero-image-frame {
    width: 100%;
    height: 360px;
    border-radius: 32px;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    min-height: 54px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(41, 34, 61, 0.8);
    box-shadow: 0 12px 42px rgba(8, 6, 18, 0.3), 0 0 24px rgba(149, 133, 238, 0.1);
  }

  .header-logo {
    gap: 8px;
    font-size: 0.95rem;
  }

  .header-logo img {
    width: 32px;
    height: 32px;
  }

  .drawer-logo {
    font-size: 1.15rem;
  }

  .drawer-logo img {
    width: 42px;
    height: 42px;
  }

  .nav-toggle {
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--ink);
    border-radius: 999px;
    transition: transform 300ms var(--ease), opacity 300ms var(--ease), background-color 300ms var(--ease);
  }

  .nav-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background-color: var(--cyan);
  }

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

  .nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background-color: var(--cyan);
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    width: min(320px, 80vw);
    height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 14px;
    padding: 24px;
    margin: 0;
    list-style: none;
    background: rgba(28, 23, 45, 0.96);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(149, 133, 238, 0.2);
    box-shadow: -12px 0 42px rgba(8, 6, 18, 0.45);
    transform: translateX(100%);
    transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav-links.is-active {
    transform: translateX(0);
  }

  .drawer-header {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(149, 133, 238, 0.18);
  }

  .drawer-header .logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.86rem;
    font-weight: 900;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 12px 16px;
    color: #efeaff;
    font-size: 1.05rem;
    font-weight: 700;
    background: rgba(149, 133, 238, 0.08);
    border: 1px solid rgba(149, 133, 238, 0.16);
    border-radius: 16px;
    transition: background 250ms var(--ease), border-color 250ms var(--ease), transform 250ms var(--ease);
  }

  .nav-links a:hover,
  .nav-links a:focus {
    color: #ffffff;
    background: rgba(149, 133, 238, 0.18);
    border-color: rgba(116, 223, 240, 0.34);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(149, 133, 238, 0.12);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .drawer-cta {
    display: block;
    margin-top: 10px;
  }

  .drawer-cta a {
    justify-content: center !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--purple), var(--cyan)) !important;
    border: none !important;
    box-shadow: 0 0 20px rgba(149, 133, 238, 0.18) !important;
  }

  .drawer-cta a:hover {
    transform: none !important;
    box-shadow: 0 0 28px rgba(116, 223, 240, 0.28) !important;
  }

  .hero {
    gap: 38px;
    padding: 42px 0 40px;
  }

  .hero-actions,
  .age-actions,
  .footer-bottom,
  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  section {
    padding: 58px 0;
  }

  .content-grid,
  .footer-grid,
  .seo-products-grid {
    grid-template-columns: 1fr;
  }

  .seo-products-grid .content-card {
    min-height: auto;
    padding: 26px;
  }

  .seo-content .section-heading h2 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .footer-collapse .footer-list {
    display: grid;
    gap: 10px;
  }

  .footer-logo {
    font-size: 1.2rem;
  }

  .footer-logo img {
    width: 46px;
    height: 46px;
  }

  .review-card {
    min-height: 320px;
    padding: 24px;
  }

  .review-image {
    min-height: 124px;
  }

  .age-modal {
    padding: 26px;
  }

  .product-info-buy {
    width: 100%;
    align-self: stretch;
  }
}

@media (max-width: 560px) {
  .product-info-section {
    padding: 58px 0;
  }

  .product-info-block {
    padding: 12px;
    border-radius: 26px;
  }

  .product-info-image {
    min-height: 260px;
    border-radius: 22px;
  }

  .product-info-content h3 {
    font-size: 1.7rem;
  }

  .product-info-content p:not(.eyebrow) {
    font-size: 0.82rem;
  }

  .spec-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px 14px;
  }

  .spec-head {
    display: none;
  }

  .spec-row strong,
  .spec-row span {
    font-size: 0.76rem;
  }

  .reviews-static-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .site-header {
    position: sticky;
    top: 0;
    left: auto;
    width: 100%;
    z-index: 2000;
    padding: 8px 0;
  }

  body {
    padding-top: 0;
  }

  .hero {
    padding-top: 34px;
    min-height: auto;
  }

  .nav {
    min-height: 54px;
  }
}