/* ============================================================
   PEEPD — Global Design System
   Dark-theme social credit / review platform
   ============================================================ */

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

/* ── Variables ─────────────────────────────────────────────── */
:root {
  /* Backgrounds — warm near-black */
  --bg-base:        #0A0804;
  --bg-surface:     #110E08;
  --bg-card:        #1A1510;
  --bg-card-hover:  #221C14;
  --bg-elevated:    #1A1510;
  --bg-overlay:     rgba(10,8,4,0.88);

  /* Brand — orange + deep orange */
  --purple:         #E05527;
  --purple-mid:     #F06A35;
  --purple-light:   #FFBF9B;
  --purple-glow:    rgba(224,85,39,0.35);
  --cyan:           #F09000;
  --cyan-light:     #FFD580;
  --cyan-glow:      rgba(240,144,0,0.25);

  /* Status */
  --green:          #10B981;
  --green-glow:     rgba(16,185,129,0.3);
  --amber:          #F59E0B;
  --amber-glow:     rgba(245,158,11,0.3);
  --red:            #EF4444;
  --red-glow:       rgba(239,68,68,0.3);

  /* Text */
  --text-primary:   #F5EFE8;
  --text-secondary: #B0957A;
  --text-muted:     #6B5440;

  /* Borders */
  --border:         rgba(255,255,255,0.07);
  --border-subtle:  rgba(255,255,255,0.07);
  --border-strong:  rgba(255,255,255,0.13);
  --border-accent:  rgba(224,85,39,0.45);

  /* Misc */
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-full: 9999px;
  --shadow:     0 4px 32px rgba(0,0,0,0.55);
  --shadow-glow:0 0 32px var(--purple-glow);
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Sora', 'Inter', sans-serif;
  line-height: 1.2;
  font-weight: 700;
}

.gradient-text {
  background: linear-gradient(135deg, #FFD580 0%, #E05527 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-light);
}

/* ── Layout ─────────────────────────────────────────────────── */
.container        { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow{ max-width: 860px;  margin: 0 auto; padding: 0 24px; }
section           { padding: 100px 0; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, #E05527, #B83A12);
  color: #fff;
  box-shadow: 0 4px 20px var(--purple-glow);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px var(--purple-glow); }
.btn--secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
}
.btn--secondary:hover { border-color: var(--border-accent); background: var(--bg-card-hover); }
.btn--ghost { color: var(--text-secondary); padding: 10px 18px; }
.btn--ghost:hover { color: var(--text-primary); }
.btn--danger {
  background: linear-gradient(135deg, var(--red), #B91C1C);
  color: #fff;
  box-shadow: 0 4px 20px var(--red-glow);
}
.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--sm { padding: 8px 16px;  font-size: 0.8rem; }

/* ── Badges ─────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.badge--verified     { background: rgba(224,85,39,0.18); color: var(--purple-light); border: 1px solid rgba(224,85,39,0.35); }
.badge--tier-phantom { background: rgba(100,116,139,0.18); color: #94A3B8; border: 1px solid rgba(100,116,139,0.35); }
.badge--tier-emerging{ background: rgba(245,158,11,0.18);  color: #FCD34D; border: 1px solid rgba(245,158,11,0.35); }
.badge--tier-established{background:rgba(59,130,246,0.18); color: #93C5FD; border: 1px solid rgba(59,130,246,0.35); }
.badge--tier-trusted { background: rgba(59,130,246,0.22);  color: #93C5FD; border: 1px solid rgba(59,130,246,0.45); }
.badge--tier-elite   { background: rgba(224,85,39,0.22);   color: #FFBF9B; border: 1px solid rgba(224,85,39,0.45); }
.badge--tier-legendary{ background: rgba(16,185,129,0.18); color: #6EE7B7; border: 1px solid rgba(16,185,129,0.35); }
.badge--accurate     { background: rgba(16,185,129,0.15);  color: #6EE7B7; border: 1px solid rgba(16,185,129,0.3); }
.badge--disputed     { background: rgba(245,158,11,0.15);  color: #FCD34D; border: 1px solid rgba(245,158,11,0.3); }
.badge--inaccurate   { background: rgba(239,68,68,0.15);   color: #FCA5A5; border: 1px solid rgba(239,68,68,0.3); }

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.card:hover { border-color: var(--border-strong); background: var(--bg-card-hover); }
.card--glow:hover { box-shadow: 0 0 40px var(--purple-glow); border-color: var(--border-accent); }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(7,7,15,0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav.scrolled { background: rgba(7,7,15,0.92); border-color: var(--border-strong); }
.nav__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo-icon {
  width: 36px; height: 36px;
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  flex-shrink: 0;
}
.nav__logo-text {
  font-family: 'Sora', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-light), var(--cyan-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav__search { flex: 1; max-width: 400px; position: relative; }
.nav__search input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 9px 16px 9px 40px;
  color: var(--text-primary);
  font-size: 0.875rem;
  transition: var(--transition);
  outline: none;
}
.nav__search input::placeholder { color: var(--text-muted); }
.nav__search input:focus { border-color: var(--border-accent); background: var(--bg-card-hover); box-shadow: 0 0 0 3px rgba(224,85,39,0.15); }
.nav__search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 0.85rem; pointer-events: none; }

/* ── Search Dropdown ──────────────────────────────────────── */
.search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border-accent);
  border-radius: 14px;
  overflow: hidden;
  z-index: 9999;
  box-shadow: 0 16px 48px rgba(0,0,0,0.55);
  animation: srDropFade 0.15s ease;
}
.search-dropdown.hidden { display: none; }
.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  text-decoration: none;
  color: var(--text-primary);
  transition: background 0.13s;
  border-bottom: 1px solid var(--border-subtle);
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover,
.search-result-item.active { background: var(--bg-card-hover); }
.search-result-item .avatar { width: 34px; height: 34px; font-size: 0.72rem; flex-shrink: 0; border-radius: 50%; }
.search-result-info { flex: 1; min-width: 0; }
.search-result-name { font-size: 0.88rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-result-meta { font-size: 0.76rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 1px; }
.search-result-score { font-size: 0.8rem; font-weight: 700; color: var(--purple); flex-shrink: 0; }
.search-no-results { padding: 16px; text-align: center; color: var(--text-muted); font-size: 0.875rem; }
.search-loading { padding: 14px 16px; text-align: center; color: var(--text-muted); font-size: 0.85rem; }
@keyframes srDropFade { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.nav__links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__link {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav__link:hover { color: var(--text-primary); background: var(--bg-card); }
.nav__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* ── Hero Section ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(224,85,39,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224,85,39,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 100%);
}
.hero__glow-1 {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,85,39,0.18) 0%, transparent 70%);
  top: -100px; left: -100px;
  pointer-events: none;
}
.hero__glow-2 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,144,0,0.12) 0%, transparent 70%);
  bottom: -100px; right: -100px;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(224,85,39,0.12);
  border: 1px solid rgba(224,85,39,0.3);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--purple-light);
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}
.hero__eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--purple-mid);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.7); }
}
.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.75;
}
.hero__search { position: relative; max-width: 580px; margin: 0 auto 24px; }
.hero__search input {
  width: 100%;
  background: var(--bg-card);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-full);
  padding: 18px 130px 18px 56px;
  font-size: 1rem;
  color: var(--text-primary);
  outline: none;
  transition: var(--transition);
}
.hero__search input::placeholder { color: var(--text-muted); }
.hero__search input:focus { border-color: var(--border-accent); box-shadow: 0 0 0 4px rgba(224,85,39,0.15), 0 8px 40px rgba(0,0,0,0.4); }
.hero__search-icon { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 1rem; pointer-events: none; }
.hero__search-btn {
  position: absolute;
  right: 8px; top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--purple), #B83A12);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  padding: 10px 22px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.hero__search-btn:hover { box-shadow: 0 4px 20px var(--purple-glow); }
.hero__search-hint { color: var(--text-muted); font-size: 0.8rem; margin-top: 10px; }
.hero__stats { display: flex; justify-content: center; gap: 48px; margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--border); }
.hero__stat { text-align: center; }
.hero__stat-value {
  font-family: 'Sora', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-light), var(--cyan-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }

/* ── Ticker ──────────────────────────────────────────────────── */
.ticker {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  overflow: hidden;
}
.ticker__label {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  display: flex;
  align-items: center;
  padding: 0 20px;
  background: linear-gradient(90deg, var(--bg-surface) 60%, transparent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--green);
  z-index: 2;
  white-space: nowrap;
  gap: 8px;
}
.ticker__dot { width:6px; height:6px; border-radius:50%; background:var(--green); animation:pulse-dot 1.5s ease-in-out infinite; }
.ticker__track-wrapper { overflow: hidden; position: relative; }
.ticker__track {
  display: flex;
  gap: 48px;
  animation: ticker-scroll 28s linear infinite;
  white-space: nowrap;
  padding-left: 120px;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker__item { display:inline-flex; align-items:center; gap:8px; font-size:0.82rem; color:var(--text-secondary); flex-shrink:0; }
.ticker__item-name  { color:var(--text-primary); font-weight:600; }
.ticker__item-score { color:var(--purple-light); font-weight:700; }
.ticker__item-sep   { color:var(--text-muted); }

/* ── How It Works ───────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: clamp(1.8rem,4vw,2.8rem); margin-top: 12px; margin-bottom: 16px; }
.section-header p  { font-size:1rem; color:var(--text-secondary); max-width:520px; margin:0 auto; }

.steps { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:2px; }
.step { padding:36px 32px; background:var(--bg-surface); position:relative; transition:var(--transition); }
.step:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.step:last-child  { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.step:hover { background: var(--bg-card); }
.step__number {
  font-family:'Sora',sans-serif; font-size:3.5rem; font-weight:800; line-height:1;
  background:linear-gradient(135deg,rgba(224,85,39,0.3),rgba(240,144,0,0.2));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  margin-bottom:20px;
}
.step__icon {
  width:48px; height:48px;
  background:rgba(224,85,39,0.12);
  border:1px solid rgba(224,85,39,0.25);
  border-radius:var(--radius-md);
  display:flex; align-items:center; justify-content:center;
  font-size:1.2rem; margin-bottom:20px; color:var(--purple-light);
}
.step__title { font-size:1.05rem; font-weight:700; margin-bottom:10px; }
.step__desc  { font-size:0.875rem; color:var(--text-secondary); line-height:1.7; }

/* ── Profile Cards ──────────────────────────────────────────── */
.featured { background: var(--bg-surface); }
.profiles-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(270px,1fr)); gap:20px; }
.profile-card { padding:28px; border-radius:var(--radius-lg); position:relative; overflow:hidden; cursor:pointer; }
.profile-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg,var(--purple),var(--cyan));
  opacity:0; transition:var(--transition);
}
.profile-card:hover::before { opacity:1; }
.profile-card__top { display:flex; align-items:flex-start; gap:14px; margin-bottom:20px; }
.avatar {
  width:52px; height:52px;
  border-radius:var(--radius-md);
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:1rem;
  flex-shrink:0; position:relative;
}
.avatar--lg  { width:80px;  height:80px;  border-radius:var(--radius-lg); font-size:1.5rem; }
.avatar--xl  { width:100px; height:100px; border-radius:20px; font-size:2rem; }
.avatar-1 { background:linear-gradient(135deg,#E05527,#F09000); color:#fff; }
.avatar-2 { background:linear-gradient(135deg,#059669,#0891B2); color:#fff; }
.avatar-3 { background:linear-gradient(135deg,#DC2626,#D97706); color:#fff; }
.avatar-4 { background:linear-gradient(135deg,#E05527,#EC4899); color:#fff; }
.avatar-5 { background:linear-gradient(135deg,#0891B2,#10B981); color:#fff; }
.avatar-6 { background:linear-gradient(135deg,#D97706,#DC2626); color:#fff; }
/* Photo avatar — shows an <img> instead of initials */
.avatar--photo { padding: 0; overflow: hidden; background: var(--bg-card); }
.avatar--photo img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; display: block; }
.profile-card__info { flex:1; min-width:0; }
.profile-card__name  { font-weight:700; font-size:0.975rem; margin-bottom:4px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.profile-card__meta  { font-size:0.78rem; color:var(--text-muted); margin-bottom:6px; }
.mini-score { display:flex; align-items:center; gap:6px; }
.mini-score__value {
  font-family:'Sora',sans-serif; font-size:1.05rem; font-weight:800;
  background:linear-gradient(135deg,var(--purple-light),var(--cyan-light));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.mini-score__bar  { flex:1; height:4px; background:var(--border); border-radius:var(--radius-full); overflow:hidden; }
.mini-score__fill {
  height:100%; border-radius:var(--radius-full);
  background:linear-gradient(90deg,var(--purple),var(--cyan));
  transition:width 1.2s cubic-bezier(0.4,0,0.2,1);
}
.profile-card__attrs { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:16px; }
.attr-pill {
  padding:3px 10px; border-radius:var(--radius-full); font-size:0.71rem; font-weight:600;
  background:rgba(224,85,39,0.12); color:var(--purple-light); border:1px solid rgba(224,85,39,0.2);
}
.profile-card__footer { display:flex; align-items:center; justify-content:space-between; padding-top:16px; border-top:1px solid var(--border); }
.profile-card__review-count { font-size:0.78rem; color:var(--text-muted); }
.profile-card__review-count span { color:var(--text-secondary); font-weight:600; }

/* ── Accuracy Section ───────────────────────────────────────── */
.accuracy-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.accuracy-clock-card {
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:var(--radius-xl); padding:32px;
  position:relative; overflow:hidden;
}
.accuracy-clock-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg,var(--green),var(--cyan));
}
.clock-display { display:flex; align-items:center; gap:20px; margin-bottom:24px; }
.clock-ring { position:relative; width:80px; height:80px; flex-shrink:0; }
.clock-ring svg { transform:rotate(-90deg); }
.clock-ring__track { fill:none; stroke:var(--border); stroke-width:6; }
.clock-ring__fill  { fill:none; stroke:var(--green); stroke-width:6; stroke-linecap:round; transition:stroke-dashoffset 1.5s cubic-bezier(0.4,0,0.2,1); }
.clock-ring__label {
  position:absolute; inset:0;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  font-size:0.65rem; text-align:center; line-height:1.2;
}
.clock-ring__pct { font-family:'Sora',sans-serif; font-size:1rem; font-weight:800; color:var(--green); }
.clock-info__title { font-weight:700; font-size:1rem; margin-bottom:4px; }
.clock-info__sub   { font-size:0.8rem; color:var(--text-muted); }
.vote-btn {
  flex:1; padding:10px; border-radius:var(--radius-md); font-size:0.82rem; font-weight:600;
  display:flex; align-items:center; justify-content:center; gap:6px;
  transition:var(--transition); border:1px solid var(--border); color:var(--text-secondary);
  background:var(--bg-surface); cursor:pointer;
}
.vote-btn:hover         { border-color:var(--border-strong); color:var(--text-primary); }
.vote-btn.vote-yes:hover{ border-color:var(--green); color:var(--green); background:rgba(16,185,129,0.08); }
.vote-btn.vote-no:hover { border-color:var(--red);   color:var(--red);   background:rgba(239,68,68,0.08); }
.vote-btn.voted         { cursor:default; }
.vote-btn.voted-yes     { border-color:var(--green); color:var(--green); background:rgba(16,185,129,0.12); }
.vote-btn.voted-no      { border-color:var(--red);   color:var(--red);   background:rgba(239,68,68,0.12); }
.accuracy-votes { display:flex; gap:10px; }

.accuracy-text h2 { font-size:clamp(1.6rem,3.5vw,2.4rem); margin:12px 0 18px; }
.accuracy-text p  { font-size:0.95rem; color:var(--text-secondary); line-height:1.75; margin-bottom:16px; }
.accuracy-feature-list { display:flex; flex-direction:column; gap:14px; margin-top:28px; }
.accuracy-feature { display:flex; align-items:flex-start; gap:14px; }
.accuracy-feature__icon { width:36px; height:36px; border-radius:var(--radius-sm); display:flex; align-items:center; justify-content:center; font-size:0.9rem; flex-shrink:0; }
.accuracy-feature__icon--green { background:rgba(16,185,129,0.15); color:var(--green); }
.accuracy-feature__icon--amber { background:rgba(245,158,11,0.15);  color:var(--amber); }
.accuracy-feature__icon--red   { background:rgba(239,68,68,0.15);   color:var(--red); }
.accuracy-feature__text h4 { font-size:0.9rem; font-weight:600; margin-bottom:2px; }
.accuracy-feature__text p  { font-size:0.8rem; color:var(--text-muted); }

/* ── CTA ─────────────────────────────────────────────────────── */
.cta-section { text-align:center; }
.cta-section__inner {
  background:linear-gradient(135deg,rgba(224,85,39,0.15),rgba(240,144,0,0.08));
  border:1px solid rgba(224,85,39,0.2); border-radius:var(--radius-xl);
  padding:80px 40px; position:relative; overflow:hidden;
}
.cta-section__inner::before {
  content:''; position:absolute; top:-1px; left:40px; right:40px; height:1px;
  background:linear-gradient(90deg,transparent,var(--purple),transparent);
}
.cta-section h2 { font-size:clamp(1.8rem,4vw,2.8rem); margin-bottom:16px; }
.cta-section p  { font-size:1rem; color:var(--text-secondary); margin-bottom:36px; }
.cta-actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer { background:var(--bg-surface); border-top:1px solid var(--border); padding:64px 0 32px; }
.footer__grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; margin-bottom:56px; }
.footer__brand p { font-size:0.875rem; color:var(--text-muted); margin-top:14px; line-height:1.7; max-width:280px; }
.footer__col h4 { font-size:0.8rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--text-muted); margin-bottom:16px; }
.footer__col ul { display:flex; flex-direction:column; gap:10px; }
.footer__col ul a { font-size:0.875rem; color:var(--text-secondary); transition:var(--transition); }
.footer__col ul a:hover { color:var(--text-primary); }
.footer__bottom { padding-top:32px; border-top:1px solid var(--border); display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px; }
.footer__bottom p { font-size:0.8rem; color:var(--text-muted); }
.footer__bottom-links { display:flex; gap:24px; }
.footer__bottom-links a { font-size:0.8rem; color:var(--text-muted); transition:var(--transition); }
.footer__bottom-links a:hover { color:var(--text-secondary); }

/* ── Profile Page ───────────────────────────────────────────── */
.profile-page { padding-top: 68px; }
.profile-hero { background:var(--bg-surface); border-bottom:1px solid var(--border); padding:56px 0 0; }
.profile-hero__inner {
  display:grid; grid-template-columns:1fr auto; gap:48px; align-items:flex-start;
  max-width:1200px; margin:0 auto; padding:0 24px;
}
.profile-hero__left { display:flex; gap:28px; align-items:flex-start; }
.profile-hero__info { flex:1; }
.profile-hero__badges { display:flex; align-items:center; gap:8px; margin-bottom:12px; flex-wrap:wrap; }
.profile-hero__name { font-size:clamp(1.6rem,3vw,2.2rem); font-weight:800; margin-bottom:8px; letter-spacing:-0.01em; }
.profile-hero__meta { display:flex; align-items:center; gap:16px; margin-bottom:18px; flex-wrap:wrap; }
.profile-hero__meta-item { display:flex; align-items:center; gap:6px; font-size:0.875rem; color:var(--text-secondary); }
.profile-hero__meta-item i { color:var(--text-muted); font-size:0.8rem; }
.profile-hero__summary { font-size:0.9rem; color:var(--text-secondary); line-height:1.7; max-width:540px; margin-bottom:24px; }
.profile-hero__actions { display:flex; gap:10px; flex-wrap:wrap; }

/* ── Score Gauge ────────────────────────────────────────────── */
.score-gauge-wrap { text-align:center; flex-shrink:0; }
.score-gauge { position:relative; width:200px; height:200px; margin:0 auto 16px; }
.score-gauge svg { transform:rotate(-90deg); filter:drop-shadow(0 0 20px var(--purple-glow)); }
.score-gauge__track { fill:none; stroke:rgba(255,255,255,0.06); stroke-width:10; }
.score-gauge__fill {
  fill:none; stroke:url(#scoreGradient); stroke-width:10; stroke-linecap:round;
  transition:stroke-dashoffset 2s cubic-bezier(0.4,0,0.2,1);
}
.score-gauge__center { position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; }
.score-gauge__value {
  font-family:'Sora',sans-serif; font-size:2.8rem; font-weight:800; line-height:1;
  background:linear-gradient(135deg,var(--purple-light),var(--cyan-light));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.score-gauge__label { font-size:0.68rem; font-weight:700; letter-spacing:0.15em; text-transform:uppercase; color:var(--text-muted); margin-top:4px; }
.score-gauge__tier  { font-family:'Sora',sans-serif; font-size:1rem; font-weight:700; color:var(--green); margin-top:4px; }
.score-trend {
  display:inline-flex; align-items:center; gap:5px; font-size:0.78rem; font-weight:600;
  padding:4px 10px; border-radius:var(--radius-full);
  background:rgba(16,185,129,0.12); color:var(--green);
  border:1px solid rgba(16,185,129,0.25); margin-top:6px;
}

/* ── Profile Tabs ───────────────────────────────────────────── */
.profile-tabs { display:flex; gap:0; margin-top:40px; border-top:1px solid var(--border); }
.profile-tab {
  padding:14px 24px; font-size:0.875rem; font-weight:600; color:var(--text-muted);
  border-bottom:2px solid transparent; transition:var(--transition); cursor:pointer;
  background:none; border-top:none; border-left:none; border-right:none; border-radius:0;
}
.profile-tab:hover { color:var(--text-secondary); }
.profile-tab.active { color:var(--purple-light); border-bottom-color:var(--purple); }

/* ── Profile Layout ─────────────────────────────────────────── */
.profile-body { max-width:1200px; margin:0 auto; padding:0 24px; }
.profile-layout { display:grid; grid-template-columns:300px 1fr; gap:28px; padding:40px 0 80px; }

/* ── Sidebar ─────────────────────────────────────────────────── */
.sidebar { display:flex; flex-direction:column; gap:20px; }
.sidebar-card { background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-lg); padding:24px; }
.sidebar-card h3 { font-size:0.8rem; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:var(--text-muted); margin-bottom:20px; }
.category-bar { margin-bottom:16px; }
.category-bar:last-child { margin-bottom:0; }
.category-bar__header { display:flex; align-items:center; justify-content:space-between; margin-bottom:8px; }
.category-bar__name { display:flex; align-items:center; gap:8px; font-size:0.85rem; font-weight:500; color:var(--text-secondary); }
.category-bar__name i { color:var(--text-muted); width:14px; font-size:0.8rem; }
.category-bar__score { font-size:0.82rem; font-weight:700; color:var(--text-primary); }
.category-bar__track { height:6px; background:var(--border); border-radius:var(--radius-full); overflow:hidden; }
.category-bar__fill { height:100%; border-radius:var(--radius-full); background:linear-gradient(90deg,var(--purple),var(--cyan)); width:0; transition:width 1.4s cubic-bezier(0.4,0,0.2,1); }
.category-bar__fill--red    { background:linear-gradient(90deg,var(--red),#F97316); }
.category-bar__fill--amber  { background:linear-gradient(90deg,var(--amber),#FBBF24); }
.category-bar__fill--green  { background:linear-gradient(90deg,var(--green),#34D399); }
.category-bar__fill--blue   { background:linear-gradient(90deg,#3B82F6,#60A5FA); }
.category-bar__fill--purple { background:linear-gradient(90deg,var(--purple),var(--purple-mid)); }
.category-bar__fill--cyan   { background:linear-gradient(90deg,var(--cyan),var(--cyan-light)); }
.sidebar-stats { display:flex; flex-direction:column; gap:14px; }
.sidebar-stat { display:flex; align-items:center; justify-content:space-between; }
.sidebar-stat__label { font-size:0.82rem; color:var(--text-muted); display:flex; align-items:center; gap:8px; }
.sidebar-stat__label i { width:14px; color:var(--text-muted); font-size:0.75rem; }
.sidebar-stat__value { font-size:0.875rem; font-weight:600; color:var(--text-primary); }

/* ── Reviews ─────────────────────────────────────────────────── */
.tab-panel          { display:none; }
.tab-panel.active   { display:block; }
.reviews-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:24px; }
.reviews-header h3  { font-size:1rem; font-weight:700; }
.reviews-filter { display:flex; gap:4px; }
.filter-btn {
  padding:6px 14px; border-radius:var(--radius-full); font-size:0.78rem; font-weight:600;
  color:var(--text-muted); background:var(--bg-card); border:1px solid var(--border);
  cursor:pointer; transition:var(--transition);
}
.filter-btn:hover  { color:var(--text-primary); border-color:var(--border-strong); }
.filter-btn.active { color:var(--purple-light); border-color:var(--border-accent); background:rgba(224,85,39,0.1); }
.reviews-list { display:flex; flex-direction:column; gap:16px; }
.review-card { background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-lg); padding:24px; transition:var(--transition); }
.review-card:hover  { border-color:var(--border-strong); background:var(--bg-card-hover); }
.review-card__header{ display:flex; align-items:flex-start; justify-content:space-between; margin-bottom:16px; gap:12px; }
.reviewer-info { display:flex; align-items:center; gap:12px; }
.reviewer-avatar { width:40px; height:40px; border-radius:var(--radius-sm); display:flex; align-items:center; justify-content:center; font-size:0.85rem; font-weight:700; flex-shrink:0; }
.reviewer-name   { font-weight:600; font-size:0.9rem; margin-bottom:2px; }
.reviewer-rel    { font-size:0.75rem; color:var(--text-muted); }
.review-card__right { display:flex; flex-direction:column; align-items:flex-end; gap:6px; flex-shrink:0; }
.star-display { display:flex; gap:2px; }
.star-display i { font-size:0.8rem; color:var(--amber); }
.star-display i.empty { color:var(--border-strong); }
.review-date { font-size:0.72rem; color:var(--text-muted); }
.review-card__body  { font-size:0.875rem; color:var(--text-secondary); line-height:1.75; margin-bottom:20px; }
.review-card__cats  { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:18px; }
.review-cat { display:flex; align-items:center; gap:5px; padding:4px 10px; border-radius:var(--radius-full); font-size:0.72rem; font-weight:600; background:var(--bg-surface); border:1px solid var(--border); color:var(--text-secondary); }
.review-cat__dot { width:6px; height:6px; border-radius:50%; }
.review-card__footer{ display:flex; align-items:center; justify-content:space-between; padding-top:16px; border-top:1px solid var(--border); gap:12px; flex-wrap:wrap; }
.accuracy-meter { display:flex; align-items:center; gap:10px; flex:1; }
.accuracy-meter__label { font-size:0.75rem; color:var(--text-muted); white-space:nowrap; display:flex; align-items:center; gap:5px; }
.accuracy-meter__label i { color:var(--text-muted); }
.accuracy-meter__bar { flex:1; height:4px; background:var(--border); border-radius:var(--radius-full); overflow:hidden; max-width:80px; }
.accuracy-meter__fill { height:100%; border-radius:var(--radius-full); transition:width 1.5s cubic-bezier(0.4,0,0.2,1); }
.accuracy-meter__fill--high { background:linear-gradient(90deg,var(--green),#34D399); }
.accuracy-meter__fill--mid  { background:linear-gradient(90deg,var(--amber),#FBBF24); }
.accuracy-meter__fill--low  { background:linear-gradient(90deg,var(--red),#F87171); }
.accuracy-meter__pct { font-size:0.78rem; font-weight:700; }

/* ── Self-Review Alert ──────────────────────────────────────── */
.self-review-alert {
  background:rgba(239,68,68,0.08); border:1px solid rgba(239,68,68,0.3);
  border-radius:var(--radius-md); padding:14px 18px;
  display:flex; align-items:center; gap:12px; font-size:0.875rem; color:#FCA5A5; margin-bottom:20px;
}
.self-review-alert i { color:var(--red); font-size:1rem; flex-shrink:0; }

/* ── Write Review Page ──────────────────────────────────────── */
.review-page { padding-top:68px; }
.review-page-layout { max-width:1100px; margin:0 auto; padding:56px 24px 80px; display:grid; grid-template-columns:1fr 340px; gap:32px; align-items:flex-start; }
.review-form-card { background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-xl); overflow:hidden; }
.review-form-card__header { padding:28px 32px; border-bottom:1px solid var(--border); background:var(--bg-surface); }
.review-form-card__header h1 { font-size:1.5rem; margin-bottom:4px; }
.review-form-card__header p  { font-size:0.875rem; color:var(--text-muted); }
.review-form-card__body { padding:32px; }
.target-selector { display:flex; align-items:center; gap:14px; padding:18px; background:var(--bg-surface); border:1px solid var(--border); border-radius:var(--radius-md); margin-bottom:28px; cursor:pointer; transition:var(--transition); }
.target-selector:hover { border-color:var(--border-strong); }
.target-selector.target-selected { border-color:var(--border-accent); background:rgba(224,85,39,0.06); }
.target-selector__placeholder { color:var(--text-muted); font-size:0.9rem; }
.target-selector__info { flex:1; }
.target-selector__name { font-weight:700; font-size:0.95rem; margin-bottom:2px; }
.target-selector__meta { font-size:0.78rem; color:var(--text-muted); }
.target-selector__icon { color:var(--text-muted); font-size:0.9rem; }
.form-section { margin-bottom:32px; }
.form-section__title { font-size:0.85rem; font-weight:700; color:var(--text-secondary); margin-bottom:16px; display:flex; align-items:center; gap:8px; }
.form-section__title::after { content:''; flex:1; height:1px; background:var(--border); }
.relationship-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; }
.rel-btn { padding:10px 12px; border-radius:var(--radius-md); font-size:0.8rem; font-weight:600; text-align:center; background:var(--bg-surface); border:1.5px solid var(--border); color:var(--text-muted); cursor:pointer; transition:var(--transition); display:flex; flex-direction:column; align-items:center; gap:4px; }
.rel-btn i { font-size:1rem; color:var(--text-muted); transition:var(--transition); }
.rel-btn:hover { border-color:var(--border-strong); color:var(--text-secondary); }
.rel-btn.selected { border-color:var(--border-accent); color:var(--purple-light); background:rgba(224,85,39,0.1); }
.rel-btn.selected i { color:var(--purple-light); }
.category-ratings { display:flex; flex-direction:column; gap:16px; }
.cat-rating { display:flex; align-items:center; gap:16px; }
.cat-rating__label { display:flex; align-items:center; gap:8px; min-width:150px; font-size:0.875rem; font-weight:500; color:var(--text-secondary); }
.cat-rating__label i { color:var(--text-muted); width:16px; font-size:0.85rem; }
.star-rating { display:flex; gap:4px; cursor:pointer; }
.star-rating .star { font-size:1.3rem; color:var(--border-strong); transition:color 0.15s, transform 0.15s; cursor:pointer; line-height:1; }
.star-rating .star:hover,
.star-rating .star.active { color:var(--amber); }
.star-rating .star:hover   { transform:scale(1.15); }
.cat-rating__value { font-size:0.78rem; color:var(--text-muted); min-width:80px; }
.review-textarea-wrap { position:relative; }
.review-textarea { width:100%; background:var(--bg-surface); border:1.5px solid var(--border); border-radius:var(--radius-md); padding:14px 16px; color:var(--text-primary); font-size:0.9rem; line-height:1.7; resize:vertical; min-height:140px; outline:none; transition:var(--transition); }
.review-textarea:focus { border-color:var(--border-accent); box-shadow:0 0 0 3px rgba(224,85,39,0.12); }
.review-textarea::placeholder { color:var(--text-muted); }
.char-counter { position:absolute; bottom:10px; right:12px; font-size:0.72rem; color:var(--text-muted); }
.char-counter.warn { color:var(--amber); }
.char-counter.ok   { color:var(--green); }
.pledge-box { background:rgba(224,85,39,0.06); border:1.5px solid rgba(224,85,39,0.2); border-radius:var(--radius-md); padding:20px; }
.pledge-label { display:flex; align-items:flex-start; gap:12px; cursor:pointer; }
.pledge-checkbox { width:20px; height:20px; border-radius:6px; border:2px solid var(--border-strong); background:var(--bg-surface); flex-shrink:0; margin-top:1px; cursor:pointer; appearance:none; -webkit-appearance:none; transition:var(--transition); position:relative; }
.pledge-checkbox:checked { background:var(--purple); border-color:var(--purple); }
.pledge-checkbox:checked::after { content:'✓'; position:absolute; inset:0; display:flex; align-items:center; justify-content:center; color:#fff; font-size:0.75rem; font-weight:700; }
.pledge-text { font-size:0.85rem; color:var(--text-secondary); line-height:1.65; }
.pledge-text strong { color:var(--text-primary); }

/* ── Custom Checkbox Visual (pledge + li-import) ───────────────────────────── */
.pledge-custom-check {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid var(--border-strong);
  background: var(--bg-surface);
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: transparent;
  transition: var(--transition);
  pointer-events: none;
}
.pledge-checkbox:checked + .pledge-custom-check {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}

/* ── Modals ──────────────────────────────────────────────────── */
.modal-overlay { position:fixed; inset:0; background:rgba(0,0,0,0.8); z-index:999; display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transition:var(--transition); backdrop-filter:blur(4px); }
.modal-overlay.open { opacity:1; pointer-events:all; }
.modal { background:var(--bg-card); border:1px solid rgba(239,68,68,0.3); border-radius:var(--radius-xl); padding:40px; max-width:480px; width:90%; text-align:center; transform:scale(0.95); transition:var(--transition); }
.modal-overlay.open .modal { transform:scale(1); }
.modal__icon { width:72px; height:72px; border-radius:50%; background:rgba(239,68,68,0.12); border:2px solid rgba(239,68,68,0.3); display:flex; align-items:center; justify-content:center; font-size:2rem; color:var(--red); margin:0 auto 24px; }
.modal h2 { font-size:1.5rem; margin-bottom:12px; }
.modal p  { font-size:0.9rem; color:var(--text-secondary); line-height:1.65; margin-bottom:28px; }

/* ── Review Sidebar ──────────────────────────────────────────── */
.review-sidebar { display:flex; flex-direction:column; gap:18px; position:sticky; top:88px; }
.info-card { background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-lg); padding:22px; }
.info-card h3 { font-size:0.85rem; font-weight:700; margin-bottom:14px; display:flex; align-items:center; gap:8px; }
.info-card h3 i { color:var(--purple-light); }
.info-card p { font-size:0.82rem; color:var(--text-muted); line-height:1.65; margin-bottom:10px; }
.info-card p:last-child { margin-bottom:0; }
.guideline-list { display:flex; flex-direction:column; gap:10px; }
.guideline-item { display:flex; align-items:flex-start; gap:10px; font-size:0.8rem; color:var(--text-muted); line-height:1.5; }
.guideline-item::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--purple-mid); margin-top:5px; flex-shrink:0; }
.lockout-card { background:rgba(239,68,68,0.06); border:1px solid rgba(239,68,68,0.2); border-radius:var(--radius-lg); padding:20px; }
.lockout-card h3 { display:flex; align-items:center; gap:8px; font-size:0.85rem; font-weight:700; color:#FCA5A5; margin-bottom:10px; }
.lockout-card h3 i { color:var(--red); }
.lockout-card p { font-size:0.8rem; color:#FCA5A5; opacity:0.7; line-height:1.6; }

/* ── Stats Tab ───────────────────────────────────────────────── */
.stats-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; margin-bottom:28px; }
.stat-card  { background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-lg); padding:22px; text-align:center; }
.stat-card__value {
  font-family:'Sora',sans-serif; font-size:2rem; font-weight:800;
  background:linear-gradient(135deg,var(--purple-light),var(--cyan-light));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  line-height:1; margin-bottom:6px;
}
.stat-card__label { font-size:0.78rem; color:var(--text-muted); font-weight:500; }
.score-history { background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-lg); padding:24px; }
.score-history h3 { font-size:0.85rem; font-weight:700; color:var(--text-muted); letter-spacing:0.1em; text-transform:uppercase; margin-bottom:20px; }
.history-chart { display:flex; align-items:flex-end; gap:6px; height:80px; }
.history-bar { flex:1; border-radius:4px 4px 0 0; background:linear-gradient(to top,var(--purple),var(--cyan)); opacity:0.7; transition:opacity var(--transition); cursor:pointer; }
.history-bar:hover { opacity:1; }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:20px; }
.about-field { background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-md); padding:16px 18px; }
.about-field__label { font-size:0.72rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--text-muted); margin-bottom:6px; }
.about-field__value { font-size:0.9rem; font-weight:500; }

/* ── Scroll Animations ──────────────────────────────────────── */
.fade-up { opacity:0; transform:translateY(28px); transition:opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.fade-up.visible { opacity:1; transform:translateY(0); }
.fade-up-delay-1 { transition-delay:0.1s; }
.fade-up-delay-2 { transition-delay:0.2s; }
.fade-up-delay-3 { transition-delay:0.3s; }
.fade-up-delay-4 { transition-delay:0.4s; }

/* ── Utilities ──────────────────────────────────────────────── */
.text-green  { color:var(--green)  !important; }
.text-amber  { color:var(--amber)  !important; }
.text-red    { color:var(--red)    !important; }
.text-purple { color:var(--purple-light) !important; }
.text-muted  { color:var(--text-muted)   !important; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width:1024px) {
  .footer__grid    { grid-template-columns:1fr 1fr; }
  .accuracy-grid   { grid-template-columns:1fr; gap:40px; }
  .accuracy-visual { order:-1; }
  .profile-layout  { grid-template-columns:1fr; }
  .profile-hero__inner { grid-template-columns:1fr; }
  .score-gauge-wrap { display:flex; align-items:center; gap:28px; text-align:left; }
  .review-page-layout { grid-template-columns:1fr; }
  .review-sidebar  { position:static; }
}
@media (max-width:768px) {
  section          { padding:64px 0; }
  .nav__search     { display:none; }
  .nav__links      { display:none; }
  .hero__stats     { gap:28px; flex-wrap:wrap; }
  .steps           { grid-template-columns:1fr; gap:2px; }
  .step:first-child{ border-radius:var(--radius-lg) var(--radius-lg) 0 0; }
  .step:last-child { border-radius:0 0 var(--radius-lg) var(--radius-lg); }
  .profiles-grid   { grid-template-columns:1fr; }
  .footer__grid    { grid-template-columns:1fr; gap:32px; }
  .profile-hero__left { flex-direction:column; }
  .about-grid      { grid-template-columns:1fr; }
  .stats-grid      { grid-template-columns:1fr; }
  .relationship-grid { grid-template-columns:repeat(2,1fr); }
  .cat-rating      { flex-wrap:wrap; }
  .cat-rating__label { min-width:100%; }
}
@media (max-width:480px) {
  .container       { padding:0 16px; }
  .hero__title     { font-size:2rem; }
  .score-gauge-wrap{ flex-direction:column; text-align:center; }
  .cta-actions     { flex-direction:column; }
  .cta-actions .btn{ width:100%; justify-content:center; }
}

/* ── Social Verification Gate ─────────────────────────────────────────────── */
.social-gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 5, 15, 0.96);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.social-gate.hidden { display: none; }

.social-gate__inner {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
/* Loading / insufficient states benefit from vertical centering */
.social-gate__inner.sg-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.social-gate__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(224,85,39,0.2), rgba(240,144,0,0.2));
  border: 1px solid var(--border-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.5rem;
  color: var(--purple);
}
.social-gate__inner h2 {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.social-gate__inner > p {
  color: var(--text-secondary);
  font-size: 0.925rem;
  line-height: 1.65;
  margin-bottom: 28px;
}
.social-gate__platforms {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.social-platform-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  cursor: pointer;
  transition: all 0.18s ease;
  text-align: left;
  width: 100%;
  color: var(--text-primary);
  font-family: inherit;
}
.social-platform-btn:hover {
  border-color: var(--border-accent);
  transform: translateX(4px);
}
.social-platform-btn i       { font-size: 1.35rem; width: 26px; flex-shrink: 0; }
.social-platform-btn > span  { flex: 1; font-weight: 600; font-size: 0.9rem; }
.social-platform-btn__sub    { font-size: 0.72rem; color: var(--text-muted); font-weight: 400 !important; }
.social-platform-btn--linkedin i  { color: #0A66C2; }
.social-platform-btn--facebook i  { color: #1877F2; }
.social-platform-btn--instagram i { color: #E1306C; }
.social-platform-btn--linkedin:hover  { border-color: rgba(10,102,194,0.5);  background: rgba(10,102,194,0.07);  }
.social-platform-btn--facebook:hover  { border-color: rgba(24,119,242,0.5);  background: rgba(24,119,242,0.07);  }
.social-platform-btn--instagram:hover { border-color: rgba(225,48,108,0.5);  background: rgba(225,48,108,0.07);  }
.social-gate__note {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-bottom: 0 !important;
}

/* ── Social Connect Modal Inputs ─────────────────────────────────────────── */
.social-input {
  display: block;
  width: 100%;
  padding: 11px 15px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 0.9rem;
  margin-bottom: 12px;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
  box-sizing: border-box;
}
.social-input:focus { border-color: var(--border-accent); }
.social-error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.35);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.84rem;
  color: #FCA5A5;
  margin-bottom: 12px;
  text-align: left;
}

/* ── Social Verification Card (profile.html sidebar) ─────────────────────── */
.social-verify-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
}
.social-verify-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.social-connection-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.social-connection-item:last-of-type { border-bottom: none; }
.social-connection-item i    { font-size: 1.05rem; width: 18px; }
.soc-handle { flex: 1; font-size: 0.8rem; color: var(--text-secondary); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.soc-count  { font-size: 0.75rem; color: var(--text-muted); flex-shrink: 0; }
.social-verified-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.76rem;
  color: var(--green);
  margin-top: 12px;
}
.social-unverified-notice {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.78rem;
  color: var(--amber);
  line-height: 1.55;
}

/* ─── ID Verification Gate (Persona) ──────────────────────────────────── */
.id-gate { z-index: 1100; } /* above social gate */

.id-gate__icon {
  background: rgba(240,144,0,0.12);
  border-color: rgba(240,144,0,0.4);
}
.id-gate__icon i { color: var(--cyan); }

/* ID verified badge on profile sidebar */
.id-verified-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 10px;
  font-size: 0.82rem;
  color: var(--green);
  font-weight: 600;
}
.id-verified-card i { font-size: 1.1rem; flex-shrink: 0; }
.id-verified-card__label { font-size: 0.72rem; color: var(--text-muted); font-weight: 400; }

/* ─── Auth Modal ───────────────────────────────────────────────────── */
.auth-modal {
  border-color: var(--border-accent);
  position: relative;
  padding: 40px 36px 32px;
  max-width: 420px;
}
.auth-modal__close {
  position: absolute;
  top: 14px; right: 14px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.15rem;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.auth-modal__close:hover { color: var(--text-primary); background: var(--bg-elevated); }
.auth-modal__logo {
  width: 52px; height: 52px;
  background: #fff;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  padding: 5px;
}
.auth-modal__logo img { width: 100%; height: 100%; object-fit: contain; }
.auth-modal h2 { font-size: 1.35rem; margin-bottom: 8px; }
.auth-modal p  { font-size: 0.84rem; margin-bottom: 24px; }
.auth-modal__platforms {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.auth-modal__platforms .social-platform-btn { justify-content: center; }
.auth-modal__note {
  font-size: 0.75rem !important;
  color: var(--text-muted) !important;
  margin-bottom: 0 !important;
  line-height: 1.55;
}
.auth-modal__note a { color: var(--purple); text-decoration: none; }
.auth-modal__note a:hover { text-decoration: underline; }

/* ── LinkedIn Recommendations Import ───────────────────────────────────────── */
.li-import-toggle {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}
.li-import-label {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 0.875rem;
  color: var(--text-primary);
  padding-top: 1px;
}
.li-import-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
}
.li-import-panel {
  margin-top: 14px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  background: var(--bg-card);
}
.li-panel-loading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.li-panel-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0 0 10px;
}
.li-rec-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 260px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border-strong) transparent;
}
.li-rec-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.li-rec-card:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
}
.li-rec-card__name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-primary);
  margin-bottom: 3px;
}
.li-rec-card__headline {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.li-rec-card__excerpt {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.li-paste-hint {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 4px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.li-paste-hint strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 3px;
  font-size: 0.875rem;
}

/* ── Hero waitlist row ─────────────────────────────────────────────────────── */
.hero__waitlist-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}
.hero__waitlist-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* ── Waitlist Modal ────────────────────────────────────────────────────────── */
.waitlist-modal {
  width: min(560px, 95vw);
  padding: 36px;
}
.waitlist-modal__header {
  text-align: center;
  margin-bottom: 24px;
}
.waitlist-modal__icon {
  width: 52px;
  height: 52px;
  background: rgba(224, 85, 39, 0.15);
  border: 1px solid rgba(224, 85, 39, 0.35);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--purple);
}
.waitlist-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.waitlist-modal p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}
.wl-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
@media (max-width: 520px) {
  .wl-field-row { grid-template-columns: 1fr; }
}
.wl-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.wl-field-row .wl-field {
  margin-bottom: 0;
}
.wl-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.wl-required {
  color: var(--purple);
}
.wl-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.35);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: #FCA5A5;
  margin-bottom: 12px;
}
.waitlist-modal__success-icon {
  width: 64px;
  height: 64px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--green);
}
/* ── Nav User Menu ─────────────────────────────────────────────────────────── */
.nav__user-menu { position: relative; }
.nav__user-btn {
  display: flex; align-items: center; gap: 8px;
  background: transparent; border: 1px solid var(--border);
  border-radius: var(--radius-full); padding: 4px 12px 4px 4px;
  cursor: pointer; color: var(--text-primary); font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
}
.nav__user-btn:hover { border-color: var(--border-accent); background: var(--bg-card); }
.nav__user-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--purple); color: #fff;
  font-size: 0.68rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav__user-avatar--lg { width: 40px; height: 40px; font-size: 0.9rem; }
.nav__user-avatar--photo { padding: 0; overflow: hidden; }
.nav__user-avatar--photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.nav__user-name { font-size: 0.82rem; font-weight: 600; }
.nav__user-caret { font-size: 0.6rem; color: var(--text-muted); transition: transform 0.2s; }
.nav__user-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--bg-card); border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg); min-width: 230px; padding: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none;
  transform: translateY(-6px); transition: opacity 0.15s, transform 0.15s;
  z-index: 200;
}
.nav__user-dropdown.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.nav__user-dropdown-header {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 8px 12px; border-bottom: 1px solid var(--border-subtle); margin-bottom: 6px;
}
.nav__user-dropdown-name { font-size: 0.875rem; font-weight: 700; color: var(--text-primary); }
.nav__user-dropdown-email { font-size: 0.72rem; color: var(--text-muted); margin-top: 3px; display: flex; align-items: center; gap: 5px; }
.nav__dropdown-item {
  display: flex; align-items: center; gap: 10px; width: 100%;
  padding: 9px 10px; border-radius: var(--radius-sm);
  font-size: 0.84rem; color: var(--text-secondary); background: transparent;
  border: none; cursor: pointer; text-decoration: none; font-family: inherit;
  transition: background 0.15s, color 0.15s; text-align: left;
}
.nav__dropdown-item:hover { background: var(--bg-surface); color: var(--text-primary); }
.nav__dropdown-item i { width: 16px; text-align: center; color: var(--text-muted); }
.nav__dropdown-divider { height: 1px; background: var(--border-subtle); margin: 6px 0; }
.nav__dropdown-item--danger { color: var(--red); }
.nav__dropdown-item--danger:hover { background: rgba(239,68,68,0.1); color: #FCA5A5; }
.nav__dropdown-item--danger i { color: inherit; }

/* ── Dispute button on review cards ───────────────────────────────────────── */
.review-card__vote-dispute {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px; margin-top: 12px;
}
.btn-dispute-review {
  display: flex; align-items: center; gap: 6px;
  padding: 5px 12px; font-size: 0.75rem; font-weight: 600;
  color: var(--text-muted); background: transparent;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.btn-dispute-review:hover {
  color: var(--amber); border-color: rgba(245,158,11,0.4);
  background: rgba(245,158,11,0.08);
}

/* ── Dispute Modal ─────────────────────────────────────────────────────────── */
.dispute-modal { width: min(500px, 95vw); padding: 36px; text-align: left; }
.dispute-modal__header { text-align: center; margin-bottom: 24px; }
.dispute-modal__icon {
  width: 52px; height: 52px; background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.3); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 1.3rem; color: var(--amber);
}
.dispute-modal h2 { font-size: 1.25rem; margin-bottom: 6px; }
.dispute-modal > div > p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0; }
.dispute-success-icon {
  width: 60px; height: 60px; background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.6rem; color: var(--green);
}

/* ── Edit Profile Modal ────────────────────────────────────────────────────── */
.edit-profile-modal { width: min(560px, 95vw); padding: 36px; text-align: left; }
.edit-profile-modal h2 { font-size: 1.3rem; margin-bottom: 4px; }
.edit-profile-modal > .edit-profile-modal__header > p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0; }
.edit-profile-modal__header { margin-bottom: 22px; }
.ep-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.ep-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
@media (max-width: 520px) { .ep-field-row { grid-template-columns: 1fr; } }
.ep-field-row .ep-field { margin-bottom: 0; }
.ep-label { font-size: 0.75rem; font-weight: 600; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.04em; }
.ep-textarea {
  background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 10px 14px;
  font-size: 0.875rem; color: var(--text-primary); font-family: inherit;
  resize: vertical; min-height: 90px; transition: border-color 0.2s;
}
.ep-textarea:focus { outline: none; border-color: var(--border-accent); }
.ep-error {
  background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3);
  border-radius: var(--radius-sm); padding: 10px 14px;
  font-size: 0.82rem; color: #FCA5A5; margin-bottom: 12px;
}

/* ── My Profile page ───────────────────────────────────────────────────────── */
.my-profile-loading {
  min-height: 60vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px; color: var(--text-muted); font-size: 0.875rem;
}
.my-profile-loading i { font-size: 2rem; color: var(--purple); }
.my-profile-clean-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 420px);
  gap: 24px;
  align-items: stretch;
}
.my-profile-clean-hero__identity {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.my-profile-clean-hero__copy { min-width: 0; }
.my-profile-clean-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.my-profile-clean-hero__actions .btn { min-height: 44px; }
.my-profile-score-panel {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.my-profile-stat-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.my-profile-clean-shell {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.my-profile-clean-split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 18px;
}
.my-profile-clean-section {
  padding: 24px;
  border-radius: var(--radius-lg);
}
.my-profile-clean-section__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.my-profile-clean-section__header h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.my-profile-clean-section__header p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}
.my-profile-clean-section__header--reviews {
  align-items: center;
}
.my-profile-clean-inline-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.my-profile-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.my-profile-detail-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  min-width: 0;
}
.my-profile-detail-card__label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.my-profile-detail-card strong,
.my-profile-detail-card div,
.my-profile-detail-card p {
  color: var(--text-primary);
  font-size: 0.92rem;
  line-height: 1.5;
  word-break: break-word;
}
.my-profile-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.my-profile-action-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text-primary);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}
.my-profile-action-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-accent);
  background: rgba(124,58,237,0.08);
}
.my-profile-action-card i {
  font-size: 1.15rem;
  color: var(--purple-light);
}
.my-profile-action-card__title {
  font-size: 0.92rem;
  font-weight: 700;
}
.my-profile-action-card__desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.account-card--inline {
  margin-bottom: 0;
  padding: 0;
  background: transparent;
  border: none;
}
.my-profile-empty-state {
  text-align: center;
  padding: 40px 24px;
  color: var(--text-muted);
}
.my-profile-empty-state i {
  font-size: 2.3rem;
  display: block;
  margin-bottom: 14px;
  opacity: 0.3;
}
.my-profile-empty-state h4 {
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.my-profile-empty-state p {
  max-width: 420px;
  margin: 0 auto 18px;
  line-height: 1.65;
}
.my-profile-empty-state__actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.account-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px; margin-bottom: 16px;
}
.account-card h3 {
  font-size: 0.8rem; font-weight: 700; color: var(--text-secondary);
  text-transform: uppercase; letter-spacing: 0.04em;
  margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.account-card__item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.84rem; color: var(--text-secondary);
  padding: 8px 0; border-bottom: 1px solid var(--border-subtle);
}
.account-card__item:last-of-type { border-bottom: none; }
.account-card__item i { width: 16px; text-align: center; }
.account-card__btn {
  width: 100%; margin-top: 10px; display: flex;
  align-items: center; justify-content: center; gap: 8px;
  padding: 9px 14px; border-radius: var(--radius-sm);
  font-size: 0.82rem; font-weight: 600;
  cursor: pointer; font-family: inherit; transition: all 0.2s;
}
.account-card__btn--secondary {
  background: transparent; border: 1px solid var(--border); color: var(--text-secondary);
}
.account-card__btn--secondary:hover { background: var(--bg-surface); color: var(--text-primary); }
.account-card__btn--danger {
  background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #FCA5A5;
}
.account-card__btn--danger:hover { background: rgba(239,68,68,0.2); }

@media (max-width: 1100px) {
  .my-profile-clean-hero__grid,
  .my-profile-clean-split {
    grid-template-columns: 1fr;
  }
  .my-profile-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .my-profile-action-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .my-profile-clean-hero__identity {
    flex-direction: column;
    gap: 18px;
  }
  .my-profile-detail-grid,
  .my-profile-stat-grid {
    grid-template-columns: 1fr;
  }
  .my-profile-clean-section__header,
  .my-profile-clean-section__header--reviews {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ─── Request Reviews Modal ────────────────────────────────────────────────── */
.rr-modal { max-width: 460px; text-align: center; }
.rr-modal__icon { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, rgba(124,58,237,0.18), rgba(6,182,212,0.18)); border: 1px solid rgba(124,58,237,0.35); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--purple-light); margin: 0 auto 16px; }
.rr-modal h2 { font-size: 1.25rem; margin-bottom: 8px; }
.rr-modal > p { font-size: 0.84rem; color: var(--text-secondary); margin-bottom: 20px; }
.rr-url-box { display: flex; align-items: center; gap: 8px; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius); padding: 6px 6px 6px 14px; margin-bottom: 18px; }
.rr-url-input { flex: 1; background: transparent; border: none; outline: none; color: var(--text-secondary); font-size: 0.8rem; font-family: inherit; min-width: 0; }
.rr-copy-btn { flex-shrink: 0; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text-muted); width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); font-size: 0.9rem; }
.rr-copy-btn:hover { color: var(--purple-light); border-color: var(--purple); }
.rr-channels { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.rr-channel-btn { display: flex; align-items: center; gap: 10px; padding: 13px 16px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--bg-elevated); color: var(--text-primary); font-size: 0.875rem; font-weight: 600; font-family: inherit; cursor: pointer; transition: var(--transition); text-align: left; width: 100%; }
.rr-channel-btn i { font-size: 1.1rem; flex-shrink: 0; }
.rr-channel-btn:hover { transform: translateY(-1px); }
.rr-channel-btn--sms i    { color: #34D399; }
.rr-channel-btn--sms:hover    { border-color: rgba(52,211,153,0.5); background: rgba(52,211,153,0.07); }
.rr-channel-btn--email i  { color: var(--cyan-light); }
.rr-channel-btn--email:hover  { border-color: rgba(6,182,212,0.5); background: rgba(6,182,212,0.07); }
.rr-channel-btn--linkedin i  { color: #0A66C2; }
.rr-channel-btn--linkedin:hover { border-color: rgba(10,102,194,0.5); background: rgba(10,102,194,0.07); }
.rr-channel-btn--facebook i  { color: #1877F2; }
.rr-channel-btn--facebook:hover { border-color: rgba(24,119,242,0.5); background: rgba(24,119,242,0.07); }
.rr-modal__note { font-size: 0.75rem !important; color: var(--text-muted) !important; margin-bottom: 0 !important; display: flex !important; align-items: center; justify-content: center; gap: 6px; }

.account-card__btn--primary {
  background: linear-gradient(135deg, rgba(124,58,237,0.18), rgba(6,182,212,0.18));
  border: 1px solid rgba(124,58,237,0.35);
  color: var(--text-primary);
}
.account-card__btn--primary:hover { background: linear-gradient(135deg, rgba(124,58,237,0.26), rgba(6,182,212,0.24)); }

.score-share-modal { max-width: 560px; text-align: center; }
.score-share__summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.score-share__stat {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
}
.score-share__label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.score-share__stat strong { font-size: 1.05rem; color: var(--text-primary); }
.score-share__audiences {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.score-audience-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
  font: inherit;
  font-weight: 600;
  justify-content: flex-start;
}
.score-audience-btn i { color: var(--purple-light); width: 18px; text-align: center; }
.score-audience-btn:hover,
.score-audience-btn.active {
  border-color: rgba(124,58,237,0.45);
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(6,182,212,0.08));
  transform: translateY(-1px);
}
.score-share__context {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: left;
  margin: 0 0 10px;
}
.score-share__preview {
  min-height: 180px;
  resize: vertical;
  margin-bottom: 16px;
}
.score-share__channels { margin-bottom: 14px; }

@media (max-width: 560px) {
  .score-share__summary,
  .score-share__audiences,
  .rr-channels {
    grid-template-columns: 1fr;
  }
}

.rr-channel-btn--facebook:hover { border-color: rgba(24,119,242,0.5); background: rgba(24,119,242,0.07); }
.rr-modal__note { font-size: 0.75rem !important; color: var(--text-muted) !important; margin-bottom: 0 !important; display: flex !important; align-items: center; justify-content: center; gap: 6px; }

/* ═══════════════════════════════════════════════════════════════════════════════
   WRITE REVIEW PAGE — full redesign
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ── WR Hero Strip ───────────────────────────────────────────────────────────── */
.wr-hero {
  position: relative;
  padding: 100px 0 52px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.wr-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.wr-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(224,85,39,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224,85,39,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 20%, transparent 90%);
}
.wr-hero__glow-l {
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,85,39,0.14) 0%, transparent 70%);
  top: -160px; left: -120px;
}
.wr-hero__glow-r {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,144,0,0.1) 0%, transparent 70%);
  top: -80px; right: -80px;
}
.wr-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.wr-hero__h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 16px 0 16px;
}
.wr-hero__p {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 520px;
}
.wr-hero__stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
}
.wr-hero__stat {
  padding: 20px 28px;
  text-align: center;
}
.wr-hero__stat-value {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-light), var(--cyan-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 5px;
}
.wr-hero__stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.wr-hero__stat-divider {
  height: 1px;
  background: var(--border);
}

/* ── WR Stepper Rail ─────────────────────────────────────────────────────────── */
.wr-stepper-rail {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.wr-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}
.wr-s {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.wr-s__dot {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.wr-s__label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color 0.2s;
}
.wr-s--active .wr-s__dot {
  background: rgba(224,85,39,0.15);
  border-color: var(--purple);
  color: var(--purple-light);
  box-shadow: 0 0 0 4px rgba(224,85,39,0.12);
}
.wr-s--active .wr-s__label { color: var(--purple-light); }
.wr-s--done .wr-s__dot {
  background: rgba(16,185,129,0.12);
  border-color: var(--green);
  color: var(--green);
}
.wr-s--done .wr-s__label { color: var(--green); }
.wr-s__bar {
  flex: 1;
  height: 2px;
  background: var(--border);
  min-width: 40px;
  max-width: 80px;
  align-self: center;
  margin-top: -22px; /* align with dot center */
  transition: background 0.3s;
}

/* ── WR Body Layout ──────────────────────────────────────────────────────────── */
.wr-body {
  padding: 48px 0 100px;
}
.wr-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: flex-start;
}
.wr-form-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── WR Section Blocks ───────────────────────────────────────────────────────── */
.wr-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color 0.2s;
}
.wr-block:hover { border-color: var(--border-strong); }
.wr-block__hd {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 28px 0;
}
.wr-block__num {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(224,85,39,0.25), rgba(240,144,0,0.2));
  border: 1px solid rgba(224,85,39,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--purple-light);
  flex-shrink: 0;
  margin-top: 2px;
}
.wr-block__num--pledge {
  background: linear-gradient(135deg, rgba(245,158,11,0.2), rgba(224,85,39,0.15));
  border-color: rgba(245,158,11,0.35);
  color: var(--amber);
}
.wr-block__title {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 4px;
}
.wr-block__sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
.wr-block__body {
  padding: 20px 28px 28px;
}
.wr-block--pledge {
  border-color: rgba(245,158,11,0.2);
  background: rgba(245,158,11,0.04);
}
.wr-block--pledge:hover { border-color: rgba(245,158,11,0.4); }

/* ── WR Target Selector ──────────────────────────────────────────────────────── */
.wr-target-selector {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg-surface);
  border: 1.5px dashed var(--border-strong);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 18px;
}
.wr-target-selector:hover { border-color: var(--border-accent); background: rgba(224,85,39,0.04); }
.wr-target-selector.target-selected {
  border-style: solid;
  border-color: var(--border-accent);
  background: rgba(224,85,39,0.06);
}
.wr-target-placeholder-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(224,85,39,0.1);
  border: 1px solid rgba(224,85,39,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--purple-light);
  flex-shrink: 0;
}
.wr-target-change-badge {
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  margin-left: auto;
  display: flex; align-items: center; gap: 5px;
}

/* ── WR Quick Select ────────────────────────────────────────────────────────── */
.wr-quick-select {
  margin-top: 0;
}
.wr-quick-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.wr-quick-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.wr-quick-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
}
.wr-quick-btn:hover { border-color: var(--border-accent); color: var(--text-primary); background: var(--bg-card); }
.wr-quick-btn--danger { border-color: rgba(239,68,68,0.25); color: #FCA5A5; }
.wr-quick-btn--danger:hover { border-color: rgba(239,68,68,0.5); background: rgba(239,68,68,0.08); }

/* ── WR Relationship Grid ────────────────────────────────────────────────────── */
.wr-rel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.wr-rel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 14px;
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}
.wr-rel:hover {
  border-color: var(--border-accent);
  color: var(--text-primary);
  background: rgba(224,85,39,0.05);
  transform: translateY(-1px);
}
.wr-rel.selected {
  border-color: var(--purple);
  color: var(--purple-light);
  background: rgba(224,85,39,0.1);
  box-shadow: 0 0 0 3px rgba(224,85,39,0.12);
}
.wr-rel__icon-wrap {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: background 0.2s, border-color 0.2s;
}
.wr-rel.selected .wr-rel__icon-wrap {
  background: rgba(224,85,39,0.15);
  border-color: rgba(224,85,39,0.35);
}
.wr-rel__name { font-size: 0.85rem; font-weight: 700; color: inherit; line-height: 1; }
.wr-rel__sub  { font-size: 0.72rem; color: var(--text-muted); line-height: 1.3; }
.wr-rel.selected .wr-rel__sub { color: var(--purple-light); opacity: 0.7; }

/* ── WR Rating Grid ─────────────────────────────────────────────────────────── */
.wr-rating-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.wr-cat {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: var(--transition);
}
.wr-cat:hover { border-color: var(--border-strong); background: var(--bg-card); }
.wr-cat__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.wr-cat__icon-wrap {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.wr-cat__icon--amber  { background: rgba(245,158,11,0.15); color: var(--amber); }
.wr-cat__icon--green  { background: rgba(16,185,129,0.15);  color: var(--green); }
.wr-cat__icon--purple { background: rgba(224,85,39,0.15);   color: var(--purple-light); }
.wr-cat__icon--red    { background: rgba(239,68,68,0.15);   color: var(--red); }
.wr-cat__icon--blue   { background: rgba(59,130,246,0.15);  color: #93C5FD; }
.wr-cat__icon--cyan   { background: rgba(6,182,212,0.15);   color: var(--cyan); }
.wr-cat__name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
}
.wr-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}
.wr-stars .star {
  font-size: 1.5rem;
  color: var(--border-strong);
  transition: color 0.12s, transform 0.12s;
  cursor: pointer;
  line-height: 1;
}
.wr-stars .star:hover,
.wr-stars .star.active { color: var(--amber); }
.wr-stars .star:hover   { transform: scale(1.2); }
.wr-cat__label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

/* ── WR Prompt Chips ────────────────────────────────────────────────────────── */
.wr-prompts {
  margin-bottom: 14px;
}
.wr-prompt-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: block;
}
.wr-prompt-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.wr-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  background: rgba(224,85,39,0.08);
  border: 1px solid rgba(224,85,39,0.2);
  color: var(--purple-light);
  font-size: 0.76rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
}
.wr-chip:hover {
  background: rgba(224,85,39,0.18);
  border-color: var(--purple);
  transform: translateY(-1px);
}

/* ── WR Textarea ────────────────────────────────────────────────────────────── */
.wr-textarea {
  background: var(--bg-surface) !important;
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius-md) !important;
  font-size: 0.9rem !important;
  line-height: 1.75 !important;
}
.wr-textarea:focus { border-color: var(--border-accent) !important; box-shadow: 0 0 0 3px rgba(224,85,39,0.1) !important; }

/* ── WR Character Progress Bar ──────────────────────────────────────────────── */
.wr-char-bar-wrap {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wr-char-bar {
  height: 4px;
  background: var(--border);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.wr-char-bar__fill {
  height: 100%;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  transition: width 0.3s ease, background 0.4s ease;
}

/* ── WR Pledge Card ─────────────────────────────────────────────────────────── */
.wr-pledge-card {
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: var(--radius-md);
  padding: 24px;
}
.wr-pledge-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--amber);
  margin: 0 auto 16px;
}
.wr-pledge-quote {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: center;
  margin-bottom: 20px;
  padding: 0 8px;
  border-left: 3px solid rgba(245,158,11,0.4);
  padding-left: 16px;
  text-align: left;
}
.wr-pledge-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.wr-pledge-text {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── WR Submit Area ─────────────────────────────────────────────────────────── */
.wr-submit-area {
  padding: 8px 0 0;
}
.wr-submit-btn {
  position: relative;
  width: 100%;
  padding: 18px 32px;
  border: none;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #E05527 0%, #B83A12 60%, #E05527 100%);
  background-size: 200% 100%;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, background-position 0.5s;
  box-shadow: 0 6px 28px rgba(224,85,39,0.45);
  letter-spacing: 0.01em;
}
.wr-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(224,85,39,0.6);
  background-position: right center;
}
.wr-submit-btn:active { transform: translateY(0); }
.wr-submit-btn__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.wr-submit-btn__shine {
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.5s ease;
}
.wr-submit-btn:hover .wr-submit-btn__shine { left: 160%; }
.wr-submit-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  margin-top: 14px;
  font-size: 0.73rem;
  color: var(--text-muted);
}
.wr-submit-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.wr-submit-meta i { color: var(--text-muted); }

/* ── WR Sidebar ─────────────────────────────────────────────────────────────── */
.wr-sidebar-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 88px;
}
.wr-sb-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.wr-sb-card__accent-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
}
.wr-sb-card--impact { padding-top: 22px; }
.wr-sb-card--danger {
  background: rgba(239,68,68,0.06);
  border-color: rgba(239,68,68,0.2);
}
.wr-sb-impact-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
.wr-sb-impact-icon {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(224,85,39,0.12);
  border: 1px solid rgba(224,85,39,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--purple-light);
  flex-shrink: 0;
}
.wr-sb-impact-title { font-size: 0.88rem; font-weight: 700; margin-bottom: 2px; }
.wr-sb-impact-sub   { font-size: 0.75rem; color: var(--text-muted); line-height: 1.4; }
.wr-sb-stat-row {
  display: flex;
  gap: 0;
  margin-bottom: 16px;
}
.wr-sb-stat { flex: 1; text-align: center; }
.wr-sb-stat-val {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-light), var(--cyan-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.wr-sb-stat-lbl { font-size: 0.7rem; color: var(--text-muted); line-height: 1.3; }
.wr-sb-stat-divider { width: 1px; background: var(--border); flex-shrink: 0; }
.wr-sb-acc-bar-wrap { margin-top: 4px; }
.wr-sb-acc-bar {
  height: 6px;
  background: var(--border);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.wr-sb-acc-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), #34D399);
  border-radius: var(--radius-full);
  transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
}
.wr-sb-anon {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.wr-sb-anon-icon {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--amber);
  flex-shrink: 0;
}
.wr-sb-anon-title { font-size: 0.85rem; font-weight: 700; margin-bottom: 5px; }
.wr-sb-anon-body  { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }
.wr-sb-card__heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.wr-sb-card__heading i { color: var(--purple-light); }
.wr-sb-guideline-list { display: flex; flex-direction: column; gap: 8px; }
.wr-sb-guideline {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.79rem;
  color: var(--text-secondary);
  line-height: 1.4;
}
.wr-sb-guideline i { font-size: 0.8rem; flex-shrink: 0; margin-top: 1px; }
.wr-sb-guideline--ok i { color: var(--green); }
.wr-sb-guideline--no i { color: var(--red); }
.wr-sb-danger-body { font-size: 0.79rem; color: #FCA5A5; opacity: 0.85; line-height: 1.65; }

/* ── WR Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .wr-hero__inner  { grid-template-columns: 1fr; gap: 32px; }
  .wr-hero__stats  { flex-direction: row; justify-content: center; }
  .wr-hero__stat-divider { width: 1px; height: auto; }
  .wr-layout       { grid-template-columns: 1fr; }
  .wr-sidebar-col  { position: static; }
}
@media (max-width: 768px) {
  .wr-hero         { padding: 88px 0 40px; }
  .wr-hero__stats  { flex-direction: row; }
  .wr-stepper      { gap: 0; overflow-x: auto; padding: 0 8px; }
  .wr-s__label     { font-size: 0.6rem; }
  .wr-s__bar       { min-width: 20px; }
  .wr-rel-grid     { grid-template-columns: repeat(2, 1fr); }
  .wr-rating-grid  { grid-template-columns: 1fr; }
  .wr-block__hd    { padding: 20px 20px 0; }
  .wr-block__body  { padding: 16px 20px 22px; }
}
@media (max-width: 480px) {
  .wr-rel-grid     { grid-template-columns: 1fr; }
  .wr-hero__stats  { flex-direction: column; }
  .wr-hero__stat-divider { width: auto; height: 1px; }
}

/* ─── Avatar Color Picker ───────────────────────────────────────────────────── */
.avatar-picker {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.avatar-pick {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  outline: none;
  padding: 0;
  flex-shrink: 0;
}
.avatar-pick:hover {
  transform: scale(1.12);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.12);
}
.avatar-pick.selected {
  border-color: rgba(255,255,255,0.9);
  transform: scale(1.2);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.18);
}