/* ==========================================================================
   OMNI C2 Framework — Premium Dark Security Theme
   Version: 2.0 | 2026
   Stack: Bootstrap 5 + Bootstrap Icons + Inter + Space Grotesk + JetBrains Mono
   ========================================================================== */

/* ==========================================================================
   1. CSS Custom Properties
   ========================================================================== */
:root {
  --bg-primary:      #0a0e17;
  --bg-secondary:    #0d1117;
  --bg-card:         #161b22;
  --bg-card-hover:   #1c2230;
  --accent:          #00d97e;
  --accent-hover:    #00b86a;
  --accent-dim:      rgba(0, 217, 126, 0.10);
  --accent-dim2:     rgba(0, 217, 126, 0.06);
  --text-primary:    #e6edf3;
  --text-muted:      #8b949e;
  --border:          #30363d;
  --border-hover:    #484f58;
  --border-accent:   rgba(0, 217, 126, 0.30);
  --font-sans:       'Inter', system-ui, -apple-system, sans-serif;
  --font-heading:    'Space Grotesk', 'Inter', sans-serif;
  --font-mono:       'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
  --radius:          10px;
  --radius-lg:       16px;
  --radius-xl:       24px;
  --shadow-card:     0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-glow:     0 0 40px rgba(0, 217, 126, 0.12);
  --shadow-glow-lg:  0 0 80px rgba(0, 217, 126, 0.18);
  --transition:      0.2s ease;
  --transition-slow: 0.4s ease;
  /* Legacy compat */
  --theme-color:     #00d97e;
  --theme-hover:     #00b86a;
  --accent-green:    #00d97e;
  --accent-blue:     #388bfd;
  --text-secondary:  #8b949e;
}

/* ==========================================================================
   2. Base Reset & Typography
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

footer { margin-top: auto; }
main   { flex: 1; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--accent-hover); text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; }
address { font-style: normal; }
ul { margin: 0; padding: 0; }
code, pre { font-family: var(--font-mono); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--border-hover); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* Selection */
::selection {
  background: rgba(0, 217, 126, 0.22);
  color: var(--text-primary);
}

/* ==========================================================================
   3. Keyframe Animations
   ========================================================================== */
@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes gridPan {
  0%   { background-position: 0 0, 0 0; }
  100% { background-position: 60px 60px, 60px 60px; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 217, 126, 0.15); }
  50%       { box-shadow: 0 0 50px rgba(0, 217, 126, 0.35); }
}

@keyframes terminalBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

@keyframes scanLine {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}

@keyframes borderGlow {
  0%, 100% { border-color: var(--border-accent); }
  50%       { border-color: rgba(0, 217, 126, 0.6); }
}

/* ==========================================================================
   4. Utility Classes
   ========================================================================== */
.section-bg    { background: var(--bg-secondary); }
.text-accent   { color: var(--accent) !important; }
.text-muted-c  { color: var(--text-muted) !important; }
.font-mono     { font-family: var(--font-mono) !important; }
.font-heading  { font-family: var(--font-heading) !important; }
.animate-fade-up  { animation: fadeInUp 0.6s ease both; }
.animate-fade-down { animation: fadeInDown 0.6s ease both; }
.anim-delay-1  { animation-delay: 0.1s; }
.anim-delay-2  { animation-delay: 0.2s; }
.anim-delay-3  { animation-delay: 0.3s; }
.anim-delay-4  { animation-delay: 0.4s; }

.badge-version {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: #000;
  background: var(--accent);
  border-radius: 999px;
  padding: 4px 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-outline {
  background: transparent;
  border: 1px solid var(--border-accent);
  color: var(--accent);
}

/* ==========================================================================
   5. Preloader
   ========================================================================== */
#preloader {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
#preloader::before {
  content: "";
  width: 52px;
  height: 52px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.85s linear infinite;
}

/* ==========================================================================
   6. Back to Top
   ========================================================================== */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 20px;
  z-index: 996;
  background: var(--accent);
  color: #000;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
.back-to-top:hover {
  background: var(--accent-hover);
  color: #000;
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

/* ==========================================================================
   7. Navbar / Header
   ========================================================================== */
/* Topbar fixed-top override — keep it subtle */
#topbar.fixed-top {
  z-index: 998;
  top: 0;
}
#topbar {
  font-size: 0.78rem;
  padding: 6px 0;
}

#header {
  position: fixed;
  /* sits below topbar (~38px) */
  top: 38px;
  left: 0;
  right: 0;
  z-index: 997;
  padding: 0;
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(48,54,61,0.5);
  transition: all 0.3s ease;
  height: 68px;
}

/* When there's no topbar content the topbar is effectively zero height */
/* fixed-top-margin accounts for topbar + header combined */
.fixed-top-margin {
  margin-top: 106px !important;
}

#header .container {
  height: 100%;
  display: flex;
  align-items: center;
}

#header.header-scrolled {
  border-bottom-color: var(--border);
  background: rgba(10, 14, 23, 0.97);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

/* Logo */
#header .logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary) !important;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: auto;
}
#header .logo img { max-height: 38px; width: auto; }
#header .logo span { color: var(--accent); }

/* ── SmartEnd #navbar structure ── */
.navbar {
  padding: 0;
}

#navbar {
  display: flex;
  align-items: center;
}

#navbar ul {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

#navbar ul li a {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 8px;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
}

#navbar ul li a:hover,
#navbar ul li a.active {
  color: var(--text-primary);
  background: rgba(255,255,255,.05);
}

#navbar ul li .drop-arrow {
  font-size: 0.65rem;
  margin-left: 2px;
  transition: transform var(--transition);
}

/* Dropdown submenu */
#navbar ul li.dropdown ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
  min-width: 200px;
  gap: 2px;
  flex-direction: column;
  transition: opacity .2s ease, visibility .2s ease, top .2s ease;
}

#navbar ul li.dropdown:hover > ul,
#navbar ul li.dropdown:focus-within > ul {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

#navbar ul li.dropdown { position: relative; }

#navbar ul li.dropdown ul li a {
  font-size: 0.84rem;
  padding: 9px 14px;
  color: var(--text-muted);
  border-radius: 8px;
  width: 100%;
}
#navbar ul li.dropdown ul li a:hover { color: var(--accent); background: var(--accent-dim); }

/* Mobile nav toggle button */
.mobile-nav-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all var(--transition);
  margin-left: 12px;
}
.mobile-nav-toggle:hover { color: var(--accent); border-color: var(--border-accent); }

/* Mobile navbar expanded state */
.navbar-mobile {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  overflow-y: auto;
  transition: 0.3s;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(4px);
}

.navbar-mobile #navbar {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: var(--bg-card);
  border-left: 1px solid var(--border);
  padding: 60px 20px 30px;
  overflow-y: auto;
  z-index: 1000;
  animation: fadeIn 0.25s ease;
}

.navbar-mobile #navbar ul {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
}

.navbar-mobile #navbar ul li { width: 100%; }
.navbar-mobile #navbar ul li a {
  width: 100%;
  font-size: 0.95rem;
  padding: 12px 16px;
  border-radius: 10px;
}

.navbar-mobile #navbar ul li.dropdown ul {
  position: static;
  opacity: 1;
  visibility: visible;
  top: auto;
  box-shadow: none;
  background: rgba(0,0,0,.2);
  border: 1px solid var(--border);
  margin-top: 4px;
  margin-left: 16px;
}

.mobile-nav-toggle.bi-x { color: var(--text-primary); }

.navbar {
  padding-top: 14px;
  padding-bottom: 14px;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary) !important;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-brand span { color: var(--accent); }
.navbar-brand img {
  max-height: 36px;
  width: auto;
}

.navbar-nav .nav-link {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted) !important;
  padding: 8px 14px !important;
  position: relative;
  transition: color var(--transition);
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--text-primary) !important;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 10px;
  color: var(--text-muted);
  background: transparent;
}
.navbar-toggler:focus { box-shadow: 0 0 0 3px var(--accent-dim); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%238b949e' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.dropdown-menu {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 8px;
}
.dropdown-item {
  color: var(--text-muted);
  font-size: 0.875rem;
  border-radius: 6px;
  padding: 8px 12px;
  transition: all var(--transition);
}
.dropdown-item:hover,
.dropdown-item:focus {
  background: var(--accent-dim);
  color: var(--accent);
}
.dropdown-divider { border-color: var(--border); }

/* Language / currency dropdowns */
.header-dropdown .btn {
  font-size: 0.82rem;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 5px 12px;
  transition: all var(--transition);
}
.header-dropdown .btn:hover {
  border-color: var(--border-accent);
  color: var(--accent);
}

/* ==========================================================================
   8. Hero Section — STUNNING
   ========================================================================== */
.hero-section,
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--bg-primary);
  /* top padding accounts for fixed topbar (~40px) + fixed header (70px) */
  padding: 140px 0 80px;
}

/* Animated grid background */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 59px,
      rgba(48, 54, 61, 0.35) 59px,
      rgba(48, 54, 61, 0.35) 60px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 59px,
      rgba(48, 54, 61, 0.35) 59px,
      rgba(48, 54, 61, 0.35) 60px
    );
  animation: gridPan 25s linear infinite;
  pointer-events: none;
  z-index: 0;
}

/* Green glow — bottom left */
.hero-section::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, rgba(0, 217, 126, 0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Blue tint — top right */
.hero-bg-tint {
  position: absolute;
  top: -15%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle at center, rgba(56, 139, 253, 0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Additional center glow */
.hero-bg-center {
  position: absolute;
  top: 40%;
  left: 35%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at center, rgba(0, 217, 126, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

/* Hero 2-column grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Hero content (left column) */
.hero-content {
  max-width: 620px;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: #000;
  background: var(--accent);
  border-radius: 999px;
  padding: 5px 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease both;
}
.hero-badge::before {
  content: "●";
  font-size: 0.5rem;
  animation: terminalBlink 1.5s ease infinite;
}

/* Hero title */
h1.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.1s both;
}
h1.hero-title em {
  color: var(--accent);
  font-style: normal;
  position: relative;
}
h1.hero-title em::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 1px;
}

/* Hero subtext */
p.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

/* CTA buttons row */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #000 !important;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-hero-primary:hover {
  background: var(--accent-hover);
  color: #000 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 217, 126, 0.35);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary) !important;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 12px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-hero-secondary:hover {
  border-color: var(--border-accent);
  color: var(--accent) !important;
  background: var(--accent-dim);
  transform: translateY(-2px);
}

/* Hero disclaimer */
.hero-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.75;
  margin-top: 8px;
  animation: fadeInUp 0.6s ease 0.4s both;
}

/* Hero stats — bottom of left column */
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  animation: fadeInUp 0.6s ease 0.5s both;
}
.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ==========================================================================
   9. Hero Terminal Mockup
   ========================================================================== */
.hero-terminal {
  background: #0d1117;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0, 217, 126, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(0, 217, 126, 0.06);
  animation: fadeIn 0.8s ease 0.3s both, pulseGlow 4s ease-in-out 1.5s infinite;
  position: relative;
}

/* Scanline overlay effect */
.hero-terminal::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 217, 126, 0.4), transparent);
  animation: scanLine 4s linear infinite;
  pointer-events: none;
  z-index: 2;
  opacity: 0.5;
}

.terminal-header {
  background: #161b22;
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.terminal-dots {
  display: flex;
  gap: 6px;
}
.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.terminal-dot.dot-red    { background: #ff5f57; }
.terminal-dot.dot-yellow { background: #febc2e; }
.terminal-dot.dot-green  { background: #28c840; }
.terminal-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  flex: 1;
  text-align: center;
  letter-spacing: 0.04em;
}

.terminal-body {
  padding: 20px 20px 24px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  line-height: 1.7;
  min-height: 300px;
  position: relative;
  z-index: 1;
}

.t-prompt {
  color: var(--accent);
  font-weight: 600;
}
.t-cmd {
  color: #e6edf3;
}
.t-output {
  color: var(--text-muted);
  display: block;
  padding-left: 0;
}
.t-active {
  color: var(--accent);
}
.t-success {
  color: #00d97e;
  font-weight: 600;
}
.t-warning {
  color: #febc2e;
}
.t-info {
  color: #388bfd;
}
.t-blank { display: block; height: 0.5em; }

.terminal-cursor {
  display: inline-block;
  width: 8px;
  height: 1em;
  background: var(--accent);
  margin-left: 2px;
  vertical-align: middle;
  animation: terminalBlink 1.1s ease infinite;
}

/* ==========================================================================
   10. Section Title Component
   ========================================================================== */
.section-title {
  text-align: center;
  padding-bottom: 48px;
}
.section-title h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  position: relative;
  display: inline-block;
}
.section-title h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
  margin: 12px auto 0;
}
.section-title p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ==========================================================================
   11. Feature Cards (row2 / features section)
   ========================================================================== */
#features,
#topics {
  padding: 90px 0;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition-slow);
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Top-left corner accent line */
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--accent);
  border-radius: 0 0 2px 0;
  transition: height 0.4s ease;
}

/* Bottom-right shine effect */
.feature-card::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at center, rgba(0, 217, 126, 0.05) 0%, transparent 70%);
  transition: opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
}

.feature-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

.feature-card:hover::before {
  height: 50%;
}

.feature-card:hover::after {
  opacity: 1;
}

/* Icon circle */
.feature-card .fc-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: var(--accent);
  transition: all var(--transition);
  flex-shrink: 0;
}

.feature-card:hover .fc-icon {
  background: var(--accent-dim);
  box-shadow: 0 0 20px rgba(0, 217, 126, 0.2);
  transform: scale(1.05);
}

.feature-card .fc-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.feature-card .fc-body {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

/* ==========================================================================
   12. Stats Bar
   ========================================================================== */
.stats-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 20px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
  display: block;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 500;
}

/* Seeder content uses .stat-value — alias to .stat-num */
.stat-value {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
  display: block;
}

/* Version/badge label */
.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 20px;
  padding: 4px 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ==========================================================================
   13. Pricing Cards
   ========================================================================== */
#pricing {
  padding: 90px 0;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  transition: all var(--transition-slow);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
  transition: background 0.4s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--border-hover);
}

.pricing-card.featured {
  border-color: var(--border-accent);
  background: linear-gradient(180deg, rgba(0, 217, 126, 0.06) 0%, var(--bg-card) 40%);
  animation: pulseGlow 4s ease-in-out infinite;
}

.pricing-card.featured::before {
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.pricing-card.featured:hover {
  box-shadow: var(--shadow-glow-lg);
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: #000;
  background: var(--accent);
  border-radius: 999px;
  padding: 3px 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.pricing-price {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.pricing-price .amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.04em;
}

.pricing-price .amount.text-accent { color: var(--accent); }

.pricing-price .currency {
  font-size: 1.4rem;
  font-weight: 600;
  vertical-align: super;
  color: var(--text-muted);
}

.pricing-price .period {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pricing-features li .bi {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-features li.disabled {
  opacity: 0.45;
  text-decoration: line-through;
}

.pricing-features li.disabled .bi {
  color: var(--text-muted);
}

/* ==========================================================================
   14. FAQ Accordion
   ========================================================================== */
#faq {
  padding: 90px 0;
}

.omni-faq .accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.omni-faq .accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-lg) !important;
  overflow: hidden;
  transition: border-color var(--transition);
}

.omni-faq .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: var(--border-accent) !important;
}

.omni-faq .accordion-button {
  background: var(--bg-card);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.97rem;
  font-weight: 500;
  padding: 20px 24px;
  border: none;
  border-radius: var(--radius-lg) !important;
  box-shadow: none !important;
  transition: all var(--transition);
  position: relative;
}

.omni-faq .accordion-button::after {
  background-image: none;
  content: "\f282";
  font-family: "bootstrap-icons";
  font-size: 1rem;
  color: var(--text-muted);
  transition: transform 0.3s ease, color 0.3s ease;
  width: auto;
  height: auto;
}

.omni-faq .accordion-button:not(.collapsed) {
  color: var(--text-primary);
  background: var(--bg-card-hover);
}

.omni-faq .accordion-button:not(.collapsed)::after {
  content: "\f286";
  color: var(--accent);
  transform: none;
}

.omni-faq .accordion-button:hover {
  color: var(--accent);
}

.omni-faq .accordion-button:focus {
  box-shadow: none !important;
  outline: none;
}

.omni-faq .accordion-collapse {
  border-top: 1px solid var(--border);
}

.omni-faq .accordion-body {
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  padding: 20px 24px;
}

.omni-faq .accordion-body p { color: var(--text-muted); margin: 0; }
.omni-faq .accordion-body ul { padding-left: 18px; color: var(--text-muted); }

/* ==========================================================================
   15. Testimonials
   ========================================================================== */
#testimonials,
.omni-testimonials {
  padding: 90px 0;
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.testi-card:hover {
  border-color: var(--border-accent);
  border-top-color: var(--accent);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}

.testi-quote-mark {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 0.8;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 16px;
  display: block;
  font-weight: 700;
}

.testi-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-accent);
  flex-shrink: 0;
}

.testi-avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 2px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testi-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.testi-role {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 500;
}

/* Stars */
.testi-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.testi-stars .bi { color: #febc2e; font-size: 0.85rem; }

/* ==========================================================================
   16. Tech Stack / Partners
   ========================================================================== */
#techstack,
#partners,
.partners {
  padding: 80px 0;
}

.techstack-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 16px 0;
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 20px;
  transition: all var(--transition);
  cursor: default;
  min-width: 130px;
  justify-content: center;
}

.tech-badge:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.tech-badge img {
  max-height: 34px;
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.4) brightness(1.1);
  transition: filter var(--transition);
}

.tech-badge:hover img {
  filter: grayscale(0) brightness(1.2);
}

.tech-badge .tech-name {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   17. Bootstrap Button Overrides
   ========================================================================== */
.btn {
  font-family: var(--font-sans);
  font-weight: 500;
  border-radius: var(--radius);
  transition: all var(--transition);
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.btn:focus { box-shadow: 0 0 0 3px rgba(0, 217, 126, 0.25); }

/* Primary — accent green */
.btn-theme,
.btn-primary {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #000 !important;
  font-weight: 600;
}
.btn-theme:hover,
.btn-primary:hover {
  background: var(--accent-hover) !important;
  border-color: var(--accent-hover) !important;
  color: #000 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 217, 126, 0.3);
}

/* Secondary — outline muted */
.btn-secondary {
  background: transparent !important;
  border-color: var(--border) !important;
  color: var(--text-primary) !important;
}
.btn-secondary:hover {
  border-color: var(--border-accent) !important;
  color: var(--accent) !important;
  background: var(--accent-dim) !important;
}

/* Outline accent */
.btn-outline-theme {
  background: transparent !important;
  border: 1px solid var(--border-accent) !important;
  color: var(--accent) !important;
}
.btn-outline-theme:hover {
  background: var(--accent-dim) !important;
  transform: translateY(-2px);
}

/* Danger */
.btn-danger {
  background: #da3633 !important;
  border-color: #da3633 !important;
  color: #fff !important;
}
.btn-danger:hover {
  background: #b62324 !important;
  border-color: #b62324 !important;
}

/* Sizes */
.btn-sm { padding: 6px 14px; font-size: 0.8rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; font-weight: 600; }

/* ==========================================================================
   18. Form Overrides
   ========================================================================== */
.form-control,
.form-select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 11px 16px;
  transition: all var(--transition);
}
.form-control:focus,
.form-select:focus {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  color: var(--text-primary);
  box-shadow: 0 0 0 3px rgba(0, 217, 126, 0.15);
  outline: none;
}
.form-control::placeholder { color: var(--text-muted); opacity: 0.7; }
.form-select { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%238b949e' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"); }
.form-label { color: var(--text-muted); font-size: 0.86rem; font-weight: 500; margin-bottom: 6px; }
.form-check-input { background-color: var(--bg-card); border-color: var(--border); }
.form-check-input:checked { background-color: var(--accent); border-color: var(--accent); }
.form-check-input:focus { box-shadow: 0 0 0 3px rgba(0, 217, 126, 0.2); }
.invalid-feedback { color: #f85149; font-size: 0.8rem; }

/* ==========================================================================
   19. Bootstrap Card Overrides
   ========================================================================== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-slow);
}
.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.card-header {
  background: rgba(22, 27, 34, 0.7);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-primary);
  padding: 16px 20px;
}
.card-body { padding: 24px 20px; }
.card-footer {
  background: transparent;
  border-top: 1px solid var(--border);
  padding: 14px 20px;
}

/* ==========================================================================
   20. Modal Overrides
   ========================================================================== */
.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.modal-header {
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
}
.modal-title {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
}
.modal-body { padding: 24px; }
.modal-footer {
  border-top: 1px solid var(--border);
  padding: 16px 24px;
}
.btn-close {
  filter: invert(1) brightness(0.6);
  opacity: 0.7;
}
.btn-close:hover { opacity: 1; }

/* ==========================================================================
   21. Table Overrides
   ========================================================================== */
.table {
  color: var(--text-primary);
  border-color: var(--border);
}
.table > :not(caption) > * > * {
  background: transparent;
  color: var(--text-primary);
  border-bottom-color: var(--border);
  padding: 14px 16px;
}
.table thead th {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
}
.table-striped > tbody > tr:nth-of-type(odd) > * {
  background: rgba(22, 27, 34, 0.5);
}
.table-hover > tbody > tr:hover > * {
  background: var(--bg-card-hover);
}
.table-bordered > :not(caption) > * > * { border-color: var(--border); }

/* ==========================================================================
   22. Pagination
   ========================================================================== */
.pagination { gap: 4px; }
.page-link {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: var(--radius) !important;
  padding: 8px 14px;
  font-size: 0.875rem;
  transition: all var(--transition);
}
.page-link:hover {
  background: var(--accent-dim);
  border-color: var(--border-accent);
  color: var(--accent);
}
.page-item.active .page-link {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  font-weight: 600;
}
.page-item.disabled .page-link { opacity: 0.4; }

/* ==========================================================================
   23. Alerts & Badges
   ========================================================================== */
.alert {
  border-radius: var(--radius);
  border: 1px solid;
  font-size: 0.875rem;
}
.alert-success {
  background: rgba(0, 217, 126, 0.1);
  border-color: rgba(0, 217, 126, 0.3);
  color: #7ee787;
}
.alert-danger {
  background: rgba(248, 81, 73, 0.1);
  border-color: rgba(248, 81, 73, 0.3);
  color: #f85149;
}
.alert-warning {
  background: rgba(254, 188, 46, 0.1);
  border-color: rgba(254, 188, 46, 0.3);
  color: #e3b341;
}
.alert-info {
  background: rgba(56, 139, 253, 0.1);
  border-color: rgba(56, 139, 253, 0.3);
  color: #58a6ff;
}

.badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 4px 10px;
  letter-spacing: 0.04em;
}
.badge.bg-primary,
.badge.bg-success { background: var(--accent-dim) !important; color: var(--accent) !important; border: 1px solid var(--border-accent); }
.badge.bg-secondary { background: var(--bg-card-hover) !important; color: var(--text-muted) !important; border: 1px solid var(--border); }
.badge.bg-danger { background: rgba(248, 81, 73, 0.15) !important; color: #f85149 !important; }

/* ==========================================================================
   24. Topbar
   ========================================================================== */
#topbar {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  font-size: 0.8rem;
}

#topbar a {
  color: var(--text-muted);
  transition: color var(--transition);
}
#topbar a:hover { color: var(--accent); }
#topbar .contact-info i,
#topbar .social-links i {
  color: var(--accent);
  margin-right: 4px;
}
#topbar .social-links a {
  margin-left: 10px;
  font-size: 0.9rem;
}

/* Topbar right-side controls */
#topbar .controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Search button */
#topbar .header-search-btn {
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 3px 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition);
}
#topbar .header-search-btn:hover { color: var(--accent); }
#topbar .header-search-btn span { display: none; }

/* Dashboard link */
#topbar .dashboard_Link a,
#topbar .dashboard_Link a:hover {
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 3px 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}
#topbar .dashboard_Link a:hover { color: var(--accent); }

/* Language / header dropdowns — override Bootstrap .btn */
#topbar .header-dropdown { position: relative; flex-shrink: 0; }
#topbar .header-dropdown .btn,
#topbar .header-dropdown .btn.dropdown-toggle {
  font-size: 0.75rem !important;
  color: var(--text-muted) !important;
  background: transparent !important;
  border: 1px solid var(--border) !important;
  border-radius: 6px !important;
  padding: 3px 10px !important;
  line-height: 1.4 !important;
  height: auto !important;
  width: auto !important;
  box-shadow: none !important;
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
#topbar .header-dropdown .btn:hover,
#topbar .header-dropdown .btn:focus {
  border-color: var(--border-accent) !important;
  color: var(--accent) !important;
  box-shadow: none !important;
}
#topbar .header-dropdown .btn::after {
  border-top-color: var(--text-muted);
  margin-left: 4px;
}
#topbar .header-dropdown img {
  width: 14px;
  height: 10px;
  border-radius: 2px;
  object-fit: cover;
}
#topbar .header-dropdown .dropdown-menu {
  min-width: 120px;
  padding: 4px;
  font-size: 0.78rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-top: 4px;
}
#topbar .header-dropdown .dropdown-item {
  color: var(--text-muted);
  border-radius: 4px;
  padding: 5px 10px;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
#topbar .header-dropdown .dropdown-item:hover {
  color: var(--accent);
  background: var(--accent-dim);
}
#topbar .header-dropdown .dropdown-item img {
  width: 16px;
  height: 11px;
}

/* Auth user dropdown in topbar */
#topbar .dropdown.header-dropdown .dropdown-toggle { cursor: pointer; }

/* Search box overlay */
#header-search-box {
  display: none !important;
}
#header-search-box.open {
  display: flex !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(10, 14, 23, 0.97);
  align-items: center;
  justify-content: center;
}
#header-search-box .close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
}
#header-search-box .close:hover { color: var(--text-primary); }
#header-search-box .header-form-search {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 560px;
  padding: 0 20px;
}
#header-search-box .header-form-search input[type="search"] {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  padding: 12px 16px;
  font-size: 1rem;
  outline: none;
}
#header-search-box .header-form-search input:focus {
  border-color: var(--border-accent);
}
#header-search-box .header-form-search .btn-theme {
  padding: 12px 20px;
  font-size: 0.9rem;
  border-radius: var(--radius);
  white-space: nowrap;
}

/* ==========================================================================
   25. About / Content Sections
   ========================================================================== */
#about { padding: 90px 0; }

.about-content h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
.about-content .about-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.about-content .about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.about-content .about-list li::before {
  content: "→";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* ==========================================================================
   26. Contact Section
   ========================================================================== */
#contact { padding: 90px 0; }

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

/* ==========================================================================
   27. Footer
   ========================================================================== */
#footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding-top: 60px;
  padding-bottom: 0;
  font-size: 0.88rem;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  display: inline-block;
}
.footer-brand span { color: var(--accent); }

.footer-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links li a {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links li a:hover {
  color: var(--accent);
}
.footer-links li a::before {
  content: "›";
  color: var(--accent);
  font-weight: 700;
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--accent-dim);
  border-color: var(--border-accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: 48px;
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin: 0;
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--accent); }

/* ==========================================================================
   28. Breadcrumb & Topic / Site Page
   ========================================================================== */
.breadcrumb-wrapper {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.breadcrumb {
  margin: 0;
  background: transparent;
}
.breadcrumb-item { font-size: 0.82rem; }
.breadcrumb-item a { color: var(--text-muted); }
.breadcrumb-item a:hover { color: var(--accent); }
.breadcrumb-item.active { color: var(--text-primary); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--border-hover); }

/* SmartEnd topic page breadcrumb bar */
section.breadcrumbs {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
section.breadcrumbs h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}
section.breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}
section.breadcrumbs ol li::before { content: "/"; margin-right: 6px; }
section.breadcrumbs ol li:first-child::before { content: ""; margin: 0; }
section.breadcrumbs ol a { color: var(--text-muted); }
section.breadcrumbs ol a:hover { color: var(--accent); }

/* Topic / Site Page content area */
#content { padding: 60px 0; }
#content .topic-page article { background: none; border: none; }
.article-body {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}
.article-body h1, .article-body h2, .article-body h3 {
  color: var(--text-primary);
  margin-top: 2rem;
}
.article-body ul, .article-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.article-body li { margin-bottom: 6px; color: var(--text-muted); }
.article-body strong { color: var(--text-primary); }
.article-body a { color: var(--accent); }
.article-body a:hover { color: var(--accent-hover); }
.article-body p { margin-bottom: 1.1rem; }

/* Pricing page full-width override */
.pricing-section { padding: 20px 0; }
.pricing-section .section-title h2 { color: var(--text-primary); }
.pricing-section .section-title p { color: var(--text-muted); }

/* ==========================================================================
   29. Inner Page Hero
   ========================================================================== */
.inner-hero {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.inner-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(48,54,61,0.2) 59px, rgba(48,54,61,0.2) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(48,54,61,0.2) 59px, rgba(48,54,61,0.2) 60px);
  pointer-events: none;
}
.inner-hero h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  position: relative;
  z-index: 1;
}
.inner-hero p {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   30. Topic / Blog Cards
   ========================================================================== */
.topic-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-slow);
  height: 100%;
}
.topic-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.topic-card .topic-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.topic-card .topic-body {
  padding: 22px 20px;
}
.topic-card .topic-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.35;
}
.topic-card .topic-title a {
  color: var(--text-primary);
  transition: color var(--transition);
}
.topic-card .topic-title a:hover { color: var(--accent); }
.topic-card .topic-excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.topic-card .topic-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ==========================================================================
   31. Section Padding Defaults
   ========================================================================== */
section {
  padding: 80px 0;
  scroll-margin-top: 70px;
}
.section-sm { padding: 48px 0; }
.section-lg { padding: 120px 0; }

/* ==========================================================================
   32. Owl Carousel Overrides (legacy — kept for other pages)
   ========================================================================== */
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--accent);
}
.owl-theme .owl-dots .owl-dot span {
  background: var(--border);
  width: 10px;
  height: 10px;
}
.owl-nav button {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  border-radius: 8px !important;
  color: var(--text-muted) !important;
  width: 40px;
  height: 40px;
  font-size: 1.2rem !important;
}
.owl-nav button:hover {
  border-color: var(--border-accent) !important;
  color: var(--accent) !important;
}

/* ==========================================================================
   33. Swiper Overrides (legacy — kept for other pages)
   ========================================================================== */
.swiper-pagination-bullet {
  background: var(--border);
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: var(--accent);
}
.swiper-button-next,
.swiper-button-prev {
  color: var(--accent) !important;
}

/* ==========================================================================
   34. Progress Bars
   ========================================================================== */
.progress {
  background: var(--bg-card-hover);
  border-radius: 999px;
  height: 6px;
  overflow: hidden;
}
.progress-bar {
  background: var(--accent);
  border-radius: 999px;
  transition: width 1s ease;
}

/* ==========================================================================
   35. List Groups
   ========================================================================== */
.list-group-item {
  background: var(--bg-card);
  border-color: var(--border);
  color: var(--text-primary);
  padding: 14px 18px;
  font-size: 0.875rem;
  transition: background var(--transition);
}
.list-group-item:hover { background: var(--bg-card-hover); }
.list-group-item.active {
  background: var(--accent-dim);
  border-color: var(--border-accent);
  color: var(--accent);
}

/* ==========================================================================
   36. Sidebar
   ========================================================================== */
.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  margin-bottom: 24px;
}
.sidebar-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

/* ==========================================================================
   37. Code Blocks
   ========================================================================== */
pre {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-primary);
  line-height: 1.65;
}

code:not(pre code) {
  background: rgba(0, 217, 126, 0.08);
  border: 1px solid rgba(0, 217, 126, 0.2);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0.82em;
  color: var(--accent);
}

/* ==========================================================================
   38. Tooltip Overrides
   ========================================================================== */
.tooltip .tooltip-inner {
  background: var(--bg-card-hover);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 0.8rem;
  border-radius: 6px;
  padding: 6px 12px;
}
.tooltip .tooltip-arrow::before { border-top-color: var(--border); }

/* ==========================================================================
   39. Toast / Notification
   ========================================================================== */
.toast {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
}
.toast-header {
  background: var(--bg-card-hover);
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
}

/* ==========================================================================
   40. Misc CMS helpers
   ========================================================================== */
.fixed-top-margin { margin-top: 70px; }

.more-btn {
  text-align: center;
  margin-top: 40px;
}

/* Audio player */
.green-audio-player {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* Lazyload fade-in */
.lazyloading { opacity: 0; transition: opacity 0.4s; }
.lazyloaded  { opacity: 1; }

/* Dividers */
hr {
  border: none;
  border-top: 1px solid var(--border);
  opacity: 1;
}

/* Tabs */
.nav-tabs {
  border-bottom: 1px solid var(--border);
  gap: 4px;
}
.nav-tabs .nav-link {
  color: var(--text-muted);
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding: 10px 18px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition);
}
.nav-tabs .nav-link:hover { color: var(--text-primary); }
.nav-tabs .nav-link.active {
  color: var(--accent);
  background: transparent;
  border-bottom-color: var(--accent);
}
.nav-pills .nav-link {
  color: var(--text-muted);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 9px 18px;
}
.nav-pills .nav-link:hover { background: var(--accent-dim); color: var(--accent); }
.nav-pills .nav-link.active {
  background: var(--accent);
  color: #000;
}

/* ==========================================================================
   40b. Feature Cards v2 (fcv2) — full content, numbered
   ========================================================================== */
.features-section { padding: 90px 0 0; }

.fcv2 {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-slow);
}
.fcv2::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--accent);
  border-radius: 0 0 2px 0;
  transition: height 0.4s ease;
}
.fcv2:hover { border-color: var(--border-accent); box-shadow: var(--shadow-glow); transform: translateY(-4px); background: var(--bg-card-hover); }
.fcv2:hover::before { height: 60%; }

.fcv2-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.fcv2-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  opacity: 0.6;
}
.fcv2-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  color: var(--accent);
  transition: all var(--transition);
}
.fcv2:hover .fcv2-icon { background: rgba(0,217,126,.18); transform: scale(1.08); }

.fcv2-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.3;
}

.fcv2-body { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }
.fcv2-body p { margin-bottom: 10px; color: var(--text-muted); font-size: 0.875rem; }
.fcv2-body strong { color: var(--text-primary); }
.fcv2-body ul { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 5px; }
.fcv2-body li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.83rem; color: var(--text-muted); }
.fcv2-body li::before { content: "→"; color: var(--accent); font-size: 0.75rem; margin-top: 2px; flex-shrink: 0; }

/* Mid-page CTA strip */
.features-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  margin-top: 56px;
  position: relative;
  overflow: hidden;
}
.features-cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(0,217,126,.06) 0%, transparent 70%);
  pointer-events: none;
}
.fcs-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.fcs-stat { text-align: center; }
.fcs-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
}
.fcs-lbl {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.fcs-sep { color: var(--border); font-size: 1.5rem; font-weight: 300; }
.fcs-sub { color: var(--text-muted); font-size: 0.85rem; margin: 0; }
.fcs-right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; flex-shrink: 0; }
.fcs-guarantee { font-size: 0.75rem; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.fcs-guarantee i { color: var(--accent); }

/* ==========================================================================
   40c. Why OMNI — differentiator grid
   ========================================================================== */
.why-omni {
  padding: 90px 0;
  background: var(--bg-primary);
}
.why-omni-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition-slow);
}
.why-item:hover { border-color: var(--border-accent); box-shadow: var(--shadow-glow); transform: translateY(-3px); }
.why-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  flex-shrink: 0;
}
.why-item h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.why-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ==========================================================================
   40d. Final CTA section
   ========================================================================== */
.final-cta {
  padding: 100px 0;
  background: var(--bg-primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0,217,126,.08) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-inner { position: relative; max-width: 680px; margin: 0 auto; }
.final-cta-glow {
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,217,126,.12) 0%, transparent 65%);
  pointer-events: none;
}
.final-cta-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 20px;
  padding: 4px 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.final-cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.final-cta-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 36px;
}
.final-cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.final-cta-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
}
.final-cta-disclaimer i { color: var(--accent); }

/* Tech stack below final CTA */
.techstack-section { padding: 40px 0 60px; }
.techstack-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

/* ==========================================================================
   41. Media Queries — Responsive
   ========================================================================== */

/* Large desktops */
@media (min-width: 1400px) {
  .container { max-width: 1280px; }
  h1.hero-title { font-size: 4.5rem; }
}

/* Medium desktops */
@media (max-width: 1199px) {
  .hero-grid { gap: 40px; }
  .hero-stat-num { font-size: 1.6rem; }
  .stats-inner { gap: 16px; }
  .stat-num { font-size: 2.2rem; }
}

/* Tablets */
@media (max-width: 991px) {
  /* Hero: single column */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  h1.hero-title { text-align: center; }
  p.hero-sub { margin-left: auto; margin-right: auto; text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-disclaimer { text-align: center; }
  .hero-stats { justify-content: center; }

  .hero-terminal { max-width: 560px; margin: 0 auto; }

  /* Stats bar */
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }

  /* Navbar collapse */
  .navbar-collapse {
    background: rgba(10, 14, 23, 0.97);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 16px;
    margin-top: 10px;
  }
  .navbar-nav .nav-link::after { display: none; }

  section { padding: 64px 0; }
}

/* Mobile */
@media (max-width: 767px) {
  .hero-section { padding: 100px 0 60px; }
  h1.hero-title { font-size: clamp(2rem, 7vw, 2.8rem); }
  p.hero-sub { font-size: 1rem; }
  .hero-stats { gap: 20px; }
  .hero-stat-num { font-size: 1.5rem; }

  .hero-terminal { display: none; }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .stat-item::after { display: none !important; }
  .stat-num { font-size: 1.9rem; }

  .section-title h2 { font-size: 1.6rem; }
  .section-title { padding-bottom: 32px; }

  .feature-card { padding: 24px 20px; }
  .testi-card { padding: 24px 20px; }
  .pricing-card { padding: 28px 22px; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-cta { flex-direction: column; align-items: center; }
  .btn-hero-primary,
  .btn-hero-secondary { width: 100%; max-width: 300px; justify-content: center; }

  .techstack-grid { gap: 10px; }
  .tech-badge { padding: 10px 14px; }

  section { padding: 52px 0; }
  #hero { padding: 90px 0 52px; }
}

/* Small mobile */
@media (max-width: 480px) {
  h1.hero-title { font-size: 2rem; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .pricing-card { padding: 24px 18px; }
  .omni-faq .accordion-button { padding: 16px 18px; font-size: 0.9rem; }
  .omni-faq .accordion-body { padding: 16px 18px; }
}

/* Dark mode forced (for browsers with prefers-color-scheme) */
@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
  }
}
