:root {
  --bg: #07090c;
  --bg-2: #0c1016;
  --bg-3: #121821;
  --line: rgba(90, 230, 210, 0.16);
  --line-strong: rgba(90, 230, 210, 0.38);
  --text: #e8eef4;
  --muted: #8b97a6;
  --faint: #5c6774;
  --cyan: #3ee6c8;
  --cyan-dim: rgba(62, 230, 200, 0.12);
  --gold: #e2b15a;
  --gold-dim: rgba(226, 177, 90, 0.14);
  --danger: #ff6b6b;
  --shadow: 0 0 0 1px var(--line);
  --radius: 18px;
  --nav-h: 72px;
  --wrap: 1180px;
  --font: "Sora", "Noto Sans SC", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background-image:
    radial-gradient(1200px 600px at 80% -10%, rgba(62, 230, 200, 0.08), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(226, 177, 90, 0.05), transparent 50%),
    linear-gradient(180deg, #07090c 0%, #07090c 100%);
}

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

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

button,
input {
  font-family: inherit;
}

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

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--cyan);
}

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 600;
}

p {
  margin: 0;
}

.muted { color: var(--muted); }
.gold { color: var(--gold); }
.cyan { color: var(--cyan); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding-inline: 36px;
  border-bottom: 1px solid transparent;
  background: rgba(7, 9, 12, 0.55);
  backdrop-filter: blur(16px);
  transition: background 0.25s, border-color 0.25s;
}

.site-header .wrap {
  width: min(100%, var(--wrap));
}

.site-header.is-scrolled {
  background: rgba(7, 9, 12, 0.88);
  border-bottom-color: var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

[data-open-qr] {
  cursor: zoom-in;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  object-fit: cover;
  display: block;
  background: #07090c;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-size: 15px;
  font-weight: 600;
}

.logo-text span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
}

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

.nav-links a {
  padding: 8px 12px;
  color: var(--muted);
  font-size: 14px;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  display: block;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  position: relative;
  margin: 0 auto;
}

.menu-btn span::before,
.menu-btn span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-btn span::before { top: -5px; }
.menu-btn span::after { top: 5px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--cyan);
  color: #06211c;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover { filter: brightness(1.06); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}

.btn--gold {
  background: var(--gold);
  color: #23180a;
}

.btn--sm {
  min-height: 36px;
  padding: 0 14px;
  font-size: 13px;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  display: grid;
  place-items: stretch;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 9, 12, 0.35) 0%, rgba(7, 9, 12, 0.72) 55%, #07090c 100%),
    linear-gradient(90deg, rgba(7, 9, 12, 0.55) 0%, transparent 45%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 0 56px;
  min-height: calc(100svh - var(--nav-h));
}

.hero-frame {
  position: relative;
  padding: 28px 0 8px;
}

.hero-frame::before,
.hero-frame::after,
.hud-tl, .hud-tr, .hud-bl, .hud-br {
  pointer-events: none;
}

.hud {
  position: relative;
}

.hud::before,
.hud::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid var(--cyan);
  opacity: 0.7;
}

.hud::before { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.hud::after { top: 0; right: 0; border-left: 0; border-bottom: 0; }

.hud-bottom::before,
.hud-bottom::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid var(--cyan);
  opacity: 0.7;
}

.hud-bottom::before { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.hud-bottom::after { bottom: 0; right: 0; border-left: 0; border-top: 0; }

.hero-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  background: rgba(7, 9, 12, 0.45);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
}

.status-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.hero h1 {
  font-size: clamp(48px, 9vw, 108px);
  max-width: 10ch;
  margin: 10px 0 18px;
}

.hero-lead {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 18px);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  max-width: 720px;
}

.hero-stats div {
  background: rgba(7, 9, 12, 0.72);
  padding: 16px 18px;
}

.hero-stats b {
  display: block;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
}

.hero-stats span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* Ticker */
.ticker {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #090c11;
  padding: 12px 0;
}

.ticker-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
}

.ticker-track span { white-space: nowrap; }
.ticker-track b { color: var(--gold); font-weight: 500; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
.section {
  padding: 88px 0;
  position: relative;
}

.section--tight { padding: 56px 0; }

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 40px;
}

.section-head p {
  max-width: 520px;
  color: var(--muted);
  margin-top: 12px;
}

.idx {
  font-family: var(--mono);
  color: var(--faint);
  font-size: 12px;
  letter-spacing: 0.18em;
}

/* Cards / grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

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

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

.card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card-media img {
  transform: scale(1.04);
}

.card-body {
  padding: 22px;
}

.card-body h3 {
  font-size: 26px;
  margin: 8px 0 10px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.chip {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 4px;
}

.chip--on {
  color: var(--cyan);
  border-color: var(--line-strong);
  background: var(--cyan-dim);
}

.chip--gold {
  color: var(--gold);
  border-color: rgba(226, 177, 90, 0.35);
  background: var(--gold-dim);
}

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

.shop-card {
  border: 1px solid var(--line);
  background: var(--bg-2);
  border-radius: var(--radius);
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  min-height: 188px;
}

.shop-card h3 {
  font-size: 22px;
  margin: 8px 0 6px;
}

.shop-card .price {
  margin-top: auto;
  padding-top: 12px;
  font-size: 26px;
  letter-spacing: -0.04em;
  color: var(--gold);
  line-height: 1.1;
}

.shop-card .price small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-family: var(--mono);
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.04em;
}

a.shop-card {
  color: inherit;
}

a.shop-card:hover {
  border-color: var(--line-strong);
}

.shop-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 56px;
}

.shop-mosaic a {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  color: inherit;
}

.shop-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.shop-mosaic a:hover img {
  transform: scale(1.05);
}

.shop-mosaic span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(7, 9, 12, 0.72);
  border: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.split article {
  padding: 32px;
  background: var(--bg-2);
}

.split article + article {
  border-left: 1px solid var(--line);
}

.split h3 {
  font-size: 28px;
  margin: 10px 0 12px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat {
  padding: 24px 20px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(62, 230, 200, 0.05), transparent 55%);
}

.stat b {
  display: block;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.04em;
  color: var(--cyan);
}

.stat span {
  color: var(--muted);
  font-size: 13px;
}

.feature-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.feature-list li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  color: var(--muted);
  font-size: 14px;
}

.feature-list li::before {
  content: "▸";
  color: var(--cyan);
}

.knowledge-card {
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  border-radius: var(--radius);
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.2s, transform 0.2s;
}

.knowledge-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}

.knowledge-card small {
  font-family: var(--mono);
  color: var(--gold);
  letter-spacing: 0.14em;
  font-size: 11px;
}

.knowledge-card h3 {
  font-size: 22px;
  margin: 16px 0 8px;
}

.cta-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(62, 230, 200, 0.06), rgba(7, 9, 12, 0.4)),
    var(--bg-2);
}

.qr-box {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  color: #111;
  padding: 12px;
  border-radius: 16px;
}

.qr-box img {
  width: 132px;
  height: 132px;
  object-fit: cover;
  border-radius: 8px;
  cursor: zoom-in;
}

.qr-box p {
  margin: 0;
  font-size: 13px;
  color: #4b5563;
  line-height: 1.5;
}

.qr-box strong {
  display: block;
  color: #111;
  font-size: 18px;
  margin-bottom: 4px;
}

/* Page hero */
.page-hero {
  padding: 56px 0 24px;
}

.page-hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  margin: 10px 0 12px;
}

.page-hero p {
  max-width: 640px;
  color: var(--muted);
}

.cover {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin: 28px 0 8px;
}

.cover img {
  width: 100%;
  height: min(52vh, 520px);
  object-fit: cover;
}

/* Article */
.prose {
  max-width: 760px;
}

.prose h2 {
  font-size: 28px;
  margin: 36px 0 12px;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose p + p { margin-top: 14px; }

.prose ul, .prose ol {
  padding-left: 1.2em;
}

.timeline {
  display: grid;
  gap: 0;
  border-left: 1px solid var(--line);
  margin: 28px 0;
  padding-left: 24px;
}

.timeline li {
  list-style: none;
  padding: 0 0 28px;
  position: relative;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -29px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(62, 230, 200, 0.15);
}

.timeline strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin: 20px 0 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

th, td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

th {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 500;
  background: var(--bg-3);
}

td { color: var(--text); }
tr:last-child td { border-bottom: 0; }

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.table-wrap--wrap td,
.table-wrap--wrap th {
  white-space: normal;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  color: inherit;
  grid-column: span 4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  transition: transform 0.55s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 36px 14px 12px;
  background: linear-gradient(transparent, rgba(7, 9, 12, 0.9));
  font-size: 13px;
  line-height: 1.4;
}

.gallery-item--wide {
  grid-column: span 8;
}

.gallery-item--wide img,
.gallery-item--half img {
  aspect-ratio: 16 / 10;
}

.gallery-item--half {
  grid-column: span 6;
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 12px;
}

.gallery-strip a {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--bg-2);
}

.gallery-strip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gallery-strip a:hover img {
  transform: scale(1.04);
}

/* Sex ID */
.sex-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 8px 0 36px;
}

.sex-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
}

.sex-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.sex-card .sex-card-body {
  padding: 22px 22px 24px;
}

.sex-card h3 {
  font-size: 28px;
  margin: 10px 0 10px;
}

.sex-dots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 8px 0 36px;
  text-align: center;
}

.sex-dots figure {
  margin: 0;
}

.sex-dots img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg-3);
}

.sex-dots figcaption {
  margin-top: 12px;
  font-size: 14px;
}

.sex-dots strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
}

.sex-cover {
  margin-bottom: 28px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(7, 9, 12, 0.92);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: min(92vw, 920px);
  max-height: 78vh;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.lightbox p {
  margin-top: 12px;
  color: var(--muted);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

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

.faq summary::after {
  content: "+";
  color: var(--cyan);
  font-family: var(--mono);
}

.faq details[open] summary::after { content: "–"; }

.faq p {
  color: var(--muted);
  margin-top: 10px;
}

.note {
  margin-top: 28px;
  padding: 14px 16px;
  border: 1px dashed var(--line);
  color: var(--faint);
  font-size: 12px;
  font-family: var(--mono);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 110px;
  color: var(--muted);
  font-size: 13px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.site-footer a:hover { color: var(--cyan); }

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  gap: 8px;
}

.sticky-cta .btn { flex: 1; }

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  display: none;
  place-items: center;
  z-index: 80;
  padding: 24px;
}

.modal.is-open { display: grid; }

.modal-card {
  width: min(100%, 360px);
  background: #fff;
  color: #111;
  border-radius: 20px;
  padding: 18px 18px 22px;
  text-align: center;
}

.modal-card img {
  width: 100%;
  border-radius: 12px;
}

.modal-card p {
  margin-top: 10px;
  color: #4b5563;
  font-size: 14px;
}

.modal-close {
  margin-top: 12px;
  border: 0;
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.7s ease forwards;
}

.reveal:nth-child(2) { animation-delay: 0.08s; }
.reveal:nth-child(3) { animation-delay: 0.16s; }
.reveal:nth-child(4) { animation-delay: 0.24s; }

@keyframes rise {
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .ticker-track, .status-pill i, .card-media img {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .split,
  .hero-stats,
  .stat-grid,
  .compare,
  .cta-band,
  .section-head,
  .footer-grid,
  .shop-grid,
  .sex-grid {
    grid-template-columns: 1fr;
  }

  .gallery-strip {
    grid-template-columns: 1fr 1fr;
  }

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

  .gallery-item,
  .gallery-item--wide,
  .gallery-item--half {
    grid-column: span 6;
  }

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

  .shop-mosaic {
    grid-template-columns: 1fr 1fr;
  }

  .split article + article { border-left: 0; border-top: 1px solid var(--line); }

  .nav-links,
  .nav-cta .btn--ghost { display: none; }

  .menu-btn { display: grid; place-items: center; }

  .nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(7, 9, 12, 0.96);
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 20px;
    align-items: stretch;
  }

  .site-header {
    position: sticky;
    padding-inline: 20px;
  }

  .hero h1 { font-size: clamp(40px, 14vw, 72px); }

  .sticky-cta { display: flex; }

  .qr-box { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .wrap { width: min(calc(100% - 28px), var(--wrap)); }
  .section { padding: 64px 0; }
  .shop-mosaic {
    grid-template-columns: 1fr 1fr;
  }
  .card-body h3 { font-size: 22px; }
  .gallery-item,
  .gallery-item--wide,
  .gallery-item--half {
    grid-column: span 12;
  }
  .gallery-strip img { height: 180px; }
}
