/* ============================================================
   RESELLS — premium editorial dark theme
   ============================================================ */

:root {
  --bg:           #0a0a0c;
  --bg-elev-1:    #111114;
  --bg-elev-2:    #16161b;
  --bg-elev-3:    #1d1d24;
  --line:         rgba(255,255,255,0.07);
  --line-strong:  rgba(255,255,255,0.14);
  --text-1:       #f5f5f7;
  --text-2:       #c5c5cc;
  --text-3:       #8e8e94;
  --text-4:       #5c5c63;
  --accent:       #ffe07a;
  --accent-strong:#ffd23b;
  --accent-cyan:  #6ee7f0;
  --accent-pink:  #ff7ab8;
  --grad-pri:     linear-gradient(135deg, #ffe07a 0%, #ffb84d 100%);
  --grad-soft:    linear-gradient(135deg, rgba(255,224,122,0.14), rgba(255,122,184,0.10));
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  22px;
  --r-xl:  32px;
  --ease:  cubic-bezier(0.32, 0.72, 0, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --font-mono:  "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text-1);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
::selection { background: var(--accent); color: #000; }

/* Subtle background grid + radial */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(255, 224, 122, 0.04), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(110, 231, 240, 0.025), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.mono { font-family: var(--font-mono); }
em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--accent); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 12, 0.72);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border-bottom: 0.5px solid var(--line);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.brand-mark {
  display: inline-block;
  width: 26px; height: 26px;
  background: url("logo.svg") center / contain no-repeat;
  filter: drop-shadow(0 4px 10px rgba(255, 184, 77, 0.30));
  flex-shrink: 0;
  transition: transform 320ms var(--spring), filter 220ms var(--ease);
}
.brand:hover .brand-mark {
  transform: rotate(-8deg) scale(1.06);
  filter: drop-shadow(0 6px 14px rgba(255, 184, 77, 0.50));
}
.brand-name {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 13.5px;
  color: var(--text-2);
  font-weight: 500;
  transition: color 200ms var(--ease);
}
.nav-links a:hover { color: var(--text-1); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-link-muted {
  font-size: 13.5px;
  color: var(--text-2);
  font-weight: 500;
}
.nav-link-muted:hover { color: var(--text-1); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: transform 220ms var(--spring), background 200ms var(--ease), box-shadow 200ms var(--ease);
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--accent);
  color: #1a1407;
  box-shadow: 0 14px 36px -10px rgba(255, 210, 59, 0.55);
}
.btn-primary:hover { background: var(--accent-strong); transform: translateY(-1px); }
.btn-secondary {
  background: var(--bg-elev-3);
  color: var(--text-1);
  border: 0.5px solid var(--line-strong);
}
.btn-secondary:hover { background: var(--bg-elev-2); }
.btn-ghost {
  background: transparent;
  color: var(--text-1);
  border: 0.5px solid var(--line-strong);
}
.btn-ghost:hover { background: rgba(255,255,255,0.04); }
.btn-cta-sm {
  padding: 8px 16px;
  font-size: 13px;
  background: var(--accent);
  color: #1a1407;
}
.btn-cta-sm:hover { background: var(--accent-strong); }
.btn-lg { padding: 18px 30px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-icon {
  width: 38px; height: 38px;
  padding: 0;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid var(--line);
  color: var(--text-1);
}
.btn-icon svg { width: 14px; height: 14px; }
.btn-icon:hover { background: var(--accent); color: #1a1407; border-color: var(--accent); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 80px 28px 96px;
  z-index: 1;
}
.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 0.5px solid var(--line);
  font-size: 12.5px;
  color: var(--text-2);
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.45} }

.hero-title {
  font-family: var(--font-sans);
  font-size: clamp(40px, 7.5vw, 84px);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 0.98;
  margin: 0 0 24px;
}
.hero-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-2);
  max-width: 56ch;
  margin: 0 0 36px;
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-top: 28px;
  border-top: 0.5px solid var(--line);
  max-width: 640px;
}
.meta-stat { padding: 0; }
.meta-num {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-1);
  line-height: 1;
  margin-bottom: 8px;
  font-family: var(--font-sans);
}
.meta-label {
  font-size: 12.5px;
  color: var(--text-3);
}

/* Decorative grid (faint, fixed) */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}

/* ============================================================
   STRIP — trust bullets bar
   ============================================================ */
.strip {
  border-top: 0.5px solid var(--line);
  border-bottom: 0.5px solid var(--line);
  background: rgba(255,255,255,0.015);
  padding: 22px 28px;
  position: relative;
  z-index: 2;
}
.strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-2);
  font-weight: 500;
}
.strip-item svg {
  width: 18px; height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ============================================================
   SECTION wrapper
   ============================================================ */
.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 110px 28px;
  position: relative;
  z-index: 2;
}
.section-tinted {
  max-width: none;
  background: linear-gradient(180deg, var(--bg-elev-1), var(--bg));
  border-top: 0.5px solid var(--line);
  border-bottom: 0.5px solid var(--line);
  padding: 110px 28px;
}
.section-tinted > .section-head,
.section-tinted > .steps,
.section-tinted > .faq,
.section-tinted > .kpis {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-head-left {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
  max-width: 760px;
}
.kicker {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.05;
  margin: 0 0 18px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-2);
  margin: 0;
  max-width: 56ch;
  line-height: 1.5;
}
.section-head-left .section-sub { margin-left: 0; }

/* ============================================================
   PACKS — 2 featured hero cards
   ============================================================ */
.packs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 80px;
}
.pack {
  position: relative;
  padding: 36px;
  border-radius: var(--r-lg);
  border: 0.5px solid var(--line);
  display: flex;
  flex-direction: column;
  background: var(--bg-elev-1);
  overflow: hidden;
  transition: transform 320ms var(--ease), border-color 200ms var(--ease);
}
.pack:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}
.pack-elite {
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 224, 122, 0.16), transparent 60%),
    linear-gradient(180deg, var(--bg-elev-2), var(--bg-elev-1));
  border-color: rgba(255, 224, 122, 0.25);
}
.pack-elite::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--r-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 224, 122, 0.5), transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.pack-badge {
  position: absolute;
  top: 20px; right: 20px;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--accent);
  color: #1a1407;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pack-badge.subtle {
  background: rgba(255,255,255,0.08);
  color: var(--text-2);
  border: 0.5px solid var(--line);
}
.pack-head { margin-bottom: 16px; }
.pack-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 6px;
}
.pack-tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--text-3);
  text-transform: uppercase;
}
.pack-desc {
  color: var(--text-2);
  font-size: 14.5px;
  margin: 0 0 22px;
  line-height: 1.55;
}
.pack-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pack-list li {
  font-size: 14px;
  color: var(--text-2);
  padding-left: 22px;
  position: relative;
}
.pack-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 7px;
  border-left: 1.8px solid var(--accent);
  border-bottom: 1.8px solid var(--accent);
  transform: rotate(-45deg);
}
.pack-foot {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pack-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.price-was {
  font-size: 18px;
  color: var(--text-4);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}
.price-now {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.025em;
  font-family: var(--font-sans);
  color: var(--text-1);
}

/* ============================================================
   CAT DIVIDER
   ============================================================ */
.cat-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 36px 0 36px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}
.cat-divider::before, .cat-divider::after {
  content: "";
  flex: 1;
  height: 0.5px;
  background: var(--line);
}

/* ============================================================
   PRODUCTS GRID
   ============================================================ */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.product {
  padding: 24px;
  border-radius: var(--r-md);
  border: 0.5px solid var(--line);
  background: var(--bg-elev-1);
  display: flex;
  flex-direction: column;
  transition: transform 280ms var(--ease), background 220ms var(--ease), border-color 200ms var(--ease);
  position: relative;
  overflow: hidden;
}
.product:hover {
  transform: translateY(-3px);
  background: var(--bg-elev-2);
  border-color: var(--line-strong);
}
.product-bonus {
  background: linear-gradient(180deg, rgba(110, 231, 240, 0.04), var(--bg-elev-1));
  border-color: rgba(110, 231, 240, 0.18);
}
.product-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--accent);
  margin-bottom: 18px;
}
.product-icon svg { width: 22px; height: 22px; }
.product-bonus .product-icon {
  color: var(--accent-cyan);
  background: rgba(110, 231, 240, 0.08);
  border-color: rgba(110, 231, 240, 0.25);
}
.product-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.product-desc {
  font-size: 13.5px;
  color: var(--text-3);
  margin-bottom: 22px;
  line-height: 1.5;
  flex: 1;
}
.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.product-price { display: flex; flex-direction: column; gap: 0; }
.product-price .was {
  font-size: 12px;
  color: var(--text-4);
  text-decoration: line-through;
}
.product-price .now {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text-1);
}

/* ============================================================
   STEPS — Cómo funciona
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.step-num {
  font-family: var(--font-mono);
  font-size: 56px;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  opacity: 0.85;
}
.step-body h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}
.step-body p {
  font-size: 14.5px;
  color: var(--text-2);
  margin: 0;
  line-height: 1.55;
}

/* ============================================================
   KPIs
   ============================================================ */
.kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 0.5px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.kpi {
  background: var(--bg-elev-1);
  padding: 36px 28px;
}
.kpi-num {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #fff 0%, #8e8e94 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.kpi-label {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.4;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 920px;
}
.faq-item {
  border-bottom: 0.5px solid var(--line);
  padding: 22px 4px;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text-1);
  position: relative;
  padding-right: 32px;
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  font-size: 22px;
  font-weight: 300;
  color: var(--text-3);
  transition: transform 280ms var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--accent); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
  font-size: 14.5px;
  color: var(--text-2);
  margin: 12px 0 0;
  line-height: 1.6;
  max-width: 70ch;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  padding: 64px 28px;
  position: relative;
  z-index: 2;
}
.cta-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 56px 56px;
  border-radius: var(--r-xl);
  background:
    radial-gradient(ellipse at 0% 100%, rgba(255, 224, 122, 0.20), transparent 50%),
    linear-gradient(135deg, var(--bg-elev-2), var(--bg-elev-1));
  border: 0.5px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-text { flex: 1; min-width: 280px; }
.cta-text h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 10px;
}
.cta-text p {
  font-size: 15px;
  color: var(--text-2);
  margin: 0;
  max-width: 48ch;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 0.5px solid var(--line);
  padding: 64px 28px 28px;
  position: relative;
  z-index: 2;
  background: var(--bg);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
}
.footer-brand .brand { margin-bottom: 18px; }
.footer-tag {
  font-size: 13px;
  color: var(--text-3);
  margin: 0;
  line-height: 1.5;
  max-width: 30ch;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-cols h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-1);
  margin: 0 0 16px;
}
.footer-cols a {
  display: block;
  font-size: 13.5px;
  color: var(--text-3);
  padding: 4px 0;
  transition: color 200ms var(--ease);
}
.footer-cols a:hover { color: var(--text-1); }
.footer-bot {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 0.5px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-4);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nav-inner { padding: 12px 18px; gap: 14px; }
  .nav-links { display: none; }
  .nav-actions .nav-link-muted { display: none; }
  .hero { padding: 56px 18px 72px; }
  .hero-cta { margin-bottom: 56px; }
  .hero-meta { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .meta-num { font-size: 22px; }
  .meta-label { font-size: 11.5px; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .section { padding: 72px 18px; }
  .section-tinted { padding: 72px 18px; }
  .section-head { margin-bottom: 44px; }
  .packs { grid-template-columns: 1fr; gap: 16px; margin-bottom: 56px; }
  .pack { padding: 28px; }
  .pack-title { font-size: 24px; }
  .price-now { font-size: 36px; }
  .products { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product { padding: 20px; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .step-num { font-size: 44px; }
  .kpis { grid-template-columns: repeat(2, 1fr); }
  .kpi { padding: 28px 22px; }
  .cta-inner { padding: 36px 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .footer-bot { flex-direction: column; gap: 8px; }
}
@media (max-width: 560px) {
  .products { grid-template-columns: 1fr; }
  .strip-inner { grid-template-columns: 1fr 1fr; }
  .hero-title { line-height: 1.0; }
  .hero-sub { font-size: 16px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms var(--ease), transform 800ms var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   v2 — conversion-focused tweaks (compact hero, denser product
   focus, compact KPI band, compact footer)
   ============================================================ */

/* Hero: smaller padding, no sub paragraph, no meta-stats */
.hero-compact { padding: 56px 28px 56px; }
.hero-compact .hero-title { margin-bottom: 28px; }
.hero-cta-fine {
  display: inline-block;
  margin-left: 14px;
  font-size: 12.5px;
  color: var(--text-3);
  letter-spacing: 0.01em;
}
@media (max-width: 720px) {
  .hero-cta-fine {
    margin-left: 0; margin-top: 4px;
    display: block; width: 100%;
  }
}

/* Section: tighter vertical rhythm when used for product grid */
.section-tight { padding-top: 24px; padding-bottom: 80px; }
.section-tight .packs { margin-bottom: 56px; }
.section-faq { padding-top: 80px; padding-bottom: 96px; }

/* Compact pack badge with discount tag */
.price-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 122, 184, 0.10);
  color: var(--accent-pink);
  border: 0.5px solid rgba(255, 122, 184, 0.30);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  align-self: center;
}

/* Product card as an <a> (full-card link) — keep look, override default <a> */
a.product {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
a.product:hover .btn-icon {
  background: var(--accent);
  color: #1a1407;
  border-color: var(--accent);
}

/* Compact KPI band — single horizontal strip, no big card grid */
.band {
  border-top: 0.5px solid var(--line);
  border-bottom: 0.5px solid var(--line);
  background: rgba(255,255,255,0.015);
  padding: 36px 28px;
  position: relative;
  z-index: 2;
}
.band-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.band-kpi {
  text-align: center;
  padding: 0 12px;
  border-right: 0.5px solid var(--line);
}
.band-kpi:last-child { border-right: 0; }
.band-num {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #fff, #8e8e94);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.band-lab {
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.01em;
}

/* Compact footer */
.footer-compact { padding: 28px 28px 32px; border-top: 0.5px solid var(--line); }
.footer-compact .footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0;
  border: 0;
  flex-wrap: wrap;
  gap: 14px;
  grid-template-columns: none;
}
.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-3);
  transition: color 200ms var(--ease);
}
.footer-links a:hover { color: var(--text-1); }
.footer-meta {
  font-size: 12px;
  color: var(--text-4);
}

@media (max-width: 720px) {
  .band-inner { grid-template-columns: repeat(2, 1fr); gap: 18px 0; }
  .band-kpi:nth-child(2) { border-right: 0; }
  .footer-compact .footer-inner { justify-content: flex-start; }
}
