/* ===== EPICMAILEXTRACTOR - CORE STYLES ===== */
:root {
  --primary: #c9a84c;
  --primary-dark: #a07830;
  --primary-light: #e8c97a;
  --bg: #0d0d0d;
  --bg2: #141414;
  --bg3: #1e1e1e;
  --card: #1a1a1a;
  --border: #2a2a2a;
  --text: #f0e8d5;
  --text-muted: #9a8a6a;
  --text-dim: #6a5a3a;
  --success: #4caf6a;
  --danger: #e05555;
  --warning: #e09a30;
  --info: #5090e0;
  --edu: #a060d0;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --radius: 10px;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ========== THEMES ========== */
body.theme-gold {
  --primary: #c9a84c; --primary-dark: #a07830; --primary-light: #e8c97a;
  --bg: #0d0d0d; --bg2: #141414; --bg3: #1e1e1e; --card: #1a1a1a;
  --border: #2a2a2a; --text: #f0e8d5; --text-muted: #9a8a6a;
}
body.theme-dark {
  --primary: #7b68ee; --primary-dark: #5a4fd0; --primary-light: #9d8ef5;
  --bg: #090909; --bg2: #111; --bg3: #1a1a1a; --card: #141414;
  --border: #252525; --text: #e8e0f0; --text-muted: #8a80a0;
}
body.theme-blue {
  --primary: #2196f3; --primary-dark: #1565c0; --primary-light: #64b5f6;
  --bg: #071620; --bg2: #0a1e2e; --bg3: #0d2438; --card: #0f2840;
  --border: #1a3a55; --text: #e0f0ff; --text-muted: #6090b0;
}
body.theme-green {
  --primary: #4caf50; --primary-dark: #2e7d32; --primary-light: #81c784;
  --bg: #071210; --bg2: #0a1a14; --bg3: #0d2018; --card: #0f2418;
  --border: #1a3525; --text: #e0ffe8; --text-muted: #60a070;
}
body.theme-red {
  --primary: #f44336; --primary-dark: #c62828; --primary-light: #ef9a9a;
  --bg: #130808; --bg2: #1a0d0d; --bg3: #221212; --card: #1e1010;
  --border: #3a1818; --text: #ffe0e0; --text-muted: #a06060;
}
body.theme-purple {
  --primary: #9c27b0; --primary-dark: #6a1b69; --primary-light: #ce93d8;
  --bg: #0d0712; --bg2: #120e1a; --bg3: #181022; --card: #1a1228;
  --border: #2a1a38; --text: #f0e0ff; --text-muted: #9060b0;
}
body.theme-cyan {
  --primary: #00bcd4; --primary-dark: #00838f; --primary-light: #80deea;
  --bg: #050f12; --bg2: #071518; --bg3: #091c20; --card: #0b2228;
  --border: #123540; --text: #e0f8ff; --text-muted: #50a0b0;
}
body.theme-orange {
  --primary: #ff9800; --primary-dark: #e65100; --primary-light: #ffcc80;
  --bg: #120a00; --bg2: #1a0f00; --bg3: #221500; --card: #1e1200;
  --border: #3a2200; --text: #fff3e0; --text-muted: #a07030;
}
body.theme-white {
  --primary: #1565c0; --primary-dark: #0d47a1; --primary-light: #42a5f5;
  --bg: #f5f5f5; --bg2: #ebebeb; --bg3: #e0e0e0; --card: #ffffff;
  --border: #cccccc; --text: #212121; --text-muted: #757575;
}
body.theme-pink {
  --primary: #e91e8c; --primary-dark: #ad1457; --primary-light: #f48fb1;
  --bg: #120810; --bg2: #1a0e18; --bg3: #221220; --card: #1e1028;
  --border: #3a1835; --text: #ffe0f5; --text-muted: #a06090;
}

/* ========== RESET & BASE ========== */
*, *::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);
  line-height: 1.6;
  min-height: 100vh;
  transition: background 0.3s, color 0.3s;
}
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-light); }
img { max-width: 100%; }
ul { list-style: none; }

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--primary-dark); border-radius: 3px; }

/* ========== TYPOGRAPHY ========== */
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.3; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
p { margin-bottom: 1rem; color: var(--text-muted); }

/* ========== LAYOUT ========== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 40px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; }

/* ========== NAVBAR ========== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 14px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 10px; font-size: 1.3rem; font-weight: 800; color: var(--primary); }
.nav-brand i { font-size: 1.5rem; }
.nav-brand span { color: var(--text); }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { color: var(--text-muted); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-theme-btn {
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--primary); padding: 6px 12px; border-radius: 6px;
  cursor: pointer; font-size: 0.85rem; display: flex; align-items: center; gap: 6px;
  transition: all 0.2s;
}
.nav-theme-btn:hover { background: var(--border); }
.nav-cta { background: var(--primary); color: var(--bg); padding: 8px 20px; border-radius: 6px; font-weight: 700; font-size: 0.9rem; transition: all 0.2s; }
.nav-cta:hover { background: var(--primary-light); color: var(--bg); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  border: none; transition: all 0.2s; text-decoration: none;
}
.btn-primary { background: var(--primary); color: var(--bg); }
.btn-primary:hover { background: var(--primary-light); color: var(--bg); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--bg); transform: translateY(-2px); }
.btn-ghost { background: var(--bg3); border: 1px solid var(--border); color: var(--text); }
.btn-ghost:hover { background: var(--border); }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; border-radius: 6px; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-success { background: var(--success); color: #fff; }
.btn-info { background: var(--info); color: #fff; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ========== CARDS ========== */
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.card:hover { border-color: var(--primary-dark); }
.card-glow:hover { box-shadow: 0 0 30px rgba(201,168,76,0.1); transform: translateY(-3px); }


/* ═══════════════════════════════════════════
   HERO v1.7 — Animated Live Verification
═══════════════════════════════════════════ */
@keyframes orb1  { 0%,100%{transform:translate(0,0);} 50%{transform:translate(30px,-20px);} }
@keyframes orb2  { 0%,100%{transform:translate(0,0);} 50%{transform:translate(-20px,30px);} }
@keyframes liveDot { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
@keyframes rowSlide { from{opacity:0;transform:translateY(-12px);} to{opacity:1;transform:translateY(0);} }
@keyframes pillFloat1 { 0%,100%{transform:translateY(0) rotate(-2deg);} 50%{transform:translateY(-10px) rotate(1deg);} }
@keyframes pillFloat2 { 0%,100%{transform:translateY(0) rotate(1deg);} 50%{transform:translateY(-7px) rotate(-2deg);} }
@keyframes pillFloat3 { 0%,100%{transform:translateY(0) rotate(-1deg);} 50%{transform:translateY(-9px) rotate(2deg);} }
@keyframes gradShift { 0%{background-position:0% 50%;} 50%{background-position:100% 50%;} 100%{background-position:0% 50%;} }
@keyframes shimmer { 0%{left:-80%;} 100%{left:140%;} }
@keyframes barPulse { 0%,100%{box-shadow:0 0 4px rgba(240,165,0,0.4);} 50%{box-shadow:0 0 14px rgba(240,165,0,0.9);} }
@keyframes heroCount { from{opacity:0;transform:translateY(6px);} to{opacity:1;transform:translateY(0);} }

.hero { min-height:100vh; display:flex; align-items:center;
  background:linear-gradient(160deg,var(--bg) 0%,var(--bg2) 60%,#0c0e0a 100%);
  padding:110px 0 80px; position:relative; overflow:hidden; }
.hero::before { content:''; position:absolute; inset:0; pointer-events:none;
  background-image:repeating-linear-gradient(0deg,transparent,transparent 59px,rgba(201,168,76,0.025) 59px,rgba(201,168,76,0.025) 60px),
    repeating-linear-gradient(90deg,transparent,transparent 59px,rgba(201,168,76,0.025) 59px,rgba(201,168,76,0.025) 60px); }
.hero-bg-orb { position:absolute; border-radius:50%; pointer-events:none; filter:blur(80px); }
.hero-orb-1 { width:500px; height:500px; top:-100px; right:5%; background:radial-gradient(circle,rgba(240,165,0,0.09),transparent 70%); animation:orb1 12s ease-in-out infinite; }
.hero-orb-2 { width:400px; height:400px; bottom:-80px; left:-10%; background:radial-gradient(circle,rgba(100,181,246,0.06),transparent 70%); animation:orb2 15s ease-in-out infinite 3s; }

.hero-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.hero-content { position:relative; z-index:2; }
.hero-badge { display:inline-flex; align-items:center; gap:8px;
  background:rgba(240,165,0,0.08); border:1px solid rgba(240,165,0,0.3); color:#f0a500;
  padding:7px 16px; border-radius:100px; font-size:0.8rem; font-weight:700; margin-bottom:28px; }
.hero-live-dot { width:7px; height:7px; border-radius:50%; background:#4caf50;
  box-shadow:0 0 6px #4caf50; animation:liveDot 1.4s ease-in-out infinite; }
.hero-glow-text { background:linear-gradient(90deg,#c9a84c,#f0d060,#f0a500,#c9a84c); background-size:300% auto;
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; animation:gradShift 4s linear infinite; }
.hero h1 { font-size:clamp(2rem,3.8vw,3.1rem); line-height:1.1; margin-bottom:22px; }
.hero h1 span { color:var(--primary); }
.hero-desc { font-size:1.05rem; color:var(--text-muted); max-width:500px; margin-bottom:36px; line-height:1.8; }
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:52px; }
.hero-cta-btn { position:relative; overflow:hidden; }
.hero-cta-btn::after { content:''; position:absolute; top:-50%; left:-80%; width:50%; height:200%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,0.18),transparent);
  transform:skewX(-15deg); animation:shimmer 3s ease-in-out infinite 2s; }
.hero-stats { display:flex; gap:30px; flex-wrap:wrap; }
.hero-stat { display:flex; flex-direction:column; }
.hero-stat-num { font-size:1.9rem; font-weight:900; color:var(--primary); line-height:1; }
.hero-stat-unit { font-size:1rem; font-weight:700; color:var(--primary); }
.hero-stat-label { font-size:0.75rem; color:var(--text-muted); margin-top:3px; }

.hero-demo-wrap { position:relative; z-index:2; }
.hero-demo-card { background:rgba(20,22,17,0.96); border:1px solid rgba(240,165,0,0.22); border-radius:14px; overflow:hidden;
  box-shadow:0 32px 80px rgba(0,0,0,0.7),0 0 0 1px rgba(255,255,255,0.04),inset 0 1px 0 rgba(255,255,255,0.05);
  transform:perspective(1100px) rotateY(-5deg) rotateX(2deg) scale(0.98); transition:transform 0.5s ease; }
.hero-demo-wrap:hover .hero-demo-card { transform:perspective(1100px) rotateY(-1deg) rotateX(0.5deg) scale(1); }

.hero-demo-chrome { display:flex; align-items:center; gap:6px; padding:10px 14px;
  background:rgba(0,0,0,0.45); border-bottom:1px solid rgba(255,255,255,0.06); }
.chrome-dot { width:11px; height:11px; border-radius:50%; display:inline-block; flex-shrink:0; }
.chrome-title { font-size:0.72rem; color:var(--text-muted); margin-left:8px; flex:1; display:flex; align-items:center; gap:6px; }
.chrome-badge { font-size:0.63rem; background:rgba(240,165,0,0.15); color:#f0a500; padding:2px 8px; border-radius:100px; font-weight:800; }

.demo-progress-wrap { padding:10px 14px 8px; border-bottom:1px solid rgba(255,255,255,0.05); }
.demo-progress-track { height:4px; background:rgba(255,255,255,0.07); border-radius:4px; margin-bottom:7px; overflow:hidden; }
.demo-progress-bar { height:100%; width:0; border-radius:4px;
  background:linear-gradient(90deg,#9a6e00,#f0a500,#ffe066);
  transition:width 0.55s ease; animation:barPulse 2s ease-in-out infinite; }
.demo-progress-info { display:flex; justify-content:space-between; font-size:0.7rem; color:var(--text-muted); }

.demo-rows { min-height:165px; overflow:hidden; }
.demo-row { display:flex; align-items:center; justify-content:space-between; gap:8px;
  padding:8px 14px; border-bottom:1px solid rgba(255,255,255,0.04); font-size:0.76rem; }
.demo-row:last-child { border-bottom:none; }
.demo-email { color:var(--text); font-family:monospace; opacity:0.82; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; max-width:210px; }
.demo-badge { font-size:0.68rem; font-weight:700; padding:3px 9px; border-radius:5px; border:1px solid;
  display:inline-flex; align-items:center; gap:4px; white-space:nowrap; flex-shrink:0; }
.demo-row-in { animation:rowSlide 0.35s ease-out; }

.demo-stats-bar { display:flex; border-top:1px solid rgba(255,255,255,0.06); background:rgba(0,0,0,0.3); }
.dsb-item { flex:1; display:flex; flex-direction:column; align-items:center;
  padding:8px 4px; font-size:0.6rem; border-right:1px solid rgba(255,255,255,0.04); gap:1px; }
.dsb-item:last-child { border-right:none; }
.dsb-item i { font-size:0.85rem; margin-bottom:1px; }
.dsb-item span { opacity:0.6; line-height:1.1; }
.dsb-item strong { font-size:0.88rem; font-weight:800; }
.dsb-o365{color:#82b4ff;} .dsb-o365 strong{color:#82b4ff;}
.dsb-gsu {color:#ff8a80;} .dsb-gsu  strong{color:#ff8a80;}
.dsb-biz {color:#ffcc80;} .dsb-biz  strong{color:#ffcc80;}
.dsb-edu {color:#ce93d8;} .dsb-edu  strong{color:#ce93d8;}
.dsb-res {color:#81c784;} .dsb-res  strong{color:#81c784;}

.hero-pill { position:absolute; background:rgba(20,22,17,0.92); border:1px solid rgba(240,165,0,0.3);
  color:#f0a500; font-size:0.72rem; font-weight:700; padding:6px 13px; border-radius:100px;
  display:flex; align-items:center; gap:6px; box-shadow:0 8px 24px rgba(0,0,0,0.5); z-index:3; pointer-events:none; }
.hero-pill-1 { top:-14px; left:-18px; color:#82b4ff; border-color:rgba(130,180,255,0.35); animation:pillFloat1 5s ease-in-out infinite; }
.hero-pill-2 { bottom:-16px; right:-12px; color:#ce93d8; border-color:rgba(206,147,216,0.35); animation:pillFloat2 6s ease-in-out infinite 1s; }
.hero-pill-3 { bottom:28%; left:-22px; color:#f0a500; border-color:rgba(240,165,0,0.35); animation:pillFloat3 7s ease-in-out infinite 2s; }

@media(max-width:960px){.hero-grid{grid-template-columns:1fr;gap:40px;}.hero-demo-wrap{display:none;}}
@media(max-width:600px){.hero{padding:90px 0 60px;}.hero h1{font-size:2rem;}}

/* ========== BADGES / TAGS ========== */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: 4px;
  font-size: 0.78rem; font-weight: 600;
}
.badge-public { background: rgba(33,150,243,0.15); color: #64b5f6; border: 1px solid rgba(33,150,243,0.3); }
.badge-residential { background: rgba(76,175,106,0.15); color: #81c784; border: 1px solid rgba(76,175,106,0.3); }
.badge-business { background: rgba(255,152,0,0.15); color: #ffcc80; border: 1px solid rgba(255,152,0,0.3); }
.badge-office365 { background: rgba(0,120,212,0.15); color: #82b4ff; border: 1px solid rgba(0,120,212,0.3); }
.badge-gsuite { background: rgba(234,67,53,0.15); color: #ff8a80; border: 1px solid rgba(234,67,53,0.3); }
.badge-edu { background: rgba(160,96,208,0.15); color: #ce93d8; border: 1px solid rgba(160,96,208,0.3); }
.badge-dead { background: rgba(224,85,85,0.15); color: #ef9a9a; border: 1px solid rgba(224,85,85,0.3); }

/* ========== CATEGORY CARDS ========== */
.cat-icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px;
}
.cat-public { background: rgba(33,150,243,0.15); color: #64b5f6; }
.cat-residential { background: rgba(76,175,106,0.15); color: #81c784; }
.cat-business { background: rgba(255,152,0,0.15); color: #ffcc80; }
.cat-office365 { background: rgba(0,120,212,0.15); color: #82b4ff; }
.cat-gsuite { background: rgba(234,67,53,0.15); color: #ff8a80; }
.cat-edu { background: rgba(160,96,208,0.15); color: #ce93d8; }
.cat-dead { background: rgba(224,85,85,0.15); color: #ef9a9a; }

/* ========== HOW IT WORKS ========== */
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(201,168,76,0.15); border: 2px solid var(--primary);
  color: var(--primary); font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step { display: flex; gap: 20px; align-items: flex-start; }
.step-line { width: 2px; background: linear-gradient(180deg, var(--primary), transparent); margin: 0 21px; height: 40px; }

/* ========== FEATURES ========== */
.feature-icon {
  width: 56px; height: 56px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 16px;
  background: rgba(201,168,76,0.1); color: var(--primary);
}

/* ========== SECTION HEADINGS ========== */
.section-tag {
  display: inline-block; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-desc { color: var(--text-muted); max-width: 580px; margin: 0 auto 48px; }

/* ========== FAQ ========== */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none; color: var(--text);
  padding: 20px 0; font-size: 1rem; font-weight: 600;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; text-align: left;
}
.faq-question i { color: var(--primary); transition: transform 0.3s; }
.faq-question.active i { transform: rotate(180deg); }
.faq-answer { padding: 0 0 20px; color: var(--text-muted); display: none; }
.faq-answer.show { display: block; }

/* ========== RATING ========== */
.stars { color: #ffd700; display: flex; gap: 2px; }
.rating-block { display: flex; align-items: center; gap: 12px; }
.rating-score { font-size: 3rem; font-weight: 800; color: var(--primary); }
.rating-meta { font-size: 0.85rem; color: var(--text-muted); }

/* ========== ADS ========== */
.ad-slot {
  background: var(--bg2); border: 1px dashed var(--border);
  border-radius: var(--radius); padding: 16px; text-align: center;
  color: var(--text-dim); font-size: 0.8rem; min-height: 90px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.ad-label { font-size: 0.7rem; letter-spacing: 0.08em; color: var(--text-dim); margin-bottom: 6px; text-transform: uppercase; }

/* ========== FOOTER ========== */
.footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { font-size: 1.2rem; font-weight: 800; color: var(--primary); display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.footer-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.footer-heading { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-muted); font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.83rem; color: var(--text-dim); }

/* ========== THEME MODAL ========== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 28px; max-width: 520px; width: 90%;
  transform: translateY(20px); transition: transform 0.3s;
}
.modal-overlay.active .modal { transform: translateY(0); }
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.modal-close { background: none; border: none; color: var(--text-muted); font-size: 1.2rem; cursor: pointer; }
.modal-close:hover { color: var(--text); }
.theme-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.theme-swatch {
  border-radius: 8px; padding: 10px 6px; text-align: center;
  cursor: pointer; border: 2px solid transparent;
  transition: all 0.2s; font-size: 0.75rem; font-weight: 600;
}
.theme-swatch.active { border-color: var(--primary); transform: scale(1.05); }
.swatch-dot {
  width: 28px; height: 28px; border-radius: 50%;
  margin: 0 auto 6px;
}

/* ========== DIVIDERS ========== */
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); margin: 20px 0; }
.gold-line { height: 3px; width: 60px; background: linear-gradient(90deg, var(--primary), var(--primary-light)); border-radius: 3px; }

/* ========== RESPONSIVE ========== */
@media(max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .theme-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-actions { flex-direction: column; }
}
@media(max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .theme-grid { grid-template-columns: repeat(3, 1fr); }
}
