/* =========================================
   BLUNTLEE MARKETING — Pure CSS Design System
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ---- CSS Variables ---- */
:root {
  --bg: #0B0C10;
  --bg-card: #15171E;
  --bg-secondary: #252830;
  --accent: #e41e26;
  --accent-hover: #cc1a21;
  --text: #F5F7FA;
  --text-muted: #9BA3B0;
  --text-dim: #6B7280;
  --border: rgba(255,255,255,0.1);
  --border-subtle: rgba(255,255,255,0.05);
  --radius: 1.5rem;
  --radius-sm: 0.75rem;
  --radius-xl: 2.5rem;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-decorative: 'Playfair Display', serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

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

ul { list-style: none; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #555; }

/* ---- Utilities ---- */
.container {
  /* max-width: 1280px; */
  max-width: 96rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.section { padding: 6rem 0; position: relative; overflow: hidden; }

.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.text-dim { color: var(--text-dim); }

.text-gradient {
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.5) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-accent {
  background: linear-gradient(90deg, #e7000b, #e7000b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-red {
  background: linear-gradient(90deg, #ef4444, #f87171);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass {
  background: rgba(11, 12, 16, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.glass-card {
  background: rgba(21, 23, 30, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.05);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.glass-card:hover {
  background: rgba(21, 23, 30, 0.6);
  border-color: var(--border);
  box-shadow: 0 32px 64px rgba(228,30,38,0.05);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: 9999px;
  padding: 0 2rem;
  height: 3.5rem;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: #fff;
  color: var(--bg);
  box-shadow: 0 0 20px rgba(255,255,255,0.15);
}
.btn-primary:hover {
  background: #e5e7eb;
  box-shadow: 0 0 35px rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), #dc2626);
  color: #fff;
  box-shadow: 0 0 20px rgba(255,50,50,0.4);
}
.btn-accent:hover {
  box-shadow: 0 0 35px rgba(255,50,50,0.6);
  transform: translateY(-2px) scale(1.05);
}

.btn-red {
  background: #dc2626;
  color: #fff;
  border-radius: 30px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  height: 3rem;
  padding: 0 2rem;
  box-shadow: 0 10px 20px rgba(220,38,38,0.2);
}
.btn-red:hover {
  background: #b91c1c;
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }

/* ---- Badge / Pill ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(12px);
}

.pulse-dot {
  position: relative;
  width: 8px;
  height: 8px;
  display: inline-block;
}
.pulse-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #4ade80;
  animation: ping 1.5s ease-in-out infinite;
}
.pulse-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #22c55e;
}
@keyframes ping {
  0% { transform: scale(1); opacity: 0.75; }
  75%, 100% { transform: scale(2); opacity: 0; }
}

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.5rem 0;
  transition: all 0.5s ease;
}

.navbar.scrolled {
  padding: 0.75rem 0;
  background: linear-gradient(to bottom, rgba(17,17,17,0.95), rgba(0,0,0,0.95));
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(255,255,255,0.1);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 1.5rem;
}

.navbar-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: transform 0.2s;
  cursor: pointer;
  filter: url(#logo-filter);
}
.navbar-logo:hover img { transform: scale(1.05); }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.navbar-links a, .navbar-links button {
  padding: 0.5rem 1.25rem;
  /* font-size: 1.125rem; */
  font-size: 1.25rem;
  font-weight: 500;
  color: #d1d5db;
  border-radius: 9999px;
  transition: all 0.3s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.navbar-links a:hover, .navbar-links button:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.navbar-cta { display: flex; align-items: center; gap: 1rem; }
.navbar-cta .btn{font-size: 1.25rem;}

.navbar-menu-btn {
  display: none;
  color: #fff;
  padding: 0.5rem;
  border-radius: 9999px;
  transition: background 0.2s;
  background: none;
  border: none;
}
.navbar-menu-btn:hover { background: rgba(255,255,255,0.1); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(11,12,16,0.97);
  backdrop-filter: blur(40px);
  padding: 7rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}

.mobile-menu-links { display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-menu-links button, .mobile-menu-links a {
  text-align: left;
  font-size: 1.875rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  width: 100%;
  cursor: pointer;
}
.mobile-menu-links button:hover, .mobile-menu-links a:hover {
  color: #fff;
  padding-left: 1rem;
  border-bottom-color: rgba(255,255,255,0.05);
}
.mobile-menu-cta { padding-top: 2rem; }

/* ---- Hero Section ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
  position: relative;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-bg .orb1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: rgba(228,30,38,0.2);
  border-radius: 50%;
  filter: blur(120px);
  mix-blend-mode: screen;
  animation: pulse-slow 4s ease-in-out infinite;
}
.hero-bg .orb2 {
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: rgba(59,130,246,0.1);
  border-radius: 50%;
  filter: blur(120px);
  mix-blend-mode: screen;
}
.hero-bg .orb3 {
  position: absolute;
  top: 40%;
  left: 20%;
  width: 300px;
  height: 300px;
  background: rgba(168,85,247,0.1);
  border-radius: 50%;
  filter: blur(100px);
  mix-blend-mode: screen;
}

@keyframes pulse-slow {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

.hero-content { flex: 1; text-align: center; }

.hero-eyebrow { margin-bottom: 2rem; }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 2rem;
  color: #fff;
  text-transform: uppercase;
}
.hero-subtitle {
  display: block;
  font-size: clamp(1.5rem, 4vw, 4rem);
  color: #d1d5db;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.hero-title {
  display: block;
  font-size: clamp(2.5rem, 8vw, 8rem);
  margin-top: 1rem;
}

.hero-desc {
  font-size: 1.125rem;
  color: #9ca3af;
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
}

.hero-stats {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
}
.stat-item { display: flex; flex-direction: column; }
.stat-value { font-size: 1.875rem; font-weight: 700; font-family: var(--font-display); color: #fff; }
.stat-label { font-size: 0.75rem; color: #6b7280; text-transform: uppercase; letter-spacing: 0.1em; }
.stat-divider { width: 1px; height: 2.5rem; background: rgba(255,255,255,0.1); }
.star-row { display: flex; gap: 1px; color: var(--accent); }
.star-row svg { width: 12px; height: 12px; fill: currentColor; }

.hero-image {
  flex: 1;
  width: 100%;
  max-width: 600px;
  position: relative;
}
.hero-image-wrapper {
  position: relative;
}
.hero-image-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  border-radius: 2.5rem;
  filter: blur(2rem);
  opacity: 0.2;
  transition: opacity 0.5s;
}
.hero-image-wrapper:hover .hero-image-glow { opacity: 0.3; }
.hero-image img {
  position: relative;
  width: 100%;
  border-radius: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 32px 64px rgba(0,0,0,0.5);
}
.hero-float-badge {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(20px);
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float 5s ease-in-out infinite;
  animation-delay: 1s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}
.hero-float-badge .icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(59,130,246,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  flex-shrink: 0;
}
.hero-float-badge .badge-label { font-size: 0.75rem; color: #9ca3af; }
.hero-float-badge .badge-value { font-size: 0.875rem; font-weight: 700; color: #fff; }

/* ---- Section Label ---- */
.section-label {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  display: block;
  margin-bottom: 0.75rem;
}

/* ---- Feature Sections ---- */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  align-items: center;
}

.feature-image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  position: relative;
}
.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.feature-image:hover img { transform: scale(1.05); }

.feature-text h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  color: #fff;
}
.feature-text p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.75;
}

/* Check list */
.check-list { display: flex; flex-direction: column; gap: 1rem; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}
.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(228,30,38,0.2);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Dot list */
.dot-list { display: flex; flex-direction: column; gap: 1rem; }
.dot-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}
.dot-list .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--accent);
}

/* ---- Streaming Section ---- */
.streaming-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.streaming-tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  transition: background 0.2s;
}
.streaming-tag:hover { background: rgba(255,255,255,0.1); }
.live-dot {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: ping-red 1s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(239,68,68,0.8);
}
@keyframes ping-red {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.streaming-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.streaming-card {
  background: rgba(255,255,255,0.05);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
}
.streaming-card h4 { font-size: 1.125rem; margin-bottom: 0.5rem; color: #fff; }
.streaming-card p { font-size: 0.875rem; color: var(--text-muted); }
.streaming-card-icon { margin-bottom: 1rem; color: var(--accent); }

.streaming-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,0.4);
  border: 1px solid var(--border);
}
.streaming-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.streaming-image-wrapper:hover img { transform: scale(1.05); }
.streaming-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); }
.streaming-player {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(20px);
  padding: 1rem;
  border-radius: 0.75rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--border);
  z-index: 2;
}
.play-btn {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: pulse-slow 2s ease-in-out infinite;
  box-shadow: 0 0 16px rgba(228,30,38,0.4);
}
.player-label { font-size: 0.625rem; text-transform: uppercase; opacity: 0.7; letter-spacing: 0.1em; margin-bottom: 2px; }
.player-title { font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.05em; }
.audio-bars {
  margin-left: auto;
  display: flex;
  gap: 2px;
  align-items: flex-end;
  height: 20px;
}
.audio-bar {
  width: 3px;
  background: #fff;
  border-radius: 2px;
  animation: bar-bounce 0.8s ease-in-out infinite alternate;
}
.audio-bar:nth-child(1) { height: 12px; animation-delay: 0ms; }
.audio-bar:nth-child(2) { height: 20px; animation-delay: 100ms; }
.audio-bar:nth-child(3) { height: 8px; animation-delay: 200ms; }
@keyframes bar-bounce {
  from { transform: scaleY(0.5); }
  to { transform: scaleY(1); }
}

/* ---- Token Section ---- */
.token-image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent);
  border: 1px solid var(--border);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.token-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(228,30,38,0.2), transparent);
  opacity: 0.3;
}
.token-image img {
  width: 75%;
  height: 75%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(255,255,255,0.1));
}

.pricing-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(4px);
}
.price { display: flex; align-items: baseline; margin-bottom: 1rem; }
.price-amount { font-size: 2.25rem; font-weight: 700; color: #fff; }
.price-period { font-size: 0.875rem; color: var(--text-muted); margin-left: 0.5rem; }

.check-list-accent li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #e5e7eb;
  margin-bottom: 0.75rem;
}
.check-icon-sm {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 8px rgba(228,30,38,0.3);
}

/* ---- AI Budtenders ---- */
.ai-persona-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border: 1px solid rgba(239,68,68,0.5);
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  color: #fff;
  transition: all 0.2s;
  box-shadow: 0 8px 16px rgba(153,27,27,0.2);
  cursor: pointer;
  width: 100%;
  max-width: 280px;
}
.ai-persona-btn:hover { background: linear-gradient(135deg, #ef4444, #dc2626); }
.persona-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dc2626;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  border: 1px solid #fecaca;
}
.persona-name { font-size: 1rem; font-weight: 700; line-height: 1; margin-bottom: 4px; }
.persona-desc { font-size: 0.625rem; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 500; }

.chat-image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  position: relative;
}
.chat-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.chat-image:hover img { transform: scale(1.05); }
.chat-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,12,16,0.8), transparent 50%);
  z-index: 1;
}
.chat-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.chat-bubble {
  padding: 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  color: #fff;
  max-width: 80%;
}
.chat-bubble.user {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 1rem 1rem 1rem 0;
  align-self: flex-start;
}
.chat-bubble.bot {
  background: #dc2626;
  border-radius: 1rem 1rem 0 1rem;
  align-self: flex-end;
  box-shadow: 0 4px 12px rgba(220,38,38,0.3);
}

/* ---- Gamification ---- */
.game-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.game-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 1rem;
  transition: background 0.2s;
}
.game-card:hover { background: rgba(255,255,255,0.05); }
.game-card-icon {
  background: rgba(255,255,255,0.05);
  padding: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,0.05);
  flex-shrink: 0;
  color: var(--accent);
}
.game-card h4 { font-size: 1.25rem; margin-bottom: 0.25rem; color: #fff; }
.game-card p { font-size: 0.875rem; color: #6b7280; line-height: 1.4; }

/* ---- Safety Section ---- */
.safety-section {
  padding: 5rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.safety-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 32px 64px rgba(0,0,0,0.2);
  backdrop-filter: blur(4px);
  align-items: flex-start;
}
.safety-icon {
  background: rgba(255,255,255,0.1);
  padding: 1rem 1rem 0.5rem;
  border-radius: 1rem;
  flex-shrink: 0;
  width: fit-content;
}
.safety-title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.75rem; color: #fff; font-weight: 700; }
.safety-text { color: var(--text-muted); font-size: 0.875rem; line-height: 1.75; margin-bottom: 1rem; max-width: 56rem; }
.safety-disclaimer { font-size: 0.75rem; color: var(--text-dim); font-style: italic; }

/* ---- FAQ Section ---- */
.faq-header { text-align: center; margin-bottom: 4rem; }
.faq-header h2 { font-size: clamp(1.75rem, 4vw, 3rem); margin-bottom: 1rem; }
.faq-header p { font-size: 1.125rem; color: var(--text-muted); }

.faq-categories { display: flex; flex-direction: column; gap: 2.5rem; }
.faq-category-label {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--accent);
  padding-left: 0.25rem;
  border-left: 4px solid var(--accent);
  padding-left: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 30px;
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item.open {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.2);
}
.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
  font-weight: 500;
  font-family: var(--font-display);
}
.faq-trigger:hover { color: #fff; }
.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--text-muted);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-content { max-height: 500px; }
.faq-content-inner {
  padding: 0 1.25rem 1rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.75;
}
.faq-content-inner ul { list-style: disc; padding-left: 1.25rem; margin-top: 0.5rem; }
.faq-content-inner li { margin-bottom: 0.25rem; }

.faq-cta {
  margin-top: 4rem;
  text-align: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
}
.faq-cta h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.faq-cta p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.faq-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #dc2626;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background 0.2s;
  box-shadow: 0 8px 16px rgba(153,27,27,0.2);
}
.faq-email-btn:hover { background: #b91c1c; }
.faq-note { margin-top: 1.5rem; font-size: 0.75rem; color: var(--text-dim); }

/* ---- Download Band ---- */
.download-band {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--accent), #b91c1c);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.download-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://www.transparenttextures.com/patterns/cubes.png');
  opacity: 0.1;
  mix-blend-mode: overlay;
}
.download-band::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), transparent);
  pointer-events: none;
}
.download-band .container { position: relative; z-index: 1; }
.download-band h2 {
  font-size: clamp(2rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 2rem;
  font-weight: 700;
}
.download-band p {
  font-size: clamp(1rem, 2vw, 1.375rem);
  margin-bottom: 3rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
  font-weight: 300;
  line-height: 1.75;
}

.app-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 5rem;
  padding: 0 2.5rem;
  border-radius: 1rem;
  font-size: 1.125rem;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  text-decoration: none;
}
.app-btn:hover { transform: translateY(-2px); }
.app-btn-apple {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 32px 64px rgba(0,0,0,0.2);
}
.app-btn-apple:hover { background: #f3f4f6; }
.app-btn-google {
  background: rgba(0,0,0,0.3);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(12px);
}
.app-btn-google:hover { background: rgba(0,0,0,0.4); }
.app-btn svg { width: 32px; height: 32px; flex-shrink: 0; }
.app-btn-sub { font-size: 0.75rem; text-transform: uppercase; opacity: 0.8; line-height: 1; margin-bottom: 4px; letter-spacing: 0.1em; font-weight: 700; }
.app-btn-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; line-height: 1; }

/* ---- Footer ---- */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand { max-width: 18rem; }
.footer-logo { height: 64px; object-fit: contain; margin-bottom: 1.5rem; filter: url(#logo-filter);}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.875rem;
  line-height: 1;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.footer-brand img{
  filter: url(#logo-filter);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  flex: 1;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a {
  color: var(--text-muted);
  transition: color 0.2s;
  font-size: 17px;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
  text-align: center;
}

/* ---- Legal Pages ---- */
.legal-page { min-height: 100vh; position: relative; overflow: hidden; }
.legal-bg-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  background: linear-gradient(to bottom, rgba(228,30,38,0.05), transparent);
  pointer-events: none;
}
.legal-bg-bottom {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: rgba(228,30,38,0.05);
  filter: blur(120px);
  border-radius: 50%;
  pointer-events: none;
}

.legal-main { padding: 8rem 0 5rem; position: relative; z-index: 1; }
.legal-header { text-align: center; margin-bottom: 4rem; }
.legal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
  box-shadow: 0 32px 64px rgba(0,0,0,0.3);
  backdrop-filter: blur(12px);
  color: var(--accent);
  position: relative;
}
.legal-icon svg { width: 40px; height: 40px; }
.legal-header h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #fff;
}
.legal-meta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(4px);
}
.legal-meta-dot { width: 6px; height: 6px; background: #22c55e; border-radius: 50%; animation: ping-green 1.5s ease-in-out infinite; }
@keyframes ping-green {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.legal-meta-divider { width: 1px; height: 16px; background: rgba(255,255,255,0.1); }

.legal-card {
  background: rgba(21,23,30,0.4);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 2.5rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.legal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.legal-intro {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
}
.legal-intro p { font-size: 1.125rem; line-height: 1.75; color: #fff; font-weight: 300; }
.legal-badge-strict {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.2);
  padding: 1rem 1.5rem;
  border-radius: 30px;
  flex-shrink: 0;
}
.legal-badge-strict .badge-label { font-size: 0.75rem; font-weight: 700; color: #f87171; text-transform: uppercase; letter-spacing: 0.05em; }
.legal-badge-strict .badge-value { font-weight: 700; color: #fff; }

.legal-section { margin-bottom: 3rem; }
.legal-section-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.section-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.legal-section h3 { font-size: 1.5rem; font-weight: 700; color: #fff; }

.legal-mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-left: 3.5rem; }
.legal-mini-card {
  background: rgba(11,12,16,0.4);
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.05);
}
.legal-mini-card h4 { font-weight: 700; color: #fff; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; }
.legal-mini-card h4 svg { width: 16px; height: 16px; }
.legal-mini-card p { font-size: 0.875rem; color: #9ca3af; }

.legal-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-left: 3.5rem; margin-bottom: 1rem; }
.legal-tag {
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 9999px;
  font-size: 0.875rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s;
}
.legal-tag:hover { background: rgba(255,255,255,0.1); }
.legal-note { font-size: 0.875rem; color: #6b7280; font-style: italic; display: flex; align-items: center; gap: 0.5rem; margin-left: 3.5rem; margin-top: 1rem; }

.legal-alert-box {
  background: rgba(127,29,29,0.2);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: 1rem;
  padding: 2rem;
  margin-left: 1rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
}
.legal-alert-box .alert-bg { position: absolute; top: 0; right: 0; padding: 0.75rem; opacity: 0.1; }
.legal-alert-box h3 { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.legal-alert-box p { color: rgba(254,226,226,0.8); margin-bottom: 1.5rem; }
.alert-action-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.alert-action {
  background: rgba(127,29,29,0.4);
  border: 1px solid rgba(239,68,68,0.3);
  padding: 0.75rem;
  border-radius: 0.75rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fca5a5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.legal-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem 3rem; padding-top: 2rem; }
.legal-mini-section h4 { font-weight: 700; color: #fff; font-size: 1.125rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.legal-mini-section h4 span { color: var(--accent); }
.legal-mini-section p { font-size: 0.875rem; color: #9ca3af; line-height: 1.75; }

.legal-footer-cta {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
}
.legal-footer-cta h3 { font-size: 1.25rem; font-weight: 700; color: #fff; }
.legal-footer-cta p { font-size: 0.875rem; color: #9ca3af; }
.legal-footer-cta a.email-link { color: var(--accent); font-weight: 700; font-size: 1.125rem; transition: color 0.2s; }
.legal-footer-cta a.email-link:hover { color: #fff; }
.legal-footer-cta .address { font-size: 0.75rem; color: #6b7280; margin-top: 0.25rem; }
.legal-copyright { font-size: 0.875rem; color: #6b7280; text-align: center; padding-top: 2rem; border-top: 1px solid var(--border); margin-top: 3rem; }

/* ---- Contact Page ---- */
.contact-page { min-height: 100vh; }
.contact-header { text-align: center; max-width: 56rem; margin: 0 auto 4rem; }
.contact-header h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); margin-bottom: 1.5rem; }
.contact-header p { font-size: 1.25rem; color: var(--text-muted); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 72rem;
  margin: 0 auto;
}

.contact-info-cards { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  backdrop-filter: blur(4px);
}
.contact-info-card h3 { font-size: 1.5rem; margin-bottom: 1.5rem; color: #fff; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 1rem;
  background: rgba(228,30,38,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-info-label { font-size: 14px; color: #6b7280; text-transform: uppercase; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.contact-info-value { font-size: 1.125rem; }

.contact-location-card {
  background: linear-gradient(135deg, rgba(228,30,38,0.2), transparent);
  border: 1px solid rgba(228,30,38,0.2);
  border-radius: 1.5rem;
  padding: 2rem;
  backdrop-filter: blur(4px);
}
.contact-location-card h3 { font-size: 1.5rem; margin-bottom: 1rem; color: #fff; }
.contact-location-card .address { display: flex; align-items: flex-start; gap: 1rem; color: #d1d5db; line-height: 1.75; }
.contact-location-card .address svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }

.contact-form-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  backdrop-filter: blur(4px);
  position: relative;
  overflow: hidden;
}
.contact-form-card::before {
  content: '';
  position: absolute;
  top: -128px;
  right: -128px;
  width: 256px;
  height: 256px;
  background: rgba(228,30,38,0.05);
  border-radius: 50%;
  filter: blur(80px);
}

.form-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.875rem; font-weight: 500; color: var(--text-muted); margin-left: 4px; }
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0 1rem;
  height: 56px;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.form-group input{
  border-radius: 100px;
}
.form-group textarea{
  border-radius: 30px;
}
.form-group textarea { height: 160px; padding: 1rem; resize: none; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #4b5563; }
.form-group input:focus,
.form-group textarea:focus { border-color: rgba(228,30,38,0.5); }

.form-submit {
  width: 100%;
  height: 64px;
  background: linear-gradient(135deg, var(--accent), #dc2626);
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s;
  box-shadow: 0 8px 16px rgba(228,30,38,0.2);
  font-family: var(--font-body);
  border-radius: 30px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(228,30,38,0.3); }
.form-terms { text-align: center; font-size: 0.875rem; color: #6b7280; }
.form-terms a { color: var(--accent); transition: color 0.2s; }
.form-terms a:hover { text-decoration: underline; }

/* ---- Animations (scroll-triggered via JS) ---- */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-right {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animated {
  opacity: 1 !important;
  transform: none !important;
}

/* ---- Responsive ---- */
@media (min-width: 640px) {
  .hero-cta { flex-direction: row; }
  .app-btns { flex-direction: row; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-template-columns: repeat(4, 1fr); }
  .contact-form-card { padding: 3rem; }
}

@media (min-width: 768px) {
  .hero-inner { flex-direction: row; }
  .hero-content { text-align: left; }
  .hero-desc { margin-left: 0; }
  .hero-cta { justify-content: flex-start; }
  .hero-stats { justify-content: flex-start; }

  .feature-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
  /* .feature-alt .feature-image { order: 2; }
  .feature-alt .feature-text { order: 1; } */

  .safety-card { flex-direction: row; }
  .footer-top { flex-direction: row; align-items: flex-start; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }

  .contact-grid { grid-template-columns: 1fr 2fr; }
  .legal-mini-cards { display: grid; grid-template-columns: 1fr 1fr; }
  .legal-intro { flex-direction: row; align-items: flex-start; }
  .legal-footer-cta { flex-direction: row; justify-content: space-between; align-items: center; }
  .legal-footer-cta div { text-align: right; }
}

@media (min-width: 1024px) {
  .navbar-menu-btn { display: none; }
  .navbar-links, .navbar-cta { display: flex; }
}

@media (max-width: 1023px) {
  .navbar-links, .navbar-cta { display: none; }
  .navbar-menu-btn { display: block; }
  .game-cards { grid-template-columns: 1fr; }
  .streaming-cards { grid-template-columns: 1fr; }
  .legal-mini-cards { grid-template-columns: 1fr; }
  .legal-grid-2 { grid-template-columns: 1fr; }
  .alert-action-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-alt .feature-image { order: 1; }
  .feature-alt .feature-text { order: 2; }
  .hero-float-badge { left: -1rem; bottom: -1rem; }
}
