/* ============================================
   121212.reviews — The Ecosystem's Review Hub
   ============================================ */

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

:root {
  --bg:           #0B0A0F;
  --surface:      #131118;
  --surface-2:    #1A1820;
  --surface-3:    #222030;
  --surface-4:    #2A2838;

  --border:       #242232;
  --border-light: #343250;

  --gold:         #F59E0B;
  --gold-light:   #FCD34D;
  --gold-dim:     #78350F;
  --gold-glow:    rgba(245, 158, 11, 0.2);

  --crimson:      #C41E3A;
  --crimson-dark: #8B1528;

  --purple:       #7B2FBE;
  --purple-light: #A855F7;
  --purple-dim:   #3D1672;

  --green:        #22C55E;
  --green-dim:    #14532D;

  --text:         #F4EDE8;
  --text-dim:     #8880A0;
  --text-muted:   #48446A;

  --white:        #ffffff;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Scroll Progress ── */
.scroll-progress {
  position: fixed; top: 60px; left: 0;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold) 0%, var(--crimson) 100%);
  z-index: 999; transition: width 0.1s linear;
}

/* ── Nav ── */
nav {
  position: fixed; top: 0; width: 100%;
  background: rgba(11,10,15,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem; z-index: 1000;
  height: 60px; display: flex; align-items: center;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 30px rgba(245,158,11,0.08); }

.nav-content {
  width: 100%; max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--text); text-decoration: none;
  display: flex; align-items: center; gap: 0.4rem;
}
.logo .star { color: var(--gold); }
.logo span  { color: var(--gold-light); font-style: italic; }

.nav-links { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-links a {
  color: var(--text-dim); text-decoration: none;
  font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.04em; transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--gold) !important; color: var(--bg) !important;
  padding: 0.5rem 1.25rem; border-radius: 6px;
  transition: background 0.2s, transform 0.2s !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

.nav-hamburger {
  display: none; 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: all 0.3s; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem; border-radius: 8px;
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.03em;
  text-decoration: none; cursor: pointer; border: none;
  transition: all 0.2s;
}
.btn-gold { background: var(--gold); color: var(--bg); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 25px var(--gold-glow); }
.btn-primary { background: var(--crimson); color: var(--white); }
.btn-primary:hover { background: #e02244; transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--text-dim); border: 1px solid var(--border-light); }
.btn-secondary:hover { background: var(--surface-2); color: var(--text); }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.8rem; }
.btn-affiliate {
  background: var(--gold); color: var(--bg);
  padding: 0.55rem 1.1rem; border-radius: 7px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.03em;
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem;
  transition: all 0.2s;
}
.btn-affiliate:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 16px var(--gold-glow); }

/* ── Stars ── */
.stars { display: inline-flex; gap: 1px; color: var(--gold); font-size: 0.85rem; }
.stars .empty { color: var(--border-light); }

/* ── Badges ── */
.badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.2rem 0.55rem; border-radius: 100px;
}
.badge-gold    { background: rgba(245,158,11,0.15);  color: var(--gold);         border: 1px solid var(--gold-dim); }
.badge-crimson { background: rgba(196,30,58,0.15);   color: #f87171;             border: 1px solid rgba(196,30,58,0.4); }
.badge-green   { background: rgba(34,197,94,0.12);   color: var(--green);        border: 1px solid var(--green-dim); }
.badge-purple  { background: rgba(123,47,190,0.18);  color: var(--purple-light); border: 1px solid var(--purple-dim); }
.badge-dim     { background: var(--surface-3);       color: var(--text-dim);     border: 1px solid var(--border); }

/* ── Section base ── */
.section { padding: 6rem 2rem; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  line-height: 1.15; color: var(--text); margin-bottom: 0.75rem;
}
.section-subtitle {
  color: var(--text-dim); font-size: 1.05rem; max-width: 560px; line-height: 1.7;
}

/* ── Hero ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; text-align: center;
  padding: 7rem 2rem 4rem; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -10%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 180px;
  background: linear-gradient(to bottom, transparent, var(--bg)); pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--surface-2); border: 1px solid var(--border-light);
  border-radius: 100px; padding: 0.35rem 1rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 1.75rem;
}
.eyebrow-star { color: var(--gold); font-size: 0.8rem; }

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 6.5rem); font-weight: 700;
  line-height: 1.0; letter-spacing: -0.02em; margin-bottom: 1.5rem;
}
.hero h1 .accent-gold   { color: var(--gold); }
.hero h1 .accent-crimson { color: var(--crimson); }

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem); color: var(--text-dim);
  max-width: 580px; margin: 0 auto 2.5rem; line-height: 1.75;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-subdomains {
  margin-top: 3.5rem;
  font-family: monospace; font-size: 0.8rem;
  color: var(--text-muted); letter-spacing: 0.04em;
  display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap;
}
.hero-subdomains span { color: var(--gold-light); }

/* ── Stats ── */
.stats-wrapper {
  padding: 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 700; color: var(--gold); line-height: 1;
}
.stat-label { font-size: 0.78rem; color: var(--text-dim); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 0.4rem; }

/* ── Category Grid ── */
.categories-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.category-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; margin-top: 2.5rem; }

.category-card {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.5rem 1rem; text-align: center;
  cursor: pointer; text-decoration: none;
  transition: all 0.25s; position: relative; overflow: hidden;
}
.category-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-glow), transparent);
  opacity: 0; transition: opacity 0.25s;
}
.category-card:hover { border-color: var(--gold-dim); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.category-card:hover::before { opacity: 1; }

.category-icon { font-size: 1.75rem; margin-bottom: 0.6rem; display: block; }
.category-name { font-size: 0.82rem; font-weight: 700; color: var(--text); margin-bottom: 0.2rem; }
.category-count { font-size: 0.68rem; color: var(--text-muted); }

/* ── Review Cards ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.reviews-grid-2 { grid-template-columns: repeat(2, 1fr); }

.review-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  transition: all 0.25s; cursor: pointer;
}
.review-card:hover { border-color: var(--border-light); transform: translateY(-4px); box-shadow: 0 16px 50px rgba(0,0,0,0.5); }

.review-card-top {
  padding: 1.5rem 1.5rem 1rem;
  background: var(--surface-2); border-bottom: 1px solid var(--border);
  position: relative;
}

.review-product-emoji {
  width: 56px; height: 56px; border-radius: 12px;
  background: var(--surface-3); border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; margin-bottom: 1rem;
}

.review-card-badges {
  display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.75rem;
}

.review-product-name {
  font-size: 0.95rem; font-weight: 700; color: var(--text);
  line-height: 1.3; margin-bottom: 0.5rem;
}

.review-stars-row {
  display: flex; align-items: center; gap: 0.6rem;
}
.review-rating-num {
  font-size: 0.8rem; font-weight: 700; color: var(--gold);
}
.review-count { font-size: 0.72rem; color: var(--text-dim); }

.review-card-body { padding: 1.1rem 1.5rem 1rem; }

.review-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 700; color: var(--text);
  line-height: 1.35; margin-bottom: 0.6rem;
}
.review-excerpt {
  font-size: 0.85rem; color: var(--text-dim);
  line-height: 1.7; margin-bottom: 1rem;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}

.review-card-footer {
  padding: 0.9rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}

.reviewer-row { display: flex; align-items: center; gap: 0.6rem; }
.reviewer-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-dim), var(--surface-3));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: var(--text);
  border: 1px solid var(--border-light);
}
.reviewer-name { font-size: 0.78rem; font-weight: 600; color: var(--text-dim); }
.reviewer-badge { font-size: 0.62rem; color: var(--gold); }

.review-price { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700; color: var(--gold); }

/* ── Featured Review (hero card) ── */
.featured-review {
  background: var(--surface); border: 1px solid var(--border-light);
  border-radius: 20px; overflow: hidden; margin-bottom: 1.5rem;
  display: grid; grid-template-columns: 1fr 2fr;
}
.featured-review-left {
  background: linear-gradient(135deg, rgba(245,158,11,0.12) 0%, var(--surface-2) 100%);
  border-right: 1px solid var(--border); padding: 2.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.featured-review-right { padding: 2.5rem; }
.featured-product-emoji {
  width: 80px; height: 80px; border-radius: 16px;
  background: var(--surface-3); border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.75rem; margin-bottom: 1.25rem;
}
.featured-product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 700; color: var(--text);
  margin-bottom: 0.5rem;
}
.featured-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 700;
  color: var(--text); line-height: 1.35; margin-bottom: 1rem;
}
.featured-body {
  font-size: 0.925rem; color: var(--text-dim);
  line-height: 1.8; margin-bottom: 1.5rem;
}

/* ── How Affiliates Work ── */
.affiliate-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.affiliate-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.affiliate-card {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem; transition: border-color 0.2s;
}
.affiliate-card:hover { border-color: var(--gold-dim); }
.affiliate-step { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 700; color: var(--border-light); line-height: 1; margin-bottom: 0.75rem; }
.affiliate-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.affiliate-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 0.6rem; }
.affiliate-card p { font-size: 0.875rem; color: var(--text-dim); line-height: 1.7; }

/* ── Top Reviewers ── */
.reviewer-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.5rem; text-align: center;
  transition: all 0.25s;
}
.reviewer-card:hover { border-color: var(--gold-dim); transform: translateY(-3px); }
.reviewer-big-avatar {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 700; color: var(--white);
  margin: 0 auto 0.85rem; border: 2px solid var(--border-light);
}
.reviewer-card-name { font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 0.2rem; }
.reviewer-card-handle { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.reviewer-stats { display: flex; justify-content: center; gap: 1.25rem; margin-top: 0.75rem; }
.reviewer-stat { text-align: center; }
.reviewer-stat-val { font-size: 1rem; font-weight: 700; color: var(--gold); font-family: 'Cormorant Garamond', serif; }
.reviewer-stat-lbl { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* ── Subdomain Architecture Section ── */
.subdomain-section {}
.subdomain-intro { max-width: 680px; }
.subdomain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.5rem; }
.subdomain-card {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.1rem; transition: border-color 0.2s;
}
.subdomain-card:hover { border-color: var(--gold-dim); }
.subdomain-example { font-family: monospace; font-size: 0.72rem; color: var(--gold-light); margin-bottom: 0.3rem; }
.subdomain-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }

/* ── Browse Page ── */
.browse-filters {
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 1.1rem 2rem; position: sticky; top: 60px; z-index: 100;
}
.filter-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.filter-label { font-size: 0.72rem; font-weight: 700; color: var(--text-dim); letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; }
.filter-btn {
  background: var(--surface-2); border: 1px solid var(--border); color: var(--text-dim);
  font-size: 0.75rem; font-weight: 600; padding: 0.35rem 0.85rem; border-radius: 100px;
  cursor: pointer; transition: all 0.2s; letter-spacing: 0.03em;
}
.filter-btn:hover { color: var(--text); border-color: var(--border-light); }
.filter-btn.active { background: rgba(245,158,11,0.12); color: var(--gold); border-color: var(--gold-dim); }

.browse-section { padding: 3rem 2rem 6rem; }
.browse-inner { max-width: 1280px; margin: 0 auto; }
.browse-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.browse-count { font-size: 0.85rem; color: var(--text-dim); }
.browse-count span { color: var(--text); font-weight: 700; }

/* ── Submit / Become Reviewer ── */
.submit-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; padding: 5rem 2rem 7rem; max-width: 1100px; margin: 0 auto; }
.submit-info h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--text); margin-bottom: 1rem; }
.submit-info p { font-size: 0.925rem; color: var(--text-dim); line-height: 1.75; margin-bottom: 1.5rem; }
.perks-list { display: flex; flex-direction: column; gap: 0.9rem; }
.perk-item { display: flex; gap: 0.75rem; align-items: flex-start; }
.perk-icon { font-size: 1.1rem; min-width: 1.4rem; text-align: center; margin-top: 0.1rem; }
.perk-item h4 { font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 0.15rem; }
.perk-item p { font-size: 0.8rem; color: var(--text-dim); line-height: 1.5; }
.submit-form-wrap h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--text); margin-bottom: 1.5rem; }
.submit-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.75rem; font-weight: 600; color: var(--text-dim); letter-spacing: 0.04em; }
.form-group input, .form-group select, .form-group textarea {
  background: var(--surface-2); border: 1px solid var(--border-light);
  border-radius: 8px; padding: 0.75rem 1rem; color: var(--text);
  font-family: 'Inter', sans-serif; font-size: 0.875rem; outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group select option { background: var(--surface-2); }
.star-rating-input { display: flex; gap: 0.4rem; }
.star-rating-input button {
  background: none; border: none; font-size: 1.5rem; cursor: pointer;
  color: var(--border-light); transition: color 0.15s; padding: 0;
}
.star-rating-input button.on, .star-rating-input button:hover { color: var(--gold); }

/* ── About Page ── */
.about-section { padding: 5rem 2rem 7rem; }
.about-inner { max-width: 900px; margin: 0 auto; }
.about-lead { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.2rem, 2.5vw, 1.7rem); color: var(--text); line-height: 1.6; margin-bottom: 2.5rem; border-left: 3px solid var(--gold); padding-left: 1.5rem; }
.about-body p { font-size: 0.975rem; color: var(--text-dim); line-height: 1.85; margin-bottom: 1.25rem; }
.about-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--text); margin: 2.5rem 0 0.75rem; }

/* ── CTA Section ── */
.cta-section { padding: 7rem 2rem; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 600px; background: radial-gradient(ellipse, var(--gold-glow) 0%, transparent 70%); pointer-events: none; }
.cta-inner { max-width: 640px; margin: 0 auto; position: relative; }
.cta-inner h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; color: var(--text); line-height: 1.1; margin-bottom: 1.25rem; }
.cta-inner p { font-size: 1.05rem; color: var(--text-dim); margin-bottom: 2.5rem; line-height: 1.7; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-note { margin-top: 1.25rem; font-size: 0.78rem; color: var(--text-muted); }

/* ── Legal ── */
.page-hero { padding: 8rem 2rem 4rem; text-align: center; background: var(--surface); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -10%; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(ellipse, rgba(245,158,11,0.08) 0%, transparent 65%); pointer-events: none; }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; color: var(--text); margin-bottom: 1rem; position: relative; }
.page-hero p { font-size: 1.1rem; color: var(--text-dim); max-width: 540px; margin: 0 auto; line-height: 1.7; position: relative; }
.section-label-page { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; display: block; position: relative; }
.legal-section { padding: 5rem 2rem 7rem; }
.legal-inner { max-width: 760px; margin: 0 auto; }
.legal-inner h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: var(--text); margin: 2.5rem 0 0.75rem; }
.legal-inner h2:first-child { margin-top: 0; }
.legal-inner p, .legal-inner li { font-size: 0.925rem; color: var(--text-dim); line-height: 1.8; margin-bottom: 0.75rem; }
.legal-inner ul, .legal-inner ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-inner a { color: var(--gold-light); text-decoration: none; }
.legal-inner a:hover { text-decoration: underline; }
.legal-date { display: inline-block; font-size: 0.78rem; color: var(--text-muted); background: var(--surface-2); border: 1px solid var(--border); border-radius: 6px; padding: 0.3rem 0.75rem; margin-bottom: 2rem; }

/* ── Footer ── */
footer { background: var(--surface); border-top: 1px solid var(--border); padding: 4rem 2rem 2rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.875rem; color: var(--text-dim); line-height: 1.7; margin-top: 0.85rem; max-width: 280px; }
.footer-contact { margin-top: 1.1rem; display: flex; flex-direction: column; gap: 0.35rem; }
.footer-contact a { font-size: 0.78rem; color: var(--gold-light); text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul a { font-size: 0.84rem; color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-legal { font-size: 0.73rem; color: var(--text-muted); line-height: 1.7; }
.footer-ecosystem { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.footer-ecosystem a { font-size: 0.68rem; color: var(--text-muted); text-decoration: none; border: 1px solid var(--border); border-radius: 100px; padding: 0.2rem 0.6rem; transition: all 0.2s; font-family: monospace; }
.footer-ecosystem a:hover { color: var(--gold-light); border-color: var(--gold-dim); }
.affiliate-disclosure { font-size: 0.72rem; color: var(--text-muted); background: var(--surface-2); border: 1px solid var(--border); border-radius: 6px; padding: 0.6rem 1rem; margin-top: 1rem; line-height: 1.6; }

/* ── Reviewer Public Profile ── */
.profile-hero {
  padding-top: 60px; position: relative; overflow: hidden;
}
.profile-hero-cover {
  position: absolute; top: 0; left: 0; right: 0; height: 280px;
  background: linear-gradient(135deg, rgba(123,47,190,0.3) 0%, rgba(245,158,11,0.12) 50%, rgba(196,30,58,0.15) 100%);
  border-bottom: 1px solid var(--border);
}
.profile-hero-cover::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, var(--bg) 100%);
}
.profile-hero-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 5rem 2rem 0; position: relative;
}

.profile-top-row {
  display: flex; gap: 2rem; align-items: flex-start; flex-wrap: wrap;
  padding-bottom: 2rem;
}
.profile-avatar-wrap { position: relative; flex-shrink: 0; }
.profile-avatar {
  width: 96px; height: 96px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; font-weight: 800; color: #fff;
  border: 4px solid var(--bg); box-shadow: 0 0 0 2px var(--border-light);
}
.profile-verified {
  position: absolute; bottom: 2px; right: 2px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--gold); color: var(--bg);
  font-size: 0.7rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--bg);
}

.profile-identity { flex: 1; min-width: 240px; }
.profile-name-row {
  display: flex; align-items: center; gap: 0.75rem;
  flex-wrap: wrap; margin-bottom: 0.3rem;
}
.profile-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700;
  color: var(--text); line-height: 1;
}
.profile-handle {
  font-family: monospace; font-size: 0.85rem;
  color: var(--gold-light); margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}
.profile-bio {
  font-size: 0.95rem; color: var(--text-dim);
  line-height: 1.7; max-width: 540px; margin-bottom: 0.9rem;
}
.profile-meta-row {
  display: flex; gap: 1.25rem; flex-wrap: wrap;
}
.profile-meta-item {
  font-size: 0.78rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 0.3rem;
}

.profile-actions {
  display: flex; flex-direction: column; gap: 0.6rem;
  align-items: flex-end; flex-shrink: 0; padding-top: 0.5rem;
}

.profile-stats-strip {
  display: flex; align-items: center; gap: 0;
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  flex-wrap: wrap; gap: 0;
}
.profile-stat {
  flex: 1; min-width: 90px; text-align: center; padding: 0.25rem 1rem;
}
.profile-stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem; font-weight: 700; color: var(--gold); line-height: 1;
}
.profile-stat-lbl {
  font-size: 0.65rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.07em; margin-top: 0.3rem;
}
.profile-stat-divider {
  width: 1px; height: 36px; background: var(--border); flex-shrink: 0;
}

/* Specialties bar */
.profile-specialties-bar {
  background: var(--surface); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 2rem;
}
.profile-specialties-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.profile-spec-label {
  font-size: 0.7rem; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap;
}
.profile-spec-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.profile-spec-tag {
  font-size: 0.78rem; font-weight: 600; padding: 0.3rem 0.85rem;
  border-radius: 100px; border: 1px solid var(--border);
  color: var(--text-dim); text-decoration: none;
  background: var(--surface-2); transition: all 0.2s;
}
.profile-spec-tag:hover { color: var(--text); border-color: var(--border-light); }
.profile-spec-tag.active { color: var(--gold); border-color: var(--gold-dim); background: rgba(245,158,11,0.08); }

/* Profile feed header */
.profile-feed-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; flex-wrap: wrap; gap: 1.25rem;
}
.profile-feed-filters {
  display: flex; gap: 0.4rem; flex-wrap: wrap;
}

/* ── Mobile ── */
@media (max-width: 1100px) { .category-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 900px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-review { grid-template-columns: 1fr; }
  .featured-review-left { border-right: none; border-bottom: 1px solid var(--border); }
  .affiliate-grid { grid-template-columns: 1fr; }
  .subdomain-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .submit-grid { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 2rem 5rem; }
}
@media (max-width: 900px) {
  .profile-top-row { flex-direction: column; }
  .profile-actions { flex-direction: row; align-items: flex-start; }
  .profile-stat-divider { display: none; }
  .profile-stats-strip { gap: 0.75rem; }
  .profile-stat { min-width: 80px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 60px; left: 0; right: 0; background: var(--surface); border-bottom: 1px solid var(--border); padding: 1.5rem 2rem; gap: 1.25rem; }
  .nav-hamburger { display: flex; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .subdomain-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .hero-subdomains { flex-direction: column; gap: 0.5rem; }
}
