:root {
  --bg: #0B0E14;
  --bg-elevated: #10131A;
  --card: #14171F;
  --card-hover: #1B1F2A;
  --border: #1E2330;
  --border-hover: #2C3344;
  --text: #C8CCD6;
  --text-dim: #6B7280;
  --text-bright: #ECEEF2;
  --teal: #C9A84C;
  --teal-hover: #D9B85E;
  --teal-glow: rgba(201, 168, 76, 0.10);
  --teal-border: rgba(201, 168, 76, 0.25);
  --gold: #C9A84C;
  --gold-dim: rgba(201, 168, 76, 0.2);
  --blue: #6B9FCC;
  --blue-dim: rgba(107, 159, 204, 0.15);
  --blue-border: rgba(107, 159, 204, 0.25);
  --red: #FF5C5C;
  --mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

#dna-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  #dna-canvas { display: none; }
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  position: relative;
  z-index: 1;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

/* ── LOGO ELEMENTS ───────────────────────────────────── */

.nav-logo-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
  border-radius: 2px;
  flex-shrink: 0;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 10px;
  opacity: 0.85;
}

.hero-hex-float {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
  opacity: 0.04;
  pointer-events: none;
  animation: hex-spin 60s linear infinite;
}

@keyframes hex-spin {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

.step-vial-accent {
  width: 60px;
  height: 60px;
  object-fit: contain;
  opacity: 0.12;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.about-wordmark {
  max-width: 320px;
  margin-bottom: 32px;
  opacity: 0.9;
}

.cta-monogram {
  width: 48px;
  height: 48px;
  object-fit: contain;
  opacity: 0.6;
  flex-shrink: 0;
}

/* ── NAV ─────────────────────────────────────────────── */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
  height: 52px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-brand {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-bright);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand .hl { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 0;
  align-items: center;
  margin-left: auto;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-dim);
  padding: 16px 14px;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
}

.nav-link:hover {
  color: var(--text-bright);
}

.nav-link[style*="text-bright"] {
  border-bottom-color: var(--teal);
}

.nav-cta {
  color: var(--teal);
  margin-left: 8px;
  padding: 7px 16px;
  border: 1px solid var(--teal-border);
  border-radius: 3px;
  font-size: 0.76rem;
  letter-spacing: 0.5px;
}

.currency-wrap {
  margin-left: 10px;
  display: flex;
  align-items: center;
}
.currency-select {
  background: var(--surface);
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 5px 8px;
  font-size: 0.72rem;
  font-family: 'JetBrains Mono', monospace;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s, color 0.2s;
}
.currency-select:hover,
.currency-select:focus {
  border-color: var(--gold);
  color: var(--text-bright);
}

.nav-cta:hover {
  background: var(--teal);
  color: var(--bg);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  margin-left: auto;
}

@media (max-width: 640px) {
  .nav-toggle { display: block; }
  .nav-inner { gap: 0; }
  .nav-links {
    display: none;
    position: absolute;
    top: 52px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 8px 32px;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-link { width: 100%; padding: 12px 0; border-bottom: none; }
  .nav-cta { margin: 8px 0; text-align: center; justify-content: center; }
  .currency-wrap { margin: 8px 0 4px; margin-left: 0; }
  .currency-select { width: 100%; padding: 8px; font-size: 0.8rem; }
}

/* ── LAYOUT ──────────────────────────────────────────── */

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
}

.page-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 72px 0;
}

.section + .section {
  border-top: none;
}

/* ── MARQUEE ─────────────────────────────────────────── */

.marquee {
  overflow: hidden;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  transition: opacity 0.2s;
}

.marquee-item:hover {
  opacity: 0.7;
}

.marquee-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-bright);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.marquee-price {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--teal);
  font-weight: 500;
}

.marquee-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.4;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── HERO ────────────────────────────────────────────── */

.hero {
  padding: 80px 0 64px;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-glow::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  animation: glow-pulse 6s ease-in-out infinite;
}

.hero-glow::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 70% 40%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 70% 40%, black 0%, transparent 100%);
  animation: grid-fade 8s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

@keyframes grid-fade {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.hero-content { position: relative; z-index: 1; }

.hero-tag {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--teal);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  display: inline-block;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--text-bright);
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
}

.hero h1 .accent {
  color: var(--teal);
  position: relative;
  display: inline-block;
}

.hero h1 .accent::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), transparent);
  animation: line-grow 1.5s ease-out 0.6s forwards;
}

@keyframes line-grow {
  to { width: 100%; }
}

.hero-sub {
  font-size: 0.95rem;
  color: var(--text-dim);
  max-width: 480px;
  margin: 0 0 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.hero-trust span {
  font-size: 0.68rem;
  color: var(--text-dim);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-trust-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ── ANIMATIONS ─────────────────────────────────────── */

.anim-fade-up {
  animation: fadeUp 0.8s ease-out both;
}

.anim-delay-1 { animation-delay: 0.15s; }
.anim-delay-2 { animation-delay: 0.3s; }
.anim-delay-3 { animation-delay: 0.45s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
  position: relative;
  z-index: 1;
}

.hero-stat {
  padding: 16px 20px;
  border-left: 2px solid var(--border);
  transition: border-color 0.3s, background 0.3s;
}

.hero-stat:hover {
  border-left-color: var(--teal);
  background: rgba(201,168,76,0.03);
}

.hero-stat-value {
  font-family: var(--mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 4px;
  background: linear-gradient(90deg, #C9A84C 0%, #E8D48B 50%, #C9A84C 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 0 48px;
  }
  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
  }
  .hero-stat {
    flex: 1;
    min-width: 140px;
    border-left: none;
    border-bottom: 2px solid var(--border);
    padding: 12px 4px;
  }
  .hero-stat:hover {
    border-bottom-color: var(--teal);
    border-left: none;
  }
  .hero-stat:last-child { border-right: none; }
}

/* ── BUTTONS ─────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--teal);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--teal-hover);
  box-shadow: 0 0 30px rgba(201,168,76,0.2), 0 0 60px rgba(201,168,76,0.06);
  transform: translateY(-1px);
}

.btn {
  transition: all 0.25s ease;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--border-hover);
  background: var(--card);
}

.btn-telegram {
  background: #26A5E4;
  color: #fff;
  font-size: 0.84rem;
  padding: 12px 24px;
}

.btn-telegram:hover {
  background: #3AB5F0;
}

.btn-sm {
  font-size: 0.8rem;
  padding: 8px 16px;
}

/* ── (Trust bar removed — integrated into hero) ────── */

/* ── PRODUCT GRID ────────────────────────────────────── */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 2px solid var(--border);
  border-radius: 2px;
  padding: 24px;
  transition: border-color 0.2s;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-left-color: var(--teal);
  box-shadow: -4px 0 20px rgba(201,168,76,0.06);
}

.product-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.product-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-bright);
}

.product-purity {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--teal);
  background: var(--teal-glow);
  border: 1px solid var(--teal-border);
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.product-price {
  font-weight: 600;
  color: var(--text-bright);
}

.product-price span {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 400;
}

.product-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-dim);
}

.tag-teal {
  color: var(--teal);
  border-color: var(--teal-border);
  background: var(--teal-glow);
}

/* ── PROMO BANNER ───────────────────────────────────── */

.promo-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--teal-glow);
  border: 1px solid var(--teal-border);
  border-radius: 2px;
  padding: 12px 18px;
  margin-bottom: 24px;
  font-size: 0.84rem;
  color: var(--text);
  line-height: 1.5;
}

.promo-banner svg {
  color: var(--teal);
  flex-shrink: 0;
}

.promo-banner strong {
  color: var(--teal);
}

.promo-banner-sm {
  font-size: 0.78rem;
  padding: 10px 14px;
  margin-top: 12px;
  margin-bottom: 0;
}

/* ── TESTING INCENTIVE ──────────────────────────────── */

.testing-incentive {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  border-radius: 2px;
  padding: 14px 18px;
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text);
  line-height: 1.6;
}

.testing-incentive svg {
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.testing-incentive strong {
  color: var(--blue);
}

/* ── CATALOG FILTERS ─────────────────────────────────── */

.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.filter-btn {
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 2px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}

.filter-btn:hover {
  color: var(--text);
  border-color: var(--border-hover);
}

.filter-btn.active {
  color: var(--teal);
  border-color: var(--teal-border);
  background: var(--teal-glow);
}

/* ── PRODUCT IMAGE HERO ─────────────────────────────── */

.detail-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 48px 0 40px;
}

.detail-image-wrap {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-image {
  width: 85%;
  height: 85%;
  object-fit: contain;
  transition: opacity 0.25s ease;
}

.detail-image.loading {
  opacity: 0;
}

.detail-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 0.85rem;
}

.detail-info {
  padding-top: 8px;
}

@media (max-width: 768px) {
  .detail-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0 24px;
  }
  .detail-image-wrap {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }
}

/* ── PRODUCT CARD IMAGE ────────────────────────────── */

.product-card-img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--bg-elevated);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-img img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

/* ── PRODUCT DETAIL ──────────────────────────────────── */

.detail-header {
  padding: 48px 0 32px;
}

.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 20px;
  transition: color 0.2s;
}

.detail-back:hover { color: var(--teal); }

.detail-back svg {
  width: 14px;
  height: 14px;
}

.detail-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 8px;
}

.detail-subtitle {
  font-size: 0.95rem;
  color: var(--text-dim);
  max-width: 640px;
  margin-bottom: 16px;
}

.detail-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  padding-bottom: 64px;
}

@media (max-width: 860px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }
}

.detail-main { min-width: 0; }

.detail-sidebar {
  position: sticky;
  top: 80px;
  align-self: start;
}

/* ── DATA TABLE ──────────────────────────────────────── */

.data-table-wrap {
  overflow-x: auto;
  margin-bottom: 24px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.data-table th {
  text-align: left;
  font-weight: 600;
  color: var(--text-dim);
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.data-table tr:last-child td { border-bottom: none; }

.data-table .mono {
  font-family: var(--mono);
  font-size: 0.82rem;
}

/* ── INFO CARD ───────────────────────────────────────── */

.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 24px;
  margin-bottom: 16px;
}

.info-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 16px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}

.info-row:last-child { border-bottom: none; }

.info-label { color: var(--text-dim); }
.info-value { color: var(--text); font-weight: 500; }
.info-value.mono { font-family: var(--mono); }

/* ── ORDER CARD (SIDEBAR) ────────────────────────────── */

.order-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 24px;
}

.order-card h3 {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.size-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.size-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.9rem;
}

.size-option .size-mg {
  font-weight: 600;
  color: var(--text-bright);
}

.size-option .size-price {
  font-family: var(--mono);
  color: var(--teal);
  font-weight: 600;
}

.size-option {
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.size-option:hover {
  border-color: var(--border-hover);
}

.size-option.active {
  border-color: var(--teal-border);
  background: var(--teal-glow);
}

.order-card .btn-telegram {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
}

.order-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.5;
}

/* ── COA SECTION ─────────────────────────────────────── */

.coa-card {
  background: var(--card);
  border: 1px solid var(--teal-border);
  border-radius: 2px;
  padding: 24px;
  margin-bottom: 24px;
}

.coa-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 16px;
}

.coa-badge {
  font-family: var(--mono);
  font-size: 0.72rem;
  background: var(--teal-glow);
  border: 1px solid var(--teal-border);
  color: var(--teal);
  padding: 2px 8px;
  border-radius: 4px;
}

.coa-stat {
  text-align: center;
  padding: 16px;
  background: var(--bg-elevated);
  border-radius: 2px;
  margin-bottom: 16px;
}

.coa-stat .purity-value {
  font-family: var(--mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
}

.coa-stat .purity-label {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 4px;
}

/* ── VERIFY PAGE ─────────────────────────────────────── */

.verify-input-wrap {
  max-width: 480px;
  margin: 0 auto 48px;
}

.verify-field {
  display: flex;
  gap: 8px;
}

.verify-field input {
  flex: 1;
  font-family: var(--mono);
  font-size: 0.95rem;
  padding: 14px 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-bright);
  outline: none;
  transition: border-color 0.2s;
}

.verify-field input::placeholder { color: var(--text-dim); }
.verify-field input:focus { border-color: var(--teal-border); }

.verify-result {
  max-width: 640px;
  margin: 0 auto;
}

.verify-not-found {
  text-align: center;
  padding: 40px;
  color: var(--text-dim);
}

.verify-found {
  animation: fadeIn 0.3s ease;
}

/* ── STEPS / PROCESS ─────────────────────────────────── */

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  background: none;
  border-radius: 0;
}

.step:first-child {
  border-top: 1px solid var(--border);
}

.step-number {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal);
  padding-top: 2px;
}

.step h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 6px;
}

.step p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ── SECTION HEADERS ─────────────────────────────────── */

.section-header {
  margin-bottom: 40px;
}

.section-header.center { text-align: center; }

.section-tag {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--teal);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.section-header p {
  font-size: 0.88rem;
  color: var(--text-dim);
  max-width: 480px;
  line-height: 1.7;
}

.section-header.center p { margin: 0 auto; }

/* ── FAQ ─────────────────────────────────────────────── */

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-bright);
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--teal); }

.faq-question .icon {
  font-size: 1.2rem;
  color: var(--text-dim);
  transition: transform 0.2s;
}

.faq-item.open .faq-question .icon { transform: rotate(45deg); }

.faq-answer {
  font-size: 0.88rem;
  color: var(--text-dim);
  padding-bottom: 20px;
  line-height: 1.7;
  display: none;
}

.faq-item.open .faq-answer { display: block; }

/* ── ABOUT PAGE ──────────────────────────────────────── */

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.about-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--teal);
  border-radius: 0;
  padding: 28px 24px;
}

.about-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 12px;
}

.about-card p, .about-card li {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.about-card ul {
  list-style: none;
  margin-top: 12px;
}

.about-card li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.about-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

/* ── FOOTER ──────────────────────────────────────────── */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 40px;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.footer-brand {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-bright);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-brand .hl { color: var(--gold); }

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.78rem;
  color: var(--text-dim);
  transition: color 0.2s;
  letter-spacing: 0.3px;
}

.footer-links a:hover { color: var(--teal); }

.footer-disclaimer {
  font-size: 0.7rem;
  color: var(--text-dim);
  max-width: 520px;
  line-height: 1.6;
  opacity: 0.7;
}

/* ── UTILITIES ───────────────────────────────────────── */

.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.text-center { text-align: center; }
.text-teal { color: var(--teal); }
.text-gold { color: var(--gold); }
.text-dim { color: var(--text-dim); }
.text-sm { font-size: 0.82rem; }
.mono { font-family: var(--mono); }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── SCROLL REVEAL ──────────────────────────────────── */

.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-card.scroll-reveal { transition-delay: 0.05s; }
.about-card.scroll-reveal:nth-child(2) { transition-delay: 0.15s; }
.about-card.scroll-reveal:nth-child(3) { transition-delay: 0.25s; }

.step.scroll-reveal { transition-delay: 0.05s; }
.step.scroll-reveal:nth-child(2) { transition-delay: 0.15s; }
.step.scroll-reveal:nth-child(3) { transition-delay: 0.25s; }

/* ── MARQUEE RESPONSIVE ────────────────────────────── */

@media (max-width: 640px) {
  .marquee-item { padding: 0 14px; }
  .marquee-name { font-size: 0.65rem; }
  .marquee-price { font-size: 0.6rem; }
  .hero-trust { gap: 8px; }
  .hero-trust span { font-size: 0.6rem; }
}

/* ── FLOATING TELEGRAM BUTTON ─────────────────────── */

.tg-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0088cc;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,136,204,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.tg-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(0,136,204,0.5);
}
@media (max-width: 640px) {
  .tg-float { bottom: 80px; right: 16px; width: 50px; height: 50px; }
}

/* ── SOCIAL PROOF TICKER ─────────────────────────── */

.social-proof {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 998;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 3px;
  padding: 12px 40px 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 320px;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  pointer-events: none;
}
.social-proof.sp-show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.sp-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-dim);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.sp-text {
  font-size: 0.8rem;
  color: var(--text);
  line-height: 1.4;
}
.sp-text strong { color: var(--text-bright); }
.sp-meta { font-size: 0.7rem; color: var(--text-dim); }
.sp-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1rem;
  cursor: pointer;
  line-height: 1;
}
@media (max-width: 640px) {
  .social-proof { left: 12px; right: 12px; max-width: none; bottom: 80px; }
}

/* ── FREQUENTLY BOUGHT TOGETHER ──────────────────── */

.related-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px;
}
.related-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.related-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}
.related-card {
  flex: 0 0 160px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.related-card:hover {
  border-color: var(--gold);
  background: var(--card-hover);
}
.related-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.related-name {
  font-size: 0.78rem;
  color: var(--text-bright);
  font-weight: 600;
  text-align: center;
}
.related-price {
  font-size: 0.72rem;
  color: var(--gold);
  font-family: var(--mono);
}

/* ── FIRST-ORDER BANNER ──────────────────────────── */

.first-order-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: linear-gradient(90deg, var(--gold), #d4af37);
  color: #0B0E14;
  text-align: center;
  padding: 10px 40px 10px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}
.first-order-banner.fob-show {
  transform: translateY(0);
}
.first-order-banner strong {
  font-weight: 700;
  background: rgba(0,0,0,0.1);
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: 1px;
  font-family: var(--mono);
}
.fob-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #0B0E14;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0.6;
}
.fob-close:hover { opacity: 1; }

/* ── EXIT-INTENT POPUP ───────────────────────────── */

.exit-overlay {
  position: fixed;
  inset: 0;
  z-index: 1002;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.exit-overlay.exit-show {
  opacity: 1;
  pointer-events: auto;
}
.exit-popup {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 3px;
  padding: 32px;
  max-width: 420px;
  width: 90%;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.exit-overlay.exit-show .exit-popup {
  transform: translateY(0);
}
.exit-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.4rem;
  cursor: pointer;
}
.exit-popup h3 {
  font-size: 1.1rem;
  color: var(--text-bright);
  margin-bottom: 12px;
}
.exit-popup p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
}
.exit-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
.exit-actions .btn { flex: 1; justify-content: center; font-size: 0.8rem; }
.exit-sub {
  font-size: 0.75rem !important;
  color: var(--text-dim) !important;
  text-align: center;
  margin-bottom: 0 !important;
}

/* ── STICKY MOBILE CTA ───────────────────────────── */

.sticky-cta {
  display: none;
}
@media (max-width: 640px) {
  .sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 997;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    padding: 10px 16px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .sticky-cta-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }
  .sticky-cta-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-bright);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .sticky-cta-price {
    font-size: 0.72rem;
    color: var(--gold);
    font-family: var(--mono);
  }
  .sticky-cta-btn {
    flex-shrink: 0;
    padding: 8px 20px !important;
    font-size: 0.78rem !important;
  }
}

/* ── BATCH URGENCY ───────────────────────────────── */

.batch-urgency {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: var(--text-dim);
  margin-top: 12px;
  padding: 8px 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 3px;
}
.batch-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: batch-pulse 2s ease-in-out infinite;
}
@keyframes batch-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
