/* ==========================================================================
   ApexMouse — Design System & Stylesheet
   Theme: macOS Frosted Glass • Electric Azure & Royal Indigo
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* Color Tokens */
  --bg-dark: #07090e;
  --bg-surface: #0e131f;
  --bg-card: rgba(16, 22, 36, 0.72);
  --bg-card-hover: rgba(23, 31, 51, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.035);
  --bg-glass-active: rgba(255, 255, 255, 0.08);

  /* Brand Accents */
  --accent-blue: #1485ff;
  --accent-indigo: #615cfa;
  --accent-cyan: #00d2ff;
  --accent-emerald: #00e676;
  --accent-purple: #a855f7;
  --accent-amber: #ffb020;
  --accent-rose: #ff3366;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #1485ff 0%, #615cfa 100%);
  --grad-cyan: linear-gradient(135deg, #00d2ff 0%, #1485ff 100%);
  --grad-emerald: linear-gradient(135deg, #00e676 0%, #00b4d8 100%);
  --grad-purple: linear-gradient(135deg, #a855f7 0%, #615cfa 100%);
  --grad-text: linear-gradient(180deg, #ffffff 15%, rgba(255, 255, 255, 0.7) 100%);
  --grad-glow: radial-gradient(circle at 50% 50%, rgba(20, 133, 255, 0.15) 0%, rgba(97, 92, 250, 0.05) 50%, transparent 70%);

  /* Text Colors */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-dim: #475569;

  /* Borders & Specular Highlights */
  --border-glass: rgba(255, 255, 255, 0.09);
  --border-glass-light: rgba(255, 255, 255, 0.16);
  --border-focus: rgba(20, 133, 255, 0.6);
  --specular-top: inset 0 1px 0 0 rgba(255, 255, 255, 0.16);

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 12px 28px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 24px 50px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 35px rgba(20, 133, 255, 0.3);
  --shadow-glow-purple: 0 0 35px rgba(97, 92, 250, 0.3);

  /* Transitions */
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --container-max: 1240px;
  --header-height: 76px;
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Display', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Background Ambient Canvas & Lighting */
#ambient-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
}

.ambient-glow {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1400px;
  height: 900px;
  background: radial-gradient(ellipse at 50% 15%, rgba(20, 133, 255, 0.12) 0%, rgba(97, 92, 250, 0.06) 40%, transparent 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.75;
}

.ambient-glow-secondary {
  position: fixed;
  bottom: 0;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.08) 0%, rgba(97, 92, 250, 0.05) 50%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

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

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

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

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
}

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-accent-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-cyan-text {
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  height: var(--header-height);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  background: rgba(7, 9, 14, 0.85);
  border-bottom: 1px solid var(--border-glass);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background 0.3s ease;
  padding: 0 32px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  gap: 28px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  box-shadow: 0 4px 14px rgba(20, 133, 255, 0.3), var(--specular-top);
  transition: transform 0.3s var(--ease-spring);
}

.brand-link:hover .brand-icon {
  transform: scale(1.06) rotate(-2deg);
}

.brand-name {
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.brand-badge {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 20px;
  background: rgba(20, 133, 255, 0.15);
  border: 1px solid rgba(20, 133, 255, 0.35);
  color: var(--accent-cyan);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex: 1 1 auto;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease, transform 0.2s ease;
  position: relative;
  white-space: nowrap;
  padding: 6px 0;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
  transition: width 0.25s var(--ease-spring);
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

/* ==========================================================================
   Buttons & CTA System
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.94rem;
  padding: 12px 24px;
  border-radius: 12px;
  transition: all 0.25s var(--ease-spring);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-primary);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(20, 133, 255, 0.35), var(--specular-top);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(20, 133, 255, 0.5), var(--specular-top);
  filter: brightness(1.06);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--bg-glass);
  color: var(--text-primary);
  border: 1px solid var(--border-glass-light);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm), var(--specular-top);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-secondary:active {
  transform: translateY(0);
}

.btn-outline {
  border: 1px solid rgba(20, 133, 255, 0.4);
  color: var(--accent-cyan);
  background: rgba(20, 133, 255, 0.08);
}

.btn-outline:hover {
  background: rgba(20, 133, 255, 0.18);
  border-color: var(--accent-blue);
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: 9px;
}

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

.btn-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
  padding: 80px 0 100px;
  text-align: center;
  position: relative;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm), var(--specular-top);
  transition: all 0.3s ease;
}

.hero-pill:hover {
  border-color: rgba(20, 133, 255, 0.4);
  background: rgba(20, 133, 255, 0.08);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-emerald);
  box-shadow: 0 0 12px var(--accent-emerald);
  animation: pulse-ring 2s infinite ease-in-out;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 18px var(--accent-emerald); }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.hero-pill-text {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}

.hero-pill-tag {
  color: var(--accent-cyan);
  font-weight: 700;
}

.hero-title {
  font-size: clamp(2.5rem, 5.2vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  line-height: 1.08;
}

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

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

.hero-meta-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

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

.hero-meta-item svg {
  width: 15px;
  height: 15px;
  fill: var(--accent-cyan);
}

/* Hero Showcase Window Mockup */
.hero-mockup-wrapper {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  perspective: 1200px;
}

.hero-mockup-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -20%);
  width: 90%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(20, 133, 255, 0.28) 0%, rgba(97, 92, 250, 0.15) 45%, transparent 70%);
  filter: blur(60px);
  z-index: -1;
}

.mac-window {
  background: var(--bg-surface);
  border-radius: 18px;
  border: 1px solid var(--border-glass-light);
  box-shadow: 0 35px 80px -15px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.08), var(--specular-top);
  overflow: hidden;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease;
}

.mac-window:hover {
  transform: translateY(-4px);
  box-shadow: 0 45px 100px -15px rgba(0, 0, 0, 0.85), 0 0 40px rgba(20, 133, 255, 0.25), var(--specular-top);
}

.mac-titlebar {
  height: 44px;
  background: rgba(18, 24, 38, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  padding: 0 18px;
  position: relative;
}

.mac-traffic-lights {
  display: flex;
  gap: 8px;
}

.traffic-light {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.traffic-red { background: #ff5f56; border: 1px solid #e0443e; }
.traffic-yellow { background: #ffbd2e; border: 1px solid #dea123; }
.traffic-green { background: #27c93f; border: 1px solid #1aab29; }

.mac-titlebar-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mac-window-body {
  position: relative;
  background: #0b0f19;
}

.hero-screenshot-img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-bottom-left-radius: 17px;
  border-bottom-right-radius: 17px;
}



/* ==========================================================================
   Specs & Proof Ticker Strip
   ========================================================================== */

.specs-strip {
  padding: 30px 0 60px;
  border-bottom: 1px solid var(--border-glass);
}

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

.spec-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-glass);
  transition: all 0.25s ease;
}

.spec-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(20, 133, 255, 0.3);
  transform: translateY(-2px);
}

.spec-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(20, 133, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.spec-stat {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.spec-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */

.section {
  padding: 100px 0;
  position: relative;
  scroll-margin-top: calc(var(--header-height) + 16px);
}

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

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-cyan);
  background: rgba(20, 133, 255, 0.12);
  border: 1px solid rgba(20, 133, 255, 0.3);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   The 10 Superpowers — Capabilities Matrix
   ========================================================================== */

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

.superpower-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 32px 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm), var(--specular-top);
  transition: transform 0.3s var(--ease-spring), border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.superpower-card:hover {
  transform: translateY(-5px);
  border-color: rgba(20, 133, 255, 0.4);
  box-shadow: var(--shadow-md), 0 0 25px rgba(20, 133, 255, 0.15), var(--specular-top);
}

.card-spotlight {
  position: absolute;
  top: var(--mouse-y, -100px);
  left: var(--mouse-x, -100px);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(20, 133, 255, 0.12) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.superpower-card:hover .card-spotlight {
  opacity: 1;
}

.card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(20, 133, 255, 0.12);
  border: 1px solid rgba(20, 133, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-cyan);
}

.card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.card-title {
  font-size: 1.28rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.card-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.card-feature-list {
  list-style: none;
  border-top: 1px solid var(--border-glass);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-feature-item {
  font-size: 0.82rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.feature-check {
  color: var(--accent-emerald);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Highlighted Big Cards */
.superpower-card.featured-card {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(20, 30, 52, 0.85) 0%, rgba(14, 20, 36, 0.75) 100%);
  border-color: rgba(20, 133, 255, 0.35);
}

.superpower-card.featured-card .card-icon {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(20, 133, 255, 0.4);
}

/* ==========================================================================
   Feature Spotlights & Deep-Dive Showcases
   ========================================================================== */

.spotlight-section {
  padding: 40px 0 100px;
  position: relative;
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.spotlight-list {
  display: flex;
  flex-direction: column;
  gap: 90px;
}

.spotlight-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 52px;
  align-items: center;
}

.spotlight-row.reverse {
  grid-template-columns: 1.15fr 1fr;
}

.spotlight-row.reverse .spotlight-visual {
  order: -1;
}

.spotlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(20, 133, 255, 0.12);
  border: 1px solid rgba(20, 133, 255, 0.3);
  color: var(--accent-cyan);
  margin-bottom: 18px;
}

.spotlight-title {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  line-height: 1.2;
}

.spotlight-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 28px;
}

.spotlight-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.spotlight-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.spotlight-feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(20, 133, 255, 0.12);
  border: 1px solid rgba(20, 133, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.spotlight-feature-content h4 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.spotlight-feature-content p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.spotlight-visual {
  position: relative;
}

.spotlight-visual .mac-window {
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.1), var(--specular-top);
  cursor: zoom-in;
}

.spotlight-visual .mac-window:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 35px 80px -15px rgba(0, 0, 0, 0.85), 0 0 35px rgba(20, 133, 255, 0.25), var(--specular-top);
}

@media (max-width: 960px) {
  .spotlight-row, .spotlight-row.reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .spotlight-row.reverse .spotlight-visual {
    order: 0;
  }
}



/* ==========================================================================
   Retina Screenshot Showcase & Lightbox
   ========================================================================== */

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

.gallery-tab-btn {
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery-tab-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

.gallery-tab-btn.active {
  background: rgba(20, 133, 255, 0.18);
  border-color: var(--accent-blue);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(20, 133, 255, 0.3);
}

.gallery-display-card {
  max-width: 1020px;
  margin: 0 auto;
  background: var(--bg-surface);
  border: 1px solid var(--border-glass-light);
  border-radius: 20px;
  box-shadow: var(--shadow-lg), var(--specular-top);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.gallery-display-card:hover {
  transform: translateY(-3px);
}

.gallery-display-img {
  width: 100%;
  display: block;
}

.gallery-caption-bar {
  padding: 18px 28px;
  background: rgba(14, 19, 31, 0.95);
  border-top: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.gallery-caption-text h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.gallery-caption-text p {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.gallery-zoom-hint {
  font-size: 0.78rem;
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 7, 12, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.15);
  object-fit: contain;
}

.lightbox-close-btn {
  position: absolute;
  top: -45px;
  right: 0;
  color: var(--text-secondary);
  font-size: 2rem;
  transition: color 0.2s ease;
}

/* ==========================================================================
   User Reviews & Social Proof Section
   ========================================================================== */

.reviews-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass-light);
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm), var(--specular-top);
}

.stars-gold {
  color: #ffb020;
  font-size: 1.05rem;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 176, 32, 0.4);
}

.rating-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.rating-text strong {
  color: var(--text-primary);
}

.reviews-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 18px;
  padding: 24px 32px;
  margin-bottom: 48px;
  box-shadow: var(--shadow-sm), var(--specular-top);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.reviews-trust-item {
  text-align: center;
  position: relative;
}

.reviews-trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border-glass);
}

.reviews-trust-val {
  font-size: 1.45rem;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}

.reviews-trust-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 28px 26px;
  box-shadow: var(--shadow-sm), var(--specular-top);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.28s var(--ease-spring), border-color 0.28s ease, box-shadow 0.28s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-md), 0 0 20px rgba(20, 133, 255, 0.12);
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.review-stars {
  color: #ffb020;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.review-badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
}

.review-badge.badge-pro {
  background: rgba(20, 133, 255, 0.15);
  border-color: rgba(20, 133, 255, 0.35);
  color: #60a5fa;
}

.review-badge.badge-bundle {
  background: rgba(97, 92, 250, 0.15);
  border-color: rgba(97, 92, 250, 0.35);
  color: #a78bfa;
}

.review-quote {
  font-size: 0.94rem;
  line-height: 1.62;
  color: var(--text-primary);
  margin-bottom: 22px;
  flex-grow: 1;
}

.review-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.avatar-purple { background: linear-gradient(135deg, #a855f7, #6366f1); }
.avatar-blue { background: linear-gradient(135deg, #1485ff, #0284c7); }
.avatar-cyan { background: linear-gradient(135deg, #06b6d4, #1485ff); }
.avatar-emerald { background: linear-gradient(135deg, #10b981, #059669); }
.avatar-amber { background: linear-gradient(135deg, #f59e0b, #d97706); }
.avatar-rose { background: linear-gradient(135deg, #ec4899, #be185d); }

.review-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
}

.review-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Pricing Architecture & Currency Switcher
   ========================================================================== */

.pricing-currency-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass-light);
  padding: 5px;
  border-radius: 30px;
  margin-top: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.currency-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  background: transparent;
}

.currency-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.currency-btn.active {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 2px 12px rgba(20, 133, 255, 0.45);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 70px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 22px;
  padding: 40px 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm), var(--specular-top);
  transition: transform 0.3s var(--ease-spring), border-color 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow-md), var(--specular-top);
}

.pricing-card.featured {
  background: linear-gradient(180deg, rgba(20, 32, 58, 0.9) 0%, rgba(14, 20, 36, 0.8) 100%);
  border-color: rgba(20, 133, 255, 0.5);
  box-shadow: 0 20px 50px rgba(20, 133, 255, 0.2), var(--specular-top);
}

.pricing-card.featured:hover {
  box-shadow: 0 30px 60px rgba(20, 133, 255, 0.35), var(--specular-top);
}

.pricing-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-primary);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(20, 133, 255, 0.4);
  white-space: nowrap;
}

/* Fixed-height Card Header Area to Guarantee Uniform CTA Button Alignment */
.pricing-card-header {
  display: flex;
  flex-direction: column;
  min-height: 196px;
}

.pricing-plan-name {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.25;
  min-height: 32px;
}

.pricing-plan-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 44px;
}

.pricing-price-box {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  height: 68px;
  margin-bottom: 24px;
}

.price-main {
  display: flex;
  align-items: baseline;
  flex-shrink: 0;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-right: 2px;
}

.price-amount {
  font-size: 3.1rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text-primary);
}

.price-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.price-period-line {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.price-sub-line {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.price-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.price-tax {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1px 7px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  vertical-align: middle;
  transition: all 0.2s ease;
  cursor: help;
}

.price-tax:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.price-strike {
  text-decoration: line-through;
  color: var(--text-dim);
  font-size: 0.92rem;
  font-weight: 500;
}

.price-badge {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 2px 7px;
  border-radius: 6px;
  line-height: 1.2;
}

.price-badge.discount-badge {
  background: rgba(0, 230, 118, 0.12);
  color: var(--accent-emerald);
  border: 1px solid rgba(0, 230, 118, 0.28);
}

.price-badge.trial-badge {
  background: rgba(20, 133, 255, 0.12);
  color: var(--accent-cyan);
  border: 1px solid rgba(20, 133, 255, 0.28);
}

.pricing-cta {
  width: 100%;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 0.94rem;
  font-weight: 600;
  border-radius: 12px;
  box-sizing: border-box;
}

.pricing-features-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.pricing-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.pricing-feature-item {
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-feature-item svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-emerald);
  flex-shrink: 0;
  margin-top: 3px;
}

.pricing-tax-disclaimer {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: -46px;
  margin-bottom: 48px;
  letter-spacing: 0.01em;
  opacity: 0.85;
}

.pricing-guarantee-card {
  max-width: 820px;
  margin: 0 auto;
  padding: 24px 32px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  gap: 24px;
}

.guarantee-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(0, 230, 118, 0.12);
  border: 1px solid rgba(0, 230, 118, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-emerald);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.guarantee-text h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.guarantee-text p {
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* Comparison Table */
.comparison-container {
  margin-top: 80px;
  background: var(--bg-surface);
  border: 1px solid var(--border-glass-light);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-md), var(--specular-top);
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th, .comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-glass);
}

.comparison-table th {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comparison-table th:first-child {
  width: 40%;
}

.col-apexmouse {
  color: var(--accent-cyan) !important;
  font-weight: 800 !important;
}

.comparison-table td {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.comparison-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.check-green {
  color: var(--accent-emerald);
  font-weight: 700;
  font-size: 1.1rem;
}

.cross-red {
  color: #ef4444;
  font-size: 1rem;
}

/* ==========================================================================
   Download & Installation Center
   ========================================================================== */

.download-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 60px;
}

.download-option-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm), var(--specular-top);
  transition: all 0.3s var(--ease-spring);
}

.download-option-card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 133, 255, 0.4);
  box-shadow: var(--shadow-md), 0 0 30px rgba(20, 133, 255, 0.15), var(--specular-top);
}

.download-card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.download-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(20, 133, 255, 0.35);
}

.download-card-title {
  font-size: 1.35rem;
  font-weight: 700;
}

.download-card-meta {
  font-size: 0.8rem;
  color: var(--accent-cyan);
  font-weight: 600;
}

.download-card-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* Step-by-Step Installation */
.setup-guide-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass-light);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-md), var(--specular-top);
}

.setup-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 36px;
}

.setup-step-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-number {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(20, 133, 255, 0.15);
  border: 1px solid rgba(20, 133, 255, 0.35);
  color: var(--accent-cyan);
  font-size: 1.05rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
}

.step-desc {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.terminal-copy-box {
  background: #06080d;
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.terminal-code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.88rem;
  color: #38bdf8;
  overflow-x: auto;
  white-space: nowrap;
}

.copy-btn {
  padding: 6px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  font-size: 0.78rem;
  font-weight: 600;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.copy-btn:hover {
  background: rgba(20, 133, 255, 0.3);
  color: #fff;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */

.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  overflow: hidden;
  box-shadow: var(--shadow-sm), var(--specular-top);
  transition: border-color 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-item.active {
  border-color: rgba(20, 133, 255, 0.45);
}

.faq-question-btn {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.2s ease;
}

.faq-question-btn:hover {
  color: var(--accent-cyan);
}

.faq-toggle-icon {
  font-size: 1.4rem;
  color: var(--accent-blue);
  transition: transform 0.3s var(--ease-spring);
  flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-spring), padding 0.35s ease;
  padding: 0 28px;
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 600px;
  padding-bottom: 24px;
}

/* ==========================================================================
   Support & Troubleshooting Hub
   ========================================================================== */

.support-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.support-card {
  min-width: 0;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 30px 24px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm), var(--specular-top);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.support-card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 133, 255, 0.4);
  box-shadow: var(--shadow-md), 0 0 24px rgba(20, 133, 255, 0.12);
}

.support-card.featured-support {
  grid-column: 1 / -1;
  padding: 34px 36px;
  border-color: rgba(99, 102, 241, 0.35);
  background: radial-gradient(ellipse at top left, rgba(99, 102, 241, 0.12) 0%, transparent 60%),
              radial-gradient(ellipse at bottom right, rgba(236, 72, 153, 0.08) 0%, transparent 50%),
              linear-gradient(180deg, rgba(20, 24, 40, 0.85) 0%, rgba(12, 15, 26, 0.85) 100%);
}

.support-card.featured-support:hover {
  border-color: rgba(236, 72, 153, 0.45);
  box-shadow: var(--shadow-md), 0 0 30px rgba(236, 72, 153, 0.14);
}

.support-card.featured-support .support-card-desc {
  max-width: 820px;
  font-size: 0.94rem;
  line-height: 1.65;
  margin-bottom: 22px;
}

.support-card .terminal-copy-box {
  min-width: 0;
  margin-top: auto;
  padding: 12px 14px;
  gap: 10px;
}

.support-card .terminal-code {
  min-width: 0;
  flex: 1;
  font-size: 0.80rem;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: thin;
}

.support-card .copy-btn {
  flex-shrink: 0;
  padding: 6px 12px;
  font-size: 0.74rem;
}

.support-card-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.support-card-actions .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.support-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.support-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(20, 133, 255, 0.15), rgba(99, 102, 241, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.support-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 4px 0;
}

.support-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 6px;
  background: rgba(20, 133, 255, 0.12);
  color: var(--accent-cyan);
  border: 1px solid rgba(20, 133, 255, 0.25);
}

.support-badge.tip-badge {
  background: rgba(236, 72, 153, 0.12);
  color: #f472b6;
  border-color: rgba(236, 72, 153, 0.3);
}

.support-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.support-card-desc strong {
  color: var(--text-primary);
}

.support-card-desc em {
  color: var(--accent-cyan);
  font-style: normal;
}

.support-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.support-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.support-step strong {
  color: var(--text-primary);
}

.support-step code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 6px;
  border-radius: 4px;
  color: #38bdf8;
}

.step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(20, 133, 255, 0.15);
  border: 1px solid rgba(20, 133, 255, 0.35);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.support-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.support-feature-item .feature-bullet {
  color: var(--accent-blue);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.support-feature-item strong {
  color: var(--text-primary);
}

/* Tip Jar Buttons */
.tip-jar-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 4px;
}

.tip-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.25s var(--ease-smooth);
}

.tip-btn-icon {
  font-size: 1.35rem;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.25s ease;
}

.tip-btn-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.tip-btn-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.tip-btn-sub {
  font-size: 0.76rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tip-btn-arrow {
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: transform 0.2s ease, color 0.2s ease;
  margin-left: 4px;
  flex-shrink: 0;
}

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

.tip-btn:hover .tip-btn-icon {
  transform: scale(1.08);
}

.tip-btn:hover .tip-btn-arrow {
  transform: translate(2px, -2px);
  color: var(--text-primary);
}

.tip-btn.tip-bmac:hover {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.12);
}

.tip-btn.tip-bmac:hover .tip-btn-icon {
  background: rgba(245, 158, 11, 0.18);
}

.tip-btn.tip-bmac:hover .tip-btn-title {
  color: #fbbf24;
}

.tip-btn.tip-gh:hover {
  background: rgba(236, 72, 153, 0.08);
  border-color: rgba(236, 72, 153, 0.4);
  box-shadow: 0 4px 20px rgba(236, 72, 153, 0.12);
}

.tip-btn.tip-gh:hover .tip-btn-icon {
  background: rgba(236, 72, 153, 0.18);
}

.tip-btn.tip-gh:hover .tip-btn-title {
  color: #f472b6;
}

.tip-btn.tip-paypal:hover {
  background: rgba(2, 132, 199, 0.08);
  border-color: rgba(2, 132, 199, 0.4);
  box-shadow: 0 4px 20px rgba(2, 132, 199, 0.12);
}

.tip-btn.tip-paypal:hover .tip-btn-icon {
  background: rgba(2, 132, 199, 0.18);
}

.tip-btn.tip-paypal:hover .tip-btn-title {
  color: #38bdf8;
}

.tip-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.tip-note-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  border-top: 1px solid var(--border-glass);
  background: rgba(5, 7, 11, 0.8);
  padding: 80px 0 40px;
  position: relative;
  z-index: 10;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 320px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--accent-emerald);
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.25);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
}

.footer-col h5 {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--text-dim);
  font-size: 0.82rem;
}

/* Toast Alert Notification */
.toast-notice {
  position: fixed;
  bottom: 28px;
  right: 28px;
  padding: 12px 22px;
  border-radius: 12px;
  background: rgba(14, 20, 36, 0.95);
  border: 1px solid var(--accent-blue);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6), 0 0 20px rgba(20, 133, 255, 0.4);
  backdrop-filter: blur(16px);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s var(--ease-spring);
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast-notice.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   Version History & Release Changelog Section
   ========================================================================== */

.changelog-timeline {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

.changelog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 32px 30px;
  box-shadow: var(--shadow-sm), var(--specular-top);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  transition: transform 0.28s var(--ease-spring), border-color 0.28s ease, box-shadow 0.28s ease;
}

.changelog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-md), 0 0 25px rgba(20, 133, 255, 0.1);
}

.changelog-card.featured-version {
  border-color: rgba(20, 133, 255, 0.45);
  background: linear-gradient(180deg, rgba(20, 32, 58, 0.85) 0%, rgba(14, 20, 36, 0.8) 100%);
  box-shadow: 0 16px 40px rgba(20, 133, 255, 0.15), var(--specular-top);
}

.changelog-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.changelog-meta-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.changelog-version-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass-light);
  padding: 4px 12px;
  border-radius: 8px;
  letter-spacing: 0.5px;
}

.changelog-badge-latest {
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(0, 230, 118, 0.16);
  border: 1px solid rgba(0, 230, 118, 0.35);
  color: var(--accent-emerald);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.changelog-badge-past {
  font-size: 0.74rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
}

.changelog-date {
  font-size: 0.86rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.changelog-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.changelog-highlights-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.changelog-highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.changelog-bullet {
  color: var(--accent-blue);
  font-size: 0.85rem;
  line-height: 1.5;
  flex-shrink: 0;
}

.changelog-card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
  .nav-links {
    gap: 16px;
  }
  .nav-link {
    font-size: 0.84rem;
  }
  .superpowers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .superpower-card.featured-card {
    grid-column: span 2;
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .setup-steps-grid {
    grid-template-columns: 1fr;
  }
  .support-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }
  .tip-jar-buttons {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0 20px;
  }
  .nav-links {
    display: none;
  }
  .superpowers-grid {
    grid-template-columns: 1fr;
  }
  .superpower-card.featured-card {
    grid-column: span 1;
  }
  .reviews-trust-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
    gap: 20px;
  }
  .reviews-trust-item:nth-child(2)::after {
    display: none;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .download-cards-grid {
    grid-template-columns: 1fr;
  }
  .support-card.featured-support {
    padding: 24px 20px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .reviews-trust-bar {
    grid-template-columns: 1fr;
  }
  .reviews-trust-item::after {
    display: none !important;
  }
}

/* ==========================================================================
   Legal & Policy Pages (Privacy, Terms, Refund)
   ========================================================================== */

.legal-main {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 100px;
}

.legal-container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-back-nav {
  margin-bottom: 24px;
}

.legal-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 9999px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  transition: all 0.2s var(--ease-smooth);
}

.legal-back-link:hover {
  color: var(--text-primary);
  background: var(--bg-glass-active);
  border-color: var(--border-glass-light);
  transform: translateX(-2px);
}

.legal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 56px 48px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.legal-header {
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 32px;
  margin-bottom: 40px;
}

.legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 9999px;
  background: rgba(20, 133, 255, 0.12);
  border: 1px solid rgba(20, 133, 255, 0.28);
  color: var(--accent-cyan);
  margin-bottom: 18px;
}

.legal-badge.badge-privacy {
  background: rgba(0, 230, 118, 0.12);
  border-color: rgba(0, 230, 118, 0.28);
  color: var(--accent-emerald);
}

.legal-badge.badge-refund {
  background: rgba(97, 92, 250, 0.12);
  border-color: rgba(97, 92, 250, 0.28);
  color: #8b87ff;
}

.legal-title {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 16px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

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

.legal-content h2 {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-top: 40px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.legal-content ul, .legal-content ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

.legal-content li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.legal-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

.legal-callout {
  background: rgba(20, 133, 255, 0.07);
  border: 1px solid rgba(20, 133, 255, 0.22);
  border-radius: 16px;
  padding: 24px;
  margin: 28px 0;
  display: flex;
  gap: 16px;
}

.legal-callout.callout-success {
  background: rgba(0, 230, 118, 0.07);
  border-color: rgba(0, 230, 118, 0.22);
}

.legal-callout.callout-purple {
  background: rgba(97, 92, 250, 0.07);
  border-color: rgba(97, 92, 250, 0.22);
}

.callout-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.callout-body h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.callout-body p {
  margin-bottom: 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

.legal-table-wrapper {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: 12px;
  border: 1px solid var(--border-glass);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.legal-table th {
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-glass);
}

.legal-table td {
  padding: 12px 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.legal-nav-pill-group {
  display: flex;
  gap: 10px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border-glass);
  flex-wrap: wrap;
}

.legal-nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 12px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.2s var(--ease-smooth);
}

.legal-nav-pill:hover, .legal-nav-pill.active {
  background: var(--bg-glass-active);
  border-color: var(--accent-blue);
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .legal-card {
    padding: 32px 20px;
    border-radius: 16px;
  }
  .legal-title {
    font-size: 1.85rem;
  }
  .legal-callout {
    flex-direction: column;
    gap: 10px;
  }
}

/* ==========================================================================
   Direct Support, Bug Report & Feature Request Form
   ========================================================================== */

.support-form-wrapper {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border-glass-light);
}

.support-form-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 32px;
}

.form-badge {
  background: rgba(0, 230, 118, 0.12);
  border: 1px solid rgba(0, 230, 118, 0.35);
  color: #4ade80;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border-radius: 20px;
}

.support-form-title {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 10px;
}

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

.support-form-card {
  max-width: 820px;
  margin: 0 auto;
  background: rgba(14, 18, 28, 0.75);
  border: 1px solid var(--border-glass-light);
  border-radius: 24px;
  padding: 36px 40px;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(20, 133, 255, 0.08), var(--specular-top);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.topic-pill-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.topic-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s var(--ease-smooth);
}

.topic-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  transform: translateY(-1px);
}

.topic-pill.active {
  background: rgba(20, 133, 255, 0.16);
  border-color: rgba(20, 133, 255, 0.6);
  color: #60a5fa;
  box-shadow: 0 0 16px rgba(20, 133, 255, 0.25);
}

.topic-pill-icon {
  font-size: 1rem;
  line-height: 1;
}

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

.form-context-row {
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  width: 100%;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}

.required {
  color: #f87171;
}

.optional-hint {
  font-size: 0.74rem;
  font-weight: 400;
  color: var(--text-tertiary);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  background: rgba(6, 10, 18, 0.7);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent-blue);
  background: rgba(10, 16, 28, 0.9);
  box-shadow: 0 0 0 3px rgba(20, 133, 255, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-tertiary);
  opacity: 0.6;
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.font-mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.form-submit-btn {
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.form-submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}

.btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.form-direct-email-note {
  font-size: 0.82rem;
  color: var(--text-tertiary);
}

.email-fallback-link {
  color: var(--accent-cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-alert {
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 6px;
  animation: fadeIn 0.3s ease-in;
}

.form-alert.alert-success {
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.35);
  color: #4ade80;
}

.form-alert.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #f87171;
}

.alert-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: currentColor;
  color: #06090e;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.alert-content h4 {
  font-size: 0.96rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: inherit;
}

.alert-content p {
  font-size: 0.86rem;
  line-height: 1.5;
  margin: 0;
  opacity: 0.9;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .support-form-card {
    padding: 24px 18px;
    border-radius: 18px;
  }
  .support-form-title {
    font-size: 1.45rem;
  }
  .form-row,
  .form-context-row {
    grid-template-columns: 1fr;
  }
  .topic-pill-selector {
    gap: 6px;
  }
  .topic-pill {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .form-submit-btn {
    width: 100%;
    justify-content: center;
  }
}

