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

/* ── CSS Custom Properties ── */
:root {
  --background:  hsl(250, 35%, 7%);
  --foreground:  hsl(240, 20%, 96%);
  --card:        hsl(250, 30%, 10%);
  --primary:     hsl(270, 90%, 65%);
  --primary-fg:  hsl(250, 35%, 7%);
  --secondary:   hsl(250, 25%, 15%);
  --muted:       hsl(250, 20%, 14%);
  --muted-fg:    hsl(240, 10%, 70%);
  --accent:      hsl(180, 95%, 55%);
  --accent-fg:   hsl(250, 35%, 7%);
  --border:      hsl(260, 30%, 22%);
  --input:       hsl(250, 25%, 15%);
  --radius:      0.75rem;

  /* Raw HSL values used for alpha variants */
  --primary-h: 270; --primary-s: 90%; --primary-l: 65%;
  --accent-h:  180; --accent-s:  95%; --accent-l:  55%;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; background: none; font: inherit; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(circle at 20% 10%, hsla(270, 90%, 65%, 0.12), transparent 50%),
    radial-gradient(circle at 80% 90%, hsla(180, 95%, 55%, 0.10), transparent 50%);
  background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ── Layout ── */
.page-wrapper { display: flex; flex-direction: column; min-height: 100vh; }
.page-wrapper > main { flex: 1; }
.page-wrapper.full-height > main { display: flex; flex-direction: column; }

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background-color: hsla(250, 35%, 7%, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid hsla(270, 90%, 65%, 0.2);
}

.header-inner {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}

.logo-icon {
  display: flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 0.5rem;
  transition: transform 0.3s;
  box-shadow: 0 0 24px -4px hsla(270, 90%, 65%, 0.45), 0 0 60px -10px hsla(180, 95%, 55%, 0.25);
  flex-shrink: 0;
}
.logo-link:hover .logo-icon { transform: scale(1.05); }

.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--foreground);
}

.desktop-nav { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 768px) { .desktop-nav { display: flex; } }

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  transition: color 0.3s, background-color 0.3s;
  color: var(--muted-fg);
}
.nav-link:hover { color: var(--foreground); background-color: var(--muted); }
.nav-link.active { background-color: hsla(270, 90%, 65%, 0.15); color: var(--primary); }

.mobile-menu-btn {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  transition: background-color 0.2s;
  color: var(--foreground);
}
.mobile-menu-btn:hover { background-color: var(--muted); }
@media (min-width: 768px) { .mobile-menu-btn { display: none; } }

.mobile-nav {
  display: none;
  border-top: 1px solid hsla(270, 90%, 65%, 0.2);
  background-color: hsla(250, 35%, 7%, 0.95);
  backdrop-filter: blur(12px);
}
.mobile-nav.open { display: block; }
.mobile-nav-inner { padding: 0.75rem 1rem; }
.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.75rem;
  transition: color 0.2s, background-color 0.2s;
  color: var(--muted-fg);
}
.mobile-nav-link:hover { color: var(--foreground); background-color: var(--muted); }
.mobile-nav-link.active { background-color: hsla(270, 90%, 65%, 0.15); color: var(--primary); }

/* ── Footer ── */
.site-footer {
  width: 100%;
  border-top: 1px solid hsla(270, 90%, 65%, 0.2);
  background-color: hsla(250, 35%, 7%, 0.6);
  backdrop-filter: blur(12px);
}
.footer-inner {
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 640px) {
  .footer-inner { flex-direction: row; justify-content: space-between; }
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-logo-icon {
  display: flex;
  width: 1.75rem;
  height: 1.75rem;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 0.375rem;
  flex-shrink: 0;
}
.footer-logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.footer-copy { font-size: 0.875rem; color: var(--muted-fg); }

/* ── Utility classes ── */
.calma-card {
  background-color: hsla(250, 30%, 10%, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  border: 1px solid hsla(270, 90%, 65%, 0.2);
  box-shadow:
    0 0 0 1px hsla(270, 90%, 65%, 0.08),
    0 10px 40px -10px hsla(270, 90%, 65%, 0.35);
}

.calma-glow {
  box-shadow:
    0 0 24px -4px hsla(270, 90%, 65%, 0.45),
    0 0 60px -10px hsla(180, 95%, 55%, 0.25);
}

.neon-text {
  text-shadow: 0 0 20px hsla(270, 90%, 65%, 0.6), 0 0 40px hsla(270, 90%, 65%, 0.3);
}

.grid-bg {
  background-image:
    linear-gradient(hsla(270, 90%, 65%, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, hsla(270, 90%, 65%, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.02em;
  border: none;
}

.btn-hero {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--primary-fg);
  box-shadow: 0 0 20px hsla(270, 90%, 65%, 0.4);
}
.btn-hero:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 0 30px hsla(270, 90%, 65%, 0.5); }

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
}
.btn-outline:hover { background-color: var(--muted); }

.btn-default {
  background-color: var(--primary);
  color: var(--primary-fg);
}
.btn-default:hover { opacity: 0.9; }

.btn-lg { font-size: 1.125rem; padding: 1rem 2rem; }
.btn-full { width: 100%; }

/* ── Animations ── */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes breathe {
  0%, 100% { transform: scale(1);    opacity: 0.6; }
  50%       { transform: scale(1.15); opacity: 1; }
}
@keyframes gentle-pulse {
  0%, 100% { opacity: 0.8; }
  50%       { opacity: 0.4; }
}

.animate-float   { animation: float   6s ease-in-out infinite; }
.animate-breathe { animation: breathe 4s ease-in-out infinite; }

/* ── Page: Index ── */
.hero-section {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 3rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  max-width: 80rem;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.hero-content { text-align: center; }
@media (min-width: 1024px) { .hero-content { text-align: left; } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  background-color: hsla(270, 90%, 65%, 0.1);
  border: 1px solid hsla(270, 90%, 65%, 0.3);
  color: var(--primary);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--foreground);
  letter-spacing: 0.08em;
}

.hero-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  color: var(--muted-fg);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) { .hero-sub { margin-left: 0; margin-right: 0; } }

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 640px) { .hero-ctas { flex-direction: row; } }
@media (min-width: 1024px) { .hero-ctas { justify-content: flex-start; } }

.hero-image-wrap {
  display: flex;
  justify-content: center;
}
@media (min-width: 1024px) { .hero-image-wrap { justify-content: flex-end; } }

.hero-image-wrap img { max-width: 100%; height: auto; }

/* ── Page: Add to Chrome / Firefox (install pages) ── */
.install-section {
  display: flex;
  min-height: calc(100vh - 200px);
  align-items: center;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.install-inner {
  width: 100%;
  padding: 0 2rem;
}
@media (min-width: 768px) { .install-inner { padding: 0 3rem; } }
@media (min-width: 1024px) { .install-inner { padding: 0 5rem; } }
@media (min-width: 1280px) { .install-inner { padding: 0 7rem; } }

.install-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .install-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

.install-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 2rem;
}
.install-brand-icon {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  flex-shrink: 0;
}
.install-brand-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.install-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 1.25rem;
  color: var(--foreground);
  letter-spacing: 0.05em;
}
.install-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted-fg);
  margin-bottom: 2rem;
}
.install-legal {
  max-width: 24rem;
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--muted-fg);
  margin-top: 1.5rem;
}
.install-legal a { color: var(--primary); }
.install-legal a:hover { text-decoration: underline; }

.install-visual { display: none; justify-content: center; }
@media (min-width: 1024px) { .install-visual { display: flex; } }

.install-card-wrap { position: relative; }
.install-card-main {
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.install-card-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14rem;
  height: 14rem;
  background: linear-gradient(135deg, hsla(270,90%,65%,0.3), hsla(270,90%,65%,0.1), hsla(180,95%,55%,0.2));
  border-radius: 1rem;
  border: 1px solid hsla(270, 90%, 65%, 0.3);
}

.badge-float {
  position: absolute;
  padding: 0.75rem;
  background-color: var(--card);
  border-radius: 1rem;
  border: 1px solid;
}
.badge-float.accent { border-color: hsla(180, 95%, 55%, 0.4); top: -0.75rem; left: -0.75rem; }
.badge-float.primary { border-color: hsla(270, 90%, 65%, 0.4); bottom: -0.75rem; right: -0.75rem; }

/* ── Orb decorations ── */
.orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(60px);
  pointer-events: none;
}
.orb-primary { background-color: hsla(270, 90%, 65%, 0.15); }
.orb-accent  { background-color: hsla(180, 95%, 55%, 0.20); }
.orb-muted   { background-color: hsla(250, 20%, 14%, 0.30); }

/* ── Page: ThankYou / Goodbye (centered pages) ── */
.center-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
  position: relative;
  overflow: hidden;
}

.center-content {
  max-width: 42rem;
  text-align: center;
  position: relative;
}

.icon-badge {
  display: flex;
  width: 5rem;
  height: 5rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  border: 1px solid hsla(270, 90%, 65%, 0.3);
  background-color: hsla(270, 90%, 65%, 0.15);
  margin: 0 auto 2rem;
}
.icon-badge.round { border-radius: 9999px; background-color: var(--muted); border-color: var(--border); }
.icon-badge.glow { box-shadow: 0 0 24px -4px hsla(270,90%,65%,0.45), 0 0 60px -10px hsla(180,95%,55%,0.25); }

.center-title { font-size: clamp(2rem, 6vw, 3rem); margin-bottom: 1.5rem; color: var(--foreground); letter-spacing: 0.08em; }
.center-desc  { font-size: 1.125rem; color: var(--muted-fg); margin-bottom: 2rem; line-height: 1.7; }

/* ── Getting-started list ── */
.getting-started {
  text-align: left;
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}
.getting-started h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--foreground);
  letter-spacing: 0.05em;
}
.getting-started ul { display: flex; flex-direction: column; gap: 0.75rem; }
.getting-started li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted-fg);
  font-size: 0.95rem;
  line-height: 1.5;
}
.getting-started li svg { flex-shrink: 0; margin-top: 0.125rem; }

/* ── Goodbye help card ── */
.help-card {
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  text-align: center;
}
.help-card h2 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--foreground);
  letter-spacing: 0.05em;
}
.help-card p { color: var(--muted-fg); margin-bottom: 1rem; }

/* ── Page: Contact ── */
.contact-section { padding: 5rem 0; position: relative; overflow: hidden; }

.contact-header { text-align: center; margin-bottom: 2.5rem; }
.contact-header .icon-badge { display: flex; margin: 0 auto 1.5rem; }
.contact-header h1 { font-size: clamp(1.75rem, 4vw, 2.25rem); margin-bottom: 1rem; color: var(--foreground); letter-spacing: 0.05em; }
.contact-header p { font-size: 1.125rem; color: var(--muted-fg); }

.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label { font-size: 0.875rem; font-weight: 500; color: var(--foreground); }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background-color: var(--input);
  color: var(--foreground);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--muted-fg); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(270, 90%, 65%, 0.3);
}
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; padding-right: 2.5rem; }
.form-select option { background-color: var(--card); color: var(--foreground); }
.form-textarea { resize: none; }

.success-card { padding: 2rem; text-align: center; }
.success-card h2 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--foreground); letter-spacing: 0.05em; }
.success-card p { color: var(--muted-fg); }
.success-icon {
  display: flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: hsla(270, 90%, 65%, 0.15);
  border: 1px solid hsla(270, 90%, 65%, 0.3);
  margin: 0 auto 1rem;
}

/* ── Page: Privacy / Terms (prose) ── */
.prose-section { padding: 5rem 0; }
.prose-inner { max-width: 48rem; margin: 0 auto; padding: 0 1rem; }
.prose-inner h1 { font-size: clamp(1.75rem, 4vw, 2.25rem); margin-bottom: 2rem; color: var(--foreground); letter-spacing: 0.05em; }
.prose-inner h2 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); margin-top: 2.5rem; margin-bottom: 1rem; color: var(--foreground); letter-spacing: 0.05em; }
.prose-inner p { color: var(--muted-fg); line-height: 1.8; margin-bottom: 1rem; }
.prose-inner strong { color: var(--foreground); }
.prose-inner a { color: var(--primary); }
.prose-inner a:hover { text-decoration: underline; }
.prose-inner ul, .prose-inner ol { padding-left: 1.5rem; margin-bottom: 1rem; color: var(--muted-fg); line-height: 1.8; }
.prose-inner ul { list-style: disc; }
.prose-inner ol { list-style: decimal; }
.prose-inner li { margin-bottom: 0.4rem; }
.prose-inner em { font-style: italic; }
.prose-inner table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; font-size: 0.875rem; }
.prose-inner th, .prose-inner td { border: 1px solid var(--border); padding: 0.6rem 0.75rem; color: var(--muted-fg); vertical-align: top; line-height: 1.6; }
.prose-inner th { background-color: hsla(270,90%,65%,0.08); color: var(--foreground); font-weight: 600; }
.prose-inner figure { overflow-x: auto; margin-bottom: 1.5rem; }

/* ── Page: Uninstall ── */
.uninstall-section { padding: 5rem 0; }
.uninstall-header { text-align: center; margin-bottom: 3rem; }
.uninstall-header h1 { font-size: clamp(1.75rem, 4vw, 2.25rem); margin-bottom: 1rem; color: var(--foreground); letter-spacing: 0.05em; }
.uninstall-header p { font-size: 1.125rem; color: var(--muted-fg); }

.uninstall-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) { .uninstall-grid { grid-template-columns: 1fr 1fr; } }

.uninstall-card { padding: 1.5rem; }
.uninstall-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.uninstall-card-icon {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  border: 1px solid;
}
.uninstall-card-icon.primary { background-color: hsla(270,90%,65%,0.15); border-color: hsla(270,90%,65%,0.3); }
.uninstall-card-icon.accent  { background-color: hsla(180,95%,55%,0.15); border-color: hsla(180,95%,55%,0.3); }
.uninstall-card h2 { font-size: 1.25rem; color: var(--foreground); letter-spacing: 0.05em; }

.step-list { display: flex; flex-direction: column; gap: 1rem; }
.step-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.step-num {
  display: flex;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}
.step-num.primary { background-color: hsla(270,90%,65%,0.15); color: var(--primary); }
.step-num.accent  { background-color: hsla(180,95%,55%,0.15); color: var(--accent); }
.step-item p { color: var(--muted-fg); line-height: 1.5; }

.help-alert {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border-color: hsla(180,95%,55%,0.4) !important;
  background-color: hsla(180,95%,55%,0.05) !important;
}
.help-alert-inner { display: flex; align-items: flex-start; gap: 1rem; }
.help-alert h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--foreground); letter-spacing: 0.05em; }
.help-alert p { color: var(--muted-fg); margin-bottom: 1rem; }

/* ── Page: 404 ── */
.notfound-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
  overflow: hidden;
  background-color: var(--background);
  background-image:
    radial-gradient(circle at 20% 10%, hsla(270, 90%, 65%, 0.12), transparent 50%),
    radial-gradient(circle at 80% 90%, hsla(180, 95%, 55%, 0.10), transparent 50%);
}
.notfound-content { text-align: center; position: relative; z-index: 1; }
.notfound-content h1 { font-size: 5rem; margin-bottom: 1rem; color: var(--foreground); letter-spacing: 0.08em; }
.notfound-content p { font-size: 1.25rem; color: var(--muted-fg); margin-bottom: 2rem; }

/* ── SVG icon helpers ── */
.icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.icon-primary { color: var(--primary); }
.icon-accent  { color: var(--accent); }
.icon-muted   { color: var(--muted-fg); }
.icon-fg      { color: var(--foreground); }
.icon-pfg     { color: var(--primary-fg); }
