/* ============================================================
   STREAMSTASH — LANDING PAGE STYLES
   ============================================================ */

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --bg:              #0a0a0f;
  --bg-alt:          #0e0e14;
  --primary:         #e11d48;
  --primary-light:   #fb7185;
  --electric:        #ed990e;
  --electric-light:  #f0a646;
  --text:            #e2e2ec;
  --muted:           #6b6b85;
  --border:          rgba(255, 255, 255, 0.05);
  --card:            rgba(255, 255, 255, 0.02);
  --card-hover:      rgba(255, 255, 255, 0.04);

  --font-heading: 'Bricolage Grotesque', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 18px;

  --glow-primary: 0 0 20px rgba(225, 29, 72, 0.2), 0 0 60px rgba(225, 29, 72, 0.06);
  --glow-electric: 0 0 20px rgba(237, 153, 14, 0.25);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }
#pricing { scroll-margin-top: 90px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a    { color: inherit; text-decoration: none; }
img  { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

/* ============================================================
   BACKGROUND EFFECTS
   ============================================================ */

/* Static brand glow — single fixed radial gradient behind everything */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(225, 29, 72, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 90%, rgba(237, 153, 14, 0.05) 0%, transparent 55%);
  z-index: 0;
  pointer-events: none;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.container-narrow { max-width: 740px; }

.section     { padding: 110px 0; position: relative; }
.section-alt { background: var(--bg-alt); }
.section-compact { padding: 70px 0; }

.section + .section::before {
  content: '';
  display: block;
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(225,29,72,0.4), transparent);
  margin: 0 auto 110px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(125deg, var(--primary-light) 20%, var(--electric) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Shimmer sweep on hero gradient text */
.hero-title .gradient-text {
  background: linear-gradient(
    125deg,
    var(--primary-light) 20%,
    var(--electric) 40%,
    rgba(255,255,255,0.9) 50%,
    var(--electric) 60%,
    var(--primary-light) 80%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 100% 0; }
  50%      { background-position: 0% 0; }
}

/* Staggered hero entrance */
.hero-content > * {
  opacity: 0;
  transform: translateY(18px);
  animation: heroFadeIn 0.7s ease forwards;
}
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.25s; }
.hero-content > *:nth-child(3) { animation-delay: 0.4s; }
.hero-content > *:nth-child(4) { animation-delay: 0.55s; }
.hero-content > *:nth-child(5) { animation-delay: 0.7s; }
.hero-content > *:nth-child(6) { animation-delay: 0.85s; }

@keyframes heroFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-sm  { padding: 8px 18px; font-size: 13px; }
.btn-lg  { padding: 15px 30px; font-size: 16px; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: var(--glow-primary);
}
.btn-primary:hover {
  background: #8535ff;
  border-color: #8535ff;
  box-shadow: 0 0 50px rgba(225, 29, 72, 0.6), 0 0 120px rgba(225, 29, 72, 0.2);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: rgba(160, 132, 255, 0.35);
  background: rgba(225, 29, 72, 0.07);
}

.btn-electric {
  background: var(--electric);
  color: #000;
  border-color: var(--electric);
  font-weight: 700;
  box-shadow: var(--glow-electric);
}
.btn-electric:hover {
  background: var(--electric-light);
  border-color: var(--electric-light);
  transform: translateY(-1px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 18px 0;
  transition: padding 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(8, 8, 15, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
  padding: 12px 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.logo-img { width: 28px; height: 28px; object-fit: contain; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.nav-discord {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: rgba(88, 101, 242, 0.12);
  border: 1px solid rgba(88, 101, 242, 0.35);
  color: #a5b0ff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s;
}
.nav-discord:hover {
  background: rgba(88, 101, 242, 0.2);
  border-color: rgba(88, 101, 242, 0.6);
  color: #fff;
}
.nav-discord svg { flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 14px 28px 20px;
  background: rgba(8, 8, 15, 0.96);
  backdrop-filter: blur(24px);
  border-top: 1px solid var(--border);
  gap: 4px;
}
.nav-mobile a {
  padding: 10px 0;
  font-size: 15px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--text); }
.nav-mobile.open { display: flex; }
.nav-mobile a.btn { color: #fff; border-bottom: none; }
.nav-mobile a.btn:hover { color: #fff; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Hero content */
/* Hero stats strip */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 18px;
  padding: 10px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  backdrop-filter: blur(12px);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  white-space: nowrap;
}

.hero-stat strong {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  font-family: 'Bricolage Grotesque', sans-serif;
}

.hero-stat span {
  font-size: 12px;
  color: var(--muted);
}

.hero-stat-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.08);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.scroll-indicator span {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  position: relative;
}

.scroll-dot {
  width: 3px;
  height: 7px;
  background: var(--primary-light);
  border-radius: 3px;
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { opacity: 1; top: 6px; }
  50%      { opacity: 0.3; top: 18px; }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.whats-new {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 5px 5px 5px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  margin-bottom: 14px;
  transition: all 0.2s ease;
}
.whats-new:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(225, 29, 72, 0.35);
  color: #fff;
}
.whats-new-tag {
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  color: #4ade80;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.whats-new-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: whats-new-pulse 2s ease-in-out infinite;
}
@keyframes whats-new-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}
.whats-new-text {
  padding-right: 2px;
}
.whats-new-arrow {
  padding-right: 10px;
  opacity: 0.6;
  transition: transform 0.2s ease;
}
.hero-pills {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 14px;
}
.hero-pills .whats-new { margin-bottom: 0; }
.whats-new-ph:hover {
  border-color: rgba(255, 97, 84, 0.4);
}
.whats-new-tag-ph {
  background: rgba(255, 97, 84, 0.15);
  border-color: rgba(255, 97, 84, 0.35);
  color: #ff8a7e;
}
.whats-new-tag-ph::before {
  background: #ff6154;
  box-shadow: 0 0 8px #ff6154;
}
.whats-new:hover .whats-new-arrow {
  transform: translateX(2px);
  opacity: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: rgba(225, 29, 72, 0.1);
  border: 1px solid rgba(225, 29, 72, 0.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-light);
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  margin-bottom: 12px;
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.72;
  max-width: 460px;
  margin-bottom: 18px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.hero-cta-sub {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.hero-platforms {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-platforms > span {
  font-size: 13px;
  color: var(--muted);
  flex-shrink: 0;
}

.platform-pills { display: flex; flex-wrap: nowrap; gap: 6px; justify-content: inherit; }

.pill {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid;
}
.pill.tiktok    { color: #ff2d55; border-color: rgba(255,45,85,0.28);   background: rgba(255,45,85,0.07); }
.pill.instagram { color: #e1306c; border-color: rgba(225,48,108,0.28); background: rgba(225,48,108,0.07); }
.pill.twitter   { color: #1d9bf0; border-color: rgba(29,155,240,0.28); background: rgba(29,155,240,0.07); }
.pill.telegram  { color: #0088cc; border-color: rgba(0,136,204,0.28);  background: rgba(0,136,204,0.07); }
.pill.reddit    { color: #ff4500; border-color: rgba(255,69,0,0.28);   background: rgba(255,69,0,0.07); }
.pill.snapchat  { color: #f7d000; border-color: rgba(247,208,0,0.28);  background: rgba(247,208,0,0.07); }
.pill.forum     { color: var(--electric); border-color: rgba(237,153,14,0.28); background: rgba(237,153,14,0.07); }
.pill.albums    { color: #a78bfa; border-color: rgba(167,139,250,0.28); background: rgba(167,139,250,0.07); }

/* Tier tag — small inline badge on feature card titles */
.tier-tag {
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 100px;
  background: rgba(225, 29, 72, 0.15);
  border: 1px solid rgba(225, 29, 72, 0.3);
  color: var(--primary-light);
}

/* ============================================================
   HERO VISUAL
   ============================================================ */
.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  margin-right: -180px;
}

.hero-visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(225, 29, 72, 0.12) 0%, rgba(225, 29, 72, 0.04) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(40px);
}

.mockup-scene {
  position: relative;
  width: 130%;
  transform: perspective(1400px) rotateY(var(--tilt-y, 0deg)) rotateX(var(--tilt-x, 0deg));
  transform-style: preserve-3d;
  will-change: transform;
}

@media (pointer: coarse) {
  .mockup-scene {
    transform: none;
    --tilt-x: 0deg;
    --tilt-y: 0deg;
  }
}

/* Floating animation on the window */
@keyframes window-float {
  0%,  100% { transform: translateY(0px); }
  50%        { transform: translateY(-16px); }
}

.mockup-window {
  width: 100%;
  background: #0b0b17;
  border-radius: 12px;
  border: 1px solid rgba(225, 29, 72, 0.22);
  box-shadow:
    0 60px 120px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 80px rgba(225, 29, 72, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  animation: window-float 7s ease-in-out infinite;
  overflow: hidden;
  transform-origin: center center;
}

/* Title bar */
.window-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.025);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}
.chrome-dots { display: flex; gap: 6px; }
.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-red    { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green  { background: #28c840; }
.chrome-title {
  flex: 1;
  text-align: center;
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 500;
}
.chrome-spacer { width: 48px; } /* balance the dots */

/* Window body = sidebar + main */
.window-body {
  display: flex;
  height: 460px;
}

/* --- Sidebar --- */
.app-sidebar {
  width: 158px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.018);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px 0;
  overflow: hidden;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 8px;
}
.sidebar-brand span {
  font-size: 11.5px;
  font-weight: 700;
  font-family: var(--font-heading);
  white-space: nowrap;
}
.sidebar-logo-img { width: 20px; height: 20px; object-fit: contain; flex-shrink: 0; }

.sidebar-nav { display: flex; flex-direction: column; }

.app-sidebar .nav-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6.5px 12px;
  font-size: 11px;
  color: var(--muted);
  transition: all 0.15s;
  cursor: default;
  border-radius: 0;
}
.app-sidebar .nav-item.active {
  color: var(--primary-light);
  background: rgba(225, 29, 72, 0.12);
}
.app-sidebar .nav-item svg { flex-shrink: 0; }

.nav-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin: 5px 12px;
}

/* --- App main --- */
.app-main {
  flex: 1;
  padding: 14px 14px 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 11px;
  min-width: 0;
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-shrink: 0;
}
.app-header-left h2 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.app-header-left p { font-size: 10.5px; color: var(--muted); }
.app-header-right { text-align: right; flex-shrink: 0; }
.app-header-right span { display: block; font-size: 10px; color: var(--muted); margin-bottom: 2px; }
.app-header-right strong { font-size: 13px; font-weight: 700; color: var(--text); }

/* Stat cards row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  flex-shrink: 0;
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 7px;
  padding: 9px 10px 7px;
}
.stat-label { font-size: 9.5px; color: var(--muted); margin-bottom: 3px; }
.stat-value {
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1.1;
  margin-bottom: 5px;
}
.stat-spark { width: 100%; height: 22px; }

.live-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 3px;
}
.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff2d55;
  flex-shrink: 0;
  animation: dot-pulse 1.6s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.75); }
}
.live-label { font-size: 9.5px; color: #ff2d55; font-weight: 600; }

/* Platform section */
.app-section-title {
  font-size: 9.5px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.platform-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  flex: 1;
  align-content: start;
}

.plat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: 2px solid var(--accent, #e11d48);
  border-radius: 6px;
  padding: 7px 8px 5px;
}
.plat-name  { font-size: 8.5px; color: var(--muted); margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.plat-count { font-size: 12px; font-weight: 700; margin-bottom: 4px; }
.plat-card svg { width: 100%; height: 13px; }

/* ============================================================
   FLOATING BADGES
   ============================================================ */
.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(11, 11, 23, 0.92);
  border: 1px solid rgba(225, 29, 72, 0.22);
  border-radius: 11px;
  padding: 10px 16px 10px 12px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255,255,255,0.04);
  z-index: 10;
  white-space: nowrap;
}

.badge-storage {
  top: 14%;
  right: 22%;
  animation: badge-float-a 5.5s ease-in-out infinite;
}
.badge-platforms {
  bottom: 12%;
  left: 22%;
  animation: badge-float-b 5.5s ease-in-out infinite 1.8s;
}

@keyframes badge-float-a {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-9px); }
}
@keyframes badge-float-b {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(9px); }
}

.badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(225, 29, 72, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  flex-shrink: 0;
}
.badge-icon-electric {
  background: rgba(237, 153, 14, 0.14);
  color: var(--electric);
}
.badge-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.badge-text span { font-size: 11px; color: var(--muted); }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-badge {
  display: inline-block;
  padding: 4px 13px;
  background: rgba(225, 29, 72, 0.1);
  border: 1px solid rgba(225, 29, 72, 0.25);
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.section-header h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 14px;
}
.section-header p { font-size: 17px; color: var(--muted); }

/* ============================================================
   FEATURES
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.features-note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 32px;
}
.features-note a {
  color: var(--primary-light);
  text-decoration: none;
  border-bottom: 1px dashed rgba(225,29,72,0.4);
  transition: border-color 0.2s;
}
.features-note a:hover { border-color: var(--primary-light); }

/* ============================================================
   AUDIENCE
   ============================================================ */
.audience-section {
  background: rgba(255, 255, 255, 0.015);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.audience-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.audience-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 9px;
}

.audience-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.feature-card:hover {
  background: var(--card-hover);
  border-color: rgba(225, 29, 72, 0.22);
  transform: translateY(-3px);
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: rgba(225, 29, 72, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  margin-bottom: 18px;
  flex-shrink: 0;
}
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.feature-card p  { font-size: 14.5px; color: var(--muted); line-height: 1.68; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-card-featured {
  background: rgba(225, 29, 72, 0.055);
  border-color: rgba(225, 29, 72, 0.3);
  box-shadow: var(--glow-primary);
}
.pricing-card-featured:has(.btn-primary:hover) {
  transform: translateY(-4px);
  border-color: rgba(225, 29, 72, 0.5);
  box-shadow:
    0 0 0 1px rgba(225, 29, 72, 0.25),
    0 20px 50px -10px rgba(225, 29, 72, 0.45),
    0 0 80px -10px rgba(225, 29, 72, 0.35),
    var(--glow-primary);
}

.pricing-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 15px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 6px;
}
.price-amount {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.price-period { font-size: 14px; color: var(--muted); }

.pricing-alt {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}
.pricing-alt-warning { color: var(--electric); font-weight: 500; }

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
}
.pricing-feature.muted { color: var(--muted); }

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 30px;
}

/* ============================================================
   BETA CALLOUT
   ============================================================ */
.beta-callout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: center;
  background: rgba(225, 29, 72, 0.06);
  border: 1px solid rgba(225, 29, 72, 0.2);
  border-radius: 20px;
  padding: 48px;
  margin-top: 20px;
}

.beta-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(225, 29, 72, 0.15);
  border: 1px solid rgba(225, 29, 72, 0.3);
  color: var(--primary-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.beta-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-light);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.beta-callout h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text);
}

.beta-callout > .beta-callout-left > p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 480px;
}

.beta-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.beta-perks li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--text);
}

.beta-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px !important;
  margin-bottom: 0 !important;
}

/* Right side — tier preview */
.beta-tiers {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.beta-tier {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.beta-tier-top {
  border-color: rgba(225, 29, 72, 0.35);
  background: rgba(225, 29, 72, 0.07);
}

.beta-tier-badge {
  position: absolute;
  top: -10px;
  right: 16px;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}

.beta-tier-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.beta-tier-price {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
}

.beta-tier-sub {
  font-size: 11px;
  color: var(--muted);
}

.price-redact {
  position: relative;
  color: transparent;
  display: inline-block;
}
.price-redact::after {
  content: '';
  position: absolute;
  inset: 20% -4px;
  background: var(--muted);
  border-radius: 3px;
  opacity: 0.4;
}

.beta-tiers-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}

@media (max-width: 900px) {
  .beta-callout {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 32px;
  }
  .beta-tiers { flex-direction: row; }
  .beta-tier { flex: 1; flex-direction: column; align-items: flex-start; gap: 4px; }
}

@media (max-width: 520px) {
  .beta-callout { padding: 24px; }
  .beta-tiers { flex-direction: column; }
  .beta-callout h3 { font-size: 24px; }
}

/* Comparison table */
.pricing-comparison {
  max-width: 780px;
  margin: 48px auto 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.comparison-table thead {
  background: rgba(255,255,255,0.02);
}

.comparison-table th {
  padding: 14px 20px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.comparison-table th:first-child {
  text-align: left;
  color: var(--text);
}

.comparison-table td {
  padding: 11px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}

.comparison-table td:first-child {
  text-align: left;
  color: var(--text);
  font-weight: 500;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table .col-highlight {
  background: rgba(225, 29, 72, 0.04);
}

.comparison-table th.col-highlight {
  color: var(--primary-light);
}

.comparison-table .check {
  color: #28c840;
  font-size: 18px;
  font-weight: 700;
}

.comparison-table .cross {
  color: #444;
  font-size: 18px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-section { border-bottom: 1px solid var(--border); }
.faq-section:last-child { border-bottom: none; }

.faq-subhead {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-light);
  background: rgba(225, 29, 72, 0.06);
  padding: 14px 22px;
  margin: 0;
  border: none;
  border-bottom: 1px solid var(--border);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.faq-subhead:hover { background: rgba(225, 29, 72, 0.1); }
.faq-section:not(.open) .faq-subhead { border-bottom: none; }

.faq-chevron {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq-section:not(.open) .faq-chevron { transform: rotate(-90deg); }

.faq-section-items {
  overflow: hidden;
  max-height: 2000px;
  transition: max-height 0.35s ease;
}
.faq-section:not(.open) .faq-section-items {
  max-height: 0;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--card);
  transition: background 0.2s;
}
.faq-question:hover { background: var(--card-hover); }

.faq-question::after {
  content: '+';
  font-size: 22px;
  color: var(--primary-light);
  flex-shrink: 0;
  margin-left: 20px;
  font-weight: 300;
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  background: var(--card);
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}
.faq-answer p { font-size: 14.5px; color: var(--muted); line-height: 1.72; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 44px 0;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

/* ============================================================
   GUIDES SECTION
   ============================================================ */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Compact guide pills */
.guides-compact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.guide-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 24px;
  background: rgba(225, 29, 72, 0.06);
  border: 1px solid rgba(225, 29, 72, 0.22);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.guide-pill:hover {
  background: rgba(225, 29, 72, 0.14);
  border-color: rgba(225, 29, 72, 0.5);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.15);
}
.guide-pill svg {
  flex-shrink: 0;
  color: var(--primary-light);
}
.guide-pill:hover svg {
  color: #fff;
}

@media (max-width: 520px) {
  .guide-pill { padding: 9px 16px; font-size: 13px; }
}

.guide-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.25s;
  cursor: pointer;
}

.guide-card:hover {
  border-color: rgba(225, 29, 72, 0.25);
  background: var(--card-hover);
  transform: translateY(-2px);
}

.guide-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(225, 29, 72, 0.1);
  border: 1px solid rgba(225, 29, 72, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--primary-light);
}

.guide-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.guide-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.guide-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-light);
  transition: color 0.2s;
}

.guide-card:hover .guide-link {
  color: var(--primary);
}

/* ============================================================
   HERO SCREENSHOT
   ============================================================ */
.hero-screenshot {
  width: 100%;
  display: block;
  border-radius: 12px;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.6)) drop-shadow(0 0 40px rgba(225,29,72,0.08));
  animation: hero-float 6s ease-in-out infinite;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* ============================================================
   SCREENSHOTS SECTION
   ============================================================ */
.ss-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.ss-tab {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.08);
  background: transparent;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.ss-tab:hover {
  border-color: rgba(225,29,72,0.4);
  color: var(--text);
}

.ss-tab.active {
  background: rgba(225,29,72,0.15);
  border-color: rgba(225,29,72,0.5);
  color: #fff;
}

.ss-preview {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(225,29,72,0.2),
    0 40px 100px rgba(0,0,0,0.5),
    0 0 80px rgba(225,29,72,0.08);
}

.ss-img {
  width: 100%;
  display: none;
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.ss-img.active {
  display: block;
  opacity: 1;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.gallery-tab {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}
.gallery-tab:hover {
  border-color: rgba(225,29,72,0.4);
  color: var(--text);
}
.gallery-tab.active {
  background: rgba(225,29,72,0.15);
  border-color: rgba(225,29,72,0.5);
  color: var(--primary-light);
}

.gallery-stage {
  position: relative;
  border-radius: 16px;
  aspect-ratio: 1440 / 745;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5)) drop-shadow(0 0 40px rgba(225,29,72,0.08));
}

.gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.gallery-img.active {
  opacity: 1;
  pointer-events: auto;
}

.gallery-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 20px;
  font-style: italic;
}
.gallery-hint {
  display: inline-block;
  margin-left: 4px;
  color: var(--primary-light);
  font-style: normal;
}

/* Click cursor on gallery images */
.gallery-img.active { cursor: zoom-in; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: zoom-out;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.lightbox.open {
  display: flex;
  opacity: 1;
}

.lightbox-frame {
  position: relative;
  display: inline-flex;
  max-width: calc(100% - 170px);
  max-height: 100%;
  animation: lightbox-zoom 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.lightbox-img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 80px);
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 80px rgba(225, 29, 72, 0.15);
  cursor: default;
}

@keyframes lightbox-zoom {
  from { transform: scale(0.94); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.lightbox-arrow:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.25);
}
.lightbox-prev { left: -76px; }
.lightbox-next { right: -76px; }
.lightbox-prev:hover { transform: translateY(-50%) translateX(-2px); }
.lightbox-next:hover { transform: translateY(-50%) translateX(2px); }

body.lightbox-open { overflow: hidden; }

@media (max-width: 520px) {
  .lightbox { padding: 16px; }
  .lightbox-close { top: 12px; right: 12px; width: 38px; height: 38px; }
  .lightbox-frame { max-width: 100%; }
  .lightbox-arrow { width: 42px; height: 42px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

@media (max-width: 520px) {
  .gallery-tab { padding: 7px 14px; font-size: 13px; }
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
}

.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

/* ============================================================
   FROM THE DEV — personal note section
   ============================================================ */
.dev-note {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: 14px;
  padding: 36px 40px;
  position: relative;
}

.dev-note p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 14px;
}
.dev-note p:last-child { margin-bottom: 0; }
.dev-note p strong { color: #fff; font-weight: 600; }
.dev-note a {
  color: var(--primary-light);
  text-decoration: none;
  border-bottom: 1px dashed rgba(225,29,72,0.4);
  transition: border-color 0.2s;
}
.dev-note a:hover { border-color: var(--primary-light); }

@media (max-width: 520px) {
  .dev-note { padding: 28px 24px; }
  .dev-note p { font-size: 14px; }
}

/* ============================================================
   COMMUNITY SECTION
   ============================================================ */
.community-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: radial-gradient(ellipse at top, rgba(88, 101, 242, 0.12) 0%, rgba(88, 101, 242, 0.03) 50%, transparent 80%);
  border: 1px solid rgba(88, 101, 242, 0.25);
  border-radius: 24px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}

.community-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 22px;
  background: #5865F2;
  color: #fff;
  margin-bottom: 24px;
  box-shadow: 0 12px 32px rgba(88, 101, 242, 0.4), 0 0 60px rgba(88, 101, 242, 0.25);
}

.community-card h2 {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.1;
}

.community-card > p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 28px;
}

.community-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: 0 auto 32px;
  padding: 0;
  width: fit-content;
}
.community-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

.community-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: #5865F2;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 8px 24px rgba(88, 101, 242, 0.35);
}
.community-cta:hover {
  background: #4752c4;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(88, 101, 242, 0.45);
}

.community-note {
  margin-top: 16px !important;
  font-size: 12px !important;
  color: var(--muted);
  letter-spacing: 0.02em;
}

@media (max-width: 520px) {
  .community-card { padding: 40px 24px; border-radius: 18px; }
  .community-card h2 { font-size: 28px; }
  .community-icon { width: 64px; height: 64px; }
  .community-icon svg { width: 36px; height: 36px; }
}

.footer-discord {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #5865F2;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s;
}
.footer-discord:hover {
  background: #4752c4;
  transform: translateY(-1px);
}
.footer-discord svg { flex-shrink: 0; }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-legal {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 820px;
}
.footer-copy { font-size: 12px; color: rgba(120, 120, 160, 0.45); }
.footer-badges {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.footer-badge {
  display: inline-block;
  opacity: 0.5;
  transition: opacity 0.2s ease;
  line-height: 0;
}
.footer-badge:hover { opacity: 0.95; }
.footer-badge img { display: block; height: 36px; width: auto; }

/* ============================================================
   SCROLL-IN ANIMATIONS
   ============================================================ */
.anim-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   PRICING TOGGLE
   ============================================================ */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 44px;
}

.toggle-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.toggle-save {
  padding: 2px 9px;
  background: rgba(237, 153, 14, 0.12);
  border: 1px solid rgba(237, 153, 14, 0.28);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--electric);
}

.toggle-switch {
  width: 46px;
  height: 26px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  border: 1px solid var(--border);
  position: relative;
  transition: background 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
  flex-shrink: 0;
}
.toggle-switch.active {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: var(--glow-primary);
}

.toggle-thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.25s ease;
  pointer-events: none;
}
.toggle-switch.active .toggle-thumb {
  transform: translateX(20px);
}

/* ============================================================
   INSTALL / DOWNLOAD SECTION
   ============================================================ */
.disclaimer-banner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(237, 153, 14, 0.06);
  border: 1px solid rgba(237, 153, 14, 0.3);
  border-radius: 14px;
  padding: 20px 24px;
  margin: 0 auto 32px;
  max-width: 920px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
}
.disclaimer-banner strong { color: #fbbf24; font-weight: 600; }
.disclaimer-icon {
  flex-shrink: 0;
  color: #fbbf24;
  margin-top: 2px;
}

@media (max-width: 520px) {
  .disclaimer-banner { padding: 16px 18px; gap: 12px; font-size: 13px; }
  .disclaimer-icon { width: 18px; height: 18px; }
}

/* ============================================================
   INSTALL INFO — availability + security block in pricing
   ============================================================ */
.install-info {
  max-width: 920px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.install-info-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
}

.install-info-label {
  color: var(--muted);
  font-weight: 500;
  margin-right: 4px;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid;
}
.platform-badge-ready {
  color: #4ade80;
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.08);
}
.platform-badge-soon {
  color: #fbbf24;
  border-color: rgba(237, 153, 14, 0.3);
  background: rgba(237, 153, 14, 0.06);
  opacity: 0.85;
}

.install-info .vt-row { margin-top: 2px; }
.install-info .vt-row > svg { flex-shrink: 0; }

.install-info .smartscreen-notice { margin: 6px auto 0; }

@media (max-width: 520px) {
  .install-info-row { font-size: 12px; }
  .install-info-label { width: 100%; text-align: center; margin: 0 0 4px; }
  .platform-badge { font-size: 11px; padding: 4px 10px; }
}

.install-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

/* VirusTotal scan pills */
.vt-scans {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 20px;
  max-width: 920px;
  font-size: 13px;
}
.vt-label {
  color: var(--muted);
  font-weight: 500;
  margin-right: 4px;
}
.vt-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 100px;
  color: #4ade80;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.vt-pill:hover {
  background: rgba(34, 197, 94, 0.18);
  border-color: rgba(34, 197, 94, 0.5);
  transform: translateY(-1px);
}

/* Hero stat VirusTotal link */
.hero-stat-link {
  text-decoration: none;
  transition: opacity 0.2s;
}
.hero-stat-link:hover { opacity: 0.8; }
.hero-stat-link strong {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #4ade80;
}

@media (max-width: 520px) {
  .vt-scans { flex-wrap: wrap; justify-content: center; }
  .vt-label { width: 100%; text-align: center; margin-right: 0; margin-bottom: 4px; }
}

.smartscreen-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(96, 165, 250, 0.06);
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 12px;
  padding: 14px 18px;
  margin: 0 auto 20px;
  max-width: 920px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
}
.smartscreen-notice strong { color: #93c5fd; font-weight: 600; }
.smartscreen-notice em { color: rgba(255,255,255,0.9); font-style: italic; }
.smartscreen-notice svg { flex-shrink: 0; color: #93c5fd; margin-top: 1px; }

@media (max-width: 520px) {
  .smartscreen-notice { padding: 12px 14px; font-size: 12px; }
}

.install-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  position: relative;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.install-card-soon { opacity: 0.65; }
.install-card-soon:hover { transform: none; background: var(--card); }
.install-card-soon .install-icon { opacity: 0.7; }
.install-card-soon .btn[disabled] {
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}

.install-soon-badge,
.guide-soon-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(237, 153, 14, 0.15);
  border: 1px solid rgba(237, 153, 14, 0.35);
  color: #fbbf24;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 100px;
}

.guide-card-soon {
  position: relative;
  opacity: 0.7;
  cursor: default;
}
.guide-card-soon:hover { transform: none; background: var(--card); }
.guide-link-muted { color: var(--muted) !important; }

.homelab-option-soon { opacity: 0.55; }
.homelab-option-soon .homelab-sub { font-style: italic; }

.homelab-soon-tag {
  display: inline-block;
  margin-left: 8px;
  background: rgba(237, 153, 14, 0.15);
  border: 1px solid rgba(237, 153, 14, 0.35);
  color: #fbbf24;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 100px;
  vertical-align: middle;
}
.install-card:hover {
  background: var(--card-hover);
  transform: translateY(-2px);
}

.install-card-featured {
  background: rgba(225, 29, 72, 0.055);
  border-color: rgba(225, 29, 72, 0.28);
  box-shadow: var(--glow-primary);
}

.install-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  margin-bottom: 4px;
}
.install-icon-muted { color: var(--muted); }

.install-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
}

.install-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: -4px;
  margin-bottom: 6px;
}

.install-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

/* Homelab strip */
.install-homelab {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 28px;
}

.homelab-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 16px;
}

.homelab-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.homelab-option {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, border-color 0.2s ease;
  cursor: default;
}
.homelab-option:hover {
  background: rgba(225, 29, 72, 0.07);
  border-color: rgba(225, 29, 72, 0.2);
}

.homelab-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.homelab-option code {
  font-size: 11px;
  color: var(--primary-light);
  font-family: 'Geist Mono', 'Courier New', monospace;
  word-break: break-all;
}

.homelab-sub {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

/* ============================================================
   RESPONSIVE — WIDE SCREENS (≥1600px)
   ============================================================ */
@media (min-width: 1600px) {
  .hero-inner { max-width: 1500px; }
  .hero-visual { margin-right: -120px; }
  .mockup-scene { width: 118%; }
}

@media (min-width: 2000px) {
  .hero-inner { max-width: 1700px; }
  .hero-visual { margin-right: -40px; }
  .mockup-scene { width: 108%; }
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .guides-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-inner { grid-template-columns: 1fr 1.7fr; gap: 28px; }
  .hero-visual { margin-right: -80px; }
  .mockup-scene { width: 120%; }
}

/* ============================================================
   RESPONSIVE — SMALL TABLET / LARGE PHONE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .hero-content { align-items: center; }
  .hero-pills { align-items: center; }
  .hero-sub { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .hero-cta-sub { text-align: center; }
  .hero-platforms { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual {
    margin-right: 0;
    justify-content: center;
  }
  .mockup-scene { width: 90%; }

  /* Hide floating badges on mobile */
  .float-badge { display: none; }

  /* Scroll indicator */
  .scroll-indicator { bottom: 16px; }

  /* Nav */
  .nav-links { display: none; }
  .nav .btn-sm { display: none; }
  .nav-actions { display: none; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-toggle { display: flex; justify-self: end; margin-left: 0; }

  /* Grids */
  .features-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .guides-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card-featured { order: -1; }
  .install-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 18px; }
  .homelab-options { grid-template-columns: repeat(2, 1fr); }

  /* Comparison table */
  .pricing-comparison { max-width: 100%; overflow-x: auto; }
  .comparison-table { min-width: 500px; }

  /* Section spacing */
  .section { padding: 80px 0; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
  .footer { padding: 44px 0 calc(44px + env(safe-area-inset-bottom, 0px)); }
}

/* ============================================================
   RESPONSIVE — PHONE (≤520px)
   ============================================================ */
@media (max-width: 520px) {
  .hero { padding: 90px 0 48px; min-height: auto; }
  .hero-title { font-size: 32px; }
  .hero-sub { font-size: 15px; }
  .hero-badge { font-size: 11px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .hero-stats {
    flex-wrap: wrap;
    gap: 10px 14px;
    padding: 14px 18px;
    max-width: 100%;
  }
  .hero-stat-divider { display: none; }
  .hero-stats .hero-stat { flex: 1 1 40%; min-width: 0; }
  .hero-stat strong { font-size: 15px; }
  .hero-stat span { font-size: 11px; }

  /* Platform pills — allow wrap on phone */
  .platform-pills { flex-wrap: wrap; gap: 6px; justify-content: center; }
  .hero-platforms { flex-direction: column; gap: 8px; }
  .hero-platforms > span { display: block; }

  .mockup-scene { width: 100%; }

  .section { padding: 60px 0; }
  .section-header h2 { font-size: 26px; }
  .section-header p { font-size: 15px; }

  .homelab-options { grid-template-columns: 1fr; }

  .footer-copy { font-size: 12px; }
  .footer-legal { font-size: 11px; }

  /* Pill text */
  .pill { font-size: 10px; padding: 3px 8px; }

  /* What's new pill — prevent overflow on narrow screens */
  .whats-new { font-size: 11px; max-width: 100%; flex-wrap: wrap; justify-content: center; padding: 4px; }
  .whats-new-text { font-size: 11px; }
  .whats-new-tag { font-size: 9px; padding: 2px 8px; }
}
