/* Vegito marketing site — seller-tool dark, gold/cyan, no purple-gradient spam */

:root {
  --bg: #090b10;
  --bg-2: #10131a;
  --card: #151922;
  --card-2: #1c2230;
  --line: #2a3348;
  --line-hi: #3d4a66;
  --text: #f4f7fb;
  --muted: #b7c2d4;
  --dim: #7d8aa0;
  --gold: #e8b84a;
  --gold-2: #f6d48a;
  --cyan: #5ed4c8;
  --buy: #ff8a3d;
  --buy-2: #ffb07a;
  --ok: #4ade80;
  --warn: #fbbf24;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
  --shadow-lift: 0 22px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(232, 184, 74, 0.22);
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --display: "Segoe UI", system-ui, sans-serif;
  --dur-fast: 160ms;
  --dur-normal: 280ms;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  color-scheme: dark;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  font-family: var(--font);
  background:
    radial-gradient(1100px 520px at 82% -8%, rgba(212, 176, 106, 0.11), transparent 58%),
    radial-gradient(820px 460px at -8% 18%, rgba(110, 200, 192, 0.07), transparent 52%),
    radial-gradient(700px 380px at 50% 110%, rgba(212, 176, 106, 0.04), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
}
body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.55), transparent 72%);
  z-index: 0;
}
a { color: var(--cyan); }
img, video { max-width: 100%; }
img, video {
  outline: 1px solid rgba(255, 255, 255, 0.08);
  outline-offset: -1px;
}
figure { margin: 0; }

::selection {
  background: rgba(212, 176, 106, 0.38);
  color: #fff;
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--gold);
  color: #111;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 100;
}
.skip:focus { left: 8px; }

.wrap {
  width: min(1120px, 100%);
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  min-width: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 14, 18, 0.72);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    background-color var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease);
}
.site-header.is-scrolled {
  background: rgba(12, 14, 18, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 64px;
  flex-wrap: wrap;
  padding: 8px 0;
  min-width: 0;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  transition: transform var(--dur-fast) var(--ease), filter var(--dur-fast) var(--ease);
}
.brand:hover, .brand:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.08);
}
.brand-mark {
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 15px;
  color: var(--gold-2);
  text-shadow: 0 0 18px rgba(240, 208, 144, 0.25);
}
.brand-sub {
  font-size: 12px;
  color: var(--dim);
  letter-spacing: 0.04em;
}
.nav {
  display: flex;
  gap: 4px;
  flex: 1;
  flex-wrap: wrap;
  min-width: 0;
}
.nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 14px;
  position: relative;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  transition:
    color var(--dur-fast) var(--ease),
    background-color var(--dur-fast) var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 5px;
  height: 1.5px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-normal) var(--ease);
}
.nav a:hover, .nav a:focus-visible { color: var(--text); background: var(--card); }
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); }
.nav a[href*="discord"],
.nav a.nav-cta {
  color: #1a0e06;
  background: linear-gradient(180deg, #ff9d55, #f06a1c);
  border: 1px solid transparent;
  padding: 7px 12px;
  font-weight: 800;
}
.nav a[href*="discord"]::after,
.nav a.nav-cta::after { display: none; }
.nav a[href*="discord"]:hover,
.nav a[href*="discord"]:focus-visible,
.nav a.nav-cta:hover,
.nav a.nav-cta:focus-visible {
  border-color: transparent;
  background: linear-gradient(180deg, #ffb07a, #ff8a3d);
  color: #1a0e06;
  filter: drop-shadow(0 8px 16px rgba(240, 106, 28, 0.35));
}

.lang-switch {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  flex-shrink: 0;
  max-width: 100%;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-2);
}
.lang-switch button {
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 7px;
  padding: 8px 10px;
  cursor: pointer;
  min-width: 40px;
  min-height: 36px;
  transition:
    color var(--dur-fast) var(--ease),
    background-color var(--dur-fast) var(--ease),
    transform var(--dur-fast) var(--ease);
}
.lang-switch button:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}
.lang-switch button[aria-pressed="true"] {
  background: var(--card-2);
  color: var(--gold-2);
  outline: 1px solid var(--line-hi);
}
.lang-switch button:active { transform: scale(0.96); }
.lang-switch button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 1px;
}

/* Hero */
.hero {
  padding: 56px 0 28px;
  display: grid;
  gap: 28px;
  position: relative;
  --mx: 78%;
  --my: 8%;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -24px 0 -8px;
  pointer-events: none;
  background: radial-gradient(
    520px 300px at var(--mx) var(--my),
    rgba(212, 176, 106, 0.12),
    transparent 62%
  );
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }
.kicker {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), transparent);
  flex-shrink: 0;
}
h1 {
  font-family: var(--display);
  font-size: clamp(30px, 5.2vw, 54px);
  letter-spacing: 0.01em;
  margin: 0 0 8px;
  font-weight: 800;
  text-wrap: balance;
  background: linear-gradient(180deg, #fff 12%, var(--gold-2) 78%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.slogan-brand {
  margin: 0 0 6px;
  font-size: clamp(18px, 2.4vw, 26px);
  color: var(--gold-2);
  font-weight: 600;
  text-wrap: balance;
}
.slogan-local {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
}
.lead {
  max-width: 46ch;
  color: var(--text);
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
  text-wrap: pretty;
}
.hero-price {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-2);
  font-variant-numeric: tabular-nums;
  text-wrap: pretty;
}
.cta-micro {
  margin: 10px 0 0;
  max-width: 42rem;
  font-size: 13px;
  color: var(--muted);
  text-wrap: pretty;
}
.audience {
  display: inline-block;
  margin: 0 0 22px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 13px;
  background: rgba(110, 200, 192, 0.06);
  transition:
    border-color var(--dur-fast) var(--ease),
    background-color var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease);
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  max-width: 38rem;
  padding: 14px 16px;
  text-decoration: none;
  color: inherit;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 0;
  transition:
    transform var(--dur-normal) var(--ease),
    border-color var(--dur-normal) var(--ease),
    box-shadow var(--dur-normal) var(--ease),
    background-color var(--dur-normal) var(--ease);
}
.proof-stat {
  flex-shrink: 0;
  font-size: clamp(26px, 4vw, 32px);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--gold-2);
}
.proof > span:last-child {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.proof-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.proof-shop {
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
  margin: 2px 0 4px;
}
.proof-blurb {
  font-size: 13px;
  color: var(--muted);
  text-wrap: pretty;
}

.buy-path {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  width: 100%;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr);
  counter-reset: none;
}
@media (min-width: 800px) {
  .buy-path { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.buy-step {
  list-style: none;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  box-shadow: var(--shadow);
}
.buy-n {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: #1a1408;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
}
.buy-step h3 {
  margin: 0;
  font-size: 16px;
  color: var(--gold-2);
}
.buy-step p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 14px;
}
.usp-grid {
  display: grid;
  gap: 14px;
  width: 100%;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 720px) {
  .usp-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}
.usp h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--gold-2);
}
.usp p { margin: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 10px;
  padding: 11px 16px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  position: relative;
  isolation: isolate;
  min-height: 44px;
  overflow: hidden;
  transition:
    transform var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease),
    background-color var(--dur-fast) var(--ease),
    color var(--dur-fast) var(--ease),
    filter var(--dur-fast) var(--ease);
}
.btn:active { transform: scale(0.97); }
.btn-gold {
  background: linear-gradient(180deg, #f0cc72, #d99a2e);
  color: #1a1408;
  box-shadow: none;
  filter: drop-shadow(0 8px 18px rgba(217, 154, 46, 0.38));
}
.btn-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.38) 50%,
    transparent 65%
  );
  transform: translateX(-130%);
  transition: transform 520ms var(--ease);
}
.btn-ghost {
  background: var(--card);
  color: var(--text);
  border-color: var(--line-hi);
}
.btn-cyan {
  background: transparent;
  color: var(--cyan);
  border-color: rgba(94, 212, 200, 0.45);
}
.btn-buy {
  background: linear-gradient(180deg, #ff9d55, #f06a1c);
  color: #1a0e06;
  border-color: transparent;
  filter: drop-shadow(0 8px 16px rgba(240, 106, 28, 0.32));
}
.btn-sm {
  min-height: 40px;
  padding: 8px 14px;
  font-size: 13px;
  margin-top: auto;
  align-self: flex-start;
}
.btn:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

/* Videos */
.videos {
  display: grid;
  gap: 16px;
  width: 100%;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 860px) {
  .videos { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}
.video-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
  box-shadow: var(--shadow);
  transition:
    transform var(--dur-normal) var(--ease),
    border-color var(--dur-normal) var(--ease),
    box-shadow var(--dur-normal) var(--ease);
}
.video-card video {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: auto;
  aspect-ratio: 16 / 9;
  background: #000;
  object-fit: contain;
}
.video-meta { padding: 14px 16px 16px; }
.video-meta h2 {
  margin: 0 0 6px;
  font-size: 16px;
  text-wrap: balance;
  transition: color var(--dur-fast) var(--ease);
}
.video-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  text-wrap: pretty;
}

/* Screenshots */
.shots {
  display: grid;
  gap: 16px;
  width: 100%;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 860px) {
  .shots { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}
.shot-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
  box-shadow: var(--shadow);
  transition:
    transform var(--dur-normal) var(--ease),
    border-color var(--dur-normal) var(--ease),
    box-shadow var(--dur-normal) var(--ease);
}
.shot-card a {
  display: block;
  background: #08090c;
  overflow: hidden;
  position: relative;
}
.shot-card a::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(12, 14, 18, 0.28));
  opacity: 0;
  transition: opacity var(--dur-normal) var(--ease);
}
.shot-card img {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: auto;
  max-height: 440px;
  object-fit: contain;
  object-position: top center;
  transition: transform 480ms var(--ease);
}

.reports {
  display: grid;
  gap: 12px;
  width: 100%;
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 720px) {
  .reports { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 980px) {
  .reports { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
.report-card .video-meta { padding: 10px 12px 12px; }
.report-card .video-meta h2 { font-size: 13px; margin: 0; }
.report-card a {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.report-card img {
  max-height: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Sections */
section { padding: 40px 0; }
section.hero { padding: 56px 0 28px; }
section h2.sec {
  margin: 0 0 8px;
  font-size: 26px;
  text-wrap: balance;
}
section h2.sec::after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  margin-top: 10px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.sec-lead { color: var(--muted); margin: 0 0 22px; max-width: 70ch; text-wrap: pretty; }

.grid-3, .grid-2 {
  display: grid;
  gap: 14px;
}
.grid-3, .grid-2 { width: 100%; min-width: 0; }
.grid-3 { grid-template-columns: minmax(0, 1fr); }
.grid-2 { grid-template-columns: minmax(0, 1fr); }
@media (min-width: 720px) {
  .grid-3 { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .grid-2 { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}
@media (min-width: 980px) {
  .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 16px 18px;
  position: relative;
  min-width: 0;
  max-width: 100%;
  transition:
    transform var(--dur-normal) var(--ease),
    border-color var(--dur-normal) var(--ease),
    box-shadow var(--dur-normal) var(--ease),
    background-color var(--dur-normal) var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 0;
  height: 2px;
  border-radius: 0 0 99px 99px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity var(--dur-normal) var(--ease),
    transform var(--dur-normal) var(--ease);
}
.card h3 {
  margin: 0 0 8px;
  font-size: 15px;
  color: var(--gold-2);
  letter-spacing: 0.02em;
  text-wrap: balance;
}
.card p, .card ul { margin: 0; color: var(--muted); font-size: 14px; text-wrap: pretty; }
.card ul { padding-left: 18px; display: grid; gap: 6px; }
.card li::marker { color: var(--cyan); }
.tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  transition:
    color var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease),
    background-color var(--dur-fast) var(--ease);
}

/* Tiers */
.tiers {
  display: grid;
  gap: 12px;
  width: 100%;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 700px) {
  .tiers { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.tier {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
  transition:
    transform var(--dur-normal) var(--ease),
    border-color var(--dur-normal) var(--ease),
    box-shadow var(--dur-normal) var(--ease),
    background-color var(--dur-normal) var(--ease);
}
.tier.featured {
  padding-top: 36px;
  border-color: rgba(232, 184, 74, 0.7);
  box-shadow: 0 0 0 1px rgba(232, 184, 74, 0.2), 0 18px 44px rgba(232, 184, 74, 0.14);
  background:
    linear-gradient(180deg, rgba(232, 184, 74, 0.16), transparent 48%),
    var(--card);
}
.tier-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a1408;
  background: var(--gold-2);
  padding: 4px 8px;
  border-radius: 999px;
}
.tier .btn { margin-top: 10px; width: 100%; }
.tier.featured .btn {
  min-height: 48px;
  font-size: 15px;
}
.tier .name {
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 13px;
}
.tier .price {
  font-size: 22px;
  color: var(--gold-2);
  font-variant-numeric: tabular-nums;
}
.tier .price-unit {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-left: 2px;
}
.tier .quota { color: var(--cyan); font-size: 13px; font-weight: 600; font-variant-numeric: tabular-nums; }
.tier .blurb { color: var(--muted); font-size: 14px; margin: 0; text-wrap: pretty; }
.tier ul {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  display: grid;
  gap: 5px;
}
.tier.yamcha .name { color: #9aa7b8; }
.tier.kaioken .name { color: #fb923c; }
.tier.ssj1 .name { color: #facc15; }
.tier.ssj2 .name { color: #38bdf8; }
.tier.ssj3 .name { color: #4ade80; }
.tier.ssj4 .name { color: #f0d090; }

@media (max-width: 699px) {
  .tiers-pick .tier.ssj3 { order: -1; }
}

.checkout-notes {
  margin-top: 18px;
  padding: 16px 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.checkout-notes h3 {
  margin: 0 0 10px;
  font-size: 15px;
  color: var(--gold-2);
  text-wrap: balance;
}
.checkout-notes ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  text-wrap: pretty;
}
.checkout-notes li::marker { color: var(--buy); }

.more-plans,
.more-block {
  margin-top: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 14px 12px;
}
.more-plans summary,
.more-block summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  padding: 12px 0;
  min-height: 44px;
  list-style: none;
}
.more-plans summary::-webkit-details-marker,
.more-block summary::-webkit-details-marker { display: none; }
.more-plans summary::before,
.more-block summary::before {
  content: "+";
  display: inline-block;
  width: 1.2em;
  color: var(--gold-2);
  font-weight: 800;
}
.more-plans[open] summary::before,
.more-block[open] summary::before { content: "–"; }
.more-plans-p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}
.tiers-extra {
  margin-top: 8px;
}
.more-block .reports { margin-top: 8px; }

.sticky-buy {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: rgba(12, 14, 18, 0.94);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  border-top: 1px solid var(--line);
  padding: 10px 0 calc(10px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.4);
}
.sticky-buy[hidden] { display: none !important; }
.sticky-buy-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sticky-buy-inner p {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
}
.sticky-plan {
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #4ade80;
  font-size: 13px;
}
.sticky-price {
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--gold-2);
}
.sticky-note {
  font-size: 13px;
  color: var(--muted);
}
.sticky-buy .btn { margin: 0; flex-shrink: 0; }
body.has-sticky-buy { padding-bottom: 84px; }
@media (max-width: 640px) {
  .sticky-note { display: none; }
}

.note {
  margin-top: 16px;
  padding: 12px 14px;
  border-left: 3px solid var(--gold);
  background: rgba(212, 176, 106, 0.07);
  border-radius: 0 10px 10px 0;
  color: var(--muted);
  font-size: 14px;
  transition: background-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}

.samples .card { display: flex; flex-direction: column; gap: 10px; }
.samples .card .btn { align-self: flex-start; }

.download-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: grid;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--dur-normal) var(--ease),
    border-color var(--dur-normal) var(--ease),
    box-shadow var(--dur-normal) var(--ease);
}
.download-box::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 176, 106, 0.14), transparent 68%);
  pointer-events: none;
  transition: transform 500ms var(--ease), opacity 500ms var(--ease);
}
.download-box .fine { color: var(--dim); font-size: 13px; margin: 0; }

.faq {
  display: grid;
  gap: 14px;
  width: 100%;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr);
  margin-top: 18px;
}
@media (min-width: 720px) {
  .faq { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}
.faq .card h3 {
  margin: 0 0 8px;
  font-size: 15px;
  color: var(--gold-2);
  text-wrap: balance;
}
.faq .card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  text-wrap: pretty;
}

footer.site-foot {
  border-top: 1px solid var(--line);
  padding: 28px 0 48px;
  color: var(--dim);
  font-size: 13px;
}
body.has-sticky-buy footer.site-foot { padding-bottom: 28px; }
footer.site-foot .foot-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.site-foot a {
  color: var(--muted);
  text-decoration: none;
  position: relative;
  transition: color var(--dur-fast) var(--ease);
}
.site-foot a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--gold-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-normal) var(--ease);
}
.site-foot a:hover, .site-foot a:focus-visible { color: var(--gold-2); }
.site-foot a:hover::after, .site-foot a:focus-visible::after { transform: scaleX(1); }

/* Scroll reveal — only when JS marked the page */
html.js .reveal {
  opacity: 0;
  translate: 0 14px;
  transition:
    opacity 480ms var(--ease),
    translate 480ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
html.js .reveal.is-in {
  opacity: 1;
  translate: 0;
}
html.js .reveal.reveal-done {
  transition-delay: 0ms;
}

/* Pointer hover — skip sticky hover on touch */
@media (hover: hover) and (pointer: fine) {
  .audience:hover {
    border-color: rgba(110, 200, 192, 0.45);
    background: rgba(110, 200, 192, 0.12);
    box-shadow: 0 0 0 3px rgba(110, 200, 192, 0.08);
  }
  .btn-gold:hover {
    transform: translateY(-2px);
    filter: brightness(1.05) drop-shadow(0 12px 22px rgba(201, 161, 90, 0.42));
  }
  .btn-gold:hover::after { transform: translateX(130%); }
  .btn-gold:active { transform: scale(0.97); filter: drop-shadow(0 4px 10px rgba(201, 161, 90, 0.22)); }
  .btn-ghost:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.35));
  }
  .btn-buy:hover {
    transform: translateY(-2px);
    filter: brightness(1.06) drop-shadow(0 12px 20px rgba(240, 106, 28, 0.42));
  }
  .btn-cyan:hover {
    background: rgba(110, 200, 192, 0.1);
    border-color: var(--cyan);
    transform: translateY(-2px);
    filter: drop-shadow(0 10px 16px rgba(110, 200, 192, 0.18));
  }
  .video-card:hover,
  .shot-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 176, 106, 0.38);
    box-shadow: var(--shadow-lift);
  }
  .shot-card:hover img { transform: scale(1.045); }
  .shot-card:hover a::after { opacity: 1; }
  .shot-card:hover .video-meta h2,
  .video-card:hover .video-meta h2 { color: var(--gold-2); }
  .proof:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 176, 106, 0.38);
    box-shadow: var(--shadow-lift);
    background: var(--card-2);
  }
  .card:hover {
    transform: translateY(-5px);
    border-color: var(--line-hi);
    box-shadow: var(--shadow-lift);
    background: var(--card-2);
  }
  .card:hover::before {
    opacity: 1;
    transform: scaleX(1);
  }
  .card:hover .tag {
    color: var(--cyan);
    border-color: rgba(110, 200, 192, 0.35);
    background: rgba(110, 200, 192, 0.08);
  }
  .tier:hover {
    transform: translateY(-5px);
    border-color: var(--line-hi);
    box-shadow: var(--shadow-lift);
  }
  .tier.featured:hover {
    border-color: rgba(212, 176, 106, 0.75);
    box-shadow: 0 0 0 1px rgba(212, 176, 106, 0.22), 0 22px 44px rgba(212, 176, 106, 0.16);
  }
  .checkout-notes:hover {
    border-color: var(--line-hi);
    box-shadow: var(--shadow-lift);
  }
  .note:hover {
    background: rgba(212, 176, 106, 0.11);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  }
  .download-box:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 176, 106, 0.4);
    box-shadow: var(--shadow-lift);
  }
  .download-box:hover::before { transform: scale(1.15); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal,
  html.js .reveal.is-in {
    opacity: 1;
    translate: 0;
    transform: none;
    transition: none;
  }
  .btn-gold::after { display: none; }
  .nav a::after,
  .site-foot a::after,
  .card::before,
  .shot-card img,
  .hero::before {
    transition: none;
  }
  .btn:active,
  .lang-switch button:active { transform: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
