/* ==========================================================================
   VAVENE BUSINESS & AI — DESIGN SYSTEM (VAVENE SIGNATURE RED #E21C21)
   ========================================================================== */

:root {
  --bg-main: #06070a;
  --bg-card: rgba(18, 20, 28, 0.75);
  --bg-card-hover: rgba(28, 22, 26, 0.9);
  --bg-glass: rgba(14, 12, 16, 0.75);
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(226, 28, 33, 0.4);
  
  --text-primary: #f8fafc;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  
  /* Vavene Official Red Signature Palette */
  --brand-red: #e21c21;
  --brand-red-light: #ff383e;
  --brand-red-dark: #b81216;
  --brand-red-glow: rgba(226, 28, 33, 0.5);
  --brand-red-subtle: rgba(226, 28, 33, 0.12);
  
  --accent-cyan: #ff4d52;
  --accent-indigo: #e21c21;
  --accent-purple: #ff6b70;
  --accent-emerald: #10b981;
  --accent-amber: #f59e0b;

  --accent-gradient: linear-gradient(135deg, #e21c21 0%, #ff383e 50%, #ff6b70 100%);
  --glow-gradient: radial-gradient(circle at 50% 0%, rgba(226, 28, 33, 0.28), transparent 70%);

  --font-sans: -apple-system, BlinkMacSystemFont, "Inter", "SF Pro Display", "Segoe UI", Roboto, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 50px -5px rgba(226, 28, 33, 0.35);
}

/* Reset & Basics */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Ambient Background Glow */
.ambient-glow {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 700px;
  background: radial-gradient(ellipse at 50% -15%, rgba(226, 28, 33, 0.32), rgba(226, 28, 33, 0.08) 50%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.ambient-grid {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 7, 10, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 18px 0;
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo {
  height: 38px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--brand-red-light);
}

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

/* Language Switcher */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3px 4px;
  border-radius: var(--radius-full);
  gap: 2px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
  letter-spacing: 0.03em;
}

.lang-btn:hover {
  background: rgba(226, 28, 33, 0.15);
  color: #ffffff;
}

.lang-btn.active {
  background: var(--brand-red) !important;
  color: #ffffff !important;
  box-shadow: 0 2px 10px rgba(226, 28, 33, 0.45);
}

.lang-btn.lang-btn-ch {
  font-size: 0.75rem;
  padding: 5px 8px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #e21c21 0%, #ff383e 100%);
  color: #ffffff;
  box-shadow: 0 4px 22px -2px rgba(226, 28, 33, 0.55);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ff2329 0%, #ff4d52 100%);
  box-shadow: 0 6px 32px rgba(226, 28, 33, 0.75);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-subtle);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: rgba(226, 28, 33, 0.1);
  border-color: rgba(226, 28, 33, 0.45);
  color: #ff5257;
  transform: translateY(-1px);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* Hero Section */
.hero {
  padding: 90px 0 60px;
  text-align: center;
  position: relative;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(226, 28, 33, 0.12);
  border: 1px solid rgba(226, 28, 33, 0.35);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff5257;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--brand-red);
  box-shadow: 0 0 12px var(--brand-red);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: #ffffff;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #ff7075 45%, #e21c21 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto 36px;
  font-weight: 400;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-cta-hint {
  width: 100%;
  margin-top: 4px;
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  row-gap: 12px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust-item svg {
  color: var(--brand-red);
}

/* Interactive Visualizer / Workflow Showcase */
.showcase {
  margin: 40px auto 80px;
  max-width: 1040px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card), 0 0 50px -10px rgba(226, 28, 33, 0.25);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.showcase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 20px;
  margin-bottom: 28px;
}

.window-dots {
  display: flex;
  gap: 8px;
}

.window-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.dot-red { background: #e21c21; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.showcase-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.workflow-grid {
  display: grid;
  grid-template-columns: 1fr 40px 1.1fr 40px 1.1fr;
  align-items: center;
  gap: 16px;
}

@media (max-width: 900px) {
  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .workflow-arrow {
    transform: rotate(90deg);
    margin: 8px auto;
  }
}

.workflow-card {
  background: rgba(10, 11, 16, 0.9);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  position: relative;
}

.workflow-card.active {
  border-color: var(--brand-red);
  box-shadow: 0 0 30px rgba(226, 28, 33, 0.28);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.step-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.icon-todoist { background: rgba(226, 28, 33, 0.15); color: var(--brand-red); }
.icon-ai { background: rgba(226, 28, 33, 0.15); color: #ff4d52; }
.icon-calendar { background: rgba(226, 28, 33, 0.12); color: #ff6b70; }

.step-name {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.raw-input-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  padding: 12px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 0.84rem;
  color: #cbd5e1;
  line-height: 1.5;
}

.refined-task-box {
  background: rgba(226, 28, 33, 0.06);
  border: 1px solid rgba(226, 28, 33, 0.35);
  padding: 14px;
  border-radius: 8px;
}

.refined-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tag-duration {
  background: var(--brand-red);
  color: #fff;
  font-size: 0.72rem;
  padding: 2px 7px;
  border-radius: 4px;
  font-family: var(--font-mono);
}

.subtasks-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.subtask-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.subtask-check {
  width: 13px;
  height: 13px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.calendar-timebox {
  background: rgba(226, 28, 33, 0.08);
  border-left: 3px solid var(--brand-red);
  padding: 12px;
  border-radius: 4px 8px 8px 4px;
  margin-bottom: 8px;
}

.cal-time {
  font-size: 0.75rem;
  color: #ff4d52;
  font-family: var(--font-mono);
  font-weight: 600;
}

.cal-title {
  font-size: 0.86rem;
  font-weight: 600;
  color: #ffffff;
}

.workflow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-red);
  opacity: 0.8;
}

/* Features Grid */
.features-section {
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-tag {
  font-size: 0.85rem;
  color: var(--brand-red);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(226, 28, 33, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(226, 28, 33, 0.15);
}

.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(226, 28, 33, 0.12);
  border: 1px solid rgba(226, 28, 33, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff4d52;
  margin-bottom: 22px;
}

.feature-card h3 {
  font-size: 1.28rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.6;
}

.feature-bullets {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.feature-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.45;
}

.feature-bullet-icon {
  color: #22c55e;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 1px;
}

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

.demo-source-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #ff4d52;
  background: rgba(226, 28, 33, 0.14);
  border: 1px solid rgba(226, 28, 33, 0.35);
  padding: 2px 9px;
  border-radius: 20px;
  font-family: var(--font-mono);
  transition: all 0.25s ease;
}

/* Security & Architecture Highlights */
.security-banner {
  background: linear-gradient(135deg, rgba(226, 28, 33, 0.12), rgba(20, 22, 28, 0.85));
  border: 1px solid rgba(226, 28, 33, 0.35);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin: 40px 0 80px;
  display: flex;
  align-items: center;
  gap: 32px;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-container {
    flex-wrap: wrap;
    gap: 12px;
  }
  .lang-btn {
    padding: 4px 7px;
    font-size: 0.72rem;
  }
  .security-banner {
    flex-direction: column;
    text-align: center;
  }
}

.security-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(226, 28, 33, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff4d52;
  flex-shrink: 0;
}

.security-content h4 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 8px;
}

.security-content p {
  color: var(--text-secondary);
  font-size: 0.94rem;
}

/* Setup / Onboarding Page Styling */
.setup-container {
  max-width: 680px;
  margin: 50px auto 90px;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid rgba(226, 28, 33, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card), 0 0 50px -10px rgba(226, 28, 33, 0.25);
  backdrop-filter: blur(16px);
}

.form-header {
  text-align: center;
  margin-bottom: 36px;
}

.form-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.form-subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #e2e8f0;
}

.form-label-hint {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-left: 6px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  background: rgba(8, 10, 15, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 0.96rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(226, 28, 33, 0.3);
  background: rgba(18, 14, 18, 0.9);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Weekday Selector */
.weekday-container {
  margin-bottom: 22px;
}
.weekday-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.weekday-chip {
  flex: 1;
  min-width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  user-select: none;
  font-family: inherit;
}
.weekday-chip:hover {
  background: rgba(226, 28, 33, 0.12);
  border-color: rgba(226, 28, 33, 0.4);
  color: #ffffff;
}
.weekday-chip.active {
  background: linear-gradient(135deg, rgba(226, 28, 33, 0.35) 0%, rgba(255, 56, 62, 0.25) 100%);
  border-color: var(--brand-red);
  color: #ffffff;
  box-shadow: 0 0 14px rgba(226, 28, 33, 0.4);
}
.weekday-presets {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.weekday-preset-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  padding: 2px 4px;
  transition: color 0.15s ease;
  font-family: inherit;
}
.weekday-preset-btn:hover {
  color: var(--brand-red-light);
}

.help-box {
  background: rgba(226, 28, 33, 0.08);
  border: 1px solid rgba(226, 28, 33, 0.25);
  border-radius: var(--radius-sm);
  padding: 14px;
  font-size: 0.85rem;
  color: #cbd5e1;
  margin-top: 8px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.help-box svg {
  flex-shrink: 0;
  color: var(--brand-red);
  margin-top: 2px;
}

.help-box a {
  color: #ff5257;
  text-decoration: underline;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.92rem;
  color: #cbd5e1;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--brand-red);
}

.success-card {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(226, 28, 33, 0.15);
  color: var(--brand-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 48px 0 32px;
  margin-top: 80px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--brand-red-light);
}

/* Support Modal */
.support-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.support-modal-backdrop.active {
  display: flex;
  animation: modalFadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.support-modal-card {
  background: #12151f;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65), 0 0 40px rgba(226, 28, 33, 0.15);
  padding: 32px 28px;
  position: relative;
}

.support-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.support-modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.support-modal-subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.support-modal-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.support-modal-close:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.support-direct-box {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.support-direct-box a {
  color: #ff4d52;
  text-decoration: none;
  font-weight: 600;
}

.support-direct-box a:hover {
  text-decoration: underline;
}

/* Floating Support Trigger Button (Bottom Right) */
.floating-support-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 990;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(18, 21, 31, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 28, 33, 0.4);
  border-radius: 9999px;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(226, 28, 33, 0.2);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.floating-support-btn:hover {
  background: rgba(26, 30, 46, 0.95);
  border-color: rgba(226, 28, 33, 0.85);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.6), 0 0 30px rgba(226, 28, 33, 0.4);
}

.floating-support-btn:active {
  transform: translateY(0) scale(0.97);
}

.floating-support-btn:focus-visible {
  outline: 2px solid var(--brand-red);
  outline-offset: 3px;
}

.floating-support-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff4d52;
}

.floating-support-pulse {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #22c55e;
}

@media (max-width: 640px) {
  .floating-support-btn {
    bottom: 16px;
    right: 16px;
    padding: 12px;
    width: 48px;
    height: 48px;
    justify-content: center;
    border-radius: 50%;
  }

  .floating-support-text {
    display: none;
  }

  .floating-support-pulse {
    position: absolute;
    top: 8px;
    right: 8px;
  }
}

/* ==============================================================================
   LIVE BETA SPOTS COUNTER & WAITLIST
   ============================================================================== */
.spot-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(226, 28, 33, 0.12);
  border: 1px solid rgba(226, 28, 33, 0.35);
  border-radius: var(--radius-full);
  font-size: 0.86rem;
  font-weight: 700;
  color: #ff5257;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
  transition: var(--transition);
  box-shadow: 0 0 20px -5px rgba(226, 28, 33, 0.3);
}

.spot-badge.is-full {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.35);
  color: #fbbf24;
  box-shadow: 0 0 20px -5px rgba(245, 158, 11, 0.25);
}

.spot-badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  display: inline-block;
  animation: spotPulse 1.8s infinite;
}

.spot-badge.is-full .spot-badge-pulse {
  background: #f59e0b;
  box-shadow: 0 0 10px #f59e0b;
}

@keyframes spotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.waitlist-card {
  background: var(--bg-card);
  border: 1px solid rgba(226, 28, 33, 0.3);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-xl);
}

.waitlist-pos-box {
  background: rgba(226, 28, 33, 0.08);
  border: 1px solid rgba(226, 28, 33, 0.28);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  margin: 24px 0;
}

