/* HiBit Uninstaller: theme aligned with app UI (header cyan ~#4EBFFF, list whites / #D1EAFF selection) */
:root {
  --app-bg: #0a1018;
  --app-bg-elevated: #0f1724;
  --app-surface: #121b2a;
  --app-surface-hover: #182536;
  --app-border: rgba(255, 255, 255, 0.07);
  --app-border-strong: rgba(255, 255, 255, 0.12);
  --hibit-cyan: #4ebfff;
  --hibit-cyan-deep: #2ea8e6;
  --hibit-cyan-dark: #1a7eb8;
  --hibit-selection: #d1eaff;
  --accent: var(--hibit-cyan);
  --accent-hover: #7dceff;
  --accent-dim: rgba(78, 191, 255, 0.16);
  --accent-blue: #3b82f6;
  --text: #e8eef4;
  --text-muted: #94a3b8;
  --text-faint: #64748b;
  --header-h: 4.25rem;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-soft: 0 24px 48px -12px rgba(0, 0, 0, 0.45);
  --font-display: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

.app-body {
  background-color: var(--app-bg);
  background-image:
    radial-gradient(ellipse 120% 80% at 100% -20%, rgba(78, 191, 255, 0.11), transparent 52%),
    radial-gradient(ellipse 80% 60% at 0% 100%, rgba(59, 130, 246, 0.07), transparent 46%),
    linear-gradient(180deg, #0a1018 0%, #0c1420 50%, #0a1018 100%);
  color: var(--text);
  min-height: 100vh;
}

/* Header & navigation */
.app-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-bottom: 0.5rem;
}

.app-header--raised .app-header-bar {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px -12px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(78, 191, 255, 0.06);
}

.app-header-shell {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 72rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.75rem;
}

@media (min-width: 640px) {
  .app-header-shell {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 1rem;
  }
}

.app-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-radius: 1rem;
  border: 1px solid var(--app-border);
  background: rgba(11, 15, 20, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  padding: 0.5rem 0.65rem 0.5rem 0.75rem;
}

@media (min-width: 1024px) {
  .app-header-bar {
    padding: 0.45rem 0.6rem 0.45rem 0.85rem;
    gap: 1rem;
  }
}

.app-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  flex-shrink: 0;
  text-decoration: none;
  color: var(--text);
  border-radius: 12px;
  padding: 0.2rem 0.35rem 0.2rem 0.2rem;
  margin: -0.2rem;
  transition: background 0.15s ease, color 0.15s ease;
}

.app-brand:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.app-brand__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  white-space: nowrap;
}

@media (max-width: 639px) {
  .app-brand__title {
    font-size: 0.95rem;
  }
}

.app-header .logo-mark {
  border-radius: 11px;
  border: 1px solid var(--app-border-strong);
  background: var(--app-surface);
  box-shadow: 0 0 0 1px rgba(78, 191, 255, 0.12);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.app-brand:hover .logo-mark {
  box-shadow: 0 0 0 1px rgba(78, 191, 255, 0.28);
}

.app-nav-desktop {
  flex: 1;
  justify-content: center;
  min-width: 0;
}

/* Wrap in-page links + “More” so the bar never collides with brand / language */
.app-nav-cluster {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex: 1;
  min-width: 0;
}

.app-nav-more {
  position: relative;
  flex-shrink: 0;
}

.app-nav-more__trigger {
  cursor: pointer;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.app-nav-more__trigger::-webkit-details-marker {
  display: none;
}

.app-nav-more__trigger:hover {
  border-color: rgba(78, 191, 255, 0.35);
  background: rgba(78, 191, 255, 0.08);
  color: var(--text);
}

.app-nav-more[open] .app-nav-more__trigger {
  border-color: rgba(78, 191, 255, 0.4);
  background: rgba(78, 191, 255, 0.12);
  color: #fff;
}

.app-nav-more__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.45rem);
  z-index: 85;
  min-width: 12rem;
  padding: 0.35rem;
  border-radius: 12px;
  border: 1px solid var(--app-border-strong);
  background: rgba(14, 18, 24, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 48px -8px rgba(0, 0, 0, 0.65);
}

.app-nav-more__menu a {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: background 0.12s ease, color 0.12s ease;
}

.app-nav-more__menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.app-nav-list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  margin: 0;
  padding: 0.2rem;
  list-style: none;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.app-nav-list li {
  margin: 0;
  padding: 0;
}

.app-nav-link {
  display: block;
  padding: 0.45rem 0.7rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease;
}

@media (min-width: 1100px) {
  .app-nav-link {
    padding: 0.5rem 0.85rem;
    font-size: 0.8375rem;
  }
}

.app-nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.app-nav-link.nav-active {
  color: #e8f7ff !important;
  background: rgba(78, 191, 255, 0.22) !important;
  box-shadow: inset 0 0 0 1px rgba(78, 191, 255, 0.25);
}

.app-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.app-lang {
  position: relative;
}

.app-lang > summary {
  cursor: pointer;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.app-lang > summary::-webkit-details-marker {
  display: none;
}

.app-lang > summary:hover {
  border-color: rgba(78, 191, 255, 0.35);
  background: rgba(78, 191, 255, 0.08);
  color: var(--text);
}

.app-lang[open] > summary {
  border-color: rgba(78, 191, 255, 0.4);
  background: rgba(78, 191, 255, 0.1);
  color: #fff;
}

.app-lang-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 0.45rem);
  z-index: 80;
  min-width: 11rem;
  padding: 0.35rem;
  border-radius: 12px;
  border: 1px solid var(--app-border-strong);
  background: rgba(14, 18, 24, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 48px -8px rgba(0, 0, 0, 0.65);
}

.app-lang-dropdown a {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: background 0.12s ease, color 0.12s ease;
}

.app-lang-dropdown a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.app-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.1rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(165deg, #4ebfff 0%, #2ea8e6 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 16px -2px rgba(30, 140, 200, 0.45);
  transition: filter 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.app-nav-cta:hover {
  filter: brightness(1.08);
  box-shadow: 0 6px 22px -2px rgba(30, 140, 200, 0.55);
}

.app-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.app-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.app-menu-toggle.is-open {
  background: rgba(78, 191, 255, 0.15);
  border-color: rgba(78, 191, 255, 0.35);
  color: var(--accent-hover);
}

.app-menu-toggle .app-menu-bars,
.app-menu-toggle .app-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.app-menu-toggle .app-menu-close {
  display: none;
}

.app-menu-toggle.is-open .app-menu-bars {
  display: none;
}

.app-menu-toggle.is-open .app-menu-close {
  display: flex;
}

/* Mobile navigation panel */
.app-mobile-nav {
  margin-top: 0.5rem;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--app-border);
  background: rgba(10, 14, 18, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px -12px rgba(0, 0, 0, 0.5);
}

.app-mobile-nav__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.65rem;
  padding: 0 0.15rem;
}

.app-mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.app-mobile-nav__list a {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: background 0.12s ease, color 0.12s ease;
}

.app-mobile-nav__list a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.app-mobile-nav__list a.nav-active {
  background: rgba(78, 191, 255, 0.15);
  color: var(--accent-hover);
}

.app-mobile-lang summary {
  cursor: pointer;
  list-style: none;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.app-mobile-lang summary::-webkit-details-marker {
  display: none;
}

.app-mobile-lang[open] summary {
  border-color: rgba(78, 191, 255, 0.25);
  color: #fff;
}

.app-mobile-lang .app-lang-dropdown {
  position: static;
  margin-top: 0.35rem;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.25);
}

.app-mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(165deg, #4ebfff 0%, #2ea8e6 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px -4px rgba(30, 140, 200, 0.5);
}

.app-mobile-cta:hover {
  filter: brightness(1.06);
}

/* Legacy helpers */
.nav-link,
.nav-chip {
  border: none;
  border-radius: 8px;
  padding: 0.4rem 0.7rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s ease, background 0.15s ease;
}

.nav-chip:hover {
  background: rgba(78, 191, 255, 0.1);
  color: var(--accent-hover);
}

/* Hero */
.app-hero-section {
  position: relative;
}

.app-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.35) 70%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.app-hero {
  position: relative;
  isolation: isolate;
  z-index: 1;
}

.app-hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% 40% -10%;
  background:
    radial-gradient(ellipse 55% 45% at 15% 20%, rgba(78, 191, 255, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 30%, rgba(56, 189, 248, 0.1), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.app-hero-copy,
.app-hero-visual {
  position: relative;
  z-index: 1;
}

.app-hero-panel {
  position: relative;
  z-index: 1;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(22, 30, 42, 0.97) 0%, rgba(14, 19, 26, 0.92) 100%);
  box-shadow:
    var(--shadow-soft),
    0 0 0 1px rgba(78, 191, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.app-hero-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-blue), transparent);
  opacity: 0.75;
  pointer-events: none;
}

.app-hero-panel-inner {
  position: relative;
  padding: 1.5rem 1.5rem 1.75rem;
}

@media (min-width: 640px) {
  .app-hero-panel-inner {
    padding: 2rem 2rem 2.25rem;
  }
}

@media (min-width: 1024px) {
  .app-hero-panel-inner {
    padding: 2.35rem 2.5rem 2.5rem;
  }
}

.app-hero-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}

.app-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(167, 243, 208, 0.95);
  background: rgba(78, 191, 255, 0.12);
  border: 1px solid rgba(78, 191, 255, 0.28);
}

.app-hero-pill i {
  font-size: 0.8rem;
  opacity: 0.9;
}

.app-hero-pill--outline {
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--app-border-strong);
  letter-spacing: 0.05em;
}

.app-hero-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  font-weight: 800;
  text-transform: none;
  color: var(--text);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  line-height: 1.05;
}

.app-hero-brand {
  font-size: clamp(1.85rem, 4.2vw + 0.6rem, 2.75rem);
  line-height: 1.06;
  font-weight: 800;
}

.app-hero-tagline {
  font-size: clamp(1.05rem, 1.1vw + 0.65rem, 1.3rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.35;
  color: #cbd5e1;
  max-width: 26rem;
}

.app-hero-title .accent {
  color: var(--accent);
  font-weight: 800;
}

.app-hero-lead {
  margin-top: 1.15rem;
  max-width: 36rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-muted);
}

@media (min-width: 1024px) {
  .app-hero-lead {
    font-size: 1.125rem;
  }
}

.app-hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.app-hero-metric {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #a7f3d0;
  background: rgba(30, 140, 200, 0.12);
  border: 1px solid rgba(78, 191, 255, 0.22);
}

.app-hero-metric-ic {
  display: flex;
  color: var(--accent);
  font-size: 0.8125rem;
  opacity: 0.95;
}

.app-hero-metric-lab {
  letter-spacing: 0.01em;
}

.app-hero-list {
  margin-top: 1.35rem;
}

.app-hero-list li {
  border: 1px solid var(--app-border);
  background: rgba(8, 12, 17, 0.55);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem 0.8rem 1.05rem;
  position: relative;
  overflow: hidden;
}

.app-hero-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), var(--accent-blue));
  border-radius: 3px 0 0 3px;
}

.app-hero-ctas {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.app-hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.85rem;
  padding: 0.85rem 1.35rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #2ea8e6 0%, #1e86c4 100%);
  box-shadow: 0 10px 28px -6px rgba(30, 140, 200, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.app-hero-cta-primary:hover {
  filter: brightness(1.08);
  box-shadow: 0 14px 36px -8px rgba(30, 140, 200, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.app-hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.85rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.app-hero-cta-secondary:hover {
  border-color: rgba(78, 191, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.app-hero-disclaimer {
  margin-top: 1.25rem;
  font-size: 0.6875rem;
  line-height: 1.5;
  color: var(--text-faint);
}

.app-hero-visual-glow {
  position: absolute;
  width: 92%;
  max-width: 640px;
  height: 72%;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(78, 191, 255, 0.2) 0%, transparent 68%);
  filter: blur(48px);
  pointer-events: none;
  z-index: 0;
}

/* Screenshot: window chrome like desktop app */
.app-window-frame {
  position: relative;
  z-index: 1;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--app-surface);
  box-shadow:
    var(--shadow-soft),
    0 32px 64px -24px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.35s ease;
}

.app-window-frame:hover {
  border-color: rgba(78, 191, 255, 0.28);
  box-shadow:
    var(--shadow-soft),
    0 36px 72px -20px rgba(0, 0, 0, 0.55),
    0 0 48px -12px rgba(78, 191, 255, 0.18);
  transform: translateY(-2px);
}

.app-window-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.7rem 1.1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-bottom: 1px solid var(--app-border);
}

.app-window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #475569;
}

.app-window-dot:nth-child(1) {
  background: #ef4444;
  opacity: 0.85;
}

.app-window-dot:nth-child(2) {
  background: #eab308;
  opacity: 0.85;
}

.app-window-dot:nth-child(3) {
  background: var(--accent);
  opacity: 0.9;
}

.app-window-title {
  margin-left: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.app-screenshot {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  background: #0a0e12;
  display: block;
}

/* Overview: interface gallery */
.app-gallery-band {
  border-top: 1px solid var(--app-border);
  background: linear-gradient(180deg, rgba(8, 12, 17, 0.92) 0%, rgba(10, 14, 18, 0.65) 100%);
}

.app-gallery-card {
  border-radius: var(--radius);
  border: 1px solid var(--app-border);
  background: rgba(17, 24, 32, 0.75);
  overflow: hidden;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.app-gallery-card:hover {
  border-color: rgba(78, 191, 255, 0.22);
  box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.55);
}

.app-gallery-card__shot {
  position: relative;
  background: #05070a;
  border-bottom: 1px solid var(--app-border);
}

.app-gallery-card__shot img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.app-gallery-card__body {
  padding: 1.25rem 1.4rem 1.5rem;
}

.app-gallery-card__title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.app-gallery-card__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* Features: pro cards */
.feature-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(78, 191, 255, 0.95);
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--app-border);
}

.feature-pill i {
  color: var(--accent);
  font-size: 0.65rem;
}

.feature-icon-wrap {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 1rem;
}

.feature-split-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--app-border);
  background: rgba(21, 28, 38, 0.55);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.feature-split-card:hover {
  border-color: rgba(78, 191, 255, 0.18);
  background: rgba(26, 35, 48, 0.5);
}

@media (min-width: 1024px) {
  .feature-split-card--row {
    flex-direction: row;
    align-items: stretch;
  }

  .feature-split-card__media {
    width: 44%;
    max-width: 22rem;
    flex-shrink: 0;
    border-bottom: none;
    border-right: 1px solid var(--app-border);
  }
}

.feature-split-card__media {
  border-bottom: 1px solid var(--app-border);
  background: rgba(5, 8, 12, 0.95);
}

.feature-split-card__media img {
  width: 100%;
  height: auto;
  min-height: 11rem;
  max-height: 16rem;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 0.75rem 1rem 1rem;
}

/* Real app screenshots: editorial product shots */
.feature-split-card__media--photo {
  padding: 0;
  background: #030508;
}

.feature-split-card__media--photo img {
  width: 100%;
  min-height: 12rem;
  max-height: none;
  height: 100%;
  max-height: 20rem;
  padding: 0;
  object-fit: cover;
  object-position: top center;
  aspect-ratio: 16 / 10;
}

@media (min-width: 1024px) {
  .feature-split-card__media--photo img {
    max-height: 22rem;
    min-height: 14rem;
  }

  .feature-split-card--row .feature-split-card__media--photo img {
    min-height: 100%;
    max-height: none;
    aspect-ratio: auto;
    height: 100%;
    min-height: 18rem;
  }
}

.feature-split-card__content {
  flex: 1;
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.feature-li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.feature-li i {
  margin-top: 0.2rem;
  color: var(--accent);
  font-size: 0.7rem;
}

/* Content sections: cards */
.app-section-alt {
  background: rgba(17, 24, 32, 0.35);
}

.app-card {
  border-radius: var(--radius);
  border: 1px solid var(--app-border);
  background: rgba(21, 28, 38, 0.55);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.app-card:hover {
  border-color: rgba(78, 191, 255, 0.15);
  background: rgba(26, 35, 48, 0.55);
}

.app-card h2,
.app-card h3,
.app-section-title {
  font-family: var(--font-display);
}

/* Tables */
.app-table-wrap {
  border-radius: var(--radius);
  border: 1px solid var(--app-border);
  overflow: hidden;
  background: rgba(10, 14, 18, 0.4);
}

/* Download CTA band */
.app-download-band {
  border-radius: var(--radius);
  border: 1px solid rgba(78, 191, 255, 0.25);
  background: linear-gradient(145deg, rgba(8, 70, 110, 0.35) 0%, rgba(10, 14, 18, 0.9) 55%, rgba(15, 23, 42, 0.5) 100%);
  box-shadow: var(--shadow-soft);
}

/* Fixed download: subtle, app-like */
.fixed-download-btn {
  position: fixed;
  right: 1rem;
  bottom: 5.5rem;
  top: auto;
  transform: none;
  z-index: 55;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #2ea8e6, #1e86c4);
  color: white;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  box-shadow: 0 8px 28px rgba(30, 140, 200, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: box-shadow 0.2s, filter 0.2s, transform 0.2s;
}

.fixed-download-btn:hover {
  filter: brightness(1.05);
  box-shadow: 0 12px 32px rgba(30, 140, 200, 0.45);
  transform: translateY(-2px);
}

.fixed-download-btn i {
  font-size: 1rem;
}

@media (min-width: 1024px) {
  .fixed-download-btn {
    bottom: auto;
    top: 50%;
    right: 1.25rem;
    transform: translateY(-50%);
    flex-direction: column;
    padding: 0.85rem 0.75rem;
  }

  .fixed-download-btn:hover {
    transform: translateY(calc(-50% - 2px));
  }
}

@media (max-width: 1023px) {
  .fixed-download-btn span {
    display: none;
  }

  .fixed-download-btn {
    padding: 0.7rem;
  }
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 60;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  background: linear-gradient(135deg, #2ea8e6, #0284c7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Footer */
.app-footer {
  border-color: var(--app-border);
  background: rgba(10, 14, 18, 0.95);
}

/* Skip link */
.skip-link:focus {
  transform: translateY(1rem);
}

/* --------------------------------------------------------------------------
   English-only hero (index.html): editorial layout, scoped under .pro-hero
   Other locales keep .app-hero-* styles above.
   -------------------------------------------------------------------------- */

.pro-hero {
  position: relative;
  isolation: isolate;
  background: linear-gradient(180deg, #070d14 0%, #0a1420 42%, #081018 100%);
}

.pro-hero__aurora {
  position: absolute;
  inset: -20% -30% 35% -30%;
  background:
    radial-gradient(ellipse 50% 42% at 18% 18%, rgba(78, 191, 255, 0.22), transparent 58%),
    radial-gradient(ellipse 45% 38% at 78% 12%, rgba(45, 212, 191, 0.12), transparent 55%),
    radial-gradient(ellipse 40% 35% at 55% 55%, rgba(59, 130, 246, 0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.pro-hero__mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.12) 55%, transparent 92%);
  pointer-events: none;
  z-index: 0;
}

.pro-hero__inner {
  position: relative;
  z-index: 1;
}

.pro-hero__layout {
  display: grid;
  gap: 2.75rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .pro-hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
    gap: 3rem 3.5rem;
  }
}

.pro-hero__rail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.pro-hero__rail-dot {
  width: 3px;
  flex-shrink: 0;
  align-self: stretch;
  min-height: 2.75rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(45, 212, 191, 0.65) 55%, rgba(59, 130, 246, 0.35) 100%);
  box-shadow: 0 0 20px rgba(78, 191, 255, 0.35);
}

.pro-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pro-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(209, 250, 229, 0.95);
  background: rgba(78, 191, 255, 0.14);
  border: 1px solid rgba(78, 191, 255, 0.32);
}

.pro-hero__badge i {
  font-size: 0.8125rem;
  opacity: 0.95;
}

.pro-hero__badge--muted {
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  letter-spacing: 0.06em;
}

.pro-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.pro-hero__title-line {
  display: block;
}

.pro-hero__title-brand {
  font-size: clamp(2.5rem, 6vw + 1rem, 4rem);
  color: #f8fafc;
}

.pro-hero__title-product {
  display: inline-block;
  margin-left: 0.35rem;
  font-size: clamp(2.5rem, 6vw + 1rem, 4rem);
  background: linear-gradient(135deg, #7dd3fc 0%, #4ebfff 38%, #93c5fd 72%, #bfdbfe 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 28px rgba(78, 191, 255, 0.25));
}

.pro-hero__title-tag {
  display: block;
  margin-top: 0.85rem;
  max-width: 28rem;
  font-size: clamp(1.05rem, 1.2vw + 0.75rem, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.45;
  color: #cbd5e1;
}

.pro-hero__lead {
  margin: 1.35rem 0 0;
  max-width: 34rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-muted);
}

@media (min-width: 1024px) {
  .pro-hero__lead {
    font-size: 1.125rem;
  }
}

.pro-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  margin: 1.75rem 0 0;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 639px) {
  .pro-hero__facts {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
}

.pro-hero__fact {
  padding: 0.15rem 0;
}

.pro-hero__fact-term {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(78, 191, 255, 0.9);
}

.pro-hero__fact-def {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #e2e8f0;
  line-height: 1.35;
}

.pro-hero__bullets {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pro-hero__bullets li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.95rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(125deg, rgba(15, 23, 42, 0.65) 0%, rgba(8, 12, 18, 0.85) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.pro-hero__bullet-ic {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.6rem;
  color: var(--accent);
  background: rgba(78, 191, 255, 0.12);
  border: 1px solid rgba(78, 191, 255, 0.22);
  font-size: 0.9rem;
}

.pro-hero__bullet-txt {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #cbd5e1;
}

.pro-hero__bullet-txt strong {
  color: #f1f5f9;
  font-weight: 600;
}

.pro-hero__actions {
  margin-top: 1.85rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.pro-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.4rem;
  border-radius: 0.875rem;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.pro-hero__btn--primary {
  color: #fff;
  background: linear-gradient(145deg, #4ebfff 0%, #2ea8e6 48%, #1e86c4 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 14px 36px -10px rgba(30, 140, 200, 0.65),
    0 0 0 1px rgba(78, 191, 255, 0.2);
}

.pro-hero__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 44px -12px rgba(30, 140, 200, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.14);
}

.pro-hero__btn--line {
  color: #f1f5f9;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.pro-hero__btn--line:hover {
  border-color: rgba(78, 191, 255, 0.4);
  background: rgba(255, 255, 255, 0.07);
}

.pro-hero__legal {
  margin: 1.35rem 0 0;
  font-size: 0.6875rem;
  line-height: 1.55;
  color: var(--text-faint);
  max-width: 36rem;
}

.pro-hero__visual {
  position: relative;
  perspective: 1200px;
}

.pro-hero__glow {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 88%;
  max-width: 520px;
  height: 70%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(78, 191, 255, 0.28) 0%, transparent 65%);
  filter: blur(56px);
  pointer-events: none;
  z-index: 0;
}

.pro-hero__orbit {
  position: absolute;
  inset: -8% -6% -6% -6%;
  border-radius: 1.5rem;
  border: 1px solid rgba(78, 191, 255, 0.12);
  background: linear-gradient(135deg, rgba(78, 191, 255, 0.06) 0%, transparent 45%, rgba(59, 130, 246, 0.05) 100%);
  pointer-events: none;
  z-index: 0;
}

.pro-hero__device {
  position: relative;
  z-index: 1;
  transform-style: preserve-3d;
}

@media (min-width: 1024px) {
  .pro-hero__device {
    transform: rotateY(-7deg) rotateX(4deg) translateZ(0);
  }
}

.pro-hero__window.app-window-frame {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.pro-hero__visual:hover .pro-hero__window.app-window-frame {
  border-color: rgba(78, 191, 255, 0.32);
}

@media (min-width: 1024px) {
  .pro-hero__visual:hover .pro-hero__device {
    transform: rotateY(-5deg) rotateX(2deg) translateY(-4px);
  }
}

.pro-hero__caption {
  margin: 1rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #94a3b8;
}

.pro-hero__caption i {
  color: rgba(78, 191, 255, 0.85);
  font-size: 0.875rem;
}

@media (prefers-reduced-motion: reduce) {
  .pro-hero__device,
  .pro-hero__visual:hover .pro-hero__device {
    transform: none !important;
  }

  .pro-hero__btn--primary:hover {
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   English index only: .pro-site body + .pro-main (matches pro-hero polish)
   -------------------------------------------------------------------------- */

.pro-site {
  background: #080d14;
}

.pro-main {
  position: relative;
  background: linear-gradient(180deg, #080d14 0%, #0a1422 18%, #081018 50%, #0a1018 100%);
}

.pro-main > section {
  position: relative;
  border-color: rgba(255, 255, 255, 0.06) !important;
}

.pro-main > section.app-section-alt {
  background: linear-gradient(180deg, rgba(12, 18, 28, 0.92) 0%, rgba(7, 11, 16, 0.97) 100%);
}

.pro-main > section.app-section-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.2) 75%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.pro-main > section.app-section-alt > div {
  position: relative;
  z-index: 1;
}

.pro-main #overview .app-gallery-band {
  position: relative;
  border-top: 1px solid rgba(78, 191, 255, 0.14);
  background: linear-gradient(180deg, rgba(6, 12, 20, 0.98) 0%, rgba(8, 12, 18, 0.88) 100%);
}

.pro-main #overview .app-gallery-band::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(78, 191, 255, 0.4), rgba(45, 212, 191, 0.2), transparent);
  pointer-events: none;
}

.pro-main #overview .app-gallery-band > div {
  position: relative;
  z-index: 1;
}

.pro-main h2.font-display {
  font-weight: 800;
  letter-spacing: -0.032em;
  line-height: 1.12;
}

.pro-main .feature-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(209, 250, 229, 0.95);
  background: rgba(78, 191, 255, 0.12);
  border: 1px solid rgba(78, 191, 255, 0.28);
}

.pro-main #features > div > header .feature-eyebrow {
  justify-content: flex-start;
}

.pro-main .feature-pill {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.pro-main .feature-pill:hover {
  border-color: rgba(78, 191, 255, 0.28);
  background: rgba(78, 191, 255, 0.08);
}

.pro-main #features aside.rounded-2xl {
  border-color: rgba(78, 191, 255, 0.18);
  background: linear-gradient(155deg, rgba(78, 191, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 55%, rgba(8, 12, 18, 0.85) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 20px 48px -28px rgba(0, 0, 0, 0.55);
}

.pro-main .app-gallery-card {
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(20, 28, 40, 0.95) 0%, rgba(14, 19, 26, 0.92) 100%);
  box-shadow: 0 28px 56px -22px rgba(0, 0, 0, 0.65);
}

.pro-main .app-gallery-card__shot {
  background: linear-gradient(180deg, #04060a 0%, #080c12 100%);
}

.pro-main .feature-split-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(22, 30, 42, 0.88) 0%, rgba(12, 17, 24, 0.94) 100%);
  box-shadow: 0 24px 52px -24px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.pro-main .feature-split-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(78, 191, 255, 0.45), rgba(59, 130, 246, 0.2), transparent);
  opacity: 0.7;
  pointer-events: none;
  z-index: 2;
}

.pro-main .feature-split-card:hover {
  border-color: rgba(78, 191, 255, 0.22);
  box-shadow: 0 28px 60px -20px rgba(0, 0, 0, 0.55), 0 0 40px -16px rgba(78, 191, 255, 0.12);
}

.pro-main .feature-icon-wrap {
  box-shadow: 0 0 0 1px rgba(78, 191, 255, 0.15);
}

.pro-main .app-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(20, 28, 38, 0.92) 0%, rgba(11, 16, 22, 0.96) 100%);
  box-shadow: 0 22px 48px -22px rgba(0, 0, 0, 0.62), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.pro-main .app-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(78, 191, 255, 0.4), rgba(45, 212, 191, 0.25), transparent);
  opacity: 0.65;
  pointer-events: none;
}

.pro-main .app-card:hover {
  border-color: rgba(78, 191, 255, 0.2);
}

.pro-main #guide .app-card > span.flex.h-10.w-10 {
  background: linear-gradient(145deg, #4ebfff 0%, #2ea8e6 48%, #1e86c4 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 28px -6px rgba(30, 140, 200, 0.55);
}

.pro-main #experiences blockquote.app-card {
  border-left: 3px solid rgba(78, 191, 255, 0.45);
  padding-left: 1.35rem;
}

.pro-main #experiences blockquote footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1rem;
  margin-top: 1rem;
}

.pro-main .app-table-wrap {
  border-color: rgba(78, 191, 255, 0.16);
  background: rgba(6, 10, 14, 0.75);
  box-shadow: 0 24px 52px -20px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.pro-main .app-table-wrap table thead {
  background: linear-gradient(180deg, rgba(8, 70, 110, 0.45) 0%, rgba(17, 24, 32, 0.98) 100%);
}

.pro-main .app-table-wrap table thead th {
  color: rgba(148, 163, 184, 0.95);
  border-bottom: 1px solid rgba(78, 191, 255, 0.12);
}

.pro-main .app-table-wrap table tbody tr:hover td {
  background: rgba(78, 191, 255, 0.04);
}

.pro-main .app-download-band {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(78, 191, 255, 0.32);
  background: linear-gradient(135deg, rgba(8, 70, 110, 0.42) 0%, rgba(8, 14, 20, 0.96) 42%, rgba(15, 23, 42, 0.55) 100%);
  box-shadow: 0 28px 64px -24px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pro-main .app-download-band::before {
  content: "";
  position: absolute;
  width: 140%;
  height: 80%;
  left: -20%;
  top: -40%;
  background: radial-gradient(ellipse at center, rgba(78, 191, 255, 0.12), transparent 55%);
  pointer-events: none;
}

.pro-main .app-download-band > * {
  position: relative;
  z-index: 1;
}

.pro-main #download a.rounded-xl.bg-sky-500 {
  border-radius: 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, #4ebfff 0%, #2ea8e6 48%, #1e86c4 100%);
  box-shadow: 0 14px 36px -10px rgba(30, 140, 200, 0.6), 0 0 0 1px rgba(78, 191, 255, 0.2);
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.pro-main #download a.rounded-xl.bg-sky-500:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px -12px rgba(30, 140, 200, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.pro-main #download a.rounded-xl.border.border-slate-600 {
  border-radius: 0.875rem;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 600;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.pro-main #download a.rounded-xl.border.border-slate-600:hover {
  border-color: rgba(78, 191, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.pro-main #mistakes article.rounded-2xl {
  border-radius: var(--radius);
  border-color: rgba(244, 63, 94, 0.28);
  background: linear-gradient(145deg, rgba(80, 20, 35, 0.35) 0%, rgba(12, 10, 14, 0.92) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 16px 40px -20px rgba(0, 0, 0, 0.5);
}

.pro-main #keyword-coverage .rounded-xl.border.border-slate-800 {
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(22, 30, 42, 0.75) 0%, rgba(8, 12, 18, 0.95) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pro-main #keyword-coverage .rounded-xl.border.border-slate-800:hover {
  border-color: rgba(78, 191, 255, 0.22);
  box-shadow: 0 16px 40px -18px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.pro-main #long-read .mt-8.space-y-4,
.pro-main #performance-notes .mt-8.space-y-4 {
  padding: 1.75rem 1.85rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(18, 26, 38, 0.5) 0%, rgba(8, 12, 17, 0.88) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.pro-main #long-read .mt-8.space-y-4 p,
.pro-main #performance-notes .mt-8.space-y-4 p {
  margin: 0;
}

.pro-main #long-read .mt-8.space-y-4 p + p,
.pro-main #performance-notes .mt-8.space-y-4 p + p {
  margin-top: 1rem;
}

.pro-main #troubleshooting img.rounded-xl {
  border-color: rgba(78, 191, 255, 0.15);
  box-shadow: 0 20px 48px -20px rgba(0, 0, 0, 0.5);
}

@media (prefers-reduced-motion: reduce) {
  .pro-main #download a.rounded-xl.bg-sky-500:hover {
    transform: none;
  }
}

/* Primary actions: HiBit header cyan (not default Tailwind sky-500) */
a.skip-link.bg-sky-500 {
  background: linear-gradient(145deg, #6bc8ff 0%, #4ebfff 50%, #2ea8e6 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 26px -6px rgba(30, 140, 200, 0.42);
}

a[data-download-link="true"].inline-flex.bg-sky-500 {
  background: linear-gradient(145deg, #6bc8ff 0%, #4ebfff 50%, #2ea8e6 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px -8px rgba(30, 140, 200, 0.45);
}

.pro-site .app-header-bar {
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow:
    0 4px 28px -4px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(78, 191, 255, 0.06);
}

.pro-site .app-footer {
  position: relative;
  border-top: 1px solid rgba(78, 191, 255, 0.12);
  background: linear-gradient(180deg, rgba(10, 14, 20, 0.98) 0%, rgba(6, 9, 14, 1) 100%);
}

.pro-site .app-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(78, 191, 255, 0.35), transparent);
  pointer-events: none;
}
