/* ============================================
   SELF-HOSTED FONTS
   ============================================ */
@font-face {
  font-family: 'Space Grotesk';
  src: url('assets/fonts/space-grotesk-latin-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('assets/fonts/space-grotesk-latin-500-normal.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('assets/fonts/space-grotesk-latin-600-normal.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('assets/fonts/space-grotesk-latin-700-normal.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/inter-latin-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/inter-latin-500-normal.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/inter-latin-600-normal.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('assets/fonts/jetbrains-mono-latin-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('assets/fonts/jetbrains-mono-latin-500-normal.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  /* Color */
  --bg-void: #0a0d0c;
  --bg-panel: #0d1110;
  --bg-elevated: #131816;
  --bg-card: #161c1a;
  --green-signal: #1d9e75;
  --green-bright: #2bc98f;
  --green-dim: #14523c;
  --green-wash: rgba(29, 158, 117, 0.1);
  --ink-primary: #f2f0ea;
  --ink-secondary: #9aa39d;
  --ink-tertiary: #5e6864;
  --ink-faint: #3a423f;
  --line-hairline: rgba(242, 240, 234, 0.08);
  --line-bright: rgba(29, 158, 117, 0.35);

  /* Type */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Layout */
  --pad-x: clamp(24px, 6vw, 96px);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  background: var(--bg-void);
  color: var(--ink-primary);
  font-family: var(--font-body);
  overflow: hidden;
  height: 100%;
}

::selection { background: var(--green-signal); color: var(--bg-void); }

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

a { color: inherit; }

/* ============================================
   GRAIN TEXTURE OVERLAY
   ============================================ */
.grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================
   NAV RAIL (progress dots)
   ============================================ */
.rail {
  position: fixed;
  right: clamp(16px, 3vw, 36px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rail-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink-faint);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.rail-dot::before {
  content: '';
  position: absolute;
  inset: -8px;
}

.rail-dot.active {
  background: var(--green-bright);
  box-shadow: 0 0 12px rgba(43, 201, 143, 0.6);
  transform: scale(1.4);
}

/* ============================================
   SCROLLER / PANELS
   ============================================ */
.scroller {
  height: 100vh;
  height: 100svh;
  width: 100vw;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

.scroller::-webkit-scrollbar { display: none; }

.panel {
  height: 100vh;
  height: 100svh;
  width: 100vw;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* ============================================
   HERO PANEL
   ============================================ */
.hero-panel {
  padding: 0 var(--pad-x);
  justify-content: center;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(29, 158, 117, 0.22) 0%, rgba(29, 158, 117, 0) 65%);
  transform: translate(-50%, -50%);
  filter: blur(40px);
}

.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 0%, transparent 75%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-whatsapp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-bright);
  background: rgba(29, 158, 117, 0.08);
  border: 1px solid rgba(29, 158, 117, 0.2);
  padding: 6px 14px 6px 12px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.hero-whatsapp-badge svg {
  color: var(--green-bright);
  filter: drop-shadow(0 0 3px rgba(43, 201, 143, 0.35));
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-bright);
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--green-bright);
  opacity: 0.5;
  animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
  0% { transform: scale(0.6); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 6.8vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink-primary);
  margin-bottom: 28px;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-em {
  font-style: italic;
  color: var(--green-bright);
  font-weight: 500;
}

.hero-strike-wrap {
  position: relative;
  display: inline-grid;
  vertical-align: bottom;
}

.hero-strike-wrap .hero-strike,
.hero-strike-wrap .hero-replace {
  grid-area: 1 / 1;
  white-space: nowrap;
}

.hero-strike {
  color: var(--ink-tertiary);
  text-decoration: line-through;
  text-decoration-color: var(--green-signal);
  text-decoration-thickness: 2px;
  opacity: 0;
}

.hero-replace {
  color: var(--ink-primary);
  opacity: 0;
}

.hero-sub {
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.6;
  color: var(--ink-primary);
  max-width: 680px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 700;
  text-align: center;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-signal);
  color: #04130d;
  font-weight: 600;
  font-size: 14.5px;
  padding: 14px 24px;
  border-radius: 100px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
  background: var(--green-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(43, 201, 143, 0.35);
}

.btn-primary svg {
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateY(2px);
}

.hero-cta-meta {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-tertiary);
  letter-spacing: 0.03em;
}

/* ============================================
   HERO PHONE TEASER
   ============================================ */
.hero-phone-teaser {
  position: absolute;
  right: clamp(20px, 7vw, 120px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.teaser-phone {
  width: 252px;
  height: 520px;
  background: linear-gradient(180deg, #11514029 0%, #0d1110 40%);
  background-color: #0b0f0d;
  border-radius: 34px;
  border: 1px solid rgba(242, 240, 234, 0.1);
  box-shadow:
    0 30px 80px -20px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 0 60px rgba(29, 158, 117, 0.08);
  overflow: hidden;
  position: relative;
  padding-top: 28px;
}

.teaser-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 16px;
  background: #000;
  border-radius: 12px;
}

.teaser-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line-hairline);
  background-color: #0b0f0d;
  position: relative;
  z-index: 5;
}

.teaser-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green-signal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #04130d;
  flex-shrink: 0;
}

.teaser-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-primary);
}

.teaser-status {
  font-size: 10px;
  color: var(--green-bright);
}

.teaser-chat {
  padding: 14px 12px;
  height: calc(100% - 60px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  overflow: hidden;
}

/* Mini chat bubbles for teaser - reused class pattern for full sections later */
.t-row { display: flex; opacity: 0; transform: translateY(8px); }
.t-row.bot { justify-content: flex-start; }
.t-row.user { justify-content: flex-end; }
.t-bubble {
  max-width: 82%;
  padding: 8px 11px;
  border-radius: 12px;
  font-size: 11.5px;
  line-height: 1.5;
}
.t-bubble.bot-b {
  background: var(--bg-card);
  color: var(--ink-primary);
  border-top-left-radius: 3px;
  border: 1px solid var(--line-hairline);
}
.t-bubble.user-b {
  background: var(--green-dim);
  color: #d9f5e8;
  border-top-right-radius: 3px;
}

/* Button card — matches real EventBot interactive list style */
.t-btn-card {
  background: var(--bg-card);
  border: 1px solid var(--line-hairline);
  border-radius: 12px;
  overflow: hidden;
  font-size: 11px;
}
.t-btn-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 11px;
  color: var(--green-bright);
  font-weight: 500;
  border-top: 1px solid var(--line-hairline);
}
.t-btn-row:first-child { border-top: none; }
.t-btn-row.dim {
  color: var(--ink-tertiary);
  opacity: 0.6;
}
.t-btn-arrow {
  font-size: 10px;
  opacity: 0.8;
}

/* Ticket card — matches real QR ticket delivery */
.t-ticket-card {
  background: #fff;
  color: #111;
  border-radius: 8px;
  overflow: hidden;
  width: 150px;
  font-size: 10px;
}
.t-ticket-top {
  background: #075e54;
  color: #fff;
  padding: 6px 8px;
  font-weight: 600;
  font-size: 10.5px;
}
.t-ticket-qr {
  margin: 8px auto;
  width: 60px;
  height: 60px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 29 29' shape-rendering='crispEdges'><path fill='%23ffffff' d='M0 0h29v29H0z'/><path fill='%23000000' d='M0 0h7v7H0zm22 0h7v7h-7zM0 22h7v7H0zm9 0h1v1h-1zm1 1h1v1h-1zm-1 1h1v1h-1zm3-3h1v1h-1zm1 1h1v1h-1zm-1 1h1v1h-1zm3-3h1v1h-1zm1 1h1v1h-1zm-1 1h1v1h-1zm3 0h1v1h-1zm2 0h1v1h-1zm1-1h1v1h-1zm-2-1h1v1h-1zm-1-1h1v1h-1zm3 3h1v1h-1zm2 1h1v1h-1zm-1-2h1v1h-1zm-1-1h1v1h-1zm-2 4h1v1h-1zm-2-7h1v1h-1zm3 0h1v1h-1zm3 0h1v1h-1zM1 1h5v5H1zm22 0h5v5h-5zM1 23h5v5H1zm8-14h1v1H9zm1 1h1v1h-1zm-1 1h1v1h-1zm3-3h1v1h-1zm1 1h1v1h-1zm-1 1h1v1h-1zm3-3h1v1h-1zm1 1h1v1h-1zm-1 1h1v1h-1zm3-3h1v1h-1zm1 1h1v1h-1zm-1 1h1v1h-1zM2 2h3v3H2zm22 0h3v3h-3zM2 24h3v3H2zm7-15h1v1H9zm4 0h1v1h-1zm3 0h1v1h-1zm3 0h1v1h-1zm2 0h1v1h-1zm-5 4h1v1h-1zm2 0h1v1h-1zm-4 2h1v1h-1zm2 0h1v1h-1zm-3 2h1v1h-1zm2 0h1v1h-1zm3-6h1v1h-1zm2 0h1v1h-1zm3 0h1v1h-1zm-4 4h1v1h-1zm2 0h1v1h-1zm-3 2h1v1h-1zm2 0h1v1h-1zM10 10h1v1h-1zm4 0h1v1h-1zm3 0h1v1h-1zm3 0h1v1h-1zm2 0h1v1h-1zm-5 4h1v1h-1zm2 0h1v1h-1zm-4 2h1v1h-1zm2 0h1v1h-1zm-3 2h1v1h-1zm2 0h1v1h-1zm3-6h1v1h-1zm2 0h1v1h-1zm3 0h1v1h-1zm-4 4h1v1h-1zm2 0h1v1h-1zm-3 2h1v1h-1zm2 0h1v1h-1z'/></svg>");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.t-ticket-qr svg {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
}
.t-ticket-body {
  text-align: center;
  padding: 0 6px 8px;
  font-weight: 600;
  color: #333;
}

/* Quoted-reply card — matches the real WhatsApp pattern: small sender
   label + quoted prompt above, then the user's actual tapped reply below,
   with the signature purple left-border accent. */
.t-quoted-card {
  max-width: 82%;
  background: var(--green-dim);
  border-left: 3px solid #8a7fe8;
  border-radius: 10px;
  padding: 7px 10px;
  font-size: 11px;
  color: #d9f5e8;
}
.t-quoted-from {
  font-weight: 700;
  color: #b9a9ff;
  font-size: 10px;
  margin-bottom: 1px;
}
.t-quoted-prompt {
  color: #aed9c5;
  font-size: 10.5px;
  margin-bottom: 4px;
  opacity: 0.85;
}
.t-quoted-reply {
  color: #fff;
  font-weight: 500;
}

/* ---- Event flyer image bubble ---- */
.t-flyer-bubble {
  max-width: 86%;
  border-radius: 11px;
  overflow: hidden;
  border-top-left-radius: 3px;
}
.t-flyer-bubble img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---- Structured event info card (matches real bot reply layout) ---- */
.t-event-card {
  max-width: 86%;
  background: var(--bg-card);
  border: 1px solid var(--line-hairline);
  border-radius: 11px;
  border-top-left-radius: 3px;
  padding: 10px 12px;
  font-size: 11px;
  line-height: 1.6;
  color: var(--ink-primary);
}
.t-event-title {
  font-weight: 700;
  margin-bottom: 6px;
}
.t-event-row {
  color: var(--ink-secondary);
}
.t-event-desc {
  margin: 8px 0;
  color: var(--ink-secondary);
}
.t-event-tickets-label {
  font-weight: 700;
  margin-top: 6px;
}

/* ============================================
   SCROLL CUE
   ============================================ */
.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.scroll-cue span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-tertiary);
}

.scroll-cue-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, var(--green-bright), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-cue-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--green-bright);
  animation: cueDrop 1.8s ease-in-out infinite;
}

@keyframes cueDrop {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ============================================
   FEATURE SECTIONS (shared base for all 10)
   ============================================ */
.feature-panel {
  padding: 0 var(--pad-x);
}

.feature-glow {
  position: absolute;
  top: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(29, 158, 117, 0.12) 0%, rgba(29, 158, 117, 0) 65%);
  transform: translateY(-50%);
  filter: blur(20px);
}
.feature-glow-left { left: 22%; }
.feature-glow-right { right: 22%; left: auto; }

.feature-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

/* Default order: visual left, content right */
.feature-grid-chat-left .feature-visual { order: 1; }
.feature-grid-chat-left .feature-content { order: 2; }

/* Alternate order: content left, visual right */
.feature-grid-chat-right .feature-visual { order: 2; }
.feature-grid-chat-right .feature-content { order: 1; }

.feature-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 560px;
}

.feature-grid-chat-left .feature-visual {
  padding-right: 70px;
  padding-left: 0;
}
.feature-grid-chat-left .feature-phone {
  position: relative;
  left: -90px; /* Shift phone left, away from dashboard card */
}

.feature-grid-chat-right .feature-visual {
  padding-left: 70px;
  padding-right: 0;
}
.feature-grid-chat-right .feature-phone {
  position: relative;
  left: 90px; /* Shift phone right, away from dashboard card */
}

.feature-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-bright);
  background: var(--green-wash);
  border: 1px solid var(--line-bright);
  padding: 6px 14px 6px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.feature-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink-primary);
  margin-bottom: 20px;
}

.feature-sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-secondary);
  max-width: 460px;
  margin-bottom: 24px;
}

.feature-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.feature-points li {
  position: relative;
  padding-left: 22px;
  font-size: 13.5px;
  color: var(--ink-secondary);
  line-height: 1.5;
}

.feature-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-bright);
}

/* ---- Feature phone (same chrome as hero teaser, scoped to feature sections) ---- */
.feature-phone {
  width: 252px;
  background: linear-gradient(180deg, #11514029 0%, #0d1110 40%);
  background-color: #0b0f0d;
  border-radius: 34px;
  border: 1px solid rgba(242, 240, 234, 0.1);
  box-shadow:
    0 30px 80px -20px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 0 60px rgba(29, 158, 117, 0.08);
  overflow: hidden;
  position: relative;
  padding-top: 28px;
  height: 520px;
  flex-shrink: 0;
}

/* ---- Dashboard glimpse card ---- */
.dash-card-wrap {
  position: absolute;
  right: -35px; /* Shift card further right to clear the phone */
  bottom: 50px;
}

.dash-card-tag {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-tertiary);
  margin-bottom: 8px;
  padding-left: 2px;
}

.dash-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 70px -18px rgba(0,0,0,0.55);
  overflow: hidden;
  width: 230px;
  font-family: var(--font-body);
  transform: rotate(2.5deg);
  transition: transform 0.4s ease;
}

.dash-card:hover {
  transform: rotate(0deg) translateY(-4px);
}

.dash-card-tiers {
  padding: 14px;
}

/* ---- Left-side variant of the dashboard card wrap (for alternating layout) ---- */
.dash-card-wrap-left {
  right: auto;
  left: -95px; /* Shift card further left to clear the phone */
  bottom: 90px;
}

/* ---- Draft input bar (mimics WhatsApp's compose bar, showing a
   pre-filled but not-yet-sent message) ---- */
.teaser-chat-draft {
  height: calc(100% - 60px - 54px); /* leaves room for header + input bar */
  overflow-y: hidden;
}

.draft-input-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 10px 10px 14px;
  background: #0b0f0d;
  border-top: 1px solid var(--line-hairline);
}

.draft-input-field {
  flex: 1;
  background: #1a201d;
  border: 1px solid rgba(29, 158, 117, 0.3);
  border-radius: 18px;
  padding: 9px 13px;
  font-size: 10.5px;
  line-height: 1.5;
  color: var(--ink-primary);
  max-height: 110px;
  overflow: hidden;
  min-height: 16px;
}

.draft-send-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---- Intro-message dashboard card variant: real browser-window mockup ---- */
.dash-card-intro {
  width: 290px;
  padding: 0;
}

.dash-browser-bar {
  background: #f1f2f1;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #e4e6e4;
}

.dash-browser-dots {
  display: flex;
  gap: 5px;
}

.dash-browser-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8dad8;
}

.dash-browser-url {
  flex: 1;
  background: #fff;
  border: 1px solid #e4e6e4;
  border-radius: 6px;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: #8a928d;
}

.dash-card-body {
  display: flex;
}

.dash-sidebar {
  width: 36px;
  background: linear-gradient(180deg, #0d2b21 0%, #0a1f18 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 14px;
  gap: 14px;
  flex-shrink: 0;
}

.dash-sidebar-logo {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--green-bright), #ff7a5c, #5c8aff);
}

.dash-sidebar-item {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: rgba(255,255,255,0.12);
}

.dash-sidebar-item.active {
  background: var(--green-signal);
}

.dash-main {
  flex: 1;
  padding: 16px 18px 18px;
  min-width: 0;
}

.dash-card-intro .dash-card-head {
  flex-wrap: wrap;
  font-size: 9.5px;
  margin-bottom: 14px;
}

.dash-new-pill {
  background: var(--green-wash);
  color: var(--green-signal);
  font-size: 8.5px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 8px;
  margin-left: auto;
}

.dash-intro-box {
  background: #f7f8f7;
  border: 1px solid #eceeed;
  border-radius: 8px;
  padding: 13px;
  font-size: 12.5px;
  line-height: 1.6;
  color: #444b47;
  margin-bottom: 13px;
}

.dash-var {
  color: var(--green-signal);
  font-weight: 600;
}

.dash-link-preview {
  border-top: 1px solid #eceeed;
  padding-top: 11px;
}

.dash-link-label {
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.06em;
  color: #9aa39d;
  margin-bottom: 4px;
}

.dash-link-url {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--green-signal);
  word-break: break-all;
}

.dash-card-head {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.06em;
  color: #6b7570;
  font-weight: 600;
  margin-bottom: 12px;
}

.dash-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green-signal);
}

.dash-add {
  margin-left: auto;
  color: var(--green-signal);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.dash-tier-row {
  padding: 9px 10px;
  border-radius: 8px;
  margin-bottom: 6px;
  background: #f7f8f7;
  border: 1px solid #eceeed;
}

.dash-tier-row.dash-tier-active {
  background: #eefbf4;
  border-color: #b8e8d2;
}

.dash-tier-name {
  font-size: 12.5px;
  font-weight: 600;
  color: #1a1f1c;
  margin-bottom: 2px;
}

.dash-tier-meta {
  font-size: 10.5px;
  color: #767f7a;
}

/* ============================================
   PLACEHOLDER (temp section)
   ============================================ */
.placeholder-content {
  padding: 0 var(--pad-x);
}
.placeholder-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-bright);
  margin-bottom: 12px;
}
.placeholder-content h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  color: var(--ink-secondary);
  font-weight: 500;
}

/* ============================================
   RESPONSIVE
   ============================================ */
/* ============================================
   MOBILE FLOATING BUBBLES (no phone chrome)
   ============================================ */
.mobile-bubbles {
  display: none; /* shown only on mobile breakpoint */
  flex-direction: column;
  gap: 7px;
  margin-top: 22px;
  max-width: 280px;
}

.mobile-bubbles .t-row { display: flex; opacity: 0; transform: translateY(8px); }
.mobile-bubbles .t-row.bot { justify-content: flex-start; }
.mobile-bubbles .t-row.user { justify-content: flex-end; }

.mobile-bubbles .t-bubble {
  max-width: 84%;
  padding: 7px 10px;
  border-radius: 11px;
  font-size: 11.5px;
  line-height: 1.45;
}
.mobile-bubbles .t-bubble.bot-b {
  background: var(--bg-card);
  color: var(--ink-primary);
  border-top-left-radius: 3px;
  border: 1px solid var(--line-hairline);
}
.mobile-bubbles .t-bubble.user-b {
  background: var(--green-dim);
  color: #d9f5e8;
  border-top-right-radius: 3px;
}

/* Button card + ticket card at mobile-bubble scale (slightly larger
   than desktop's mini-phone version, since there's no phone frame
   constraining width here) */
.mobile-bubbles .t-btn-card {
  font-size: 12px;
  max-width: 84%;
}
.mobile-bubbles .t-btn-row {
  padding: 9px 12px;
}
.mobile-bubbles .t-ticket-card {
  width: 168px;
  font-size: 11px;
}
.mobile-bubbles .t-ticket-qr {
  width: 66px;
  height: 66px;
}
.mobile-bubbles .t-quoted-card {
  font-size: 12px;
  padding: 8px 11px;
}
.mobile-bubbles .t-quoted-from,
.mobile-bubbles .t-quoted-prompt {
  font-size: 11px;
}
.mobile-bubbles .t-event-card {
  font-size: 12px;
}
.mobile-bubbles .t-flyer-bubble {
  max-width: 90%;
}

/* ============================================
   MOBILE-ONLY PANEL VISIBILITY
   The chat preview slide only exists on mobile; desktop never sees it.
   ============================================ */
.mobile-only-panel {
  display: none;
}

.hero-chat-slide-label {
  display: none; /* shown only in mobile breakpoint */
}

.hero-glow-chat {
  left: 50%;
  top: 45%;
}

/* ============================================
   RESPONSIVE — MOBILE HERO REDESIGN (two slides)
   Slide 1: type only, properly centered, no dead space.
   Slide 2: dedicated chat preview, its own full screen.
   ============================================ */
@media (max-width: 760px) {
  :root {
    --pad-x: 22px;
  }

  .floating-bubble {
    max-width: 150px;
    padding: 7px 10px;
    font-size: 9.5px;
    line-height: 1.35;
  }
  .floating-bubble .t-ticket-card {
    width: 130px;
    font-size: 9px;
  }
  .floating-bubble .t-ticket-qr {
    width: 48px;
    height: 48px;
    margin: 6px auto;
  }

  .mobile-only-panel {
    display: flex;
  }

  /* ---- Slide 1: hero type ---- */
  .hero-panel {
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 8vh;
    overflow: hidden;
    padding-bottom: 0;
  }

  .hero-content {
    max-width: 100%;
    width: 100%;
  }

  .hero-eyebrow {
    font-size: 10px;
    padding: 5px 12px 5px 10px;
    margin-bottom: 20px;
  }

  .hero-whatsapp-badge {
    margin: 0 auto 24px !important;
  }

  .hero-title {
    font-size: clamp(38px, 10vw, 56px) !important;
    font-weight: 800 !important;
    line-height: 1.05 !important;
    text-align: center !important;
    margin-bottom: 24px !important;
  }

  .hero-sub {
    font-size: 18.5px !important;
    line-height: 1.5 !important;
    font-weight: 700 !important;
    text-align: center !important;
    max-width: 100% !important;
    padding-right: 0 !important;
    margin-bottom: 36px !important;
    color: var(--ink-primary) !important;
  }

  .hero-cta-row {
    justify-content: center !important;
  }

  .btn-primary {
    font-size: 13.5px;
    padding: 13px 22px;
  }

  .hero-cta-meta {
    font-size: 10.5px;
  }

  /* Hide full phone mockup entirely on mobile — lives only on desktop slide */
  .hero-phone-teaser {
    display: none;
  }

  .hero-panel .scroll-cue {
    bottom: 18px;
  }

  /* ---- Slide 2: chat preview ---- */
  .hero-chat-panel {
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    padding-top: 9vh;
  }

  .hero-chat-slide-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--green-bright);
    background: var(--green-wash);
    border: 1px solid var(--line-bright);
    padding: 6px 14px 6px 12px;
    border-radius: 100px;
    margin-bottom: 28px;
  }

  .mobile-bubbles {
    display: flex;
    margin-top: 0;
    width: 100%;
    max-width: 300px;
    padding: 0 var(--pad-x);
  }

  .hero-chat-panel .scroll-cue {
    bottom: 18px;
  }

  .scroll-cue-line {
    height: 22px;
  }

  /* Nav rail: shrink slightly and keep clear of content on small screens */
  .rail {
    right: 12px;
    gap: 10px;
  }

  /* ============================================
     FEATURE SECTIONS — MOBILE LAYOUT
     Stacked, not side-by-side. 
     ============================================ */
  .feature-panel {
    height: 100vh;
    height: 100svh;
    overflow: hidden;
    padding: 28px var(--pad-x) 24px;
    justify-content: center;
    align-items: center;
  }

  .feature-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }

  .feature-grid-chat-left .feature-visual,
  .feature-grid-chat-right .feature-visual,
  .feature-grid-chat-left .feature-content,
  .feature-grid-chat-right .feature-content {
    order: unset; /* stacking order set by DOM order below, not CSS order */
  }

  .feature-visual {
    min-height: auto;
    height: 330px;
    width: 560px; /* Force container to be wide enough to hold side-by-side mockups */
    flex-shrink: 0; /* Keep width fixed for centering & scaling */
    padding-right: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transform: scale(0.6);
    transform-origin: center center;
    overflow: visible;
  }

  /* Alternating side-by-side order on mobile: visual right -> phone left, card right.
     visual left -> card left, phone right. */
  .feature-grid-chat-left .feature-visual {
    flex-direction: row-reverse;
  }

  .dash-card-wrap,
  .dash-card-wrap-left {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    top: auto !important;
    margin: 0 !important;
  }

  .feature-phone {
    padding-bottom: 0;
    margin: 0 !important; /* Reset margins on mobile */
    left: auto !important; /* Reset relative offsets on mobile */
    transform: none !important; /* Reset transform on mobile */
  }

  .feature-content {
    text-align: left;
    max-width: 100%;
  }

  .feature-title {
    font-size: clamp(24px, 7vw, 30px);
  }

  .feature-sub {
    font-size: 14px;
    max-width: 100%;
    margin-bottom: 16px;
  }
}

@media (max-width: 760px) and (max-height: 700px) {
  /* Extra-short phones */
  .hero-title {
    font-size: clamp(26px, 8vw, 34px);
    margin-bottom: 14px;
  }
  .hero-sub {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .hero-eyebrow {
    margin-bottom: 16px;
  }
  .hero-chat-slide-label {
    margin-bottom: 18px;
  }

  /* Compact visual adjustments for extra-short viewports */
  .feature-panel {
    padding: 16px var(--pad-x) 12px;
  }
  .feature-visual {
    height: 280px;
    transform: scale(0.55);
    margin-bottom: 0;
  }
  .feature-grid {
    gap: 8px;
  }
  .feature-content {
    max-width: 100%;
  }
  .feature-title {
    font-size: clamp(20px, 6vw, 24px);
    margin-bottom: 6px;
  }
  .feature-sub {
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.45;
  }
  .feature-points li {
    font-size: 12.5px;
    line-height: 1.35;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Fallback if GSAP fails to load entirely — never leave the page blank/stuck */
.no-gsap .hero-strike { display: none; }
.no-gsap .hero-replace { opacity: 1 !important; }
.no-gsap [data-reveal],
.no-gsap [data-reveal-phone],
.no-gsap .hero-title .line {
  opacity: 1 !important;
  transform: none !important;
}

/* ============================================
   UNIFIED BROWSER CARD MOCKUPS AND COMPONENTS
   ============================================ */
.dash-card-browser {
  width: 290px !important;
  padding: 0 !important;
}

.dash-segment {
  display: flex;
  background: #eceeed;
  border-radius: 6px;
  padding: 2px;
  margin-top: 6px;
  margin-bottom: 12px;
}

.dash-segment-btn {
  flex: 1;
  text-align: center;
  font-size: 9px;
  font-weight: 600;
  padding: 5px 8px;
  border-radius: 4px;
  color: #6b7570;
  background: none;
  cursor: default;
}

.dash-segment-btn.active {
  background: var(--green-signal);
  color: #fff;
}

.dash-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
}

.dash-toggle-info {
  max-width: 80%;
}

.dash-toggle-label {
  font-size: 10px;
  font-weight: 600;
  color: #1a1f1c;
  line-height: 1.2;
}

.dash-toggle-sub {
  font-size: 8px;
  color: #767f7a;
  margin-top: 1px;
}

.dash-switch {
  width: 26px;
  height: 14px;
  background: #eceeed;
  border-radius: 100px;
  position: relative;
  flex-shrink: 0;
}

.dash-switch.active {
  background: var(--green-signal);
}

.dash-switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
}

.dash-switch.active::after {
  left: 14px;
}

.dash-question-row {
  background: #f7f8f7;
  border: 1px solid #eceeed;
  border-radius: 6px;
  padding: 7px 9px;
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dash-question-text {
  font-size: 10.5px;
  font-weight: 500;
  color: #1a1f1c;
}

.dash-question-type {
  font-size: 8px;
  color: #767f7a;
  background: #eceeed;
  padding: 2px 5px;
  border-radius: 4px;
  font-family: var(--font-mono);
}

.dash-question-dropdown-container {
  position: relative;
}

.dash-question-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 120px;
  background: #fff;
  border: 1px solid #d8dad8;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 10;
  padding: 3px;
  margin-top: 4px;
}

.dash-dropdown-item {
  font-size: 8.5px;
  padding: 4px 6px;
  border-radius: 4px;
  color: #444b47;
}

.dash-dropdown-item.active {
  background: var(--green-wash);
  color: var(--green-signal);
  font-weight: 600;
}

.dash-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 9px;
  margin-top: 6px;
}

.dash-table th {
  text-align: left;
  color: #8a928d;
  font-weight: 600;
  padding-bottom: 4px;
  border-bottom: 1px solid #eceeed;
}

.dash-table td {
  padding: 6px 0;
  border-bottom: 1px solid #eceeed;
}

.dash-badge {
  font-size: 7.5px;
  font-weight: 700;
  padding: 1px 4px;
  border-radius: 4px;
  display: inline-block;
}

.dash-badge-success {
  background: #eefbf4;
  color: var(--green-signal);
}

.dash-badge-warning {
  background: #fff8eb;
  color: #d97706;
}

.dash-donut-chart-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.dash-donut-legend {
  font-size: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dash-legend-item {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #6b7570;
}

.dash-legend-color {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.dash-legend-color.blue { background: #3b82f6; }
.dash-legend-color.orange { background: #f59e0b; }
.dash-legend-color.green { background: var(--green-signal); }

.dash-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}

.dash-metric-card {
  background: #f7f8f7;
  border: 1px solid #eceeed;
  border-radius: 6px;
  padding: 7px 9px;
}

.dash-metric-label {
  font-size: 7.5px;
  font-family: var(--font-mono);
  color: #8a928d;
  margin-bottom: 1px;
}

.dash-metric-val {
  font-size: 13px;
  font-weight: 700;
  color: #1a1f1c;
}

.dash-metric-sub {
  font-size: 7px;
  color: #767f7a;
  margin-top: 1px;
}

.dash-copy-link-box {
  background: #f7f8f7;
  border: 1px solid #eceeed;
  border-radius: 8px;
  padding: 7px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.dash-copy-link-title {
  font-family: var(--font-mono);
  font-size: 7px;
  color: #8a928d;
}

.dash-copy-link-url {
  font-size: 11px;
  font-weight: 700;
  color: var(--green-signal);
}

.dash-copy-btn {
  background: var(--green-signal);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

/* Scanner Card style */
.dash-scanner-alert {
  background: #eefbf4;
  border: 1px solid #b8e8d2;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  margin-top: 12px;
}

.dash-scanner-status {
  font-size: 11px;
  font-weight: 700;
  color: var(--green-signal);
  margin-top: 4px;
}

.dash-scanner-ticket-type {
  font-size: 9px;
  color: #767f7a;
  margin-top: 2px;
}

/* ============================================
   TICKET SCANNER WEBAPP STYLES
   ============================================ */
.scanner-url-bar {
  font-family: var(--font-mono);
  font-size: 8px;
  color: #4b5853;
  background: #0f1412;
  border: 1px solid #1c2723;
  border-radius: 12px;
  padding: 4px 10px;
  text-align: center;
  width: calc(100% - 32px);
  margin: 0 auto;
  position: absolute;
  top: 36px;
  left: 16px;
  right: 16px;
  box-sizing: border-box;
  z-index: 10;
}

.scanner-portal-logo {
  width: 44px;
  height: 44px;
  background: #112920;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.scanner-portal-logo svg {
  width: 22px;
  height: 22px;
}

.scanner-spinner {
  width: 10px;
  height: 10px;
  border: 2px solid rgba(43, 201, 143, 0.25);
  border-top-color: var(--green-bright);
  border-radius: 50%;
  display: inline-block;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.scanner-active-header {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: #0b0f0d;
  margin-top: 34px;
  width: 100%;
  box-sizing: border-box;
}

.scanner-portal-logo-mini {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: var(--green-signal);
}

.scanner-header-name {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.scanner-header-sub {
  font-family: var(--font-mono);
  font-size: 6px;
  color: var(--green-bright);
  letter-spacing: 0.05em;
  margin-top: 1px;
}

.scanner-viewfinder {
  position: relative;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.4);
  border-radius: 12px;
  margin: 40px auto 0;
  overflow: hidden;
}

.scanner-laser {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--green-bright);
  box-shadow: 0 0 8px var(--green-bright);
  z-index: 2;
  animation: laser-scan 2.2s ease-in-out infinite;
}

@keyframes laser-scan {
  0%, 100% { top: 0%; }
  50% { top: 100%; }
}

.scanner-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2.5px solid var(--green-bright);
  z-index: 3;
}

.scanner-corner.tl { top: -1px; left: -1px; border-right: none; border-bottom: none; border-top-left-radius: 6px; }
.scanner-corner.tr { top: -1px; right: -1px; border-left: none; border-bottom: none; border-top-right-radius: 6px; }
.scanner-corner.bl { bottom: -1px; left: -1px; border-right: none; border-top: none; border-bottom-left-radius: 6px; }
.scanner-corner.br { bottom: -1px; right: -1px; border-left: none; border-top: none; border-bottom-right-radius: 6px; }

.scanner-sim-qr {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
}

.scanner-success-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #113f2d;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  border: 2px solid var(--green-bright);
  box-shadow: 0 0 15px rgba(43, 201, 143, 0.4);
}

.scanner-check-circle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Custom interactive dashboard cursor simulation */
.dash-cursor {
  position: absolute;
  width: 14px;
  height: 14px;
  fill: #000;
  stroke: #fff;
  stroke-width: 1.5;
  pointer-events: none;
  z-index: 99;
  opacity: 0;
  transition: transform 0.1s ease;
}

/* ============================================
   3D FLOATING CHATS CANVAS (Slide 0)
   ============================================ */
.hero-floating-chats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.floating-bubble {
  position: absolute;
  max-width: 220px;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 11.5px;
  line-height: 1.45;
  font-family: var(--font-body);
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  transition: opacity 0.5s ease;
}

.floating-bubble.bot {
  background: rgba(22, 28, 26, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--ink-primary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top-left-radius: 3px;
}

.floating-bubble.user {
  background: rgba(20, 82, 60, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #d9f5e8;
  border: 1px solid rgba(43, 201, 143, 0.2);
  border-top-right-radius: 3px;
}

/* Glassmorphism styling overrides for nested interactive card types in floating chats */
.floating-bubble .t-btn-card {
  background: rgba(22, 28, 26, 0.65) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.floating-bubble .t-quoted-card {
  background: rgba(20, 82, 60, 0.65) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(43, 201, 143, 0.2) !important;
  border-left: 3px solid #8a7fe8 !important;
}

.floating-bubble .t-ticket-card {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

/* 3D Depth-of-Field variations (adjust blur/scale to stack layered panels beautifully) */
.depth-background {
  filter: blur(3.5px);
  scale: 0.82;
  z-index: 1;
}

.depth-midground {
  filter: blur(0px);
  scale: 1.0;
  z-index: 2;
}

.depth-foreground {
  filter: blur(1.5px);
  scale: 1.18;
  z-index: 3;
}

/* Custom Toggle Switch for Financials Slide */
.dash-toggle-wrap {
  width: 32px;
  height: 18px;
  background: var(--ink-faint);
  border-radius: 9px;
  position: relative;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-block;
  vertical-align: middle;
}
.dash-toggle-wrap.active {
  background: var(--green-signal);
}
.dash-toggle-handle {
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: all 0.25s ease;
}
.dash-toggle-wrap.active .dash-toggle-handle {
  left: 16px;
}
