/* =====================================================================
   TAJI V3 — "Ambani" landing design system
   Aesthetic: near-black graphite (#090a0b), huge tracking-tight gradient
   wordmark, floating pill nav, generous whitespace, rounded-full pills,
   soft pink/violet ambient glows. Branding: Taji pink→violet gradient.
   All landing classes are prefixed `v-`. Section rhythm scoped to `.v-home`.
   Tokens derive from the --cl-* bridge (master.njk) so the builder colour
   pickers keep working.
   ===================================================================== */

:root {
  /* Surfaces */
  --v-bg: rgb(var(--cl-background, 9 10 11));
  --v-bg-rgb: var(--cl-background, 9 10 11);
  --v-bg-alt: #0d0e10;
  --v-bg-alt-rgb: 13 14 16;
  --v-raise: #0e0f11;                    /* pill / control fill */
  --v-card: rgb(var(--cl-card, 17 18 20));
  --v-card-2: #16171a;                   /* raised card */
  --v-card-edge: #222326;                /* hairline border */
  --v-card-edge-2: #2c2d31;              /* stronger hairline */

  /* Accent — Taji pink→violet gradient brand */
  --v-accent: rgb(var(--cl-accent, 212 69 240));
  --v-accent-rgb: var(--cl-accent, 212 69 240);
  --v-accent-2: #8b5cf6;
  --v-accent-2-rgb: 139 92 246;
  --v-grad: linear-gradient(135deg, #ff5ce1 0%, #b44df0 55%, #8b5cf6 100%);
  --v-accent-dim: rgba(var(--cl-accent, 212 69 240), 0.12);
  --v-accent-soft: rgba(var(--cl-accent, 212 69 240), 0.2);
  --v-accent-glow: rgba(var(--cl-accent, 212 69 240), 0.38);
  --v-on-accent: rgb(var(--cl-t-accent, 255 255 255));
  --v-rose: #eab2e3;                     /* wordmark fade / soft brand tint */

  /* Text */
  --v-text: rgb(var(--cl-t-primary, 252 252 252));
  --v-muted: #9ca3af;
  --v-faint: rgba(252, 252, 252, 0.42);
  --v-whisper: rgba(252, 252, 252, 0.16);

  /* Borders */
  --v-border: rgba(252, 252, 252, 0.09);
  --v-border-subtle: rgba(252, 252, 252, 0.055);
  --v-border-hover: rgba(252, 252, 252, 0.18);

  /* Geometry */
  --v-radius: 12px;
  --v-radius-sm: 9px;
  --v-radius-xs: 6px;
  --v-pill: 999px;

  /* Type */
  --v-display: 'Geist', 'Inter', system-ui, sans-serif;
  --v-body: 'Geist', 'Inter', system-ui, sans-serif;
  --v-mono: 'Geist Mono', ui-monospace, 'SFMono-Regular', monospace;

  /* Layout */
  --v-container: min(1200px, 92vw);
  --v-gutter: clamp(14px, 3.2vw, 26px);
  --v-section-y: clamp(80px, 10vw, 150px);
  --v-nav-h: 64px;

  /* Motion */
  --v-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --v-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --v-mock-line-dur: 0.42s;
  --v-mock-meter-dur: 2s;
}

/* =====================================================================
   1. Base
   ===================================================================== */

html, body { overflow-x: clip; }

.v-home {
  font-family: var(--v-body);
  color: var(--v-text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.v-home ::selection {
  background: var(--v-accent);
  color: var(--v-on-accent);
}

.v-container {
  width: var(--v-container);
  margin-inline: auto;
}

/* Kicker — quiet uppercase sans (Ambani style), no ornaments */
.v-eyebrow,
.v-mono {
  font-family: var(--v-body);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--v-faint);
}

/* =====================================================================
   2. Section rhythm — uniform near-black, generous air.
   NOTE: on the SellAuth platform the sections live one level deeper than
   .v-home (.v-home > .components > section.component), so these selectors
   must stay DESCENDANT (space), never child (>) — a child combinator here
   silently kills all section padding on the real render.
   ===================================================================== */

.v-home .component { position: relative; }

.v-home .component:not(.v-hero):not(.v-header):not(.announcement):not(.v-footer) {
  background: transparent;
  padding-block: calc(var(--v-section-y) * 0.55);
}

/* landing section heads are centered */
.v-home .v-section-head {
  text-align: center;
  margin-inline: auto;
}

/* =====================================================================
   3. Buttons — rounded-full pills
   ===================================================================== */

.v-btn-primary,
.v-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 46px;
  padding: 0 26px;
  border-radius: var(--v-pill);
  font-family: var(--v-body);
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: -0.01em;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: transform 0.18s var(--v-ease), box-shadow 0.24s var(--v-ease),
    background-color 0.2s var(--v-ease), border-color 0.2s var(--v-ease);
  will-change: transform;
}

/* Brand pill — Taji gradient (buy / conversion actions) */
.v-btn-primary {
  color: var(--v-on-accent);
  background: var(--v-grad);
  border-color: transparent;
  box-shadow: 0 8px 22px -10px var(--v-accent-glow);
}
.v-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 26px -4px var(--v-accent-glow), 0 16px 34px -12px var(--v-accent-glow);
}
.v-btn-primary:active { transform: translateY(0); }

/* Quiet pill — Ambani dark pill with hairline border */
.v-btn-ghost {
  color: var(--v-text);
  background: color-mix(in srgb, var(--v-raise) 82%, transparent);
  border-color: var(--v-card-edge-2);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.v-btn-ghost:hover {
  transform: translateY(-2px);
  background: #141518;
  border-color: var(--v-border-hover);
}

.v-btn-lg { height: 54px; padding: 0 32px; font-size: 1rem; }

.v-btn-arrow { transition: transform 0.2s var(--v-ease); }
.v-btn-primary:hover .v-btn-arrow,
.v-btn-ghost:hover .v-btn-arrow { transform: translateX(3px); }

/* Accent word — gradient text matching the logo */
.v-accent-word {
  color: var(--v-accent);
  background: var(--v-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

/* =====================================================================
   4. Section header pattern
   ===================================================================== */

.v-section-head {
  max-width: 640px;
  margin-bottom: clamp(36px, 5vw, 64px);
}
.v-section-head.is-center {
  margin-inline: auto;
  text-align: center;
}
.v-section-head .v-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
}
.v-h2,
.v-section-title {
  font-family: var(--v-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--v-text);
}
.v-sub,
.v-section-sub {
  margin-top: 14px;
  color: var(--v-muted);
  font-size: clamp(0.98rem, 1.4vw, 1.05rem);
  line-height: 1.6;
  max-width: 56ch;
}
.v-section-head.is-center .v-sub,
.v-section-head.is-center .v-section-sub,
.v-home .v-section-head .v-sub,
.v-home .v-section-head .v-section-sub { margin-inline: auto; }

/* =====================================================================
   5. HERO — full-height, centered giant wordmark
   ===================================================================== */

.v-hero {
  position: relative;
  overflow: clip;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: max(86vh, 640px);
  padding-block: calc(var(--v-nav-h) + 56px) 72px;
  /* full-bleed breakout of the boxed layout */
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.v-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: var(--v-bg);
}
/* baked hero artwork (image via art.css data URI, or builder override) */
.v-hero-art {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0.92;
}
/* faint grid, masked to the middle */
.v-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--v-border-subtle) 1px, transparent 1px),
    linear-gradient(90deg, var(--v-border-subtle) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.5;
  -webkit-mask-image: radial-gradient(ellipse 70% 62% at 50% 40%, #000 0%, transparent 76%);
  mask-image: radial-gradient(ellipse 70% 62% at 50% 40%, #000 0%, transparent 76%);
}
/* ambient brand glows — subtle, the artwork carries the mood */
.v-hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 46% at 18% 82%, rgba(255, 70, 100, 0.07), transparent 70%),
    radial-gradient(ellipse 46% 40% at 78% 26%, rgba(var(--v-accent-rgb), 0.06), transparent 70%);
  filter: blur(6px);
}
/* bottom fade into the page */
.v-hero-fade {
  position: absolute;
  inset: auto 0 0 0;
  height: 22%;
  background: linear-gradient(180deg, transparent, var(--v-bg));
}

.v-hero-inner {
  position: relative;
  z-index: 1;
  width: var(--v-container);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* announcement-style badge pill */
.v-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 7px 16px 7px 7px;
  border-radius: var(--v-pill);
  border: 1px solid var(--v-card-edge);
  background: color-mix(in srgb, var(--v-raise) 78%, transparent);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--v-text);
  font-size: 0.86rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s var(--v-ease), background-color 0.2s var(--v-ease);
}
.v-hero-badge:hover { border-color: var(--v-border-hover); background: #141518; }
.v-hero-badge-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  border-radius: var(--v-pill);
  background: var(--v-accent-dim);
  color: rgb(var(--v-accent-rgb));
  font-size: 0.74rem;
  font-weight: 600;
}
.v-hero-badge i {
  font-size: 0.74rem;
  color: var(--v-muted);
  transition: transform 0.2s var(--v-ease);
}
.v-hero-badge:hover i { transform: translateX(3px); }

/* giant gradient wordmark */
.v-hero-title {
  margin: clamp(22px, 3.5vh, 40px) 0 0;
  font-family: var(--v-display);
  font-weight: 700;
  font-size: clamp(4.4rem, 16vw, 13.5rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  background: linear-gradient(180deg, #ffffff 18%, #f3ddef 58%, var(--v-rose) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.v-hero-title .v-accent-word { white-space: inherit; }

.v-hero-sub {
  margin-top: clamp(10px, 1.6vh, 18px);
  color: var(--v-muted);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.45;
  max-width: 46ch;
}

.v-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(26px, 4vh, 44px);
}

/* =====================================================================
   6. MARQUEE (kept for builder use; quiet restyle)
   ===================================================================== */

.v-marquee {
  position: relative;
  border-top: 1px solid var(--v-border-subtle);
  border-bottom: 1px solid var(--v-border-subtle);
  background: var(--v-bg-alt);
  padding-block: 18px;
}
.v-marquee-viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.v-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: v-marquee 34s linear infinite;
  will-change: transform;
}
.v-marquee:hover .v-marquee-track { animation-play-state: paused; }
@keyframes v-marquee { to { transform: translateX(-50%); } }
.v-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--v-muted);
  white-space: nowrap;
}
.v-marquee-icon { color: var(--v-accent); font-size: 0.9em; line-height: 1; }
.v-marquee-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  font-size: 0;
  color: transparent;
  background: var(--v-card-edge-2);
  flex: 0 0 auto;
}

/* =====================================================================
   7. FEATURES — borderless icon grid (Why choose us)
   ===================================================================== */

.v-features { position: relative; }

.v-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(40px, 5vw, 72px) clamp(24px, 3vw, 48px);
  max-width: 1060px;
  margin-inline: auto;
}

.v-feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 26px 22px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  transition: background-color 0.25s var(--v-ease), transform 0.25s var(--v-ease);
}
/* hover pop — soft raised panel, Ambani-style */
.v-feature-card:hover {
  background: rgba(252, 252, 252, 0.03);
  transform: translateY(-3px);
}

.v-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--v-grad);
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
  box-shadow: 0 8px 22px -10px var(--v-accent-glow);
}
.v-feature-title {
  font-family: var(--v-display);
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: var(--v-text);
}
.v-feature-desc {
  color: var(--v-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
  max-width: 34ch;
}

/* =====================================================================
   8. PRODUCT CARD — image-led tile with hairline border
   ===================================================================== */

.v-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--v-radius);
  border: 1px solid var(--v-card-edge);
  background: var(--v-bg-alt);
  overflow: hidden;
  transition: transform 0.25s var(--v-ease), border-color 0.25s var(--v-ease),
    background-color 0.25s var(--v-ease), box-shadow 0.25s var(--v-ease);
}
.v-card:hover {
  transform: translateY(-3px);
  border-color: var(--v-card-edge-2);
  background: #101114;
  box-shadow: 0 24px 48px -28px rgba(0, 0, 0, 0.8);
}
.v-card-media {
  position: relative;
  aspect-ratio: var(--product-card-image-aspect-ratio, 16/9);
  overflow: hidden;
  background: var(--v-card);
}
.v-card-media img,
.v-card-media .v-card-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--v-ease);
}
/* dark vignette over artwork, ambani-style */
.v-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 10, 11, 0.06), rgba(9, 10, 11, 0.62));
  pointer-events: none;
  z-index: 1;
}
.v-card:hover .v-card-media img { transform: scale(1.05); }

/* shine sweep (legacy markup element — kept quiet) */
.v-card-shine {
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(252, 252, 252, 0.07), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}
.v-card:hover .v-card-shine { animation: v-shine 0.9s var(--v-ease) forwards; }
@keyframes v-shine {
  0%   { left: -60%; opacity: 0; }
  20%  { opacity: 1; }
  100% { left: 130%; opacity: 0; }
}

/* name + price sit centered ON the artwork, Ambani-style */
.v-card-body {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 18px;
  text-align: center;
  pointer-events: none;
}
.v-card-name {
  font-family: var(--v-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0;
  min-width: 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 1px 4px rgba(0, 0, 0, 0.6);
}
.v-card-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.v-card-price {
  margin: 0;
  font-weight: 600;
  font-size: 0.9rem;
  color: #d1d5db;
  white-space: nowrap;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.8);
  transition: color 0.2s var(--v-ease);
}
.v-card:hover .v-card-price { color: #ffffff; }

.v-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--v-pill);
  border: 1px solid var(--v-border);
  color: var(--v-muted);
  background: rgba(252, 252, 252, 0.02);
}
.v-chip.is-stock {
  color: rgb(var(--v-accent-rgb));
  border-color: var(--v-accent-soft);
  background: var(--v-accent-dim);
}
.v-chip.is-stock::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--v-accent);
}
.v-chip.is-out { color: var(--v-faint); }

/* card structure hooks from snippets/product-card.njk */
.v-card-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.v-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--v-ease);
}
.v-card:hover .v-card-img { transform: scale(1.05); }
.v-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--v-whisper);
  background: var(--v-card);
}
.v-card-badges {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  z-index: 3;
}
.v-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: var(--v-pill);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--v-on-accent);
  background: var(--v-grad);
  line-height: 1;
}
/* stock chip floats on the artwork */
.v-card-stock {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: var(--v-pill);
  border: 1px solid rgba(252, 252, 252, 0.14);
  color: var(--v-text);
  background: rgba(9, 10, 11, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.v-card-stock::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--v-accent);
  box-shadow: 0 0 8px var(--v-accent-glow);
}
.v-card-stock-icon { width: 13px; height: 13px; }
/* price row */
.v-card-price-now {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-weight: 600;
  color: inherit;
}
.v-card-price-slash {
  margin-left: 8px;
  font-size: 0.82rem;
  color: var(--v-faint);
  text-decoration: line-through;
}

/* =====================================================================
   8b. PRODUCTS section — head arrow, search, grid, group modal
   ===================================================================== */

.v-products { position: relative; }
.v-products-wrap { position: relative; }

/* accent down-arrow under the section head (markup element) */
.v-products-arrow {
  display: flex;
  justify-content: center;
  margin: calc(clamp(36px, 5vw, 64px) * -0.4) 0 clamp(30px, 4vw, 48px);
  color: rgb(var(--v-accent-rgb));
  font-size: 1.05rem;
  animation: v-arrow-bob 2.4s var(--v-ease) infinite;
}
@keyframes v-arrow-bob {
  0%, 100% { transform: translateY(0); opacity: 0.85; }
  50%      { transform: translateY(6px); opacity: 1; }
}

.v-search {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 420px;
  margin: 0 auto clamp(24px, 4vw, 40px);
}
.v-search-icon {
  position: absolute;
  left: 16px;
  width: 17px;
  height: 17px;
  color: var(--v-muted);
  pointer-events: none;
}
.v-search-input {
  width: 100%;
  height: 46px;
  padding: 0 18px 0 44px;
  border-radius: var(--v-pill);
  border: 1px solid var(--v-card-edge);
  background: var(--v-raise);
  color: var(--v-text);
  font-family: var(--v-body);
  font-size: 0.95rem;
  transition: border-color 0.18s var(--v-ease), box-shadow 0.18s var(--v-ease);
}
.v-search-input::placeholder { color: var(--v-faint); }
.v-search-input:focus-visible {
  outline: none;
  border-color: var(--v-accent-soft);
  box-shadow: 0 0 0 3px var(--v-accent-dim);
}

.v-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.v-products-grid.is-centered { justify-content: center; }
.v-products-cell { display: flex; min-width: 0; }
.v-products-cell > .v-card { width: 100%; }

/* rotating carousel (Splide) — full-bleed, center card in focus */
.v-products-splide {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-inline: clamp(10px, 2vw, 24px);
}
.v-products-splide .splide__track { overflow: hidden; }
.v-products-splide .splide__slide {
  opacity: 0.45;
  transform: scale(0.985);
  transition: opacity 0.45s var(--v-ease), transform 0.45s var(--v-ease);
  padding: 2px 0;
}
.v-products-splide .splide__slide.is-active {
  opacity: 1;
  transform: none;
}
.v-products-splide .splide__slide > .v-card { width: 100%; }
.v-products-splide .splide__arrows,
.v-products-splide .splide__pagination { display: none; }

/* group modal — dark glass */
.v-modal-overlay {
  background: rgba(5, 6, 7, 0.78);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.v-modal-panel {
  position: relative;
  text-align: left;
  border-radius: 16px;
  border: 1px solid var(--v-card-edge);
  background: var(--v-bg-alt);
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.85);
  overflow: hidden;
}
.v-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px clamp(18px, 3vw, 28px);
  border-bottom: 1px solid var(--v-border-subtle);
}
.v-modal-title {
  margin: 0;
  font-family: var(--v-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  letter-spacing: -0.02em;
  color: var(--v-text);
}
.v-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--v-pill);
  border: 1px solid var(--v-card-edge);
  color: var(--v-muted);
  background: var(--v-raise);
  cursor: pointer;
  transition: color 0.18s var(--v-ease), border-color 0.18s var(--v-ease);
}
.v-modal-close:hover { color: var(--v-text); border-color: var(--v-border-hover); }
.v-modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: clamp(14px, 2vw, 20px);
  padding: clamp(18px, 3vw, 28px);
  max-height: 72vh;
  overflow-y: auto;
}

/* =====================================================================
   9. FAQ — quiet centered accordion, row dividers only
   ===================================================================== */

.v-faq.is-page { padding-block: var(--v-section-y); }
.v-faq-wrap { max-width: 760px; margin-inline: auto; }
.v-faq-list { display: grid; gap: 0; }
.v-faq-item {
  border: 0;
  border-bottom: 1px solid var(--v-border-subtle);
  border-radius: 0;
  background: transparent;
  overflow: hidden;
  transition: border-color 0.2s var(--v-ease);
}
.v-faq-item:first-child { border-top: 1px solid var(--v-border-subtle); }
.v-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 6px;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  color: var(--v-text);
  font-family: var(--v-body);
  font-weight: 600;
  font-size: 1.02rem;
  transition: color 0.18s var(--v-ease);
}
.v-faq-q:hover { color: #ffffff; }
.v-faq-question { flex: 1 1 auto; }
.v-faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--v-muted);
  transition: transform 0.3s var(--v-ease), color 0.2s var(--v-ease);
}
.v-faq-icon svg { width: 17px; height: 17px; display: block; }
.v-faq-icon.is-open { transform: rotate(180deg); color: rgb(var(--v-accent-rgb)); }
.v-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.34s var(--v-ease);
}
.v-faq-answer {
  margin: 0;
  padding: 0 6px 22px;
  color: var(--v-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* two-column grid kept for the help-card variant */
.v-faq-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(20px, 3vw, 34px);
  align-items: start;
  max-width: 1040px;
  margin-inline: auto;
}
.v-faq-grid.is-solo { grid-template-columns: 1fr; max-width: 760px; }
.v-faq-grid .v-faq-wrap { max-width: none; margin-inline: 0; }

.v-help-card {
  position: relative;
  border-radius: 16px;
  border: 1px solid var(--v-card-edge);
  background: var(--v-bg-alt);
  overflow: hidden;
}
.v-help-art {
  position: relative;
  height: 88px;
  overflow: hidden;
  background:
    radial-gradient(120px 90px at 30% -20%, rgba(var(--v-accent-rgb), 0.35), transparent 70%),
    radial-gradient(140px 110px at 75% -25%, rgba(var(--v-accent-2-rgb), 0.3), transparent 70%);
}
.v-help-body { padding: clamp(18px, 2.4vw, 24px); }
.v-help-title {
  font-family: var(--v-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.v-help-text { color: var(--v-muted); font-size: 0.95rem; line-height: 1.55; margin: 0 0 12px; }
.v-help-meta {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--v-faint);
  margin: 0 0 18px;
}
.v-help-card .v-btn-primary { width: 100%; }

/* =====================================================================
   10. CTA BAND (discord-cta type) — heading left, pill right, glow horizon
   ===================================================================== */

.v-discord { position: relative; }
.v-discord-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px 40px;
  max-width: 1060px;
  margin-inline: auto;
  padding: clamp(10px, 2vw, 20px) 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
/* wide ambient glow horizon behind the band */
.v-discord::before {
  content: '';
  position: absolute;
  inset: -40% -30vw;
  background:
    radial-gradient(ellipse 44% 52% at 22% 60%, rgba(var(--v-accent-rgb), 0.09), transparent 70%),
    radial-gradient(ellipse 40% 46% at 74% 45%, rgba(var(--v-accent-2-rgb), 0.08), transparent 70%);
  filter: blur(14px);
  pointer-events: none;
  z-index: 0;
}
.v-discord-sweep { display: none; }
.v-discord-copy { position: relative; z-index: 1; max-width: 58ch; }
.v-discord-copy .v-eyebrow { display: inline-block; margin-bottom: 12px; }
.v-discord-btn { position: relative; z-index: 1; flex: 0 0 auto; }
.v-discord-title {
  font-family: var(--v-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  letter-spacing: -0.025em;
  margin: 0 0 10px;
  color: var(--v-text);
}
.v-discord-sub { color: var(--v-muted); margin: 0; line-height: 1.6; font-size: 1rem; }

/* =====================================================================
   11. NAV — fixed top bar, condenses to floating pill on scroll
   ===================================================================== */

.v-header { position: relative; display: block; }

.v-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 10px clamp(14px, 3vw, 28px);
  background: linear-gradient(180deg, rgba(var(--v-bg-rgb), 0.82), rgba(var(--v-bg-rgb), 0));
  border: 0;
  transition: padding 0.3s var(--v-ease);
}
.v-nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(1200px, 100%);
  min-width: 0;
  height: 54px;
  padding: 0 10px;
  border-radius: var(--v-pill);
  border: 1px solid transparent;
  transition: background-color 0.3s var(--v-ease), border-color 0.3s var(--v-ease),
    box-shadow 0.3s var(--v-ease), width 0.3s var(--v-ease), padding 0.3s var(--v-ease);
}
/* pill state once scrolled */
.v-nav.is-scrolled .v-nav-inner {
  width: min(980px, 100%);
  padding: 0 10px 0 20px;
  border-color: var(--v-card-edge);
  background: color-mix(in srgb, var(--v-raise) 82%, transparent);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  backdrop-filter: blur(16px) saturate(1.3);
  box-shadow: 0 18px 44px -24px rgba(0, 0, 0, 0.7);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .v-nav.is-scrolled .v-nav-inner { background: var(--v-raise); }
}

.v-nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--v-display);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
  color: var(--v-text);
  text-decoration: none;
  white-space: nowrap;
  padding-left: 10px;
}
.v-nav-logo {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  object-fit: cover;
}
.v-nav-brand .v-accent-word::after { display: none; }

.v-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-inline: auto;
  min-width: 0;
}
.v-nav-link {
  position: relative;
  padding: 8px 13px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--v-muted);
  text-decoration: none;
  background: none;
  border: 0;
  cursor: pointer;
  border-radius: var(--v-pill);
  transition: color 0.18s var(--v-ease);
  white-space: nowrap;
  font-family: var(--v-body);
}
.v-nav-link:hover { color: var(--v-text); }
.v-nav-link.is-active { color: var(--v-text); }

.v-nav-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  margin-right: 7px;
  font-size: 0.9em;
  color: var(--v-muted);
  transition: color 0.18s var(--v-ease);
}
.v-nav-link:hover .v-nav-ico,
.v-nav-link.is-active .v-nav-ico { color: rgb(var(--v-accent-rgb)); }

.v-nav-actions { display: flex; align-items: center; gap: 8px; }

/* dashboard-style pill (login / account) */
.v-nav-dash {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 16px;
  border-radius: var(--v-pill);
  border: 1px solid var(--v-card-edge-2);
  background: var(--v-raise);
  color: var(--v-text);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  font-family: var(--v-body);
  white-space: nowrap;
  transition: border-color 0.18s var(--v-ease), background-color 0.18s var(--v-ease);
}
.v-nav-dash:hover { border-color: var(--v-border-hover); background: #141518; }
.v-nav-dash i { font-size: 0.8rem; color: var(--v-muted); }

/* cart icon button */
.v-nav-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--v-pill);
  border: 1px solid transparent;
  color: var(--v-muted);
  background: transparent;
  transition: color 0.18s var(--v-ease), border-color 0.18s var(--v-ease),
    background-color 0.18s var(--v-ease);
}
.v-nav-cart:hover,
.v-nav-cart.is-active {
  color: var(--v-text);
  border-color: var(--v-card-edge-2);
  background: var(--v-raise);
}
.v-nav-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--v-pill);
  background: var(--v-accent);
  color: var(--v-on-accent);
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1;
}

/* mobile-only cluster + edge fade */
.v-nav-mobile-actions { display: none; align-items: center; gap: 8px; }
.v-nav-fade {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(var(--v-bg-rgb), 0.9));
}
.v-nav-links.hide-scrollbar { scrollbar-width: none; -ms-overflow-style: none; }
.v-nav-links.hide-scrollbar::-webkit-scrollbar { display: none; }

/* push content below the fixed bar on non-landing pages */
body:not(.v-home-page) #app { padding-top: calc(var(--v-nav-h) + 34px); }

/* currency selector — quiet pill */
.currency-selector { display: inline-flex; }
.currency-selector select {
  height: 38px;
  padding: 0 12px;
  border-radius: var(--v-pill);
  background: var(--v-raise);
  border: 1px solid var(--v-card-edge-2);
  color: var(--v-text);
  font-family: var(--v-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: border-color 0.18s var(--v-ease);
}
.currency-selector select:hover { border-color: var(--v-border-hover); }
.currency-selector select:focus-visible { outline: none; border-color: var(--v-accent-soft); }
.currency-selector select option { color: #111; background: #fff; }

/* =====================================================================
   12. FOOTER — minimal, glow horizon
   ===================================================================== */

.v-footer {
  position: relative;
  margin-top: clamp(56px, 8vw, 120px);
  border-top: 0;
  overflow: visible;
}
.v-footer-inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(36px, 5vw, 64px) 28px;
}
/* pink/violet horizon glow rising behind the footer (full-bleed) */
.v-footer-anchor {
  position: absolute;
  inset: auto calc(50% - 50vw) 0;
  height: min(46vw, 480px);
  background:
    radial-gradient(ellipse 52% 62% at 18% 100%, rgba(var(--v-accent-rgb), 0.13), transparent 68%),
    radial-gradient(ellipse 46% 52% at 55% 100%, rgba(var(--v-accent-2-rgb), 0.10), transparent 70%),
    radial-gradient(ellipse 40% 44% at 88% 100%, rgba(255, 92, 120, 0.07), transparent 72%);
  filter: blur(10px);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}
.v-footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 46px;
  margin-bottom: 22px;
  border-bottom: 0;
}
.v-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--v-text);
}
.v-footer-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
}
.v-footer-name {
  margin: 0;
  font-family: var(--v-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.v-footer-socials { display: inline-flex; align-items: center; gap: 8px; }
.v-footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--v-pill);
  border: 0;
  color: var(--v-muted);
  background: transparent;
  transition: color 0.18s var(--v-ease), transform 0.18s var(--v-ease);
}
.v-footer-social:hover { transform: translateY(-2px); color: var(--v-text); }
.v-footer-bottom {
  display: flex;
  flex-direction: row-reverse;   /* links left, copyright right */
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
}
.v-footer-copy {
  margin: 0;
  color: var(--v-faint);
  font-size: 0.84rem;
  line-height: 1.5;
}
.v-footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 22px;
}
.v-footer-link {
  color: var(--v-muted);
  font-size: 0.86rem;
  text-decoration: none;
  transition: color 0.18s var(--v-ease);
}
.v-footer-link:hover { color: var(--v-text); }

/* =====================================================================
   13. REVIEWS — minimal 3-col grid, no cards
   ===================================================================== */

.v-reviews { position: relative; }
.v-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 52px) clamp(24px, 3vw, 44px);
  max-width: 1100px;
  margin-inline: auto;
}
.v-review { display: flex; flex-direction: column; gap: 14px; }
.v-review-head { display: flex; align-items: center; gap: 12px; }
.v-review-avatar {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-family: var(--v-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  background: var(--v-grad);
}
.v-review-id { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.v-review-name { font-weight: 600; color: var(--v-text); font-size: 0.95rem; }
.v-review-tag { color: var(--v-faint); font-size: 0.8rem; }
.v-review-text {
  margin: 0;
  color: var(--v-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* =====================================================================
   14. PAYMENTS band (socials component)
   ===================================================================== */

.v-pay { position: relative; }
.v-pay-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 64px);
}
.v-pay-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d1d5db;
  font-size: clamp(2.1rem, 3.4vw, 2.8rem);
  line-height: 1;
  text-decoration: none;
  opacity: 0.92;
  transition: transform 0.2s var(--v-ease), opacity 0.2s var(--v-ease);
}
.v-pay-item:hover { transform: translateY(-3px); opacity: 1; }

/* legacy socials classes kept harmless */
.v-socials-inner,
.v-socials-lead,
.v-socials-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; justify-content: center; }
.v-socials-title { font-family: var(--v-display); font-weight: 600; }
.v-socials-chip,
.v-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--v-pill);
  border: 1px solid var(--v-card-edge);
  color: var(--v-muted);
  background: var(--v-raise);
  text-decoration: none;
  transition: color 0.2s var(--v-ease), transform 0.2s var(--v-ease), border-color 0.2s var(--v-ease);
}
.v-social-btn:hover { color: var(--v-text); transform: translateY(-2px); border-color: var(--v-border-hover); }

/* =====================================================================
   15. BEFORE / AFTER slider (kept for builder use)
   ===================================================================== */

.v-ba { position: relative; }
.v-ba-frame {
  --v-ba-pos: 50%;
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--v-radius);
  border: 1px solid var(--v-card-edge);
  background: var(--v-card);
  overflow: hidden;
  box-shadow: 0 30px 70px -34px rgba(0, 0, 0, 0.7);
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}
.v-ba-after,
.v-ba-before { position: absolute; inset: 0; }
.v-ba-after { z-index: 1; }
.v-ba-before {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--v-ba-pos)) 0 0);
}
.v-ba-after > img,
.v-ba-before > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.v-ba-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 20px;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--v-faint);
  background-color: var(--v-bg);
  background-image:
    linear-gradient(var(--v-border-subtle) 1px, transparent 1px),
    linear-gradient(90deg, var(--v-border-subtle) 1px, transparent 1px),
    radial-gradient(ellipse 70% 60% at 50% 38%, rgba(var(--v-accent-rgb), 0.1), transparent 70%);
  background-size: 34px 34px, 34px 34px, cover;
}
.v-ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--v-ba-pos);
  z-index: 3;
  width: 2px;
  transform: translateX(-1px);
  background: var(--v-grad);
  cursor: ew-resize;
  touch-action: none;
}
.v-ba-handle:focus-visible { outline: none; }
.v-ba-grip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: var(--v-grad);
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 6px 18px -6px rgba(0, 0, 0, 0.6);
}
.v-ba-grip i,
.v-ba-grip svg { font-size: 0.72rem; line-height: 1; }
.v-ba-chip {
  position: absolute;
  top: 12px;
  z-index: 4;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: var(--v-pill);
  color: var(--v-text);
  background: rgba(9, 10, 11, 0.55);
  border: 1px solid var(--v-border);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  pointer-events: none;
}
.v-ba-chip.is-before { left: 12px; }
.v-ba-chip.is-after {
  right: 12px;
  color: rgb(var(--v-accent-rgb));
  border-color: var(--v-accent-soft);
  background: var(--v-accent-dim);
}

/* =====================================================================
   15a. PRODUCT PAGE — Ambani-style: media left, plan picker right,
   reviews marquee, "what you get" feature accordion grid
   ===================================================================== */

.v-product { padding-block: 8px 24px; }

.v-pp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}

.v-pp-gallery {
  position: relative;
  border-radius: 16px;
  border: 1px solid var(--v-card-edge);
  background: var(--v-bg-alt);
  overflow: hidden;
}
.v-pp-gallery .splide__track { border-radius: 15px; }
.v-pp-gallery-empty .v-card-placeholder { background-color: var(--v-card); }

.v-pp-desc {
  margin-top: 18px;
  padding: clamp(18px, 2.4vw, 26px);
  border-radius: 16px;
  border: 1px solid var(--v-card-edge);
  background: var(--v-bg-alt);
}
.v-pp-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.v-pp-tab {
  padding: 7px 15px;
  border-radius: var(--v-pill);
  border: 1px solid var(--v-card-edge);
  background: transparent;
  color: var(--v-muted);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--v-body);
  transition: color 0.18s var(--v-ease), border-color 0.18s var(--v-ease), background-color 0.18s var(--v-ease);
}
.v-pp-tab:hover { color: var(--v-text); border-color: var(--v-border-hover); }
.v-pp-tab.is-active { color: var(--v-text); background: var(--v-raise); border-color: var(--v-card-edge-2); }

.v-pp-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 18px;
}
.v-pp-title {
  margin: 0;
  font-family: var(--v-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  letter-spacing: -0.03em;
  color: var(--v-text);
}
.v-pp-tagline {
  margin: 10px 0 0;
  color: var(--v-muted);
  font-size: 1rem;
  line-height: 1.55;
}

/* system requirements — sits under the gallery in the left column */
.v-pp-req { margin-top: 18px; }
.v-pp-req .v-eyebrow { display: inline-block; margin-bottom: 12px; }
.v-pp-req-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--v-card-edge);
  border-radius: 12px;
  overflow: hidden;
  background: var(--v-card-edge);
}
.v-pp-req-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  background: var(--v-bg-alt);
  color: var(--v-text);
  font-size: 0.86rem;
  font-weight: 500;
}
.v-pp-req-item i { color: var(--v-muted); font-size: 0.95rem; width: 18px; text-align: center; }

/* plan card */
.v-pp-plan {
  margin-top: 22px;
  border-radius: 16px;
  border: 1px solid var(--v-card-edge);
  background: var(--v-bg-alt);
  overflow: hidden;
}
.v-pp-plan-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--v-border-subtle);
}
.v-pp-plan-title {
  margin: 0;
  font-family: var(--v-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--v-text);
}
.v-pp-plan-note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--v-faint);
  white-space: nowrap;
}
.v-pp-plan-note i { color: rgb(var(--v-accent-rgb)); font-size: 0.72rem; }

.v-pp-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 20px 0;
}
.v-pp-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--v-display);
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: -0.02em;
  color: var(--v-text);
}
.v-pp-price small { font-family: var(--v-body); font-weight: 400; font-size: 0.8rem; color: var(--v-faint); }
.v-pp-stock { font-size: 0.85rem; font-weight: 600; color: var(--v-text); }
.v-pp-stock .is-out { color: #ef4444; }

/* form internals */
.v-form { padding: 16px 20px 20px; color: var(--v-text); }
.v-form-block { margin-bottom: 18px; }
.v-form-label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--v-faint);
}
.v-form-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.v-form-actions .v-btn-primary,
.v-form-actions .v-btn-ghost { width: 100%; height: 50px; }
.v-btn-primary:disabled,
.v-btn-ghost:disabled { opacity: 0.5; pointer-events: none; }

/* plan tiles */
.v-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.v-plan-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 18px 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--v-card-edge);
  background: var(--v-raise);
  color: var(--v-text);
  cursor: pointer;
  text-align: center;
  font-family: var(--v-body);
  transition: border-color 0.2s var(--v-ease), background-color 0.2s var(--v-ease),
    transform 0.2s var(--v-ease), box-shadow 0.2s var(--v-ease);
}
.v-plan-tile:hover { border-color: var(--v-border-hover); transform: translateY(-2px); }
.v-plan-tile.is-active {
  border-color: rgb(var(--v-accent-rgb));
  box-shadow: 0 0 0 1px rgb(var(--v-accent-rgb)), 0 10px 26px -14px var(--v-accent-glow);
}
.v-plan-tile:disabled { opacity: 0.45; cursor: not-allowed; }
.v-plan-tag {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  padding: 3px 10px;
  border-radius: var(--v-pill);
  background: var(--v-grad);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.v-plan-name { font-size: 0.82rem; font-weight: 600; color: var(--v-muted); }
.v-plan-tile.is-active .v-plan-name { color: var(--v-text); }
.v-plan-price { font-family: var(--v-display); font-weight: 700; font-size: 1.25rem; letter-spacing: -0.02em; }
.v-plan-slash { font-size: 0.74rem; color: var(--v-faint); text-decoration: line-through; }
.v-plan-stock { font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--v-faint); }
.v-plan-desc { font-size: 0.72rem; color: var(--v-muted); line-height: 1.4; }

/* badges + live stats under the plan card */
.v-pp-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.v-pp-badges .v-chip { text-decoration: none; }
.v-pp-live {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 16px;
  font-size: 0.84rem;
  color: var(--v-faint);
}
.v-pp-live p { margin: 0; display: flex; align-items: center; gap: 9px; }
.v-pp-live i { color: rgb(var(--v-accent-rgb)); font-size: 0.8rem; width: 16px; text-align: center; }
.v-pp-live-num { color: var(--v-text); font-weight: 600; }

/* lowercase display titles (ambani style) */
.v-title-lower { text-transform: lowercase; font-size: clamp(2rem, 4vw, 2.9rem); }

/* reviews marquee band */
.v-pp-reviews { margin-top: clamp(56px, 8vw, 110px); }
.v-pp-reviews-viewport {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.v-pp-reviews-track {
  display: flex;
  align-items: stretch;
  gap: 16px;
  width: max-content;
  padding: 4px 0;
  animation: v-marquee 55s linear infinite;
  will-change: transform;
}
.v-pp-reviews-viewport:hover .v-pp-reviews-track { animation-play-state: paused; }
.v-pp-review {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(340px, 82vw);
  padding: 20px 22px;
  border-radius: 14px;
  border: 1px solid var(--v-card-edge);
  background: var(--v-bg-alt);
}
.v-pp-review-stars { display: inline-flex; gap: 3px; font-size: 0.72rem; color: var(--v-rose); }
.v-pp-review-stars .is-muted { color: var(--v-whisper); }
.v-pp-review-text {
  margin: 0;
  flex: 1 1 auto;
  color: var(--v-text);
  font-size: 0.9rem;
  line-height: 1.6;
}
.v-pp-review-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  min-width: 0;
}
.v-pp-review-foot .v-review-avatar { width: 30px; height: 30px; font-size: 0.72rem; }
.v-pp-review-name { color: var(--v-text); font-weight: 600; white-space: nowrap; }
.v-pp-review-time { color: var(--v-faint); white-space: nowrap; }
.v-pp-review-tag { margin-left: auto; color: var(--v-faint); white-space: nowrap; }

/* what you get — feature accordion grid */
.v-pp-features { margin-top: clamp(56px, 8vw, 110px); }
.v-pp-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}
.v-pp-feature {
  border-radius: 12px;
  border: 1px solid var(--v-card-edge);
  background: var(--v-bg-alt);
  overflow: hidden;
  transition: border-color 0.2s var(--v-ease);
}
.v-pp-feature:hover,
.v-pp-feature.is-open { border-color: var(--v-card-edge-2); }
.v-pp-feature-head {
  display: flex;
  align-items: center;
  gap: 13px;
  width: 100%;
  padding: 15px 16px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: var(--v-text);
  font-family: var(--v-body);
}
.v-pp-feature-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--v-raise);
  border: 1px solid var(--v-card-edge);
  color: rgb(var(--v-accent-rgb));
  font-size: 0.9rem;
}
.v-pp-feature-id { flex: 1 1 auto; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.v-pp-feature-title { font-weight: 600; font-size: 0.95rem; }
.v-pp-feature-desc {
  font-size: 0.76rem;
  color: var(--v-faint);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.v-pp-feature-count { font-size: 0.8rem; font-weight: 600; color: var(--v-muted); }
.v-pp-feature-chev {
  display: inline-flex;
  color: var(--v-faint);
  transition: transform 0.3s var(--v-ease), color 0.2s var(--v-ease);
}
.v-pp-feature-chev.is-open { transform: rotate(180deg); color: rgb(var(--v-accent-rgb)); }
.v-pp-feature-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.34s var(--v-ease);
}
.v-pp-feature-list {
  padding: 2px 16px 16px 67px;
  color: var(--v-muted);
  font-size: 0.86rem;
  line-height: 1.9;
}

/* upsells */
.v-pp-upsells { margin-top: clamp(56px, 8vw, 110px); }

@media (max-width: 980px) {
  .v-pp-grid { grid-template-columns: 1fr; }
  .v-pp-feature-grid { grid-template-columns: 1fr; }
  .v-plan-grid { grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); }
}

/* =====================================================================
   15b. STATUS page — quiet rows with live pulse chips
   ===================================================================== */

.v-status { padding-block: calc(var(--v-section-y) * 0.4); }
.v-status-list {
  max-width: 760px;
  margin-inline: auto;
  border-top: 1px solid var(--v-border-subtle);
}
.v-status-group { padding: 26px 6px 10px; }
.v-status-group-name {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--v-faint);
}
.v-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 6px;
  border-bottom: 1px solid var(--v-border-subtle);
  text-decoration: none;
  transition: background-color 0.18s var(--v-ease);
}
.v-status-row:hover { background: rgba(252, 252, 252, 0.02); }
.v-status-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--v-text);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.v-status-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
}
.v-status-dot {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
/* empty state — no product statuses published yet */
.v-status-empty {
  display: flex;
  justify-content: center;
  padding: 34px 6px;
  border-top: 1px solid var(--v-border-subtle);
  border-bottom: 1px solid var(--v-border-subtle);
  max-width: 760px;
  margin-inline: auto;
  font-size: 1rem;
}

/* =====================================================================
   16. Reveal transitions + count-up
   ===================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  filter: blur(8px);
  transition:
    opacity 0.7s var(--v-ease-out),
    transform 0.7s var(--v-ease-out),
    filter 0.7s var(--v-ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
  filter: none;
}

[data-hero-stagger] {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  filter: blur(8px);
}
.motion-ready [data-hero-stagger].is-entered {
  opacity: 1;
  transform: none;
  filter: none;
  transition:
    opacity 0.85s var(--v-ease-out),
    transform 0.85s var(--v-ease-out),
    filter 0.85s var(--v-ease-out);
}

.v-count { font-variant-numeric: tabular-nums; font-feature-settings: 'tnum' 1; }

/* =====================================================================
   17. Loader
   ===================================================================== */

.v-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--v-bg);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.v-loader.is-done { opacity: 0; visibility: hidden; }
.v-loader-mark {
  font-family: var(--v-display);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
  color: var(--v-text);
  opacity: 0;
  animation: v-loader-fade 0.5s var(--v-ease) forwards;
}
.v-loader-mark .v-accent-word::after { display: none; }
@keyframes v-loader-fade { to { opacity: 1; } }
.v-loader-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--v-grad);
  z-index: 10000;
  transition: width 0.4s var(--v-ease);
}

/* =====================================================================
   18. Responsive
   ===================================================================== */

@media (max-width: 1020px) {
  .v-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v-reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .v-nav { padding: 8px 10px; }
  .v-nav-inner { padding: 0 8px; height: 52px; }
  .v-nav-brand { padding-left: 6px; font-size: 1.02rem; }
  .v-nav-mobile-actions { display: inline-flex; }
  .v-nav-actions { display: none; }
  .v-nav-links {
    margin-inline: 0;
    flex: 1 1 auto;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .v-nav-fade { display: block; }
  .v-nav.is-scrolled .v-nav-inner { width: 100%; padding: 0 8px 0 14px; }

  .v-discord-inner { flex-direction: column; align-items: flex-start; text-align: left; }
}

@media (max-width: 640px) {
  .v-feature-grid { grid-template-columns: 1fr; gap: 40px; }
  .v-reviews-grid { grid-template-columns: 1fr; }
  .v-hero { min-height: max(78vh, 560px); }
  .v-hero-actions { flex-direction: column; align-items: stretch; width: 100%; max-width: 340px; }
  .v-hero-actions .v-btn-primary,
  .v-hero-actions .v-btn-ghost { width: 100%; }
  .v-hero-badge { font-size: 0.78rem; }
}

/* =====================================================================
   19. Reduced motion
   ===================================================================== */

@media (prefers-reduced-motion: reduce) {
  .v-home *,
  .v-home *::before,
  .v-home *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal],
  [data-hero-stagger] { opacity: 1 !important; transform: none !important; filter: none !important; }
  .v-marquee-track { animation-duration: 120s !important; }
  .v-products-arrow { animation: none; }
}