/* ═══════════════════════════════════════════════════════
   NEURALARC INSURANCE DEFENSE — STYLES
   Font: Poppins (all weights)
   Palette: Rosewood Library + Dark Mode
═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --font: 'Poppins', sans-serif;

  /* Light Mode */
  --bg:           #F7F3EE;
  --bg-2:         #FFFFFF;
  --bg-3:         #F0EBE4;
  --bg-card:      #FFFFFF;
  --border:       #E8DDD4;
  --border-2:     #D4C5B0;
  --text:         #1A0A12;
  --text-2:       #5A3D4A;
  --text-3:       #8A6A78;
  --text-muted:   #B09AA8;
  --accent:       #4A1C2B;
  --accent-2:     #7D3C50;
  --gold:         #C9A87C;
  --gold-2:       #E8D4B0;
  --sidebar-bg:   #2C0F1C;
  --sidebar-text: #F2EDE4;
  --sidebar-muted:#9A7A88;
  --sidebar-hover:#3D1828;
  --sidebar-active:#4A1C2B;
  --green:        #2D6A4F;
  --green-bg:     #D8F3DC;
  --yellow:       #B5830A;
  --yellow-bg:    #FFF3CD;
  --red:          #C0392B;
  --red-bg:       #FDECEA;
  --blue:         #1A5276;
  --blue-bg:      #D6EAF8;
  --shadow-sm:    0 1px 3px rgba(74,28,43,0.08);
  --shadow-md:    0 4px 16px rgba(74,28,43,0.10);
  --shadow-lg:    0 8px 32px rgba(74,28,43,0.14);
  --radius:       12px;
  --radius-sm:    8px;
  --radius-lg:    16px;
}

[data-theme="dark"] {
  --bg:           #0F0A0D;
  --bg-2:         #1A1018;
  --bg-3:         #231520;
  --bg-card:      #1E1218;
  --border:       #3A2030;
  --border-2:     #4A2A3A;
  --text:         #F2EDE4;
  --text-2:       #C9A87C;
  --text-3:       #9A7A88;
  --text-muted:   #6A4A58;
  --accent:       #C9A87C;
  --accent-2:     #E8D4B0;
  --gold:         #C9A87C;
  --gold-2:       #4A2A1A;
  --sidebar-bg:   #0A0608;
  --sidebar-text: #F2EDE4;
  --sidebar-muted:#6A4A58;
  --sidebar-hover:#1E1218;
  --sidebar-active:#2C1520;
  --green:        #52B788;
  --green-bg:     #0D2B1A;
  --yellow:       #E9C46A;
  --yellow-bg:    #2B2000;
  --red:          #E76F51;
  --red-bg:       #2B0F0A;
  --blue:         #74B3CE;
  --blue-bg:      #0A1E2B;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.3);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg:    0 8px 32px rgba(0,0,0,0.5);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  transition: background 0.3s ease, color 0.3s ease;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
input, textarea, select { font-family: var(--font); }
img { max-width: 100%; }

/* ── SCREEN SYSTEM ── */
.screen { width: 100%; min-height: 100vh; }
.hidden { display: none !important; }

/* ── THEME TOGGLE ── */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1.5px solid var(--border);
  font-size: 16px;
  transition: all 0.2s;
  flex-shrink: 0;
}
.theme-toggle:hover { background: var(--border); transform: scale(1.05); }
.theme-icon-sun { display: block; }
.theme-icon-moon { display: none; }
[data-theme="dark"] .theme-icon-sun { display: none; }
[data-theme="dark"] .theme-icon-moon { display: block; }

/* ══════════════════════════════════════════════
   LANDING PAGE
══════════════════════════════════════════════ */

/* NAV */
.landing-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247,243,238,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
[data-theme="dark"] .landing-nav {
  background: rgba(15,10,13,0.92);
}
.landing-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 6px 14px;
  border-radius: 6px;
  transition: all 0.2s;
}
.nav-link:hover { color: var(--text); background: var(--bg-3); }
.btn-nav-login {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 8px 18px;
  border-radius: 8px;
  border: 1.5px solid var(--border-2);
  background: transparent;
  transition: all 0.2s;
}
.btn-nav-login:hover { border-color: var(--accent); color: var(--accent); }
.btn-nav-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  padding: 8px 20px;
  border-radius: 8px;
  background: var(--accent);
  transition: all 0.2s;
}
.btn-nav-cta:hover { background: var(--accent-2); transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* HERO */
.hero-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 140px 32px 80px;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: var(--gold-2);
  border: 1px solid var(--gold);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
[data-theme="dark"] .hero-badge {
  background: rgba(201,168,124,0.12);
  color: var(--gold);
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-title-accent {
  color: var(--accent);
  position: relative;
}
[data-theme="dark"] .hero-title-accent { color: var(--gold); }
.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-2);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  padding: 13px 28px;
  border-radius: 10px;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(74,28,43,0.25);
}
.btn-hero-primary:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(74,28,43,0.3); }
[data-theme="dark"] .btn-hero-primary { background: var(--gold); color: #1A0A12; box-shadow: 0 4px 14px rgba(201,168,124,0.3); }
[data-theme="dark"] .btn-hero-primary:hover { background: var(--accent-2); }
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-2);
  background: var(--bg-card);
  padding: 13px 28px;
  border-radius: 10px;
  border: 1.5px solid var(--border-2);
  transition: all 0.2s;
}
.btn-hero-secondary:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
  gap: 0;
}
.hero-stat { text-align: center; padding: 0 32px; }
.hero-stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
[data-theme="dark"] .hero-stat-value { color: var(--gold); }
.hero-stat-label { font-size: 0.78rem; font-weight: 500; color: var(--text-3); }
.hero-stat-divider { width: 1px; height: 40px; background: var(--border); }

/* FEATURES */
.features-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
  text-align: center;
}
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr; } }
.feature-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: left;
  position: relative;
  transition: all 0.25s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-2); }
.feature-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(201,168,124,0.05) 100%);
}
[data-theme="dark"] .feature-card.featured { background: linear-gradient(135deg, var(--bg-card) 0%, rgba(201,168,124,0.08) 100%); }
.feature-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--gold);
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}
[data-theme="dark"] .feature-badge { color: #1A0A12; }
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feature-desc {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 20px;
}
.feature-metric {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-3);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.metric-val { font-weight: 700; color: var(--accent); }
[data-theme="dark"] .metric-val { color: var(--gold); }

/* HOW IT WORKS */
.how-section {
  background: var(--bg-3);
  padding: 80px 32px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps-row {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.step-item {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  transition: all 0.2s;
}
.step-item:hover { border-color: var(--gold); transform: translateY(-2px); }
.step-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--border-2);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.04em;
}
.step-title { font-size: 0.875rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.step-desc { font-size: 0.78rem; color: var(--text-3); line-height: 1.5; }
.step-arrow { font-size: 1.4rem; color: var(--border-2); flex-shrink: 0; }

/* SECURITY STRIP */
.security-strip {
  background: var(--accent);
  padding: 20px 32px;
}
[data-theme="dark"] .security-strip { background: var(--bg-3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.security-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.security-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
[data-theme="dark"] .security-item { color: var(--text-2); }

/* CTA SECTION */
.cta-section {
  padding: 100px 32px;
  text-align: center;
  background: var(--bg);
}
.cta-inner { max-width: 600px; margin: 0 auto; }
.cta-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 16px;
}
.cta-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 16px;
}
.cta-subtitle {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* FOOTER */
.landing-footer {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  padding: 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-tagline { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }
.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════
   LOGIN PAGE
══════════════════════════════════════════════ */
.login-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
@media (max-width: 768px) { .login-page { grid-template-columns: 1fr; } }
.login-left {
  background: var(--accent);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
[data-theme="dark"] .login-left { background: linear-gradient(135deg, #1A0A12 0%, #2C0F1C 100%); }
.login-left::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(201,168,124,0.08);
  pointer-events: none;
}
.login-left::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(201,168,124,0.05);
  pointer-events: none;
}
.login-left-content { position: relative; z-index: 1; }
.back-to-landing {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-bottom: 48px;
  transition: color 0.2s;
  font-family: var(--font);
}
.back-to-landing:hover { color: rgba(255,255,255,0.9); }
.login-brand-block { margin-bottom: 56px; }
.login-logo-wrap { margin-bottom: 16px; }
.login-brand-name {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.login-brand-sub {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
}
.login-testimonial {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 24px;
}
.testimonial-text {
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.85rem; font-weight: 600; color: #fff; }
.testimonial-firm { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

.login-right {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding: 32px 48px;
}
@media (max-width: 768px) { .login-left { display: none; } .login-right { padding: 32px 24px; } }
.login-right-top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 32px;
}
.login-form-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}
.login-form-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.login-form-subtitle {
  font-size: 0.9rem;
  color: var(--text-3);
  margin-bottom: 36px;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.form-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  color: var(--text);
  font-size: 0.9rem;
  font-family: var(--font);
  transition: all 0.2s;
  outline: none;
}
.form-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(74,28,43,0.08); }
[data-theme="dark"] .form-input:focus { box-shadow: 0 0 0 3px rgba(201,168,124,0.12); }
.form-input::placeholder { color: var(--text-muted); }
.input-with-icon { position: relative; }
.input-with-icon .form-input { padding-right: 44px; }
.input-icon-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  padding: 4px;
  transition: color 0.2s;
}
.input-icon-btn:hover { color: var(--text-2); }
.login-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-2);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] { accent-color: var(--accent); width: 14px; height: 14px; }
.link-subtle { font-size: 0.82rem; color: var(--accent); font-weight: 500; }
[data-theme="dark"] .link-subtle { color: var(--gold); }
.link-subtle:hover { text-decoration: underline; }
.btn-login {
  width: 100%;
  padding: 13px;
  background: var(--accent);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(74,28,43,0.2);
}
.btn-login:hover { background: var(--accent-2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(74,28,43,0.28); }
[data-theme="dark"] .btn-login { background: var(--gold); color: #1A0A12; }
[data-theme="dark"] .btn-login:hover { background: var(--accent-2); color: #fff; }
.spinner { animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.login-demo-note { margin-top: 24px; }
.demo-badge-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}
.demo-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: rgba(201,168,124,0.15);
  padding: 3px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}
.demo-text { font-size: 0.78rem; color: var(--text-3); }

/* ══════════════════════════════════════════════
   APP LAYOUT
══════════════════════════════════════════════ */
#app {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

/* SIDEBAR */
.sidebar {
  width: 240px;
  flex-shrink: 0;
  background: var(--sidebar-bg);
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow-y: auto;
  transition: transform 0.3s ease;
}
.sidebar-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sidebar-brand { display: flex; flex-direction: column; }
.sidebar-brand-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--sidebar-text);
  letter-spacing: -0.01em;
}
.sidebar-brand-firm { font-size: 0.7rem; color: var(--sidebar-muted); }
.sidebar-nav { flex: 1; padding: 12px 8px; }
.nav-section-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--sidebar-muted);
  padding: 12px 10px 6px;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--sidebar-muted);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.15s;
  margin-bottom: 2px;
  position: relative;
}
.nav-item:hover { background: var(--sidebar-hover); color: var(--sidebar-text); }
.nav-item.active { background: var(--sidebar-active); color: var(--sidebar-text); }
.nav-item.active::before {
  content: '';
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 3px;
  background: var(--gold);
  border-radius: 0 3px 3px 0;
}
.nav-icon { width: 16px; height: 16px; flex-shrink: 0; }
.nav-badge {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(201,168,124,0.2);
  color: var(--gold);
  padding: 2px 7px;
  border-radius: 100px;
}
.nav-badge.warn { background: rgba(231,111,81,0.2); color: #E76F51; }
.sidebar-footer {
  padding: 12px 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.user-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
}
.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.user-info { flex: 1; min-width: 0; }
.user-name { display: block; font-size: 0.8rem; font-weight: 600; color: var(--sidebar-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-role { display: block; font-size: 0.68rem; color: var(--sidebar-muted); }
.user-menu-btn { color: var(--sidebar-muted); padding: 4px; transition: color 0.2s; }
.user-menu-btn:hover { color: var(--sidebar-text); }

/* MAIN CONTENT */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--bg);
}
.top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 60px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  gap: 12px;
}
.header-left { display: flex; align-items: center; gap: 12px; }
.mobile-menu-btn { display: none; color: var(--text-2); padding: 6px; }
.breadcrumb { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.header-right { display: flex; align-items: center; gap: 10px; }
.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 12px;
  color: var(--text-muted);
}
.search-input {
  background: none;
  border: none;
  outline: none;
  font-size: 0.82rem;
  color: var(--text);
  width: 180px;
}
.search-input::placeholder { color: var(--text-muted); }
.app-theme-toggle { background: var(--bg-3); border-color: var(--border); }
.header-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text-2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.2s;
}
.header-btn:hover { background: var(--border); }
.notif-dot {
  position: absolute;
  top: 6px; right: 6px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  border: 1.5px solid var(--bg-card);
}
.privilege-tag-wrap { display: flex; align-items: center; }
.privilege-tag {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(74,28,43,0.08);
  border: 1px solid rgba(74,28,43,0.15);
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
[data-theme="dark"] .privilege-tag {
  color: var(--gold);
  background: rgba(201,168,124,0.1);
  border-color: rgba(201,168,124,0.2);
}
.page-content {
  flex: 1;
  overflow-y: auto;
  padding: 28px;
}

/* ══════════════════════════════════════════════
   SHARED COMPONENTS
══════════════════════════════════════════════ */
.page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
}
.page-title { font-size: 1.4rem; font-weight: 700; color: var(--text); letter-spacing: -0.02em; margin-bottom: 2px; }
.page-subtitle { font-size: 0.85rem; color: var(--text-3); }
.page-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  font-family: var(--font);
  transition: all 0.2s;
}
.btn-primary:hover { background: var(--accent-2); transform: translateY(-1px); }
[data-theme="dark"] .btn-primary { background: var(--gold); color: #1A0A12; }
[data-theme="dark"] .btn-primary:hover { background: var(--accent-2); color: #fff; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: var(--bg-card);
  color: var(--text-2);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  font-family: var(--font);
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  color: var(--text-2);
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: 8px;
  font-family: var(--font);
  transition: all 0.2s;
}
.btn-ghost:hover { background: var(--bg-3); color: var(--text); }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: var(--shadow-sm); }
.card-title { font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.card-subtitle { font-size: 0.78rem; color: var(--text-3); }

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.stat-label { font-size: 0.75rem; font-weight: 600; color: var(--text-3); letter-spacing: 0.04em; margin-bottom: 8px; text-transform: uppercase; }
.stat-value { font-size: 1.8rem; font-weight: 800; color: var(--text); letter-spacing: -0.03em; line-height: 1; margin-bottom: 6px; }
.stat-change { font-size: 0.75rem; font-weight: 500; }
.stat-change.up { color: var(--green); }
.stat-change.down { color: var(--red); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 100px;
}
.badge-green { background: var(--green-bg); color: var(--green); }
.badge-yellow { background: var(--yellow-bg); color: var(--yellow); }
.badge-red { background: var(--red-bg); color: var(--red); }
.badge-blue { background: var(--blue-bg); color: var(--blue); }
.badge-gray { background: var(--bg-3); color: var(--text-3); }
.badge-gold { background: rgba(201,168,124,0.15); color: var(--gold); }

.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th {
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-3);
  text-transform: uppercase;
}
td {
  padding: 12px 14px;
  font-size: 0.85rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--bg-3); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1100px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════
   DASHBOARD PAGE
══════════════════════════════════════════════ */
.welcome-banner {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  overflow: hidden;
  position: relative;
}
[data-theme="dark"] .welcome-banner {
  background: linear-gradient(135deg, #1A0A12 0%, #2C0F1C 100%);
  border: 1px solid var(--border);
}
.welcome-banner::after {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.welcome-title { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.welcome-sub { font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.welcome-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-white {
  padding: 9px 18px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  font-family: var(--font);
  transition: all 0.2s;
}
.btn-white:hover { background: rgba(255,255,255,0.25); }
.btn-white-solid {
  padding: 9px 18px;
  background: #fff;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 8px;
  font-family: var(--font);
  transition: all 0.2s;
}
.btn-white-solid:hover { background: rgba(255,255,255,0.9); }

.activity-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.activity-item:last-child { border-bottom: none; }
.activity-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}
.activity-text { font-size: 0.85rem; color: var(--text); line-height: 1.5; }
.activity-time { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

.deadline-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.deadline-item:last-child { border-bottom: none; }
.deadline-date {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bg-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.deadline-day { font-size: 1rem; font-weight: 800; color: var(--text); line-height: 1; }
.deadline-month { font-size: 0.6rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; }
.deadline-info { flex: 1; }
.deadline-title { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.deadline-matter { font-size: 0.75rem; color: var(--text-3); }

/* ══════════════════════════════════════════════
   MATTERS PAGE
══════════════════════════════════════════════ */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.filter-input {
  flex: 1;
  min-width: 200px;
  padding: 9px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
  color: var(--text);
  font-size: 0.85rem;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s;
}
.filter-input:focus { border-color: var(--accent); }
.filter-select {
  padding: 9px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
  color: var(--text);
  font-size: 0.85rem;
  font-family: var(--font);
  outline: none;
  cursor: pointer;
}
.matter-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.2s;
  cursor: pointer;
}
.matter-card:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); transform: translateX(2px); }
.matter-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-3);
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}
.matter-info { flex: 1; min-width: 0; }
.matter-title { font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.matter-meta { font-size: 0.75rem; color: var(--text-3); }
.matter-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.conflict-ok { font-size: 0.7rem; color: var(--green); font-weight: 600; }
.conflict-warn { font-size: 0.7rem; color: var(--red); font-weight: 600; }

/* ══════════════════════════════════════════════
   BILLING PAGE
══════════════════════════════════════════════ */
.billing-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 10px;
}
.validation-legend {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.75rem;
  font-weight: 500;
}
.legend-item { display: flex; align-items: center; gap: 6px; }
.legend-dot { width: 8px; height: 8px; border-radius: 50%; }
.row-valid td { background: rgba(45,106,79,0.04) !important; }
.row-warn td { background: rgba(181,131,10,0.06) !important; }
.row-error td { background: rgba(192,57,43,0.06) !important; }
.row-valid:hover td { background: rgba(45,106,79,0.08) !important; }
.row-warn:hover td { background: rgba(181,131,10,0.1) !important; }
.row-error:hover td { background: rgba(192,57,43,0.1) !important; }
.code-chip {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  background: var(--bg-3);
  color: var(--text-2);
  padding: 2px 7px;
  border-radius: 4px;
  border: 1px solid var(--border);
}
.ledes-preview {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  font-family: 'Courier New', monospace;
  font-size: 0.72rem;
  color: var(--text-2);
  overflow-x: auto;
  line-height: 1.8;
  white-space: pre;
}

/* ══════════════════════════════════════════════
   COVERAGE OPINIONS PAGE
══════════════════════════════════════════════ */
.upload-zone {
  border: 2px dashed var(--border-2);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  background: var(--bg-3);
  transition: all 0.2s;
  cursor: pointer;
}
.upload-zone:hover, .upload-zone.drag-over {
  border-color: var(--accent);
  background: rgba(74,28,43,0.04);
}
[data-theme="dark"] .upload-zone:hover { background: rgba(201,168,124,0.05); }
.upload-icon { font-size: 2.5rem; margin-bottom: 12px; }
.upload-title { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.upload-sub { font-size: 0.82rem; color: var(--text-3); }
.upload-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 9px 20px;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  font-family: var(--font);
  transition: all 0.2s;
}
.upload-btn:hover { background: var(--accent-2); }
[data-theme="dark"] .upload-btn { background: var(--gold); color: #1A0A12; }

.file-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.8rem;
  color: var(--text-2);
  margin: 4px;
}
.file-chip-remove {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
}
.file-chip-remove:hover { color: var(--red); }

.ai-pipeline {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.pipeline-stage {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.pipeline-stage:last-child { border-bottom: none; }
.stage-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.stage-pending { background: var(--bg-3); color: var(--text-muted); }
.stage-active { background: rgba(74,28,43,0.1); color: var(--accent); animation: pulse 1.5s infinite; }
[data-theme="dark"] .stage-active { background: rgba(201,168,124,0.1); color: var(--gold); }
.stage-done { background: var(--green-bg); color: var(--green); }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.5; } }
.stage-label { font-size: 0.85rem; font-weight: 500; color: var(--text); }
.stage-sub { font-size: 0.75rem; color: var(--text-3); }
.stage-time { margin-left: auto; font-size: 0.72rem; color: var(--text-muted); }

.opinion-editor {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.editor-toolbar {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-3);
  flex-wrap: wrap;
}
.editor-btn {
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-2);
  font-family: var(--font);
  transition: all 0.15s;
}
.editor-btn:hover { background: var(--border); color: var(--text); }
.editor-divider { width: 1px; height: 20px; background: var(--border); margin: 0 4px; }
.editor-body {
  padding: 24px;
  min-height: 300px;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text);
  outline: none;
}
.privilege-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(74,28,43,0.06);
  border: 1px solid rgba(74,28,43,0.15);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
}
[data-theme="dark"] .privilege-banner {
  background: rgba(201,168,124,0.08);
  border-color: rgba(201,168,124,0.2);
  color: var(--gold);
}

/* ══════════════════════════════════════════════
   ANALYTICS PAGE
══════════════════════════════════════════════ */
.chart-bar-wrap { display: flex; align-items: flex-end; gap: 8px; height: 120px; padding: 0 4px; }
.chart-bar-col { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1; }
.chart-bar {
  width: 100%;
  border-radius: 4px 4px 0 0;
  background: var(--accent);
  transition: all 0.3s;
  min-height: 4px;
}
[data-theme="dark"] .chart-bar { background: var(--gold); }
.chart-bar:hover { opacity: 0.8; }
.chart-bar-label { font-size: 0.65rem; color: var(--text-muted); }
.chart-bar-val { font-size: 0.65rem; font-weight: 600; color: var(--text-2); }

.donut-wrap { display: flex; align-items: center; gap: 24px; }
.donut-svg { flex-shrink: 0; }
.donut-legend { display: flex; flex-direction: column; gap: 8px; }
.donut-legend-item { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; }
.donut-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* ══════════════════════════════════════════════
   SETTINGS PAGE
══════════════════════════════════════════════ */
.settings-section { margin-bottom: 32px; }
.settings-section-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.toggle-row:last-child { border-bottom: none; }
.toggle-label { font-size: 0.875rem; font-weight: 500; color: var(--text); }
.toggle-sub { font-size: 0.75rem; color: var(--text-3); margin-top: 2px; }
.toggle-switch {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border-2);
  border-radius: 100px;
  cursor: pointer;
  transition: 0.2s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  left: 3px; top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.2s;
}
.toggle-switch input:checked + .toggle-slider { background: var(--accent); }
[data-theme="dark"] .toggle-switch input:checked + .toggle-slider { background: var(--gold); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(18px); }

/* ══════════════════════════════════════════════
   MODAL
══════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 560px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.modal-title { font-size: 1rem; font-weight: 700; color: var(--text); }
.modal-close {
  color: var(--text-muted);
  padding: 4px;
  border-radius: 6px;
  transition: all 0.2s;
}
.modal-close:hover { background: var(--bg-3); color: var(--text); }
.modal-body { padding: 24px; }

/* ══════════════════════════════════════════════
   TOAST
══════════════════════════════════════════════ */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toast {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  box-shadow: var(--shadow-lg);
  animation: slideIn 0.3s ease;
  min-width: 260px;
  max-width: 360px;
}
.toast.success { border-left: 3px solid var(--green); }
.toast.error { border-left: 3px solid var(--red); }
.toast.info { border-left: 3px solid var(--blue); }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ══════════════════════════════════════════════
   SCROLLBAR
══════════════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .sidebar { position: fixed; left: -240px; z-index: 200; transition: left 0.3s; }
  .sidebar.open { left: 0; }
  .mobile-menu-btn { display: flex; }
  .header-search { display: none; }
  .privilege-tag-wrap { display: none; }
  .page-content { padding: 16px; }
  .hero-stats { padding: 20px; }
  .hero-stat { padding: 0 16px; }
  .landing-nav-inner { padding: 0 16px; }
  .nav-link { display: none; }
}