/* ─────────────────────────────────────────────────────────────
   Luvvite landing pages — sample-inspired design system
   (teal / gold / peach + Playfair Display + Material Symbols)
   Scoped under .lvs to avoid clashing with the existing .lv-*
   ───────────────────────────────────────────────────────────── */

.lvs,
.lvs-auth {
  --teal: #0F3D3E;
  --teal-deep: #0a2829;
  --teal-soft: #0d4748;
  --emerald: #1F7A63;
  --gold: #D4A373;
  --gold-deep: #c8924a;
  --gold-light: #e8c49a;
  --peach: #FFE8D6;
  --peach-soft: #fff8f0;
  --peach-dark: #ffd4b0;
  --white: #ffffff;
  --off: #fdfaf7;
  --ink: #1a1a1a;
  --ink-mid: #4a4a4a;
  --ink-soft: #8a8a8a;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --max: 1200px;
  --nav-h: 4.5rem;

  font-family: var(--font-body);
  color: var(--ink);
  background: var(--off);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.lvs,
.lvs *,
.lvs *::before,
.lvs *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.lvs a { color: inherit; text-decoration: none; }
.lvs img { max-width: 100%; display: block; }
.lvs button { font-family: inherit; }

/* Always show a styled scrollbar so the page is obviously scrollable */
html { scroll-behavior: smooth; scrollbar-gutter: stable; }
html, body { overflow-x: hidden; }
html { scrollbar-width: thin; scrollbar-color: #1F7A63 #fdfaf7; }
body::-webkit-scrollbar,
html::-webkit-scrollbar { width: 12px; height: 12px; }
body::-webkit-scrollbar-track,
html::-webkit-scrollbar-track {
  background: #fdfaf7;
}
body::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #1F7A63 0%, #0F3D3E 100%);
  border-radius: 8px;
  border: 2px solid #fdfaf7;
}
body::-webkit-scrollbar-thumb:hover,
html::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #0F3D3E 0%, #0a2829 100%);
}

/* ── Material Symbols sizing helper ─────────────────────────── */
.lvs .material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}
.lvs .material-symbols-outlined.lvs-fill {
  font-variation-settings: 'FILL' 1, 'wght' 500;
}

/* ── NAV ────────────────────────────────────────────────────── */
.lvs-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15, 61, 62, 0.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.25s;
}

.lvs-nav.is-shadow {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

.lvs-nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  min-height: var(--nav-h);
}

.lvs-logo {
  font-family: var(--font-display);
  font-size: 1.55rem; font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}
/* Beat `.lvs a { color: inherit }` so header/footer logo “Luv” stays gold */
.lvs a.lvs-logo { color: var(--gold); }
.lvs-logo span,
.lvs a.lvs-logo span { color: var(--white); }

.lvs-nav__links {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
@media (min-width: 880px) {
  .lvs-nav__links { display: flex; }
}
.lvs-nav__links a {
  font-size: 0.88rem; font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s;
}
.lvs-nav__links a:hover { color: var(--gold); }

.lvs-nav__end {
  display: flex; align-items: center; gap: 0.6rem;
}

.lvs-nav__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.2s, color 0.2s;
}
.lvs-nav__icon:hover {
  background: rgba(212, 163, 115, 0.15);
  color: var(--gold);
}
.lvs-nav__icon .material-symbols-outlined { font-size: 1.5rem; }

.lvs-nav__cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--teal) !important;
  font-size: 0.85rem; font-weight: 700;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}
.lvs-nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 163, 115, 0.4);
}
.lvs-nav__cta .material-symbols-outlined { font-size: 1.1rem; }
@media (max-width: 520px) {
  .lvs-nav__cta { padding: 0.45rem 0.85rem; font-size: 0.83rem; }
  .lvs-nav__cta .material-symbols-outlined { font-size: 1rem; }
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.lvs-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.85rem;
  border-radius: 999px;
  font-size: 0.95rem; font-weight: 600;
  white-space: nowrap;
  border: 0; cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s, color 0.25s;
}
.lvs-btn .material-symbols-outlined { font-size: 1.15rem; }
.lvs-btn--lg { padding: 1.1rem 2.2rem; font-size: 1rem; }

.lvs-btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--teal);
  font-weight: 700;
  box-shadow: 0 8px 28px rgba(212, 163, 115, 0.4);
}
.lvs-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(212, 163, 115, 0.55);
}

.lvs-btn--ghost-light {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
}
.lvs-btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-2px);
}

.lvs-btn--solid-teal {
  background: linear-gradient(135deg, var(--teal), var(--emerald));
  color: var(--white);
  box-shadow: 0 8px 26px rgba(15, 61, 62, 0.28);
}
.lvs-btn--solid-teal:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(15, 61, 62, 0.4);
}

.lvs-btn--outline-teal {
  background: transparent;
  border: 1.5px solid rgba(15, 61, 62, 0.25);
  color: var(--teal);
}
.lvs-btn--outline-teal:hover {
  background: rgba(15, 61, 62, 0.06);
  border-color: var(--teal);
}

.lvs-btn--outline-white {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
}
.lvs-btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ── COMMON SECTION HEADERS ─────────────────────────────────── */
.lvs-label {
  display: inline-block;
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 0.85rem;
}
.lvs-label--gold { color: var(--gold); }

.lvs-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  font-weight: 700; line-height: 1.2;
  color: var(--teal);
  margin: 0 0 1rem;
}
.lvs-h2 em { color: var(--gold); font-style: italic; }

.lvs-sub {
  font-size: 1.05rem; line-height: 1.7;
  color: var(--ink-mid);
  margin: 0;
}
.lvs-sub--center {
  max-width: 38rem; margin: 0 auto;
}

/* ── DECORATIONS ────────────────────────────────────────────── */
.lvs-ring {
  position: absolute; border-radius: 50%;
  border: 2px solid rgba(212, 163, 115, 0.18);
  pointer-events: none;
  animation: lvsRing 8s ease-in-out infinite;
}
.lvs-ring--soft { border-color: rgba(255, 255, 255, 0.06); }

@keyframes lvsRing {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(180deg); }
}

@media (prefers-reduced-motion: reduce) {
  .lvs-ring { animation: none; }
}

/* ── LANDING (problem) page ─────────────────────────────────── */
.lvs-main { padding-top: var(--nav-h); }

.lvs-hero-problem {
  position: relative;
  min-height: min(900px, 92vh);
  background: linear-gradient(150deg, var(--teal) 0%, var(--teal-soft) 38%, var(--emerald) 100%);
  padding: 4rem 1.5rem 5rem;
  overflow: hidden;
}
.lvs-hero-problem::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(212,163,115,0.12) 0%, transparent 45%),
    radial-gradient(circle at 8% 88%, rgba(31,122,99,0.22) 0%, transparent 42%);
  pointer-events: none;
}

.lvs-hero-problem__inner {
  position: relative; z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  align-items: center;
  gap: 2.5rem;
}
@media (min-width: 960px) {
  .lvs-hero-problem__inner { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; }
}

.lvs-badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: rgba(212, 163, 115, 0.15);
  border: 1px solid rgba(212, 163, 115, 0.35);
  color: var(--gold);
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.lvs-badge .material-symbols-outlined { font-size: 1rem; }

.lvs-hero-problem__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900; line-height: 1.12;
  color: var(--white);
  margin: 0 0 1.3rem;
}
.lvs-hero-problem__title em {
  color: var(--gold); font-style: italic;
}

.lvs-hero-problem__lead {
  font-size: clamp(0.98rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  max-width: 32rem;
  margin: 0 0 2.2rem;
}

.lvs-hero-problem__actions {
  display: flex; flex-wrap: wrap; gap: 0.85rem;
}

.lvs-hero-problem__art {
  position: relative;
  display: flex; justify-content: center; align-items: flex-end;
}
.lvs-hero-problem__couple {
  width: min(100%, 460px);
  height: auto;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.4));
  animation: lvsFloat 4s ease-in-out infinite;
}
@keyframes lvsFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@media (prefers-reduced-motion: reduce) {
  .lvs-hero-problem__couple { animation: none; }
}

/* Floating chip badges around the couple */
.lvs-chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--white);
  color: var(--teal);
  border-radius: 14px;
  padding: 0.55rem 0.95rem;
  font-size: 0.78rem; font-weight: 600;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  animation: lvsChip 5s ease-in-out infinite;
}
.lvs-chip .material-symbols-outlined { font-size: 1.05rem; color: var(--emerald); }
.lvs-chip--alt .material-symbols-outlined { color: var(--gold-deep); }
@keyframes lvsChip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (max-width: 640px) {
  .lvs-chip { display: none; }
}

/* Problems grid */
.lvs-problems {
  position: relative;
  background: var(--peach);
  padding: 5.5rem 1.5rem 5rem;
}
.lvs-problems::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 80px;
  background: var(--teal);
  clip-path: ellipse(60% 100% at 50% 0%);
}
.lvs-problems__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
}
.lvs-problems__head {
  text-align: center;
  max-width: 44rem;
  margin: 1.5rem auto 3.5rem;
}

.lvs-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.lvs-pcard {
  background: var(--white);
  border-radius: 1.4rem;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(15, 61, 62, 0.07);
  box-shadow: 0 4px 20px rgba(15, 61, 62, 0.07);
  transition: transform 0.28s, box-shadow 0.28s;
  position: relative; overflow: hidden;
}
.lvs-pcard::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--peach-dark));
}
.lvs-pcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(15, 61, 62, 0.14);
}

.lvs-pcard__icon {
  width: 3rem; height: 3rem;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, var(--teal), var(--emerald));
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.lvs-pcard__icon .material-symbols-outlined { font-size: 1.65rem; }

.lvs-pcard h3 {
  font-family: var(--font-display);
  font-size: 1.18rem; font-weight: 700;
  color: var(--teal);
  margin: 0 0 0.5rem;
}
.lvs-pcard p {
  font-size: 0.94rem;
  color: var(--ink-mid);
  line-height: 1.6;
  margin: 0;
}

/* Punchline */
.lvs-punch {
  position: relative;
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, var(--teal), var(--emerald));
  text-align: center;
  overflow: hidden;
}
.lvs-punch__inner {
  position: relative; z-index: 1;
  max-width: 42rem; margin: 0 auto;
}
.lvs-punch__line {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.8vw, 2.4rem);
  font-weight: 700; line-height: 1.3;
  color: var(--white);
  margin: 0 0 1rem;
}
.lvs-punch__line em { color: var(--gold); font-style: italic; }
.lvs-punch__sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin: 0;
}

/* Transition */
.lvs-transition {
  padding: 5rem 1.5rem;
  text-align: center;
  background: var(--off);
}
.lvs-transition__inner { max-width: 40rem; margin: 0 auto; }
.lvs-transition .lvs-h2 { margin-bottom: 1rem; }

.lvs-proof {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
  margin-top: 3rem;
}
.lvs-proof__item {
  background: var(--white);
  border-radius: 1rem; padding: 1.1rem 1.6rem;
  box-shadow: 0 4px 18px rgba(15, 61, 62, 0.07);
  text-align: center;
}
.lvs-proof__num {
  font-family: var(--font-display);
  font-size: 1.65rem; font-weight: 900;
  color: var(--emerald);
}
.lvs-proof__label {
  font-size: 0.82rem;
  color: var(--ink-mid);
  margin-top: 0.2rem;
}

/* ── HERO (solution / index page) ───────────────────────────── */
.lvs-hero-solution {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(150deg, var(--teal) 0%, var(--teal-soft) 35%, var(--emerald) 100%);
  padding: 4rem 1.5rem 5rem;
  display: flex; align-items: center;
  overflow: hidden;
}
.lvs-hero-solution::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 163, 115, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.lvs-hero-solution__inner {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto;
  display: grid; gap: 3rem;
  align-items: center;
  width: 100%;
}
@media (min-width: 960px) {
  .lvs-hero-solution__inner { grid-template-columns: 1fr 1fr; }
}

.lvs-hero-solution__title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  font-weight: 900; line-height: 1.12;
  color: var(--white);
  margin: 0 0 1.3rem;
}
.lvs-hero-solution__title em { color: var(--gold); font-style: italic; }

.lvs-hero-solution__lead {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.75;
  max-width: 32rem;
  margin: 0 0 2rem;
}

.lvs-hero-solution__checks {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.9rem 1.5rem;
  margin-top: 1.4rem;
}
.lvs-check {
  display: flex; align-items: center; gap: 0.55rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}
.lvs-check .material-symbols-outlined {
  font-size: 1.2rem;
  color: var(--gold);
}

.lvs-hero-solution__visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}
.lvs-hero-solution__mockup-wrap {
  position: relative;
  max-width: 540px;
  width: 100%;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.35));
  animation: lvsFloat 4s ease-in-out infinite;
}
.lvs-hero-solution__mockup {
  width: 100%; height: auto;
  border-radius: 1rem;
}
.lvs-hero-solution__chip {
  position: absolute;
  background: var(--white);
  color: var(--teal);
  border-radius: 14px;
  padding: 0.55rem 0.95rem;
  font-size: 0.78rem; font-weight: 600;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.lvs-hero-solution__chip .material-symbols-outlined { font-size: 1.05rem; color: var(--emerald); }
.lvs-hero-solution__chip--gold .material-symbols-outlined { color: var(--gold-deep); }
.lvs-hero-solution__chip--top { top: -10px; right: 6%; animation: lvsChip 5s ease-in-out infinite; }
.lvs-hero-solution__chip--mid { bottom: 28%; left: -2%; animation: lvsChip 5.5s ease-in-out 1s infinite; }
.lvs-hero-solution__chip--bot { bottom: -12px; right: 10%; animation: lvsChip 4.5s ease-in-out 0.5s infinite; }
@media (max-width: 720px) {
  .lvs-hero-solution__chip { display: none; }
}

/* ── REUSABLE SECTIONS ──────────────────────────────────────── */
.lvs-section {
  padding: 5.5rem 1.5rem;
}
.lvs-section--peach {
  background: linear-gradient(155deg, var(--peach) 0%, var(--peach-soft) 100%);
}
.lvs-section--white { background: var(--white); }
.lvs-section--off { background: var(--off); }
.lvs-section--teal {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: var(--white);
  position: relative; overflow: hidden;
}
.lvs-section--teal .lvs-h2 { color: var(--white); }
.lvs-section--teal .lvs-sub { color: rgba(255, 255, 255, 0.72); }
.lvs-section--teal .lvs-label { color: var(--gold); }

.lvs-container {
  max-width: var(--max);
  margin: 0 auto;
}

.lvs-section-head {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 3.5rem;
}

/* ── STEP CARDS (How it works) ──────────────────────────────── */
.lvs-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  position: relative;
}
.lvs-step {
  background: var(--white);
  border-radius: 1.4rem;
  padding: 2.2rem 1.6rem;
  text-align: center;
  border: 1px solid rgba(15, 61, 62, 0.07);
  box-shadow: 0 4px 18px rgba(15, 61, 62, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.lvs-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(15, 61, 62, 0.12);
}

.lvs-step__icon {
  width: 4.5rem; height: 4.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--emerald));
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
  position: relative;
  box-shadow: 0 10px 24px rgba(15, 61, 62, 0.22);
}
.lvs-step__icon .material-symbols-outlined { font-size: 2rem; }
.lvs-step__num {
  position: absolute; top: -8px; right: -8px;
  background: var(--gold);
  color: var(--teal);
  width: 1.6rem; height: 1.6rem;
  border-radius: 50%;
  font-size: 0.78rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
}

.lvs-step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--teal);
  margin: 0 0 0.55rem;
}
.lvs-step p {
  font-size: 0.92rem;
  color: var(--ink-mid);
  line-height: 1.6;
  margin: 0;
}

/* ── FEATURE BENTO (Why Choose Luvvite) ─────────────────────── */
.lvs-bento {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .lvs-bento {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lvs-fcard {
  background: var(--white);
  border-radius: 1.6rem;
  padding: 2rem 1.8rem;
  border: 1px solid rgba(15, 61, 62, 0.07);
  position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.lvs-fcard::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--emerald));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s;
}
.lvs-fcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(15, 61, 62, 0.12);
}
.lvs-fcard:hover::after { transform: scaleX(1); }

.lvs-fcard--wide { grid-column: span 1; }
@media (min-width: 760px) {
  .lvs-fcard--wide { grid-column: span 2; }
}

.lvs-fcard--cream { background: var(--peach-soft); }
.lvs-fcard--gold {
  background: linear-gradient(135deg, var(--peach) 0%, var(--peach-dark) 100%);
}
.lvs-fcard--sage {
  background: linear-gradient(135deg, #e3efe7 0%, #cfe1d4 100%);
}
.lvs-fcard--teal-soft {
  background: linear-gradient(135deg, #163f3f 0%, #0a2e2f 100%);
  color: var(--white);
}
.lvs-fcard--teal-soft .lvs-fcard__title { color: var(--gold); }
.lvs-fcard--teal-soft .lvs-fcard__text { color: rgba(255, 255, 255, 0.75); }
.lvs-fcard--teal-soft .lvs-fcard__icon {
  background: rgba(212, 163, 115, 0.15);
  color: var(--gold);
}

.lvs-fcard__icon {
  width: 3rem; height: 3rem;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, var(--teal), var(--emerald));
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.lvs-fcard__icon .material-symbols-outlined { font-size: 1.7rem; }

.lvs-fcard__title {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  color: var(--teal);
  margin: 0 0 0.5rem;
}
.lvs-fcard__title--lg { font-size: 1.55rem; }

.lvs-fcard__text {
  font-size: 0.95rem;
  color: var(--ink-mid);
  line-height: 1.65;
  margin: 0;
}

/* ── MODULAR / TOGGLE SPLIT (preserve content + design) ─────── */
.lvs-split {
  display: grid;
  gap: 3rem;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 5.5rem 1.5rem;
}
@media (min-width: 880px) {
  .lvs-split { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.lvs-toggle-card {
  background: var(--white);
  border-radius: 1.6rem;
  padding: 1.4rem;
  box-shadow: 0 20px 50px rgba(15, 61, 62, 0.12);
  border: 1px solid rgba(15, 61, 62, 0.06);
  display: flex; flex-direction: column; gap: 0.7rem;
}

.lvs-toggle-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: var(--peach-soft);
  border: 1px solid rgba(212, 163, 115, 0.18);
  transition: background 0.2s, opacity 0.2s;
}
.lvs-toggle-row.is-dim { opacity: 0.55; }

.lvs-toggle-row__label {
  display: flex; align-items: center; gap: 0.85rem;
  min-width: 0;
}
.lvs-toggle-row__text {
  font-size: 0.95rem; font-weight: 600;
  color: var(--teal);
}

.lvs-toggle-icon {
  width: 2.4rem; height: 2.4rem;
  border-radius: 0.7rem;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lvs-toggle-icon .material-symbols-outlined { font-size: 1.35rem; }
.lvs-toggle-icon--primary {
  background: linear-gradient(135deg, var(--teal), var(--emerald));
  color: var(--gold);
}
.lvs-toggle-icon--secondary {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--white);
}
.lvs-toggle-icon--tertiary {
  background: linear-gradient(135deg, var(--peach-dark), #e9b88c);
  color: var(--teal);
}

.lvs-pill {
  position: relative;
  width: 2.6rem; height: 1.45rem;
  border-radius: 999px;
  flex-shrink: 0;
  transition: background 0.2s;
}
.lvs-pill--on { background: var(--emerald); }
.lvs-pill--off { background: rgba(15, 61, 62, 0.18); }
.lvs-pill__knob {
  position: absolute; top: 0.18rem;
  width: 1.1rem; height: 1.1rem;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: left 0.2s;
}
.lvs-pill--on .lvs-pill__knob { left: 1.32rem; }
.lvs-pill--off .lvs-pill__knob { left: 0.18rem; }

.lvs-kicker {
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--emerald);
  margin: 0 0 0.85rem;
}

.lvs-bullet-grid {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1.5rem;
}
.lvs-bullet-grid li {
  display: flex; align-items: center; gap: 0.55rem;
  font-size: 0.95rem;
  color: var(--ink-mid);
}
.lvs-dot {
  width: 0.5rem; height: 0.5rem; border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.lvs-link-arrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1rem;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
  transition: gap 0.2s, border-color 0.2s;
}
.lvs-link-arrow:hover {
  gap: 0.7rem;
  border-bottom-color: var(--teal);
}
.lvs-link-arrow .material-symbols-outlined { font-size: 1.2rem; }

/* ── PRICING ────────────────────────────────────────────────── */
.lvs-pricing {
  max-width: 36rem; margin: 3rem auto 0;
}
.lvs-pricing__card {
  position: relative;
  background: var(--white);
  border-radius: 2rem;
  padding: 3rem 2.4rem;
  box-shadow: 0 20px 60px rgba(15, 61, 62, 0.12);
  text-align: center;
  overflow: hidden;
}
.lvs-pricing__card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--emerald));
}
.lvs-pricing__badge {
  display: inline-block;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--teal);
  font-size: 0.78rem; font-weight: 700;
  margin-bottom: 1.2rem;
}
.lvs-pricing__price {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 3.8rem);
  font-weight: 900;
  color: var(--emerald);
  line-height: 1;
}
.lvs-pricing__per {
  font-size: 0.92rem;
  color: var(--ink-mid);
  margin-top: 0.45rem;
}
.lvs-pricing__list {
  list-style: none;
  margin: 1.8rem 0 2rem;
  padding: 0;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1.5rem;
}
@media (max-width: 540px) {
  .lvs-pricing__list { grid-template-columns: 1fr; }
}
.lvs-pricing__list li {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.55rem 0;
  font-size: 0.93rem;
  color: var(--ink-mid);
}
.lvs-pricing__list .material-symbols-outlined {
  color: var(--emerald); font-size: 1.2rem;
  flex-shrink: 0;
}

.lvs-pricing__strike {
  text-decoration: line-through;
  color: var(--ink-soft);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  font-family: var(--font-display);
}
.lvs-pricing__free {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 3.8rem);
  font-weight: 900;
  color: var(--emerald);
  line-height: 1;
  letter-spacing: 0.02em;
}
.lvs-pricing__launch {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 0.6rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(31, 122, 99, 0.12);
  color: var(--emerald);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.lvs-pricing__launch .material-symbols-outlined { font-size: 1rem; }

/* ── LAUNCH BANNER (home / landing top strip) ──────────────── */
.lvs-launch-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--emerald) 100%);
  color: #fff;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative; z-index: 5;
}
.lvs-launch-banner__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex; align-items: center; gap: 0.9rem;
  flex-wrap: wrap;
}
.lvs-launch-banner__spark {
  font-size: 1.4rem; color: var(--gold-light); flex-shrink: 0;
}
.lvs-launch-banner__copy {
  flex: 1 1 auto; min-width: 0;
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  line-height: 1.45;
  color: rgba(255,255,255,0.92);
}
.lvs-launch-banner__copy strong { color: #fff; font-weight: 700; }
.lvs-launch-banner__code {
  display: inline-block;
  background: rgba(255,255,255,0.16);
  border: 1px dashed rgba(255,255,255,0.45);
  color: var(--gold-light);
  padding: 0.18rem 0.55rem;
  border-radius: 6px;
  font-family: 'JetBrains Mono', Menlo, Consolas, monospace;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0.15rem;
  font-size: 0.92em;
}
.lvs-launch-banner__copybtn {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: var(--gold); color: var(--teal-deep);
  border: none; border-radius: 8px;
  padding: 0.45rem 0.85rem;
  font-weight: 600; font-size: 0.85rem; cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.lvs-launch-banner__copybtn:hover { background: var(--gold-deep); }
.lvs-launch-banner__copybtn:active { transform: translateY(1px); }
.lvs-launch-banner__copybtn .material-symbols-outlined { font-size: 1.05rem; }
@media (max-width: 640px) {
  .lvs-launch-banner__inner { gap: 0.6rem; }
  .lvs-launch-banner__copybtn-label { display: none; }
  .lvs-launch-banner__copybtn { padding: 0.45rem 0.55rem; }
}

/* ── VALUE CHIPS (More Than an Invite) ─────────────────────── */
.lvs-chips {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.85rem;
  margin: 2.5rem auto 0;
  max-width: 60rem;
}
.lvs-chip-card {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--white);
  border: 1px solid rgba(15, 61, 62, 0.08);
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  font-size: 0.92rem; font-weight: 600;
  color: var(--teal);
  box-shadow: 0 4px 14px rgba(15, 61, 62, 0.05);
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.lvs-chip-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(15, 61, 62, 0.12);
  background: var(--peach-soft);
}
.lvs-chip-card .material-symbols-outlined {
  font-size: 1.2rem;
  color: var(--emerald);
}

/* ── INFO PAGES (About / Contact / Privacy / Terms) ────────── */
.lvs-info-hero {
  position: relative;
  background: linear-gradient(150deg, var(--teal) 0%, var(--teal-soft) 50%, var(--emerald) 100%);
  padding: 7rem 1.5rem 4rem;
  text-align: center;
  overflow: hidden;
}
.lvs-info-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 163, 115, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.lvs-info-hero__inner {
  position: relative; z-index: 1;
  max-width: 760px; margin: 0 auto;
}
.lvs-info-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900; line-height: 1.15;
  color: var(--white);
  margin: 0 0 1rem;
}
.lvs-info-hero__title em { color: var(--gold); font-style: italic; }
.lvs-info-hero__lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  max-width: 36rem; margin: 0 auto;
}

.lvs-info-body {
  background: var(--off);
  padding: 4.5rem 1.5rem 5.5rem;
}
.lvs-info-body__inner {
  max-width: 780px; margin: 0 auto;
  background: var(--white);
  border-radius: 1.6rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: 0 14px 50px rgba(15, 61, 62, 0.08);
  border: 1px solid rgba(15, 61, 62, 0.06);
}
.lvs-info-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 1.7rem);
  font-weight: 700;
  color: var(--teal);
  margin: 2rem 0 0.85rem;
}
.lvs-info-body h2:first-child { margin-top: 0; }
.lvs-info-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--teal);
  margin: 1.6rem 0 0.6rem;
}
.lvs-info-body p,
.lvs-info-body li {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-mid);
}
.lvs-info-body p { margin: 0 0 1rem; }
.lvs-info-body ul,
.lvs-info-body ol {
  margin: 0 0 1.2rem 1.4rem;
  padding-left: 0.4rem;
}
.lvs-info-body li { margin-bottom: 0.45rem; }
.lvs-info-body a {
  color: var(--emerald);
  border-bottom: 1px solid rgba(31, 122, 99, 0.3);
}
.lvs-info-body a:hover { color: var(--teal); border-color: var(--teal); }
.lvs-info-body strong { color: var(--teal); }

/* Contact cards */
.lvs-contact-grid {
  display: grid; gap: 1.2rem;
  grid-template-columns: 1fr;
  margin: 2rem 0;
}
@media (min-width: 600px) {
  .lvs-contact-grid { grid-template-columns: 1fr 1fr; }
}
.lvs-contact-card {
  background: linear-gradient(160deg, var(--peach-soft) 0%, var(--peach) 100%);
  border-radius: 1.2rem;
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(212, 163, 115, 0.2);
  display: flex; align-items: flex-start; gap: 1rem;
}
.lvs-contact-card .material-symbols-outlined {
  background: linear-gradient(135deg, var(--teal), var(--emerald));
  color: var(--gold);
  width: 2.6rem; height: 2.6rem;
  border-radius: 0.7rem;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.lvs-contact-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700;
  color: var(--teal);
  margin: 0 0 0.3rem;
}
.lvs-contact-card p,
.lvs-contact-card a {
  font-size: 0.92rem;
  margin: 0; border: none;
  color: var(--ink-mid);
}
.lvs-contact-card a:hover { color: var(--teal); }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.lvs-tests {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.lvs-tcard {
  background: var(--white);
  border-radius: 1.4rem;
  padding: 2rem 1.8rem;
  border: 1px solid rgba(15, 61, 62, 0.07);
  box-shadow: 0 4px 18px rgba(15, 61, 62, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.lvs-tcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(15, 61, 62, 0.12);
}
.lvs-tcard__quote {
  font-family: var(--font-display);
  font-size: 2rem; line-height: 1;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.lvs-tcard__rating {
  color: var(--gold);
  font-size: 0.92rem;
  margin-bottom: 0.7rem;
  letter-spacing: 0.06em;
}
.lvs-tcard__text {
  font-size: 0.96rem; line-height: 1.7;
  color: var(--ink-mid);
  font-style: italic;
  margin: 0 0 1.4rem;
}
.lvs-tcard__author {
  display: flex; align-items: center; gap: 0.85rem;
}
.lvs-tcard__avatar {
  width: 2.6rem; height: 2.6rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.95rem;
  background: linear-gradient(135deg, var(--peach), var(--peach-dark));
  color: var(--teal);
  flex-shrink: 0;
}
.lvs-tcard__avatar--alt {
  background: linear-gradient(135deg, #d6ebe1, #aed6c0);
  color: var(--teal);
}
.lvs-tcard__avatar--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--white);
}
.lvs-tcard__name {
  font-size: 0.94rem; font-weight: 700;
  color: var(--teal);
}
.lvs-tcard__loc {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 0.1rem;
}

/* ── FINAL CTA ──────────────────────────────────────────────── */
.lvs-final {
  position: relative;
  background: linear-gradient(150deg, var(--teal) 0%, var(--emerald) 100%);
  padding: 6rem 1.5rem;
  text-align: center;
  overflow: hidden;
}
.lvs-final::before {
  content: '';
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 163, 115, 0.1) 0%, transparent 70%);
}
.lvs-final__inner {
  position: relative; z-index: 1;
  max-width: 40rem; margin: 0 auto;
}
.lvs-final__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.6vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.18;
  margin: 0 0 1rem;
}
.lvs-final__title em { color: var(--gold); font-style: italic; }
.lvs-final__sub {
  font-size: 1.05rem; line-height: 1.7;
  color: rgba(255, 255, 255, 0.74);
  margin: 0 0 2.4rem;
}
.lvs-final__actions {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem;
}
.lvs-final__trust {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1.5rem;
  margin-top: 2.4rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}
.lvs-final__trust span {
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.lvs-final__trust .material-symbols-outlined {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ── TEMPLATES GALLERY ──────────────────────────────────────── */
.lvs-tg-hero {
  position: relative;
  background: linear-gradient(150deg, var(--teal) 0%, var(--teal-soft) 50%, var(--emerald) 100%);
  padding: 7rem 1.5rem 5.5rem;
  text-align: center;
  overflow: hidden;
}
.lvs-tg-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 163, 115, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.lvs-tg-hero__inner {
  position: relative; z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
}
.lvs-tg-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 900; line-height: 1.1;
  color: var(--white);
  margin: 0 0 1.2rem;
}
.lvs-tg-hero__title em { color: var(--gold); font-style: italic; }
.lvs-tg-hero__lead {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  max-width: 540px; margin: 0 auto 2.4rem;
}

.lvs-tg-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1.5rem 6rem;
}
.lvs-tg-section__head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.lvs-tg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.lvs-tg-card {
  position: relative;
  background: transparent;
  border: none;
  box-shadow: none;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex; flex-direction: column;
  align-items: center;
  padding: 0.5rem;
}
.lvs-tg-card:hover { transform: translateY(-8px); }
.lvs-tg-card.is-inactive { opacity: 0.55; }

.lvs-tg-card__pc,
.lvs-tg-card__phone { width: 100%; display: flex; flex-direction: column; align-items: center; }

/* Hide alt view depending on grid mode */
.lvs-tg-grid.is-view-pc .lvs-tg-card__phone { display: none; }
.lvs-tg-grid.is-view-mobile .lvs-tg-card__pc { display: none; }

/* ── PC monitor frame (sleek, no stand) ─────────────────────── */
.lvs-monitor {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 440px;
  background: linear-gradient(155deg, #2a2a2c 0%, #161618 100%);
  border-radius: 1rem;
  padding: 0.55rem;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 0 0 1px rgba(0, 0, 0, 0.5),
    0 26px 60px rgba(15, 61, 62, 0.32),
    0 8px 18px rgba(0, 0, 0, 0.22);
}
.lvs-monitor::after {
  content: '';
  position: absolute;
  bottom: 0.18rem; left: 50%;
  transform: translateX(-50%);
  width: 22%; height: 0.18rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
}
.lvs-monitor__screen {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--white);
  border-radius: 0.55rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.45);
}
/* ── iPhone-style phone frame ──────────────────────────────── */
.lvs-phone {
  position: relative;
  width: min(100%, 220px);
  aspect-ratio: 9 / 19;
  background: linear-gradient(160deg, #2a2a2c 0%, #111 100%);
  border-radius: 2rem;
  padding: 0.5rem;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.06) inset,
    0 0 0 1px rgba(0, 0, 0, 0.4),
    0 22px 50px rgba(15, 61, 62, 0.32),
    0 4px 12px rgba(0, 0, 0, 0.2);
}
.lvs-phone::before {
  content: '';
  position: absolute;
  top: 28%; left: -2px;
  width: 3px; height: 16%;
  background: #2a2a2c;
  border-radius: 2px 0 0 2px;
}
.lvs-phone::after {
  content: '';
  position: absolute;
  top: 22%; right: -2px;
  width: 3px; height: 9%;
  background: #2a2a2c;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 2.2rem 0 #2a2a2c;
}
.lvs-phone__notch {
  position: absolute;
  top: 0.55rem; left: 50%;
  transform: translateX(-50%);
  width: 36%; height: 1.05rem;
  background: #050505;
  border-radius: 0.7rem;
  z-index: 3;
}
.lvs-phone__home {
  position: absolute;
  bottom: 0.35rem; left: 50%;
  transform: translateX(-50%);
  width: 32%; height: 0.22rem;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 2px;
  z-index: 3;
}
.lvs-phone__screen {
  width: 100%; height: 100%;
  border-radius: 1.6rem;
  overflow: hidden;
  background: var(--white);
  position: relative;
}

/* ── Slow top-to-bottom scroll inside any device screen ───── */
.lvs-scroll {
  position: absolute;
  inset: 0;
  overflow: hidden;
  --scroll-distance: 0px;
  --scroll-duration: 6s;
}
.lvs-scroll__img {
  display: block;
  width: 100%;
  height: auto;             /* natural height, not stretched */
  transform: translateY(0);
  transition: transform var(--scroll-duration) linear;
  will-change: transform;
}
.lvs-tg-card:hover .lvs-scroll__img,
.lvs-tg-card.is-scrolling .lvs-scroll__img {
  transform: translateY(var(--scroll-distance));
}

/* Desktop / Mobile view toggle */
.lvs-view-toggle {
  display: inline-flex;
  margin: 1.5rem auto 0;
  background: var(--white);
  border: 1px solid rgba(15, 61, 62, 0.1);
  border-radius: 999px;
  padding: 0.3rem;
  box-shadow: 0 4px 14px rgba(15, 61, 62, 0.06);
  gap: 0.2rem;
}
.lvs-view-toggle__btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.88rem; font-weight: 600;
  color: var(--ink-mid);
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.lvs-view-toggle__btn .material-symbols-outlined { font-size: 1.15rem; }
.lvs-view-toggle__btn:hover { color: var(--teal); }
.lvs-view-toggle__btn.is-active {
  background: linear-gradient(135deg, var(--teal), var(--emerald));
  color: var(--white);
  box-shadow: 0 4px 12px rgba(15, 61, 62, 0.2);
}

.lvs-tg-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--teal);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.72rem; font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  z-index: 2;
}
.lvs-tg-badge--inactive {
  background: #d9534f; color: var(--white);
}

/* ── Screen overlay (template name + Preview button on screen) ── */
.lvs-screen-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.6rem 1rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  background: linear-gradient(180deg, rgba(15, 61, 62, 0) 0%, rgba(10, 40, 41, 0.55) 50%, rgba(10, 40, 41, 0.92) 100%);
  z-index: 2;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.lvs-screen-overlay__name {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700;
  color: var(--white);
  margin: 0;
  flex: 1; min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.lvs-screen-overlay__cta {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.3rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--teal);
  font-size: 0.78rem; font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.lvs-screen-overlay__cta:hover {
  transform: translateY(-2px);
  background: var(--gold-light);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.32);
}
.lvs-screen-overlay__cta .material-symbols-outlined { font-size: 0.95rem; }

/* Phone overlay sits a touch higher to clear the home bar */
.lvs-screen-overlay--phone {
  padding: 1.4rem 0.7rem 0.7rem;
}
.lvs-screen-overlay--phone .lvs-screen-overlay__name { font-size: 0.95rem; }
.lvs-screen-overlay--phone .lvs-screen-overlay__cta {
  padding: 0.4rem 0.8rem;
  font-size: 0.72rem;
}
.lvs-screen-overlay--phone .lvs-screen-overlay__cta .material-symbols-outlined { font-size: 0.85rem; }

/* Stats row */
.lvs-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.2rem;
  overflow: hidden;
  max-width: 880px;
  margin: 0 auto 2.5rem;
}
.lvs-stats__item {
  padding: 1.5rem 1.2rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.lvs-stats__item:last-child { border-right: none; }
.lvs-stats__num {
  font-family: var(--font-display);
  font-size: 1.85rem; font-weight: 900;
  color: var(--gold);
}
.lvs-stats__label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.25rem;
}

/* ── FOOTER (marketing — teal, gold, cream; ref footer.html) ───────────── */
.lvs-footer {
  --lvs-f-cream: #f5edd8;
  --lvs-f-cream-soft: rgba(245, 237, 216, 0.62);
  --lvs-f-cream-muted: rgba(245, 237, 216, 0.45);
  --lvs-f-gold-line: #c8a864;

  position: relative;
  background: var(--teal);
  color: var(--lvs-f-cream-soft);
  overflow: hidden;
  padding: 4rem 0 0;
}
.lvs-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(200, 168, 100, 0.08) 0%, transparent 70%),
    linear-gradient(180deg, rgba(15, 61, 62, 0) 0%, rgba(8, 30, 30, 0.55) 100%);
  pointer-events: none;
  z-index: 0;
}

.lvs-footer__accent {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lvs-f-gold-line), transparent);
  z-index: 2;
}

.lvs-footer__deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  color: var(--lvs-f-gold-line);
  opacity: 0.07;
}
.lvs-footer__deco--left {
  left: -60px;
  top: 40px;
  width: 280px;
  height: 280px;
}
.lvs-footer__deco--right {
  right: -40px;
  bottom: 60px;
  width: 220px;
  height: 220px;
}
.lvs-footer__deco svg {
  width: 100%;
  height: 100%;
}

.lvs-footer__grid {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem) clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}
@media (min-width: 900px) {
  .lvs-footer__grid {
    grid-template-columns: 1.15fr 1.05fr 1.1fr;
    gap: 2.5rem 2rem;
  }
}

.lvs-footer__brand-logo {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--lvs-f-cream);
  line-height: 1;
  margin: 0 0 0.65rem;
  display: inline-block;
  text-decoration: none;
}
.lvs-footer__brand-logo span {
  color: var(--gold);
}
.lvs-footer__brand-logo:hover {
  color: var(--white);
}
.lvs-footer__brand-logo:hover span {
  color: var(--gold-light);
}

.lvs-footer__eyebrow {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lvs-f-cream-muted);
  margin: 0 0 1rem;
}

.lvs-footer__brand-rule {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--lvs-f-gold-line), transparent);
  margin-bottom: 1rem;
}

.lvs-footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(245, 237, 216, 0.52);
  line-height: 1.65;
  margin: 0 0 1.25rem;
  max-width: 22rem;
}

.lvs-footer__email {
  margin: 0;
  font-size: 0.9rem;
}
.lvs-footer__email a {
  color: rgba(245, 237, 216, 0.78);
  text-decoration: none;
  transition: color 0.25s;
}
.lvs-footer__email a:hover {
  color: var(--gold);
}

.lvs-footer__nav-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.75rem, 4vw, 3rem);
}
.lvs-footer__nav-heading {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.lvs-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.lvs-footer__links a {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--lvs-f-cream-soft);
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
  display: inline-block;
  transition: color 0.25s;
}
.lvs-footer__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.lvs-footer__links a:hover {
  color: var(--lvs-f-cream);
}
.lvs-footer__links a:hover::after {
  width: 100%;
}

.lvs-footer__cta {
  text-align: left;
}
@media (min-width: 900px) {
  .lvs-footer__cta {
    text-align: right;
  }
}
.lvs-footer__cta-kicker {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.65rem;
}
.lvs-footer__cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.65rem);
  font-weight: 500;
  color: var(--lvs-f-cream);
  line-height: 1.45;
  margin: 0 0 1.5rem;
}
.lvs-footer__cta-btn {
  display: inline-block;
  padding: 0.85rem 1.85rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.35s ease, box-shadow 0.35s ease;
}
.lvs-footer__cta-btn span {
  position: relative;
  z-index: 1;
}
.lvs-footer__cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.35s ease;
  z-index: 0;
}
.lvs-footer__cta-btn:hover {
  color: var(--teal);
  box-shadow: 0 0 24px rgba(212, 163, 115, 0.35);
}
.lvs-footer__cta-btn:hover::before {
  transform: translateX(0);
}

.lvs-footer__rule-wrap {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}
.lvs-footer__rule {
  border: none;
  height: 1px;
  margin: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 168, 100, 0.35) 25%,
    rgba(200, 168, 100, 0.35) 75%,
    transparent
  );
}

.lvs-footer__bar {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.65rem clamp(1rem, 4vw, 2.5rem) 2.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.lvs-footer__copy {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(245, 237, 216, 0.38);
}

.lvs-footer__social {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.lvs-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(200, 168, 100, 0.25);
  color: rgba(245, 237, 216, 0.45);
  transition: color 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.lvs-footer__social-link:hover {
  color: var(--gold);
  border-color: rgba(200, 168, 100, 0.55);
  box-shadow: 0 0 12px rgba(212, 163, 115, 0.2);
  transform: translateY(-2px);
}
.lvs-footer__social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

@media (max-width: 899px) {
  .lvs-footer__cta {
    text-align: left;
    padding-top: 0.5rem;
    margin-top: 0.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
}

@media (max-width: 600px) {
  .lvs-footer {
    padding-top: 3rem;
  }
  .lvs-footer__grid {
    padding-bottom: 2rem;
  }
  .lvs-footer__bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── RESPONSIVE TWEAKS ──────────────────────────────────────── */
@media (max-width: 720px) {
  .lvs-section { padding: 4rem 1.25rem; }
  .lvs-split { padding: 4rem 1.25rem; }
  .lvs-hero-problem { padding: 3rem 1.25rem 4rem; }
  .lvs-hero-solution { padding: 3rem 1.25rem 4rem; }
  .lvs-final { padding: 4.5rem 1.25rem; }
  .lvs-tg-section { padding: 3.5rem 1.25rem 4.5rem; }
  .lvs-tg-hero { padding: 6rem 1.25rem 4rem; }
  .lvs-bullet-grid { grid-template-columns: 1fr; }
  .lvs-hero-solution__checks { grid-template-columns: 1fr; }
}

/* ── AUTH (login / verify OTP) — landing colors, no .lvs * reset ───────── */
.lvs-auth {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.lvs-auth a { color: inherit; text-decoration: none; }
.lvs-auth button { font-family: inherit; cursor: pointer; }
.lvs-auth .material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

.lvs-auth__shell {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background: linear-gradient(150deg, var(--teal) 0%, var(--teal-soft) 38%, var(--emerald) 100%);
  padding: clamp(1rem, 4vw, 2rem) clamp(0.75rem, 3vw, 1.25rem) clamp(1.5rem, 5vw, 2.5rem);
  overflow: hidden;
}
.lvs-auth__shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(212, 163, 115, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 8% 88%, rgba(31, 122, 99, 0.22) 0%, transparent 42%);
  pointer-events: none;
}
.lvs-auth__rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.lvs-auth__rings .lvs-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(212, 163, 115, 0.18);
  animation: lvsRing 8s ease-in-out infinite;
}
.lvs-auth__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 26.25rem;
  margin: 0 auto;
  align-self: center;
  min-width: 0;
  box-sizing: border-box;
}

.lvs-auth-card {
  width: 100%;
  max-width: 100%;
  padding: clamp(1.35rem, 4vw, 2rem) clamp(1.1rem, 3.5vw, 1.75rem) clamp(1.5rem, 4vw, 2.25rem);
  background: var(--white);
  border-radius: 1.25rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(212, 163, 115, 0.22);
  box-sizing: border-box;
}
.lvs-auth-card *,
.lvs-auth-card *::before,
.lvs-auth-card *::after {
  box-sizing: border-box;
}
.lvs-auth-card__brand {
  text-align: center;
  margin-bottom: 1.35rem;
}
.lvs-auth-card__brand a {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.lvs-auth-card__brand a span { color: var(--teal); }
.lvs-auth-card h1 {
  font-family: var(--font-display);
  text-align: center;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--teal);
  margin: 0 0 0.4rem;
  line-height: 1.2;
}
.lvs-auth-card .lvs-auth-card__sub {
  text-align: center;
  color: var(--ink-mid);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 1.5rem;
}
.lvs-auth-card__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-mid);
  margin-bottom: 0.35rem;
}
.lvs-auth-card__field {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(15, 61, 62, 0.15);
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.lvs-auth-card__field:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(31, 122, 99, 0.15);
}
.lvs-auth-card__field--otp {
  font-size: clamp(1.05rem, 4vw, 1.35rem);
  text-align: center;
  letter-spacing: clamp(0.12em, 2.5vw, 0.35em);
  padding-left: clamp(0.5rem, 2vw, 1rem);
  padding-right: clamp(0.5rem, 2vw, 1rem);
  font-variant-numeric: tabular-nums;
}
.lvs-auth-card__row { margin-bottom: 1rem; }

/* Staff / designer portal: tab switcher */
.lvs-auth-toggle {
  display: flex;
  width: 100%;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(15, 61, 62, 0.12);
  background: rgba(15, 61, 62, 0.06);
  margin-bottom: 1.25rem;
}
.lvs-auth-toggle button {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  color: var(--ink-mid);
  padding: 0.65rem 0.5rem;
  font-size: clamp(0.78rem, 2.8vw, 0.88rem);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.lvs-auth-toggle button.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--teal);
  box-shadow: 0 4px 16px rgba(212, 163, 115, 0.35);
}
.lvs-auth-toggle button:not(.active):hover {
  background: rgba(255, 255, 255, 0.65);
  color: var(--teal);
}
.lvs-auth-card__panel { display: none; }
.lvs-auth-card__panel.is-active { display: block; }
.lvs-auth-card__msg {
  font-size: 0.88rem;
  margin: 0 0 1rem;
  text-align: center;
  line-height: 1.45;
}
.lvs-auth-card__msg--err { color: #c0392b; }
.lvs-auth-card__msg--ok { color: var(--emerald); }
.lvs-auth-card__hint-block {
  font-size: 0.76rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-top: 0.85rem;
  text-align: center;
}
.lvs-auth-card__hint-block code {
  font-size: 0.72rem;
  padding: 0.1rem 0.35rem;
  border-radius: 0.35rem;
  background: rgba(15, 61, 62, 0.06);
  color: var(--teal);
}
.lvs-auth-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.85rem 1.25rem;
  border: 0;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--teal);
  box-shadow: 0 8px 28px rgba(212, 163, 115, 0.4);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.lvs-auth-card__btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(212, 163, 115, 0.5);
}
.lvs-auth-card__btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
.lvs-auth-card__err {
  color: #c0392b;
  text-align: center;
  font-size: 0.88rem;
  margin-top: 0.65rem;
  display: none;
}
.lvs-auth-card__hint {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.82rem;
  margin-top: 1rem;
  line-height: 1.45;
}
.lvs-auth-card__hint strong { color: var(--emerald); }
.lvs-auth-card__foot {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.lvs-auth-card__foot a {
  color: var(--emerald);
  font-weight: 600;
}
.lvs-auth-card__foot a:hover { color: var(--teal); }
.lvs-auth-card__back {
  text-align: center;
  margin-top: 1rem;
}
.lvs-auth-card__back a {
  color: var(--emerald);
  font-size: 0.88rem;
  font-weight: 600;
}
.lvs-auth-card__back a:hover { color: var(--teal); }
.lvs-auth-card .lvs-auth-card__hint--inline {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin: 0.35rem 0 0;
}
@media (prefers-reduced-motion: reduce) {
  .lvs-auth__rings .lvs-ring { animation: none; }
}

@media (max-width: 380px) {
  .lvs-auth-card h1 { font-size: 1.45rem; }
}
