/* ==========================================================================
   POW! Landing Page — Premium Redesigned Stylesheet
   Modern glassmorphism, vibrant gradients, micro-animations, and rich aesthetics.
   ========================================================================== */

/* --- CSS VARIABLES & TOKENS --- */
:root {
  --bg-main: #090d16;
  --bg-surface: #121826;
  --bg-surface-glass: rgba(18, 24, 38, 0.75);
  --bg-surface-glass-hover: rgba(26, 36, 56, 0.85);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(10, 132, 255, 0.3);

  --primary: #0a84ff;
  --primary-dark: #0066cc;
  --primary-glow: rgba(10, 132, 255, 0.25);
  --accent-cyan: #30c7ff;
  --accent-indigo: #6366f1;
  --purple: #a855f7;
  --purple-glow: rgba(168, 85, 247, 0.2);
  --success: #30d158;
  --warning: #ffd60a;
  --danger: #ff453a;

  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --font-family-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-family-head: 'Plus Jakarta Sans', var(--font-family-sans);

  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-premium: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-elevated: 0 25px 60px -15px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 35px 0 rgba(10, 132, 255, 0.25);
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* --- BASE STYLES --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-main);
  color: var(--text-secondary);
  font-family: var(--font-family-sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  background-color: var(--bg-main);
}

/* --- CUSTOM SCROLLBAR --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 100px;
}
::-webkit-scrollbar-thumb:hover {
  background: #475569;
}

/* --- LAYOUT UTILITIES --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 7rem 0;
  position: relative;
  z-index: 10;
}

/* --- DYNAMIC GLOWING BACKGROUNDS --- */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(130px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  will-change: transform;
}
.blob-1 {
  top: -10%;
  right: -5%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  animation: blobFloat1 18s ease-in-out infinite;
}
.blob-2 {
  top: 35%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
  animation: blobFloat2 22s ease-in-out infinite;
}
.blob-3 {
  bottom: -10%;
  left: 15%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
  animation: blobFloat1 20s ease-in-out infinite reverse;
}

@keyframes blobFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-30px, 40px) scale(1.05); }
  66% { transform: translate(20px, -20px) scale(0.95); }
}
@keyframes blobFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.08); }
  66% { transform: translate(-20px, 30px) scale(0.96); }
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  color: var(--text-primary);
  font-family: var(--font-family-head);
  font-weight: 700;
  line-height: 1.15;
}
h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 30%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
p {
  line-height: 1.7;
}

/* --- HEADER --- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 13, 22, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-glass);
  padding: 0.75rem 0;
  transition: var(--transition-smooth);
}

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

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(18, 24, 38, 0.9);
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 12px rgba(10, 132, 255, 0.3);
  transition: var(--transition-bounce);
}
.header-logo:hover {
  transform: rotate(-5deg) scale(1.05);
}

.logo-text {
  font-family: var(--font-family-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.created-by-text {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  letter-spacing: 0;
}

nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  transition: var(--transition-smooth);
  padding: 0.25rem 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--purple));
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link:hover {
  color: var(--primary);
}
.nav-link:hover::after {
  width: 100%;
}

/* --- CTA AREA --- */
.cta-area {
  display: flex;
  align-items: center;
}

.btn-chrome-store {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-indigo) 100%);
  background-size: 200% 200%;
  color: #ffffff;
  padding: 0.6rem 1.25rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.85rem;
  font-family: var(--font-family-sans);
  box-shadow: 0 4px 14px rgba(10, 132, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition-smooth);
  animation: gradientShift 4s ease infinite;
}
.btn-chrome-store:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 132, 255, 0.5);
}
.btn-chrome-store:active {
  transform: translateY(0);
}
.btn-chrome-store .chrome-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

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

/* --- SHARED ICON STYLES --- */
.chrome-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.chrome-icon-sm {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* --- BUTTONS --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-indigo) 50%, var(--purple) 100%);
  background-size: 200% 200%;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  font-family: var(--font-family-sans);
  box-shadow:
    0 8px 25px rgba(10, 132, 255, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  border: none;
  transition: var(--transition-smooth);
  animation: gradientShift 4s ease infinite;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}
.btn-primary:hover::before {
  left: 100%;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 30px rgba(10, 132, 255, 0.6),
    0 0 50px 0 rgba(168, 85, 247, 0.25);
}
.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-surface-glass);
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
  padding: 0.65rem 1.25rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  font-family: var(--font-family-sans);
  transition: var(--transition-smooth);
}
.btn-secondary:hover {
  background: var(--bg-surface-glass-hover);
  border-color: var(--border-glow);
  transform: translateY(-1px);
}

.btn-watch-video {
  background: rgba(255, 0, 0, 0.08);
  border: 1px solid rgba(255, 69, 58, 0.25);
  color: #ff5f56;
}
.btn-watch-video:hover {
  background: rgba(255, 0, 0, 0.16);
  border-color: rgba(255, 69, 58, 0.5);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(255, 69, 58, 0.25);
}
.play-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-smooth);
  font-family: var(--font-family-sans);
}
.btn-text:hover {
  color: var(--accent-cyan);
}
.btn-text:hover .arrow-down-icon {
  transform: translateY(3px);
}

.download-icon {
  width: 22px;
  height: 22px;
}
.arrow-down-icon {
  width: 18px;
  height: 18px;
  transition: var(--transition-smooth);
}

/* --- HERO SECTION --- */
.hero {
  padding-top: 5rem;
  padding-bottom: 6rem;
}
.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.badge-new {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-surface-glass);
  color: var(--accent-cyan);
  border: 1px solid var(--border-glow);
  padding: 0.45rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-glow);
  animation: badgePulse 3s ease-in-out infinite;
}
.badge-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--warning);
  fill: var(--warning);
  stroke: var(--warning);
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 35px rgba(10, 132, 255, 0.25); }
  50% { box-shadow: 0 0 45px rgba(10, 132, 255, 0.4); }
}

.highlight {
  background: linear-gradient(135deg, var(--primary), var(--accent-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.hero-desc {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  gap: 3.5rem;
  border-top: 1px solid var(--border-glass);
  padding-top: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: var(--font-family-head);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff, var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
  font-weight: 500;
}

/* --- HERO GUI MOCKUP --- */
.hero-visual {
  perspective: 1200px;
}

.mockup-window {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  box-shadow:
    var(--shadow-elevated),
    0 40px 80px -20px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform: rotateY(-4deg) rotateX(3deg);
}
.mockup-window:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.mockup-header {
  background: #182030;
  border-bottom: 1px solid var(--border-glass);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.mockup-title {
  margin-left: auto;
  margin-right: auto;
  font-size: 0.75rem;
  color: var(--text-dim);
  font-family: monospace;
}

.mockup-body {
  padding: 1.25rem;
  background: #0d121d;
}

/* --- Simulated Extension Panel --- */
.panel-preview {
  background: #121826;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

/* ── WUNDERLIST THEME MOCKUP ── */
.wunder-mock {
  display: flex;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 13px;
  background: #121826;
  border-radius: 6px;
  overflow: hidden;
  line-height: 1.4;
  color: #333;
  width: 100%;
  height: 400px;
  padding: 0 !important;
  border: none !important;
}

.wunder-window-bar {
  display: flex;
  align-items: center;
  height: 38px;
  background: linear-gradient(to bottom, #1e283d 0%, #151d2d 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 12px;
  position: relative;
  flex-shrink: 0;
}

.wunder-title {
  width: 100%;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #cbd5e1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.wunder-close {
  position: absolute;
  right: 12px;
  color: #64748b;
  font-size: 14px;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}
.wunder-close:hover {
  color: #f8fafc;
}

.wunder-content {
  display: flex;
  flex: 1;
  height: calc(100% - 82px);
  text-align: left;
  overflow: hidden;
}

.wunder-main-pane {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: #5cbddb;
  position: relative;
  overflow: hidden;
}

.wunder-bg-anim {
  background: linear-gradient(-45deg, #10b981, #3b82f6, #059669, #8b5cf6, #10b981) !important;
  background-size: 400% 400% !important;
  animation: wunderGradientMove 4s ease infinite;
}

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

.wunder-pane-header {
  padding: 16px 20px 8px;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.wunder-pane-title {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

.wunder-log-container {
  flex: 1;
  padding: 8px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

.wunder-row {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 4px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}
.wunder-row:hover {
  transform: translateX(2px);
}
.wunder-row.success { background: rgba(240, 255, 240, 0.95); }
.wunder-row.warning { background: rgba(255, 250, 230, 0.95); }

.wunder-star { color: #d1d1d1; font-size: 16px; }
.wunder-star.active { color: #ff3b30; }

.wunder-text { font-size: 12px; color: #333; flex: 1; }

.wunder-sidebar {
  width: 180px;
  background: #101623;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  overflow: hidden;
}

.wunder-sidebar-section {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  color: #cbd5e1;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 12px;
}
.wunder-sidebar-section.active { background: #0a84ff; color: #fff; }
.wunder-icon { margin-right: 8px; font-size: 14px; }
.wunder-badge { margin-left: auto; background: rgba(255, 255, 255, 0.2); padding: 2px 6px; border-radius: 10px; font-size: 10px; }

.wunder-stat-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 12px 6px 24px; font-size: 11px; color: #94a3b8; border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.wunder-stat-badge { background: rgba(255, 255, 255, 0.08); padding: 2px 6px; border-radius: 10px; font-weight: 600; color: #cbd5e1; font-size: 10px; }

.wunder-sidebar-header { padding: 12px 12px 6px; font-size: 10px; text-transform: uppercase; color: #64748b; font-weight: 700; }
.wunder-settings { padding: 0 12px 12px; display: flex; flex-direction: column; gap: 8px; }
.wunder-setting-label { display: flex; align-items: center; gap: 6px; font-size: 11px; color: #cbd5e1; }
.wunder-setting-row { display: flex; align-items: center; gap: 4px; font-size: 11px; color: #94a3b8; }
.wunder-num-input { width: 32px; padding: 2px; background: #1a2336; border: 1px solid rgba(255, 255, 255, 0.12); color: #fff; border-radius: 4px; font-size: 11px; text-align: center; }

.wunder-bottom-bar {
  display: flex; align-items: center; justify-content: center;
  height: 44px; background: linear-gradient(to bottom, #1e283d 0%, #151d2d 100%);
  padding: 0 16px; border-top: 1px solid rgba(255, 255, 255, 0.08); position: relative;
  flex-shrink: 0;
}
.wunder-footer-link {
  position: absolute; right: 16px; color: #94a3b8; text-decoration: none; font-size: 12px; font-weight: 500; transition: color 0.2s;
}
.wunder-footer-link:hover { color: #fff; text-decoration: underline; }
.wunder-actions-center {
  display: flex; gap: 8px; background: #0c1018; padding: 4px; border-radius: 16px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255, 255, 255, 0.1);
}
.wunder-btn {
  background: transparent; border: none; color: #94a3b8; padding: 4px 10px;
  font-size: 11px; font-weight: 600; border-radius: 12px; cursor: default;
}
.wunder-btn.primary {
  background: linear-gradient(to bottom, #0a84ff, #0066cc); color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.wunder-btn.danger { color: #ff453a; }

@keyframes pulse-blue {
  0% { box-shadow: 0 0 0 0 rgba(10, 132, 255, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.3); }
  70% { box-shadow: 0 0 0 6px rgba(10, 132, 255, 0), inset 0 1px 0 rgba(255, 255, 255, 0.3); }
  100% { box-shadow: 0 0 0 0 rgba(10, 132, 255, 0), inset 0 1px 0 rgba(255, 255, 255, 0.3); }
}

@keyframes pulse-red {
  0% { box-shadow: 0 0 0 0 rgba(255, 69, 58, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(255, 69, 58, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 69, 58, 0); }
}

.wunder-btn.primary.active-glow { animation: pulse-blue 1.5s infinite; }
.wunder-btn.danger.active-glow { animation: pulse-red 1.5s infinite; color: #ff453a; }

/* --- HERO YOUTUBE VIDEO SECTION & LIGHTBOX --- */
.hero-video-wrapper {
  margin-top: 5rem;
  width: 100%;
}

.hero-video-card {
  background: var(--bg-surface-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 0;
  box-shadow:
    var(--shadow-elevated),
    0 0 50px -15px rgba(255, 69, 58, 0.15);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  cursor: pointer;
}
.hero-video-card:hover {
  border-color: rgba(255, 69, 58, 0.4);
  transform: translateY(-4px);
  box-shadow:
    var(--shadow-elevated),
    0 0 65px -10px rgba(255, 69, 58, 0.3);
}

.video-thumbnail-container {
  position: relative;
  width: 100%;
  min-height: 420px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-video-card:hover .video-thumbnail {
  transform: scale(1.04);
}

.video-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(9, 13, 22, 0.95) 0%,
    rgba(9, 13, 22, 0.4) 50%,
    rgba(9, 13, 22, 0.2) 100%
  );
  pointer-events: none;
}

.video-play-button {
  position: absolute;
  z-index: 5;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff453a 0%, #ff0000 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 12px 35px rgba(255, 69, 58, 0.65),
    0 0 0 6px rgba(255, 255, 255, 0.15);
  transition: var(--transition-bounce);
}
.hero-video-card:hover .video-play-button {
  transform: scale(1.15);
  background: linear-gradient(135deg, #ff5f56 0%, #ff2d21 100%);
  box-shadow:
    0 18px 45px rgba(255, 69, 58, 0.85),
    0 0 0 8px rgba(255, 255, 255, 0.25);
}

.play-pulse {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 69, 58, 0.65);
  animation: playPulseAnim 2s infinite;
}
@keyframes playPulseAnim {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(0.95); opacity: 0; }
}

.play-icon-lg {
  width: 38px;
  height: 38px;
  margin-left: 5px;
}

.video-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 2.5rem;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.video-card-info h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}
.video-card-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.video-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 69, 58, 0.15);
  color: #ff5f56;
  border: 1px solid rgba(255, 69, 58, 0.3);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
}
.youtube-icon {
  width: 16px;
  height: 16px;
  color: #ff0000;
  flex-shrink: 0;
}

/* --- LIGHTBOX MODAL STYLES --- */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 13, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  cursor: pointer;
}

.lightbox-dialog {
  position: relative;
  z-index: 1010;
  width: 100%;
  max-width: 960px;
  background: #101623;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  box-shadow:
    0 30px 80px -15px rgba(0, 0, 0, 0.9),
    0 0 60px rgba(255, 69, 58, 0.2);
  overflow: hidden;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lightbox-modal.active .lightbox-dialog {
  transform: scale(1) translateY(0);
}

.lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: #182030;
  border-bottom: 1px solid var(--border-glass);
}

.lightbox-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-family-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.lightbox-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-bounce);
}
.lightbox-close:hover {
  background: #ff453a;
  color: #ffffff;
  border-color: #ff453a;
  transform: rotate(90deg);
}

.lightbox-body {
  padding: 0;
  background: #000000;
}

.lightbox-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
}
.lightbox-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- FEATURES SECTION --- */
.features {
  background: transparent;
}

.section-title {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 4.5rem;
}
.section-title h2 {
  background: linear-gradient(135deg, #ffffff 40%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-title p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--bg-surface-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--purple), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  background: var(--bg-surface-glass-hover);
  box-shadow: var(--shadow-premium);
}
.feature-card:hover::before {
  opacity: 1;
}

.feat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 0.5rem;
  position: relative;
}
.feat-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: inherit;
  filter: blur(12px);
  opacity: 0.4;
  z-index: -1;
}
.feat-icon svg {
  width: 24px;
  height: 24px;
}

.gradient-blue { background: linear-gradient(135deg, #0a84ff, #6366f1); }
.gradient-pink { background: linear-gradient(135deg, #db2777, #f43f5e); }
.gradient-purple { background: linear-gradient(135deg, #6366f1, var(--purple)); }
.gradient-green { background: linear-gradient(135deg, #059669, var(--success)); }

.feature-card h3 {
  font-size: 1.3rem;
  color: var(--text-primary);
}
.feature-card p {
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

/* --- INSTALLATION SECTION --- */
.installation {
  background: transparent;
}

/* Steps - flexible for 3 or 4 columns */
.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.steps-container.steps-3 {
  grid-template-columns: repeat(3, 1fr);
}

.step-card {
  background: var(--bg-surface-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}
.step-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--purple));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.step-card:hover {
  border-color: var(--border-glow);
  background: var(--bg-surface-glass-hover);
  box-shadow: var(--shadow-premium);
  transform: translateY(-4px);
}
.step-card:hover::before {
  opacity: 1;
}

.step-num {
  font-family: var(--font-family-head);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.9;
  margin-bottom: 1.25rem;
}

.step-content h3 {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.step-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-content code {
  background: rgba(10, 132, 255, 0.12);
  padding: 0.15rem 0.4rem;
  border-radius: 5px;
  font-family: 'SF Mono', 'Fira Code', monospace;
  color: var(--accent-cyan);
  border: 1px solid rgba(10, 132, 255, 0.25);
  font-size: 0.85em;
}

.step-download-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  color: var(--primary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition-smooth);
  padding: 0.5rem 0;
}
.step-download-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}
.step-download-link:hover {
  color: var(--accent-cyan);
}
.step-download-link:hover svg:last-child {
  transform: translateX(3px);
}

.step-store-link {
  background: linear-gradient(135deg, rgba(10, 132, 255, 0.12), rgba(168, 85, 247, 0.12));
  border: 1px solid var(--border-glow);
  border-radius: 10px;
  padding: 0.65rem 1rem;
  gap: 0.6rem;
  color: var(--text-primary);
  transition: var(--transition-smooth);
}
.step-store-link:hover {
  background: linear-gradient(135deg, rgba(10, 132, 255, 0.22), rgba(168, 85, 247, 0.22));
  border-color: var(--primary);
  transform: none;
}
.step-store-link .chrome-icon-sm {
  color: var(--primary);
}

/* --- SECURITY & PRIVACY --- */
.security-privacy {
  padding-bottom: 8rem;
}

.security-container {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(10, 132, 255, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 100% 100%, rgba(168, 85, 247, 0.1) 0%, transparent 60%),
    var(--bg-surface-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.security-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--success), var(--primary));
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

.security-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--success);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.verified-icon {
  width: 18px;
  height: 18px;
  color: var(--success);
  flex-shrink: 0;
}

.security-text h2 {
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #ffffff, var(--accent-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.security-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.security-badge-visual {
  display: flex;
  justify-content: center;
}

.privacy-shield {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(10, 132, 255, 0.12), rgba(48, 209, 88, 0.12));
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  color: var(--primary);
  box-shadow: var(--shadow-card);
  animation: float 5s ease-in-out infinite;
  text-align: center;
  position: relative;
}
.privacy-shield::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(10, 132, 255, 0.15), rgba(48, 209, 88, 0.15));
  z-index: -1;
  filter: blur(20px);
  opacity: 0.5;
}
.privacy-shield svg {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 4px 12px rgba(10, 132, 255, 0.35));
  color: var(--primary);
}
.privacy-shield span {
  font-family: var(--font-family-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  color: var(--text-primary);
}
.shield-sub {
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  color: var(--text-dim) !important;
  letter-spacing: 0.02em !important;
}

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

/* --- FOOTER --- */
footer {
  background: rgba(9, 13, 22, 0.95);
  border-top: 1px solid var(--border-glass);
  padding: 3.5rem 0;
  position: relative;
  z-index: 10;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-left .logo-area {
  gap: 0.5rem;
}

.footer-logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(18, 24, 38, 0.9);
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 6px rgba(10, 132, 255, 0.2);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-center {
  display: flex;
  align-items: center;
}

.footer-store-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border-glass);
  background: rgba(18, 24, 38, 0.6);
  transition: var(--transition-smooth);
}
.footer-store-link:hover {
  color: var(--text-primary);
  border-color: var(--border-glow);
  background: rgba(10, 132, 255, 0.1);
  transform: translateY(-1px);
}
.footer-store-link .chrome-icon-sm {
  color: var(--primary);
}

.footer-right {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-dev-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}

.footer-dev-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  opacity: 0.8;
}

.footer-zip-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}
.footer-zip-link:hover {
  color: var(--text-secondary);
}

.zip-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}
.footer-link:hover {
  color: var(--text-primary);
}

/* --- ENTRANCE ANIMATIONS --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-content {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-visual {
  animation: fadeInScale 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

.feature-card {
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.step-card {
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}
.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }
.step-card:nth-child(4) { animation-delay: 0.4s; }

/* --- PULSE GLOW ANIMATION --- */
@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(24, 119, 242, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(24, 119, 242, 0); }
  100% { box-shadow: 0 0 0 0 rgba(24, 119, 242, 0); }
}

/* --- M LOGO RING (if still used) --- */
.m-logo-ring {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(45deg, #10b981, #3b82f6, #059669, #3b82f6, #10b981);
  background-size: 300% 300%;
  animation: mGradientMove 5s ease infinite;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: white;
  box-shadow: 0 4px 10px rgba(71, 85, 105, 0.3);
  line-height: 1;
  padding-top: 2px;
  margin: 0 4px;
  font-weight: normal;
  letter-spacing: 0;
}
@keyframes mGradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-desc {
    max-width: 100%;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    width: 100%;
    justify-content: center;
    gap: 2.5rem;
  }
  .hero-visual {
    max-width: 520px;
    margin: 0 auto;
  }

  .steps-container,
  .steps-container.steps-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .security-container {
    grid-template-columns: 1fr;
    padding: 3rem;
    gap: 3rem;
    text-align: center;
  }
  .security-badge-visual {
    order: -1;
  }
  .security-tag {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  section { padding: 5rem 0; }

  nav { display: none; }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .steps-container,
  .steps-container.steps-3 {
    grid-template-columns: 1fr;
  }

  .footer-container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    align-items: center;
  }
  .footer-right {
    align-items: center;
  }
  .footer-dev-section {
    align-items: center;
  }
  .footer-left .logo-area {
    justify-content: center;
  }

  .wunder-sidebar {
    display: none;
  }
  .wunder-mock {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  .btn-primary {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    gap: 1.5rem;
  }

  .security-container {
    padding: 2rem;
  }

  .video-thumbnail-container {
    min-height: 280px;
  }
  .video-card-info {
    padding: 1.25rem;
  }
  .video-card-info h3 {
    font-size: 1.15rem;
  }
  .video-play-button {
    width: 58px;
    height: 58px;
  }
  .play-icon-lg {
    width: 24px;
    height: 24px;
  }
  .lightbox-modal {
    padding: 0.75rem;
  }
  .hero-video-wrapper {
    margin-top: 3.5rem;
  }

  .feature-card {
    padding: 2rem;
  }
  .step-card {
    padding: 1.75rem;
  }
}

/* --- SELECTION STYLE --- */
::selection {
  background: rgba(24, 119, 242, 0.15);
  color: var(--text-primary);
}

/* --- FOCUS VISIBLE --- */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* --- REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .bg-glow {
    animation: none;
  }
  .mockup-window {
    transform: none;
  }
  .mockup-window:hover {
    transform: none;
  }
}
