/* ============================================================
   TenantPetRights.org — Shared Stylesheet
   Movement brand. Dark mode default. Mobile-first.
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --bg:        #1a1a2e;
  --bg2:       #16213e;
  --bg3:       #0f3460;
  --accent:    #e63946;
  --orange:    #f4a261;
  --text:      #edf2f4;
  --text-muted:#a8b2c1;
  --card-bg:   rgba(255,255,255,0.05);
  --card-border: rgba(255,255,255,0.09);
  --radius:    10px;
  --radius-lg: 18px;
  --shadow:    0 4px 32px rgba(0,0,0,0.38);
  --transition: 0.2s ease;
  --max-w:     1140px;
  --font: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

body.light-mode {
  --bg:        #f5f5f0;
  --bg2:       #ebebeb;
  --bg3:       #d4d4d4;
  --text:      #111111;
  --text-muted:#555555;
  --card-bg:   rgba(0,0,0,0.04);
  --card-border: rgba(0,0,0,0.10);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  transition: background var(--transition), color var(--transition);
}
img { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; transition: opacity var(--transition); }
a:hover { opacity: 0.82; }
ul { list-style: none; }

/* --- Utility --- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-orange { color: var(--orange); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.6rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  text-align: center;
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.28); opacity: 1; }
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-secondary {
  background: var(--orange);
  color: #111;
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--card-border);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-lg { padding: 1rem 2.2rem; font-size: 1.1rem; border-radius: 8px; }
.btn-full { width: 100%; display: block; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26,26,46,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--card-border);
  padding: 0;
}
body.light-mode .site-nav {
  background: rgba(245,245,240,0.97);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.nav-logo:hover { opacity: 1; color: var(--text); }
.nav-logo .logo-icon {
  width: 34px; height: 34px;
  background: var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.nav-logo .logo-text span { color: var(--accent); }

.nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); opacity: 1; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Theme toggle */
.theme-toggle {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--text);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: background var(--transition);
}
.theme-toggle:hover { background: var(--card-border); }

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 62px;
  background: var(--bg);
  z-index: 99;
  padding: 2rem 20px;
  flex-direction: column;
  gap: 1.5rem;
  border-top: 1px solid var(--card-border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text);
  font-size: 1.3rem;
  font-weight: 700;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--card-border);
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-hamburger { display: none; }
  .mobile-menu { display: none !important; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg2) 50%, var(--bg3) 100%);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(230,57,70,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(244,162,97,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230,57,70,0.15);
  border: 1px solid rgba(230,57,70,0.35);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 2.2rem;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--accent);
  padding: 22px 0;
}
.stats-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}
.stat-item {
  text-align: center;
  color: #fff;
}
.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.82rem;
  opacity: 0.88;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.28);
}
@media (max-width: 600px) { .stat-divider { display: none; } }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 80px 0; }
.section-alt { background: var(--bg2); }
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.65;
}

/* ============================================================
   CARDS GRID
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 600px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem;
  backdrop-filter: blur(8px);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(244,162,97,0.3);
  box-shadow: var(--shadow);
}
.card-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}
.card-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.card-body {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ============================================================
   STATE GRID
   ============================================================ */
.states-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 480px) { .states-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .states-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .states-grid { grid-template-columns: repeat(6, 1fr); } }

.state-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.2rem 1rem;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  display: block;
  color: var(--text);
}
.state-card:hover {
  background: rgba(230,57,70,0.12);
  border-color: var(--accent);
  color: var(--text);
  transform: translateY(-3px);
  opacity: 1;
}
.state-card .state-abbr {
  font-size: 1.5rem;
  font-weight: 800;
  display: block;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}
.state-card .state-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.state-card.coming-soon {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}
.state-card.coming-soon .state-abbr { color: var(--text-muted); }
.state-card.coming-soon .state-name::after { content: ' (Soon)'; }

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-section {
  background: linear-gradient(135deg, var(--bg2), var(--bg3));
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}
.problem-box {
  background: var(--card-bg);
  border: 1px solid rgba(230,57,70,0.3);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  max-width: 820px;
  margin: 0 auto;
}
.problem-box p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
}
.problem-box strong { color: var(--accent); }
.problem-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1rem;
  display: block;
}

/* ============================================================
   NEWSLETTER CTA
   ============================================================ */
.newsletter-section {
  background: var(--bg2);
  padding: 70px 0;
}
.newsletter-box {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  backdrop-filter: blur(8px);
}
.newsletter-box h2 {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.newsletter-box p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.65;
}
.email-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 480px) {
  .email-form { flex-direction: row; }
  .email-form input { flex: 1; }
  .email-form .btn { flex-shrink: 0; }
}
.email-form input[type="email"] {
  padding: 0.85rem 1.2rem;
  border-radius: 6px;
  border: 1px solid var(--card-border);
  background: rgba(255,255,255,0.07);
  color: var(--text);
  font-size: 1rem;
  font-family: var(--font);
  outline: none;
  transition: border-color var(--transition);
}
.email-form input[type="email"]:focus { border-color: var(--orange); }
.email-form input[type="email"]::placeholder { color: var(--text-muted); }
.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}
.form-success {
  display: none;
  background: rgba(46,213,115,0.15);
  border: 1px solid rgba(46,213,115,0.4);
  color: #2ed573;
  border-radius: 6px;
  padding: 0.85rem 1.2rem;
  font-weight: 600;
  margin-top: 0.75rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0d0d1a;
  border-top: 1px solid var(--card-border);
  padding: 40px 0 100px;
}
@media (min-width: 768px) { .site-footer { padding-bottom: 40px; } }
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; align-items: flex-start; }
}
.footer-brand {
  display: flex; flex-direction: column; gap: 8px;
}
.footer-logo {
  font-size: 1.1rem; font-weight: 800; color: var(--text);
}
.footer-logo span { color: var(--accent); }
.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 380px;
  line-height: 1.55;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: center;
}
@media (min-width: 768px) { .footer-links { justify-content: flex-end; } }
.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--text); opacity: 1; }

/* ============================================================
   MOBILE BOTTOM TAB BAR
   ============================================================ */
.tab-bar {
  display: flex;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(22,22,40,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--card-border);
  z-index: 100;
  padding: 6px 0 env(safe-area-inset-bottom, 0);
}
body.light-mode .tab-bar {
  background: rgba(240,240,235,0.97);
}
.tab-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 4px;
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: color var(--transition);
}
.tab-bar a .tab-icon { font-size: 1.25rem; line-height: 1; }
.tab-bar a:hover, .tab-bar a.active { color: var(--orange); opacity: 1; }
@media (min-width: 768px) { .tab-bar { display: none; } }

/* ============================================================
   STATE PAGE SPECIFIC
   ============================================================ */
.state-hero {
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg2) 60%, var(--bg3) 100%);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.state-hero::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(230,57,70,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--orange); opacity: 1; }
.breadcrumb .sep { opacity: 0.4; }
.state-hero h1 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.state-hero .hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
}

/* Quick Facts Box */
.quick-facts {
  background: rgba(244,162,97,0.08);
  border: 1px solid rgba(244,162,97,0.3);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem;
  margin: 2.5rem 0;
}
.quick-facts h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.fact-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.fact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}
.fact-label {
  color: var(--text-muted);
  min-width: 210px;
  flex-shrink: 0;
  font-size: 0.9rem;
}
.fact-value {
  font-weight: 700;
  color: var(--text);
}
.fact-value.yes { color: #2ed573; }
.fact-value.limited { color: var(--orange); }
.fact-value.protected { color: #2ed573; }

/* Rights content */
.rights-content {
  max-width: 800px;
}
.rights-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 2.5rem 0 1rem;
  color: var(--text);
}
.rights-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 1.75rem 0 0.75rem;
  color: var(--orange);
}
.rights-content p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: 0.97rem;
}
.rights-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.rights-content ul li {
  margin-bottom: 0.5rem;
  line-height: 1.65;
  font-size: 0.97rem;
}

/* Steps Section */
.steps-section { margin-top: 3rem; }
.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .steps-grid { flex-direction: row; gap: 1.5rem; }
  .steps-grid .step { flex: 1; }
}
.step {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
}
.step-num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 50%;
  margin-bottom: 0.85rem;
}
.step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.step p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.step a { color: var(--orange); }

/* Complaint Template */
.complaint-template {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-top: 1.5rem;
}
.complaint-template h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 1rem;
}
.template-body {
  background: rgba(0,0,0,0.25);
  border-radius: 6px;
  padding: 1.25rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.82rem;
  line-height: 1.8;
  color: var(--text-muted);
  white-space: pre-wrap;
  overflow-x: auto;
  max-height: 320px;
  overflow-y: auto;
}
.template-body .placeholder {
  background: rgba(244,162,97,0.2);
  color: var(--orange);
  padding: 0 3px;
  border-radius: 3px;
}
.copy-btn {
  margin-top: 1rem;
  font-size: 0.85rem;
  padding: 0.55rem 1.2rem;
}

/* ============================================================
   NEWSLETTER PAGE
   ============================================================ */
.newsletter-hero {
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg2) 100%);
  padding: 80px 0 70px;
  text-align: center;
}
.newsletter-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; margin-bottom: 0.75rem; }
.newsletter-hero p { font-size: 1.1rem; color: var(--text-muted); max-width: 540px; margin: 0 auto; }

.benefits-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2.5rem 0;
}
@media (min-width: 600px) { .benefits-list { grid-template-columns: repeat(2, 1fr); } }
.benefit-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.3rem 1.2rem;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.benefit-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1.2; }
.benefit-text h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.benefit-text p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.55; }

.newsletter-form-big {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  max-width: 540px;
  margin: 0 auto;
}
.newsletter-form-big h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.newsletter-form-big p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg2) 100%);
  padding: 80px 0 70px;
}
.about-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; margin-bottom: 0.75rem; }
.about-content {
  max-width: 720px;
}
.about-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.82;
  margin-bottom: 1.5rem;
}
.about-content strong { color: var(--text); }
.about-manifesto {
  font-size: 1.3rem !important;
  font-weight: 700;
  color: var(--text) !important;
  border-left: 4px solid var(--accent);
  padding-left: 1.5rem;
  margin: 2.5rem 0 !important;
}
.about-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 3rem 0;
}
@media (min-width: 600px) { .about-pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem 1.3rem;
}
.pillar-icon { font-size: 1.8rem; margin-bottom: 0.75rem; display: block; }
.pillar h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.pillar p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   MISC
   ============================================================ */
.divider {
  height: 1px;
  background: var(--card-border);
  margin: 0;
  border: none;
}
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-red { background: rgba(230,57,70,0.18); color: var(--accent); border: 1px solid rgba(230,57,70,0.3); }
.badge-orange { background: rgba(244,162,97,0.18); color: var(--orange); border: 1px solid rgba(244,162,97,0.3); }
.badge-green { background: rgba(46,213,115,0.15); color: #2ed573; border: 1px solid rgba(46,213,115,0.3); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--card-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }
