﻿/* ============================================================
   WAVES AI В· compact landing styles
   РћР±С‰РёР№ РґР»СЏ index.html (Р·Р°РєР°Р·С‡РёРєРё) Рё franchise.html (РїР°СЂС‚РЅС‘СЂС‹)
   ============================================================ */

.wv-body {
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  background: radial-gradient(ellipse at top, #0c0f24 0%, var(--bg-0) 60%);
}

/* ---------- aurora bg ---------- */
.wv-aurora {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.wv-aurora-blob {
  position: absolute; width: 60vw; height: 60vw; border-radius: 50%;
  filter: blur(90px); opacity: 0.4;
  animation: wv-aurora-drift 26s ease-in-out infinite alternate;
}
.wv-aurora-blob.a1 { top: -15vw; left: -10vw; background: radial-gradient(circle, rgba(244,198,106,0.45), transparent 70%); }
.wv-aurora-blob.a2 { top: 30vw; right: -20vw; background: radial-gradient(circle, rgba(79,227,193,0.35), transparent 70%); animation-duration: 30s; }
.wv-aurora-blob.a3 { bottom: -20vw; left: 20vw; background: radial-gradient(circle, rgba(255,79,163,0.35), transparent 70%); animation-duration: 34s; }
@keyframes wv-aurora-drift {
  0% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(4vw,-3vw,0) scale(1.08); }
  100% { transform: translate3d(-3vw,3vw,0) scale(0.95); }
}
.wv-aurora-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
}
main { position: relative; z-index: 1; }

/* ---------- container + section ---------- */
.wv-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}
.wv-section {
  padding-top: var(--section-pad-y);
  padding-bottom: var(--section-pad-y);
  position: relative;
}
.wv-section.tight {
  padding-top: var(--section-pad-y-tight);
  padding-bottom: var(--section-pad-y-tight);
}

/* ---------- eyebrow ---------- */
.wv-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--text-dim);
  margin: 0;
}
.wv-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-gold);
  box-shadow: 0 0 0 4px rgba(244,198,106,0.15);
  animation: wv-dot-pulse 1.8s ease-in-out infinite;
}
.wv-eyebrow.alt { color: var(--brand-gold); }
@keyframes wv-dot-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.6); }
}

/* ---------- shimmer text ---------- */
.wv-shimmer {
  background: linear-gradient(90deg, var(--brand-gold) 0%, #fff3d6 25%, var(--brand-gold) 50%, var(--brand-gold-deep) 75%, var(--brand-gold) 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: wv-shimmer 8s linear infinite;
  font-style: italic;
}
@keyframes wv-shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* ---------- buttons ---------- */
.wv-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.88rem; font-weight: 600;
  transition: transform var(--dur-base) var(--ease-out-expo),
              box-shadow var(--dur-base) var(--ease-out-expo),
              border-color var(--dur-base) ease,
              background var(--dur-base) ease,
              color var(--dur-base) ease;
  will-change: transform;
  cursor: pointer;
}
.wv-btn.big { padding: 13px 22px; font-size: 0.95rem; }
.wv-btn.wide { width: 100%; justify-content: center; }
.wv-btn:active { transform: scale(0.97); }

.wv-btn.primary {
  background: var(--grad-gold);
  color: #160a00;
  box-shadow: var(--shadow-gold);
}
.wv-btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 50px -12px rgba(244,198,106,0.55);
}

.wv-btn.ghost {
  background: var(--glass);
  border-color: var(--line-strong);
  color: var(--text);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.wv-btn.ghost:hover {
  border-color: var(--line-gold);
  color: var(--brand-gold);
  background: rgba(244,198,106,0.08);
}
.wv-btn svg { transition: transform var(--dur-base) var(--ease-out-expo); }
.wv-btn:hover svg { transform: translateX(2px); }

/* ---------- nav ---------- */
.wv-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--nav-h);
  padding: 0 clamp(16px, 3vw, 40px);
  background: rgba(5,6,13,0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.wv-logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700;
}
.wv-logo-img {
  display: block;
  width: auto;
  height: 32px;
  object-fit: contain;
}
.wv-logo-mark { display: inline-flex; align-items: end; gap: 3px; height: 16px; }
.wv-logo-mark span {
  display: block; width: 3px; border-radius: 2px;
  background: linear-gradient(180deg, var(--brand-gold), var(--brand-gold-deep));
  animation: wv-bar 1.8s ease-in-out infinite;
}
.wv-logo-mark span:nth-child(1) { height: 9px; }
.wv-logo-mark span:nth-child(2) { height: 14px; animation-delay: 0.2s; }
.wv-logo-mark span:nth-child(3) { height: 7px; animation-delay: 0.4s; }
@keyframes wv-bar { 0%,100% { transform: scaleY(1); } 50% { transform: scaleY(1.4); } }
.wv-logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}
.wv-logo-text em { font-style: italic; color: var(--brand-gold); margin-left: 2px; }

.wv-nav-links { display: flex; gap: 24px; }
.wv-nav-links a {
  position: relative;
  font-size: 0.84rem;
  color: var(--text-dim);
  transition: color var(--dur-base) ease;
  padding: 4px 0;
}
.wv-nav-links a::after {
  content: ""; position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 1px; background: var(--brand-gold);
  transition: right var(--dur-base) var(--ease-out-expo);
}
.wv-nav-links a:hover { color: var(--brand-gold); }
.wv-nav-links a:hover::after { right: 0; }

.wv-nav-cta { display: flex; align-items: center; gap: 10px; }
.wv-audience {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: var(--glass);
  font-size: 0.72rem; font-weight: 600;
  color: var(--text-dim);
  font-family: var(--font-mono);
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: border-color var(--dur-base) ease, color var(--dur-base) ease;
}
.wv-audience:hover { border-color: var(--line-gold); color: var(--brand-gold); }
.wv-audience::after { content: "\2192"; font-weight: 400; }

/* ============================================================
   HERO вЂ” compact two-col
   ============================================================ */
.wv-hero {
  position: relative;
  padding-top: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(32px, 4vw, 56px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.wv-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: var(--grad-aurora);
  opacity: 0.65;
  pointer-events: none;
}
.wv-hero-bg::before,
.wv-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
}
.wv-hero-bg::before {
  background-image: var(--hero-bg-image);
  background-position: var(--hero-bg-position-x, center) var(--hero-bg-position-y, 32%);
  background-repeat: no-repeat;
  background-size: cover;
  filter: saturate(1.05) contrast(1.02);
}
.wv-hero-bg::after {
  background:
    linear-gradient(90deg, rgba(5, 6, 13, 0.9) 0%, rgba(5, 6, 13, 0.82) 38%, rgba(5, 6, 13, 0.44) 68%, rgba(5, 6, 13, 0.72) 100%),
    radial-gradient(circle at 78% 28%, rgba(244, 198, 106, 0.26), transparent 30%),
    linear-gradient(180deg, rgba(5, 6, 13, 0.16) 0%, rgba(5, 6, 13, 0.58) 100%);
}
.wv-page-home,
.wv-page-franchise {
  --hero-bg-position-y: 32%;
}
.wv-hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.wv-hero-copy { max-width: 620px; }
.wv-hero-copy .wv-eyebrow { margin-bottom: 14px; }

.wv-hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin: 0 0 16px;
}
.wv-hero-sub {
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  line-height: 1.55;
  color: var(--text-dim);
  margin: 0 0 22px;
  max-width: 560px;
}

.wv-hero-ctas {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 24px;
}

.wv-hero-badges {
  display: flex; flex-wrap: wrap; gap: 8px;
  max-width: 620px;
}
.wv-badge {
  display: inline-flex; align-items: baseline; gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: var(--glass);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 0.8rem;
  white-space: nowrap;
}
.wv-badge strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand-gold);
  font-size: 0.95rem;
}
.wv-badge span { color: var(--text-dim); }

/* hero stack вЂ” РєРѕРјРїР°РєС‚РЅРµРµ, 3 РѕСЃРЅРѕРІРЅС‹С… РєР°СЂС‚РѕС‡РєРё */
.wv-hero-stack {
  position: relative;
  aspect-ratio: 4/3;
  min-height: 320px;
  max-height: 440px;
}
.wv-hero-stack .hero-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line-strong);
  background: var(--bg-2);
  translate: 0 0;
  scale: 1;
  transition: translate 520ms cubic-bezier(0.22, 1, 0.36, 1), scale 520ms cubic-bezier(0.22, 1, 0.36, 1), filter 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity, filter;
}
.wv-hero-stack .hero-card img {
  width: 100%; height: 100%; object-fit: cover;
}
.wv-hero-stack .hero-card.c1 { top: 2%; right: 8%; width: 50%; aspect-ratio: 3/4; z-index: 3; animation: hero-float-c1 9s ease-in-out infinite; transform: rotate(-6deg); }
.wv-hero-stack .hero-card.c2 { top: 16%; left: 4%; width: 43%; aspect-ratio: 4/5; z-index: 4; animation: hero-float-c2 10s ease-in-out infinite; transform: rotate(5deg); }
.wv-hero-stack .hero-card.c3 { bottom: 3%; right: 24%; width: 45%; aspect-ratio: 3/4; z-index: 2; animation: hero-float-c3 11s ease-in-out infinite; transform: rotate(7deg); }
.wv-hero-stack .hero-card:hover {
  animation-play-state: paused;
  translate: 0 -10px;
  scale: 1.045;
  filter: brightness(1.04) saturate(1.02);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
  z-index: 8;
}

@keyframes hero-float-c1 {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-6deg); }
  35% { transform: translate3d(10px, -10px, 0) rotate(-4deg); }
  65% { transform: translate3d(-8px, 8px, 0) rotate(-7deg); }
}

@keyframes hero-float-c2 {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(5deg); }
  30% { transform: translate3d(-10px, -14px, 0) rotate(7deg); }
  68% { transform: translate3d(8px, 6px, 0) rotate(4deg); }
}

@keyframes hero-float-c3 {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(7deg); }
  40% { transform: translate3d(8px, -12px, 0) rotate(5deg); }
  72% { transform: translate3d(-10px, 6px, 0) rotate(8deg); }
}

.wv-hero-stack .hero-card-tag {
  position: absolute;
  left: 8px; bottom: 8px;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  background: rgba(5,6,13,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line-strong);
  font-size: 0.62rem;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-gold);
}

.hero-burst {
  position: absolute;
  top: 45%; left: 45%;
  color: var(--brand-gold);
  opacity: 0.7;
  animation: wv-spin 14s linear infinite;
  z-index: 10;
  pointer-events: none;
}
@keyframes wv-spin { to { transform: rotate(360deg); } }

/* ---------- marquee (thin strip) ---------- */
.wv-marquee {
  position: relative; z-index: 1;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(12,16,32,0.5), rgba(12,16,32,0.2));
  overflow: hidden;
}
.wv-marquee-track {
  display: flex; gap: 28px;
  white-space: nowrap;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-dim);
  animation: wv-mq-right 38s linear infinite;
}
.wv-marquee-track em {
  font-size: 0.7em; color: var(--brand-gold); opacity: 0.65; font-style: normal;
}
@keyframes wv-mq-right {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .wv-marquee-track { animation: none; } }

/* ============================================================
   SECTION HEAD вЂ” inline, not centered
   ============================================================ */
.wv-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.wv-head-left { max-width: 560px; }
.wv-head-left .wv-eyebrow { margin-bottom: 10px; }
.wv-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin: 0;
}
.wv-head p {
  max-width: 420px;
  margin: 0;
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ============================================================
   GALLERY вЂ” compact horizontal strip
   ============================================================ */
.wv-gallery {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.wv-gallery-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: wv-gallery-loop 82s linear infinite;
}
.wv-gallery:hover .wv-gallery-track {
  animation-play-state: paused;
}
.wv-gallery-card {
  flex: 0 0 clamp(150px, 14vw, 188px);
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color var(--dur-base) ease, transform var(--dur-base) var(--ease-out-expo);
}
.wv-gallery-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out-expo);
}
.wv-gallery-card:hover { transform: translateY(-4px); border-color: var(--accent, var(--line-gold)); }
.wv-gallery-card:hover img { transform: scale(1.05); }
.wv-gallery-card .meta {
  position: absolute;
  left: 10px; right: 10px; bottom: 10px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, transparent, rgba(5,6,13,0.92));
  color: var(--text);
}
.wv-gallery-card .meta h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
}
.wv-gallery-card .meta span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--accent, var(--brand-gold));
  margin-bottom: 2px;
}
.wv-gallery-foot {
  margin-top: 16px;
  color: var(--text-dim);
  font-size: 0.88rem;
}
.wv-gallery-foot strong { color: var(--brand-gold); }

@keyframes wv-gallery-loop {
  from { transform: translate3d(-50%, 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

/* ============================================================
   SPLIT вЂ” flow + mini-gallery / flow + venue
   ============================================================ */
.wv-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

/* flow list вЂ” vertical numbered rail */
.wv-flow-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 12px;
}
.wv-flow-list li {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color var(--dur-base) ease, transform var(--dur-base) var(--ease-out-expo);
}
.wv-flow-list li:hover { border-color: var(--line-gold); transform: translateX(4px); }
.wv-flow-list li .n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: transparent;
  -webkit-text-stroke: 1px var(--brand-gold);
  line-height: 1;
  align-self: center;
}
.wv-flow-list li .body h3 {
  margin: 0 0 3px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}
.wv-flow-list li .body p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.85rem;
  line-height: 1.45;
}
.wv-flow-list li .chip {
  align-self: center;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(79,227,193,0.1);
  border: 1px solid var(--line-teal);
  color: var(--brand-teal);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* requirements / spec вЂ” tight 2-column inside split */
.wv-reqs {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.wv-reqs li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: var(--glass);
  border: 1px solid var(--line);
  transition: border-color var(--dur-base) ease;
}
.wv-reqs li:hover { border-color: var(--line-gold); }
.wv-reqs li svg { color: var(--brand-gold); }
.wv-reqs li strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1px;
}
.wv-reqs li span {
  color: var(--text-dim);
  font-size: 0.76rem;
  line-height: 1.4;
}

/* ============================================================
   CASES вЂ” horizontal rail (keep)
   ============================================================ */
.wv-case-rail { overflow: hidden; padding-left: var(--container-pad); }
.wv-case-track {
  display: flex; gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px var(--container-pad) 16px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--line-gold) transparent;
}
.wv-case-track::-webkit-scrollbar { height: 5px; }
.wv-case-track::-webkit-scrollbar-thumb { background: var(--line-gold); border-radius: 3px; }

.wv-case {
  flex: 0 0 min(520px, 82vw);
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: border-color var(--dur-base) ease;
}
.wv-case:hover { border-color: var(--line-gold); }
.wv-case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  aspect-ratio: 16/9;
  background: var(--bg-1);
}
.wv-case-grid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out-expo);
}
.wv-case:hover .wv-case-grid img { transform: scale(1.04); }
.wv-case.wv-case-mosaic .wv-case-grid {
  grid-template-columns: 0.95fr 0.95fr 1.18fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  aspect-ratio: 16/10;
}
.wv-case.wv-case-mosaic .wv-case-grid img:nth-child(1) { grid-column: 1; grid-row: 1; }
.wv-case.wv-case-mosaic .wv-case-grid img:nth-child(2) { grid-column: 2; grid-row: 1; }
.wv-case.wv-case-mosaic .wv-case-grid img:nth-child(3) { grid-column: 3; grid-row: 1 / span 2; }
.wv-case.wv-case-mosaic .wv-case-grid img:nth-child(4) { grid-column: 1 / span 2; grid-row: 2; }
.wv-case-grid.placeholder {
  background: linear-gradient(135deg, var(--bg-2), var(--bg-1));
}
.wv-case-slot {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--bg-1), var(--bg-2));
  color: var(--muted-deep);
  font-family: var(--font-display);
  font-size: 1rem; font-style: italic;
  border: 1px dashed var(--line);
  text-align: center;
}

.wv-case-foot {
  padding: 16px 18px;
  display: grid; gap: 8px;
}
.wv-case-foot h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}
.wv-case-foot p {
  margin: 0;
  color: var(--text-dim);
  line-height: 1.45;
  font-size: 0.85rem;
}
.wv-case-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.wv-case-tags span {
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: var(--glass);
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.66rem; color: var(--text-dim);
  letter-spacing: 0.05em;
}
.wv-case.empty { border-style: dashed; }

/* ============================================================
   PACKAGES compact comparison table
   ============================================================ */
.wv-pkgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.wv-pkg {
  position: relative;
  padding: 22px 22px 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface-soft), var(--surface));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-inset);
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color var(--dur-base) ease, transform var(--dur-base) var(--ease-out-expo);
}
.wv-pkg:hover { border-color: var(--line-gold); transform: translateY(-3px); }
.wv-pkg.featured {
  background: linear-gradient(180deg, rgba(244,198,106,0.08), rgba(18,22,44,0.9));
  border-color: var(--brand-gold-deep);
  box-shadow: var(--shadow-gold), var(--shadow-inset);
}
.wv-pkg header {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.wv-pkg.featured > header {
  padding-right: 180px;
}
.wv-pkg .tag {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  font-style: italic;
  color: var(--text);
}
.wv-pkg .badge {
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  background: var(--glass);
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-dim);
}
.wv-pkg .badge.gold {
  background: rgba(244,198,106,0.1);
  border-color: var(--line-gold);
  color: var(--brand-gold);
}
.wv-pkg .ribbon {
  position: absolute;
  top: 12px; right: -4px;
  padding: 3px 10px;
  background: var(--grad-gold);
  color: var(--bg-0);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 3px 0 0 3px;
  font-weight: 700;
}
.wv-pkg h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}
.wv-pkg .desc {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.85rem;
  line-height: 1.45;
}
.wv-pkg ul {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 6px;
}
.wv-pkg ul li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.4;
}
.wv-pkg ul li::before {
  content: "\2713";
  color: var(--brand-teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.wv-pkg ul li.dim { color: var(--muted-deep); }
.wv-pkg ul li.dim::before { content: "\00D7"; color: var(--danger); }

.wv-pkg .price {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.wv-pkg .price strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-gold);
  line-height: 1;
}
.wv-pkg .price span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
}

.wv-pkgs-foot {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.78rem;
}

/* ============================================================
   TIMELINE вЂ” horizontal chips row
   ============================================================ */
.wv-timeline {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  position: relative;
}
.wv-timeline::before {
  content: "";
  position: absolute;
  left: 3%; right: 3%;
  top: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-gold), var(--line-gold), transparent);
}
.wv-timeline li {
  position: relative;
  padding: 32px 12px 10px;
  z-index: 1;
}
.wv-timeline li::before {
  content: "";
  position: absolute;
  top: 10px; left: 12px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--brand-gold);
  box-shadow: 0 0 0 3px rgba(244,198,106,0.15);
}
.wv-timeline time {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  color: var(--brand-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.wv-timeline h4 {
  margin: 0 0 3px;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
}
.wv-timeline p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.45;
}

/* ============================================================
   FAQ вЂ” 2 column compact
   ============================================================ */
.wv-faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.wv-faq details {
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color var(--dur-base) ease, background var(--dur-base) ease;
}
.wv-faq details[open] {
  border-color: var(--line-gold);
  background: var(--surface-strong);
}
.wv-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  list-style: none;
}
.wv-faq summary::-webkit-details-marker { display: none; }
.wv-faq summary svg {
  transition: transform var(--dur-base) var(--ease-out-expo);
  color: var(--brand-gold);
  flex-shrink: 0;
}
.wv-faq details[open] summary svg { transform: rotate(180deg); }
.wv-faq details p {
  margin: 0;
  padding: 0 16px 14px;
  color: var(--text-dim);
  line-height: 1.5;
  font-size: 0.85rem;
}

/* ============================================================
   UNIT ECONOMICS вЂ” 3-col dense table
   ============================================================ */
.wv-uecon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.wv-uecon-col {
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface-soft), var(--surface));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-inset);
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color var(--dur-base) ease;
}
.wv-uecon-col:hover { border-color: var(--line-gold); }
.wv-uecon-col.featured {
  background: linear-gradient(180deg, rgba(244,198,106,0.08), rgba(18,22,44,0.9));
  border-color: var(--brand-gold-deep);
  box-shadow: var(--shadow-gold), var(--shadow-inset);
}
.wv-uecon-col ul {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 4px;
  flex-grow: 1;
}
.wv-uecon-col ul li {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
  line-height: 1.3;
}
.wv-uecon-col ul li:last-child { border-bottom: none; }
.wv-uecon-col ul li span { color: var(--text-dim); }
.wv-uecon-col ul li strong {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  text-align: right;
}
.wv-uecon-col ul li.total {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--line-gold);
  border-bottom: none;
}
.wv-uecon-col ul li.total span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  font-style: italic;
}
.wv-uecon-col ul li.total strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--brand-gold);
  font-weight: 700;
  font-style: italic;
}

/* ============================================================
   SUPPORT grid вЂ” compact 6-col icon cells
   ============================================================ */
.wv-support {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.wv-support-cell {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid; gap: 6px;
  transition: border-color var(--dur-base) ease, transform var(--dur-base) var(--ease-out-expo);
}
.wv-support-cell:hover { border-color: var(--line-gold); transform: translateY(-2px); }
.wv-support-cell svg { color: var(--brand-gold); }
.wv-support-cell h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}
.wv-support-cell p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.82rem;
  line-height: 1.45;
}

/* ============================================================
   CTA вЂ” compact inline form
   ============================================================ */
.wv-cta {
  padding: var(--section-pad-y) 0;
}
.wv-cta-card {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 56px) clamp(24px, 5vw, 56px);
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(28,32,58,0.9), rgba(12,16,32,0.98));
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow-gold), var(--shadow-inset);
  overflow: hidden;
}
.wv-cta-glow {
  position: absolute;
  top: -50%; left: 20%;
  width: 60%; height: 90%;
  background: radial-gradient(ellipse, rgba(244,198,106,0.22), transparent 70%);
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
  animation: wv-cta-glow 8s ease-in-out infinite alternate;
}
@keyframes wv-cta-glow {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.15); opacity: 1; }
}
.wv-cta-card > * { position: relative; z-index: 1; }

.wv-cta-card > .wv-eyebrow { margin-bottom: 12px; }
.wv-cta-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.wv-cta-sub {
  color: var(--text-dim);
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}
.wv-cta-direct {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.wv-chip-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 13px;
  border-radius: var(--radius-pill);
  background: var(--glass);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 500;
  transition: border-color var(--dur-base) ease, color var(--dur-base) ease, background var(--dur-base) ease;
}
.wv-chip-link:hover {
  border-color: var(--line-gold);
  color: var(--brand-gold);
  background: rgba(244,198,106,0.08);
}

.wv-cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}
.wv-cta-form label {
  display: grid; gap: 4px;
}
.wv-cta-form label.full { grid-column: 1 / -1; }
.wv-cta-form span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.wv-cta-form input {
  padding: 10px 13px;
  border-radius: var(--radius-md);
  background: rgba(5, 6, 13, 0.55);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: border-color var(--dur-base) ease, box-shadow var(--dur-base) ease;
}
.wv-cta-form input:focus {
  outline: none;
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 3px rgba(244,198,106,0.16);
}
.wv-cta-form-footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 4px;
}
.wv-cta-form-footer .wv-btn { flex-shrink: 0; }
.wv-cta-form-footer .wv-cta-direct { display: flex; flex-wrap: wrap; gap: 6px; }
.wv-submit-block {
  display: grid;
  gap: 8px;
  flex-shrink: 0;
}
.wv-form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.45;
}
.wv-form-note a {
  color: var(--brand-gold);
  text-decoration: underline;
  text-decoration-color: rgba(244, 198, 106, 0.45);
  text-underline-offset: 3px;
}
.wv-form-note a:hover { color: var(--brand-gold-soft); }
.wv-form-status {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
}
.wv-form-status[data-state="success"] { color: var(--brand-teal); }
.wv-form-status[data-state="error"] { color: var(--danger); }
.wv-cta-form .wv-consent {
  display: grid;
  grid-template-columns: 18px max-content;
  align-items: start;
  column-gap: 12px;
  row-gap: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
  cursor: pointer;
  max-width: 100%;
}
.wv-consent input {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  min-width: 18px;
  max-width: 18px;
  min-height: 18px;
  max-height: 18px;
  margin: 0;
  border-radius: 3px;
  border: 1px solid rgba(244, 198, 106, 0.42);
  background: linear-gradient(180deg, rgba(10, 12, 26, 0.98), rgba(17, 20, 42, 0.98));
  cursor: pointer;
  transition: background var(--dur-fast) ease, border-color var(--dur-fast) ease, box-shadow var(--dur-fast) ease;
  grid-column: 1;
  grid-row: 1;
}
.wv-consent input:checked {
  border-color: var(--brand-gold);
  background: var(--grad-gold);
  box-shadow: var(--shadow-gold);
}
.wv-consent input:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 5px;
  border-left: 2px solid #17100a;
  border-bottom: 2px solid #17100a;
  transform: translate(-50%, -58%) rotate(-45deg);
}
.wv-consent input:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(244,198,106,0.18);
}
.wv-consent span {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--font-sans);
  font-size: inherit;
  letter-spacing: 0;
  text-transform: none;
  color: inherit;
  white-space: nowrap;
}
.wv-consent a {
  color: var(--brand-gold);
  text-decoration: underline;
  text-decoration-color: rgba(244, 198, 106, 0.45);
  text-underline-offset: 3px;
}
.wv-consent a:hover { color: var(--brand-gold-soft); }
.wv-btn:disabled,
.wv-cookie-btn:disabled {
  cursor: not-allowed;
  opacity: 0.46;
  transform: none;
  box-shadow: none;
}

/* ============================================================
   FOOTER вЂ” one row
   ============================================================ */
.wv-footer {
  padding: 24px 0 20px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-0), #000);
}
.wv-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.wv-footer-nav { display: flex; flex-wrap: wrap; gap: 18px; }
.wv-footer-nav a {
  color: var(--text-dim);
  font-size: 0.82rem;
  transition: color var(--dur-base) ease;
}
.wv-footer-nav a:hover { color: var(--brand-gold); }
.wv-footer-fine {
  color: var(--muted);
  font-size: 0.72rem;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-align: right;
  line-height: 1.65;
  margin-left: auto;
}
.wv-footer-copy {
  color: var(--text-dim);
}
.wv-footer-dev {
  display: block;
  margin-top: 6px;
  color: var(--brand-gold);
}

/* ============================================================
   LEGAL PAGES + COOKIE BANNER
   ============================================================ */
.wv-legal-page {
  min-height: 100vh;
  background: var(--bg-0);
}
.wv-legal-shell {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0 72px;
}
.wv-legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--text-dim);
  font-size: 0.86rem;
  transition: color var(--dur-base) ease;
}
.wv-legal-back:hover { color: var(--brand-gold); }
.wv-legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(18, 22, 44, 0.92), rgba(8, 10, 22, 0.96));
  box-shadow: var(--shadow-card);
  padding: clamp(24px, 4vw, 48px);
}
.wv-legal-kicker {
  margin: 0 0 10px;
  color: var(--brand-gold);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.wv-legal-card h1 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 4rem);
  line-height: 0.96;
  letter-spacing: 0;
}
.wv-legal-lead {
  margin: 0 0 28px;
  color: var(--text-dim);
  font-size: 1rem;
  max-width: 680px;
}
.wv-legal-card h2 {
  margin: 30px 0 12px;
  color: var(--text);
  font-size: 1.18rem;
}
.wv-legal-card p,
.wv-legal-card li {
  color: var(--text-dim);
  font-size: 0.95rem;
}
.wv-legal-card p { margin: 0 0 12px; }
.wv-legal-card ul {
  margin: 0 0 18px 20px;
  padding: 0;
}
.wv-legal-card li { margin-bottom: 8px; }
.wv-legal-footer {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}
.wv-cookie-banner {
  position: fixed;
  left: max(16px, env(safe-area-inset-left));
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 80;
  display: none;
}
.wv-cookie-banner.is-visible { display: block; }
.wv-cookie-inner {
  width: min(960px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: rgba(8, 10, 22, 0.94);
  box-shadow: 0 22px 70px -24px rgba(0, 0, 0, 0.9), var(--shadow-inset);
  backdrop-filter: blur(18px);
}
.wv-cookie-title {
  margin: 0 0 4px;
  color: var(--text);
  font-weight: 700;
}
.wv-cookie-text {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.84rem;
  line-height: 1.45;
}
.wv-cookie-text a {
  color: var(--brand-gold);
  text-decoration: underline;
  text-decoration-color: rgba(244, 198, 106, 0.42);
  text-underline-offset: 3px;
}
.wv-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.wv-cookie-btn {
  min-height: 38px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.82rem;
}
.wv-cookie-btn.accept {
  background: var(--grad-gold);
  color: #15100a;
  box-shadow: var(--shadow-gold);
}
.wv-cookie-btn.reject {
  border: 1px solid var(--line);
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.04);
}
.wv-cookie-btn:hover { transform: translateY(-1px); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .wv-nav-links { display: none; }
  .wv-hero-inner { grid-template-columns: 1fr; }
  .wv-hero-stack { margin: 0 auto; max-width: 520px; }
  .wv-gallery-card { flex-basis: clamp(142px, 22vw, 176px); }
  .wv-split { grid-template-columns: 1fr; }
  .wv-pkgs { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .wv-uecon { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .wv-support { grid-template-columns: repeat(2, 1fr); }
  .wv-timeline { grid-template-columns: repeat(2, 1fr); }
  .wv-timeline::before { display: none; }
  .wv-cta-form { grid-template-columns: 1fr; }
  .wv-faq { grid-template-columns: 1fr; }
  .wv-cookie-inner { grid-template-columns: 1fr; }
  .wv-cookie-actions { justify-content: flex-start; }
  .wv-cta-form-footer { flex-direction: column; }
  .wv-submit-block { width: 100%; }
  .wv-cta-form .wv-consent { grid-template-columns: 18px minmax(0, 1fr); }
  .wv-consent span { white-space: normal; }
}

@media (max-width: 640px) {
  .wv-page-home,
  .wv-page-franchise {
    --hero-bg-position-y: 90%;
  }
}

@media (max-width: 640px) {
  .wv-hero-title { font-size: clamp(2rem, 9vw, 2.6rem); }
  .wv-gallery-track { animation-duration: 66s; }
  .wv-gallery-card { flex-basis: 136px; }
  .wv-reqs { grid-template-columns: 1fr; }
  .wv-support { grid-template-columns: 1fr; }
  .wv-timeline { grid-template-columns: 1fr; }
  .wv-cta-form { grid-template-columns: 1fr; }
  .wv-nav-cta .wv-audience { display: none; }
  .wv-footer-row { flex-direction: column; align-items: flex-start; }
  .wv-footer-fine { text-align: left; margin-left: 0; }
  .wv-cookie-inner { padding: 14px; border-radius: var(--radius-md); }
  .wv-cookie-actions { width: 100%; }
  .wv-cookie-btn { flex: 1; }
}
