/* Singdia — festive premium Indian palette */

:root {
  --maroon: #6b1231;
  --maroon-deep: #4a0820;
  --saffron: #e67a2b;
  --gold: #d9a441;
  --gold-soft: #f1d080;
  --rose: #c94f6d;
  --rose-pale: #f6dccf;
  --plum: #4e2357;
  --cream: #fbf5ec;
  --cream-warm: #fdf1de;
  --ink: #2a0a18;
  --ink-soft: #5a2a3c;

  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;
}

/* Palette variants (applied at body level by Tweaks) */
body[data-palette="soft"] {
  --maroon: #8b3a4e;
  --maroon-deep: #6b2438;
  --saffron: #f2a45c;
  --gold: #e6b855;
  --rose: #e28ea1;
  --cream: #fef7ed;
  --cream-warm: #fef0e0;
  --ink: #4a1f2e;
  --ink-soft: #6f3a4e;
}

body[data-palette="bold"] {
  --maroon: #5a0a25;
  --maroon-deep: #2e0514;
  --saffron: #ff6b1a;
  --gold: #f0b93a;
  --rose: #d13760;
  --cream: #f5e8d4;
  --cream-warm: #f0d9b8;
  --ink: #1a0409;
  --ink-soft: #3e1828;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
}

.page {
  max-width: 440px;
  margin: 0 auto;
  background: var(--cream);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(60, 10, 25, 0.08);
}

/* ─────────────────────────── HERO ─────────────────────────── */

.hero {
  position: relative;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(217, 164, 65, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 30%, rgba(201, 79, 109, 0.18) 0%, transparent 55%),
    linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 100%);
  padding: 0 20px 48px;
  overflow: hidden;
}

.hero--video { padding: 0 0 48px; }

/* ── Hero video montage ── */
.hero-video {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  background: #1a0409;
  overflow: hidden;
  margin-bottom: 32px;
}
.hero-video-stage { position: absolute; inset: 0; }
.hv-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
  transform: scale(1.02);
}
.hv-frame.is-active { opacity: 1; }
.hv-frame.hv-in.is-active  { animation: hv-zoom-in  3400ms ease-out forwards; }
.hv-frame.hv-out.is-active { animation: hv-zoom-out 3400ms ease-out forwards; }
@keyframes hv-zoom-in  { from { transform: scale(1.02); } to { transform: scale(1.14); } }
@keyframes hv-zoom-out { from { transform: scale(1.14); } to { transform: scale(1.02); } }

.hv-grain {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    radial-gradient(rgba(0,0,0,0.08) 1px, transparent 1px);
  background-size: 3px 3px, 4px 4px;
  background-position: 0 0, 1px 1px;
  mix-blend-mode: overlay;
  opacity: 0.35;
  pointer-events: none;
  animation: hv-grain-shift 400ms steps(2) infinite;
}
@keyframes hv-grain-shift {
  0%   { transform: translate(0,0); }
  50%  { transform: translate(-6px, 4px); }
  100% { transform: translate(3px, -2px); }
}
.hv-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(26, 4, 9, 0.55) 100%),
    linear-gradient(180deg, rgba(26, 4, 9, 0.25) 0%, transparent 20%, transparent 55%, rgba(26, 4, 9, 0.8) 100%);
  pointer-events: none;
}

.hv-top {
  position: absolute;
  top: 64px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
}
.hv-live {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 10px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
}
.hv-live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--saffron);
  box-shadow: 0 0 0 0 rgba(230, 122, 43, 0.8);
  animation: hv-pulse 1.8s infinite;
}
@keyframes hv-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(230, 122, 43, 0.8); }
  50%     { box-shadow: 0 0 0 7px rgba(230, 122, 43, 0); }
}
.hv-mute {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}

.hv-bottom {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hv-song {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-radius: 14px;
}
.hv-song-play {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hv-song-meta { flex: 1; min-width: 0; }
.hv-song-title { font-family: var(--font-display); font-size: 14px; font-weight: 500; color: var(--maroon-deep); line-height: 1.1; }
.hv-song-sub { font-size: 11px; color: var(--ink-soft); font-family: var(--mono); letter-spacing: 0.04em; margin-top: 2px; }

.hv-eq {
  display: flex; align-items: flex-end; gap: 2px;
  height: 18px;
}
.hv-eq span {
  width: 2.5px;
  background: var(--maroon);
  border-radius: 2px;
  animation: hv-eq 900ms ease-in-out infinite;
}
.hv-eq span:nth-child(1) { animation-delay: 0ms;    height: 40%; }
.hv-eq span:nth-child(2) { animation-delay: 120ms;  height: 80%; }
.hv-eq span:nth-child(3) { animation-delay: 240ms;  height: 55%; }
.hv-eq span:nth-child(4) { animation-delay: 360ms;  height: 95%; }
@keyframes hv-eq {
  0%,100% { transform: scaleY(0.4); }
  50%     { transform: scaleY(1); }
}

.hv-progress { display: flex; gap: 4px; }
.hv-tick {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.hv-tick.is-active::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  border-radius: 2px;
  animation: hv-tick-fill 3200ms linear forwards;
}
@keyframes hv-tick-fill { from { transform: translateX(-100%); } to { transform: translateX(0); } }

/* ── Topbar over video ── */
.topbar.topbar--over {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 14px 16px;
  z-index: 4;
}
.logo.logo--over { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.topbar-cta.topbar-cta--over {
  color: #fff;
  border-color: rgba(255,255,255,0.55);
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
}

.hero-inner--below { padding: 0 20px; }

.hero-bg-pattern { position: absolute; inset: 0; pointer-events: none; }

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--maroon);
  letter-spacing: -0.01em;
}

.topbar-cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--maroon);
  text-decoration: none;
  padding: 8px 16px;
  border: 1.5px solid var(--maroon);
  border-radius: 999px;
  background: transparent;
}

.hero-inner { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px 6px 8px;
  background: rgba(107, 18, 49, 0.08);
  border: 1px solid rgba(107, 18, 49, 0.18);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--maroon);
  margin-bottom: 18px;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 44px;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--maroon-deep);
  margin: 0 0 16px;
  text-wrap: balance;
}

.hero-headline .accent {
  color: var(--saffron);
  font-style: italic;
  font-weight: 400;
}

.hero-sub {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 24px;
  text-wrap: pretty;
  max-width: 34ch;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-micro {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-soft);
}

.hero-micro li { display: flex; align-items: center; gap: 8px; }
.hero-micro .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--saffron);
  flex-shrink: 0;
}

.hero-photo-wrap {
  position: relative;
  margin-bottom: 24px;
}

.hero-play {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(42, 10, 24, 0.72);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  color: #fff;
}

.hero-play > svg {
  flex-shrink: 0;
  background: var(--saffron);
  border-radius: 50%;
  padding: 8px;
  width: 20px; height: 20px;
}

.hero-play-t1 { font-family: var(--font-display); font-size: 15px; font-weight: 500; }
.hero-play-t2 { font-size: 11px; opacity: 0.8; letter-spacing: 0.02em; }

.hero-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-top: 8px;
}
.hero-trust-text { font-size: 13px; color: var(--ink-soft); }
.hero-trust-text b { color: var(--maroon); font-weight: 700; }

/* ─────────────────────────── Buttons ─────────────────────────── */

.btn-primary {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 22px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--maroon) 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 8px 24px -8px rgba(107, 18, 49, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.15s, box-shadow 0.15s;
  width: 100%;
}
.btn-primary:active { transform: translateY(1px); box-shadow: 0 4px 12px -4px rgba(107, 18, 49, 0.5); }

.btn-large { padding: 17px 26px; font-size: 16px; }

.btn-secondary {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 20px;
  border: 1.5px solid rgba(107, 18, 49, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--maroon);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  width: 100%;
}

/* ─────────────────────────── Section primitives ─────────────────────────── */

section { padding: 56px 20px; position: relative; }

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 16px;
}
.eyebrow-line { width: 18px; height: 1px; background: currentColor; opacity: 0.5; }

.section-h {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--maroon-deep);
  text-align: center;
  margin: 0 0 14px;
  text-wrap: balance;
}
.section-h.light { color: var(--cream); text-align: left; }
.section-sub {
  text-align: center;
  color: var(--ink-soft);
  margin: 0 0 28px;
  font-size: 14px;
}

/* ─────────────────────────── WHY ─────────────────────────── */

.why { background: var(--cream); }

.why-grid {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.why-card {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(107, 18, 49, 0.08);
  box-shadow: 0 4px 16px -10px rgba(107, 18, 49, 0.2);
}

.why-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  padding-top: 2px;
}

.why-t { font-family: var(--font-display); font-size: 18px; color: var(--maroon-deep); margin-bottom: 4px; font-weight: 500; }
.why-d { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }

/* ─────────────────────────── HOW ─────────────────────────── */

.how {
  background:
    radial-gradient(circle at 50% 100%, rgba(217, 164, 65, 0.15) 0%, transparent 60%),
    var(--cream-warm);
}

.how-list { display: flex; flex-direction: column; gap: 20px; margin-top: 8px; }

.how-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: start;
}

.how-photo { position: relative; }

.how-num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--saffron);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.how-t { font-family: var(--font-display); font-size: 20px; color: var(--maroon-deep); font-weight: 500; line-height: 1.15; margin-bottom: 6px; }
.how-d { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; }

.how-cta { margin-top: 32px; }

/* ─────────────────────────── OCCASIONS ─────────────────────────── */

.occ {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(217, 164, 65, 0.18) 0%, transparent 50%),
    var(--cream);
  padding: 56px 0 56px;
  overflow: hidden;
}

.occ-head { padding: 0 20px; text-align: center; }

/* horizontal slider */
.occ-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 24px 0 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.occ-scroll::-webkit-scrollbar { display: none; }
.occ-spacer { flex: 0 0 28px; }

.occ-slide {
  flex: 0 0 84%;
  scroll-snap-align: center;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(107, 18, 49, 0.08);
  box-shadow: 0 18px 40px -22px rgba(107, 18, 49, 0.35);
  display: flex;
  flex-direction: column;
  transform: scale(0.96);
  transition: transform 360ms ease, box-shadow 360ms ease;
  position: relative;
}
.occ-slide.is-active {
  transform: scale(1);
  box-shadow: 0 28px 56px -24px rgba(107, 18, 49, 0.5);
}
.occ-slide::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--card-accent, var(--saffron));
  z-index: 3;
  opacity: 0.9;
}

.occ-photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.occ-photo > div:first-child {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: auto !important;
  border-radius: 0 !important;
}

.occ-photo-grad {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,4,9,0) 0%, rgba(26,4,9,0) 45%, rgba(26,4,9,0.75) 100%);
  pointer-events: none;
}

.occ-chip {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 5px 11px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--card-accent, var(--maroon));
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.occ-dedication {
  position: absolute;
  left: 20px;
  bottom: 18px;
  right: 20px;
  z-index: 2;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.occ-ded-pre {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
}
.occ-ded-who {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.occ-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.occ-title-row {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.occ-title { color: var(--ink); font-weight: 500; }

.occ-lyric {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.3;
  color: var(--maroon-deep);
  text-wrap: pretty;
}

.occ-player {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: linear-gradient(90deg, rgba(217,164,65,0.08), rgba(201,79,109,0.08));
  border: 1px solid rgba(107, 18, 49, 0.08);
  border-radius: 999px;
}

.occ-play {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--card-accent, var(--maroon));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 6px 14px -6px var(--card-accent, rgba(107,18,49,0.5));
  transition: transform 0.15s;
}
.occ-play:active { transform: scale(0.95); }

.occ-wave {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 2px;
  height: 28px;
}
.occ-wave span {
  flex: 1;
  min-height: 10%;
  background: var(--card-accent, var(--maroon));
  opacity: 0.35;
  border-radius: 2px;
  transform-origin: center;
  transition: opacity 0.2s;
}
.occ-wave.is-playing span {
  opacity: 0.9;
  animation: occ-wave-bounce 1.1s ease-in-out infinite;
}
@keyframes occ-wave-bounce {
  0%, 100% { transform: scaleY(0.5); }
  50%      { transform: scaleY(1); }
}

.occ-dur {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.occ-make {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--card-accent, var(--maroon));
  text-decoration: none;
  padding: 12px;
  border: 1.5px dashed rgba(107, 18, 49, 0.2);
  border-radius: 12px;
  transition: background 0.15s;
}
.occ-make:hover { background: rgba(107, 18, 49, 0.04); }

.occ-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 18px;
  padding: 0 20px;
}
.occ-dot {
  width: 6px; height: 6px;
  border: none;
  background: rgba(107, 18, 49, 0.2);
  border-radius: 999px;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s;
}
.occ-dot.is-active {
  width: 22px;
  background: var(--maroon);
}

/* ─────────────────────────── EXAMPLES ─────────────────────────── */

.ex {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
}

.ex-list { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }

.ex-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  padding: 14px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(107, 18, 49, 0.08);
  box-shadow: 0 6px 18px -14px rgba(107, 18, 49, 0.25);
  align-items: center;
}

.ex-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.ex-who { color: var(--maroon); font-weight: 600; }
.ex-dot { opacity: 0.5; }

.ex-snippet {
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 10px;
  text-wrap: pretty;
}

.ex-player {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ex-play {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: none;
  background: var(--maroon);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.ex-bar {
  flex: 1;
  height: 3px;
  background: rgba(107, 18, 49, 0.12);
  border-radius: 2px;
  overflow: hidden;
}
.ex-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--saffron), var(--rose));
  border-radius: 2px;
}

.ex-dur {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-soft);
}

/* ─────────────────────────── TESTIMONIALS ─────────────────────────── */

.tst { background: var(--cream); }

.tst-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  margin: 0 -20px;
  padding: 8px 20px 16px;
}
.tst-grid::-webkit-scrollbar { display: none; }

.tst-card {
  flex: 0 0 78%;
  scroll-snap-align: start;
  padding: 22px;
  background: linear-gradient(180deg, #fff 0%, var(--cream-warm) 100%);
  border-radius: 18px;
  border: 1px solid rgba(107, 18, 49, 0.1);
  box-shadow: 0 8px 22px -14px rgba(107, 18, 49, 0.25);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tst-stars { display: flex; gap: 2px; }

.tst-q {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.35;
  color: var(--maroon-deep);
  font-style: italic;
  flex: 1;
  text-wrap: pretty;
}

.tst-who { display: flex; align-items: center; gap: 10px; }

.tst-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}
.tst-avatar.tone-rose { background: linear-gradient(135deg, #e89aaa, #8b1e3f); }
.tst-avatar.tone-gold { background: linear-gradient(135deg, #d9a441, #7a3b1a); }
.tst-avatar.tone-warm { background: linear-gradient(135deg, #e08e6b, #a8324a); }
.tst-avatar.tone-plum { background: linear-gradient(135deg, #8b4d8f, #3d1a4a); }

.tst-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.tst-place { font-size: 11px; color: var(--ink-soft); font-family: var(--mono); letter-spacing: 0.04em; }

/* ─────────────────────────── TELEGRAM ─────────────────────────── */

.tg {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(217, 164, 65, 0.25) 0%, transparent 50%),
    linear-gradient(180deg, var(--maroon-deep) 0%, var(--plum) 100%);
  color: var(--cream);
  padding: 64px 20px;
  overflow: hidden;
}

.tg .eyebrow { color: var(--gold-soft); }
.tg-sub { font-size: 15px; line-height: 1.55; color: rgba(251, 245, 236, 0.78); margin: 0 0 20px; text-wrap: pretty; }

.tg-inner { display: flex; flex-direction: column; gap: 32px; }

.tg-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.tg-bullets li { display: flex; align-items: center; gap: 10px; color: rgba(251, 245, 236, 0.9); }
.tg-check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(217, 164, 65, 0.2);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.tg .btn-primary {
  background: var(--cream);
  color: var(--maroon-deep);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.4);
}

.tg-phone-wrap {
  display: flex;
  justify-content: center;
  padding: 12px;
}

.tg-phone {
  width: 280px;
  background: #0e0204;
  border-radius: 36px;
  padding: 10px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.06);
  position: relative;
}

.tg-phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 20px;
  background: #000;
  border-radius: 999px;
  z-index: 2;
}

.tg-phone-screen {
  background: linear-gradient(180deg, #3a1624 0%, #1d0912 100%);
  border-radius: 28px;
  padding: 40px 14px 16px;
  min-height: 380px;
  overflow: hidden;
}

.tg-chat-hdr {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 4px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 12px;
}
.tg-bot-avatar {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.tg-bot-name { font-family: var(--font-display); font-size: 14px; color: #fff; font-weight: 500; }
.tg-bot-status { font-size: 10px; color: rgba(255,255,255,0.4); font-family: var(--mono); }

.tg-chat-body { display: flex; flex-direction: column; gap: 8px; }

.tg-msg {
  max-width: 85%;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.4;
}

.tg-msg-in {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-top-left-radius: 4px;
  align-self: flex-start;
}

.tg-msg-out {
  background: var(--saffron);
  color: var(--maroon-deep);
  border-top-right-radius: 4px;
  align-self: flex-end;
  font-weight: 500;
  font-size: 12px;
}

.tg-voice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px !important;
  width: 85%;
}

.tg-voice-play {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--saffron);
  border: none;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.tg-voice-wave {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  height: 24px;
}
.tg-voice-wave span {
  flex: 1;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
}

.tg-voice-dur {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,0.7);
}

.tg-tiny {
  font-size: 11px !important;
  padding: 6px 10px !important;
  background: rgba(255,255,255,0.04) !important;
  color: rgba(255,255,255,0.5) !important;
  font-family: var(--mono);
  letter-spacing: 0.02em;
}

/* ─────────────────────────── FAQ ─────────────────────────── */

.faq { background: var(--cream-warm); }

.faq-list { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }

.faq-item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(107, 18, 49, 0.08);
  overflow: hidden;
}
.faq-item.open { border-color: rgba(107, 18, 49, 0.2); }

.faq-q {
  width: 100%;
  padding: 16px 18px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--maroon-deep);
  text-align: left;
  cursor: pointer;
  line-height: 1.3;
}

.faq-icon {
  font-size: 22px;
  color: var(--saffron);
  line-height: 1;
  flex-shrink: 0;
  font-weight: 300;
}

.faq-a {
  padding: 0 18px 16px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  text-wrap: pretty;
}

/* ─────────────────────────── FINAL CTA ─────────────────────────── */

.final {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(230, 122, 43, 0.35) 0%, transparent 60%),
    linear-gradient(180deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  color: var(--cream);
  text-align: center;
  padding: 72px 24px;
  overflow: hidden;
}

.final-bg { position: absolute; inset: 0; pointer-events: none; }

.final-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 14px; }

.final-h {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 8px 0 4px;
  text-wrap: balance;
  color: #fff;
}

.final-sub { font-size: 15px; color: rgba(251, 245, 236, 0.78); margin: 0 0 12px; text-wrap: pretty; max-width: 32ch; }

.final .btn-primary {
  background: var(--cream);
  color: var(--maroon-deep);
  box-shadow: 0 14px 36px -10px rgba(0,0,0,0.5);
}

.final-micro {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 12px;
  color: rgba(251, 245, 236, 0.7);
  font-family: var(--mono);
  letter-spacing: 0.04em;
  margin-top: 8px;
}

/* ─────────────────────────── FOOTER ─────────────────────────── */

.foot {
  background: var(--maroon-deep);
  color: rgba(251, 245, 236, 0.7);
  padding: 36px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.foot-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--cream);
  font-weight: 500;
}

.foot-tag { font-size: 13px; font-style: italic; color: var(--gold-soft); }

.foot-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 13px;
}
.foot-links a { color: rgba(251, 245, 236, 0.65); text-decoration: none; }
.foot-links a:hover { color: var(--gold); }

.foot-copy {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  opacity: 0.5;
  margin-top: 4px;
}

/* ─────────────────────────── Tweaks Panel ─────────────────────────── */

.tweaks {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 1000;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 48px -12px rgba(0,0,0,0.25), 0 0 0 1px rgba(0,0,0,0.08);
  padding: 16px;
  width: 260px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink);
}

.tweaks-hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--maroon-deep);
  font-weight: 500;
}
.tweaks-close { background: none; border: none; font-size: 18px; color: var(--ink-soft); cursor: pointer; line-height: 1; padding: 0; }

.tweak-group { margin-bottom: 14px; }
.tweak-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); margin-bottom: 6px; font-family: var(--mono); }

.tweak-swatches { display: flex; gap: 6px; }
.tweak-swatch {
  flex: 1;
  padding: 8px 6px;
  border-radius: 8px;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink);
  background: var(--cream-warm);
}
.tweak-swatch.active { border-color: var(--maroon); background: var(--cream); }
.tweak-swatch-dot {
  display: block;
  width: 100%;
  height: 20px;
  border-radius: 4px;
  margin-bottom: 4px;
}

.tweak-radio {
  display: flex; flex-direction: column; gap: 4px;
}
.tweak-radio label {
  display: flex;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.3;
}
.tweak-radio input { accent-color: var(--maroon); margin-top: 2px; }
.tweak-radio label:hover { background: var(--cream-warm); }
