/* ===== TOKENS ===== */
/* Made Here Co. Brand Palette */
:root {
  --dark-blue: #0E2A39;
  --navy: #1C4460;
  --orange: #EC4724;
  --sky-blue: #97C0D7;
  --grey: #E9F3F2;
  --bg: var(--dark-blue);
  --bg-card: #112e3a;
  --bg-card-hover: #163a48;
  --accent: var(--orange);
  --accent-dim: rgba(236, 71, 36, 0.12);
  --text: var(--grey);
  --text-muted: #9ab8c0;
  --text-dim: #5c8a98;
  --border: rgba(151, 192, 215, 0.12);
  --card-border: rgba(151, 192, 215, 0.18);
  --font-display: 'Nunito Sans', 'Futura PT', system-ui, sans-serif;
  --font-body: 'Nunito Sans', 'Futura PT', system-ui, sans-serif;
  --radius: 8px;
  --radius-lg: 14px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); font-weight: 400; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--text-dim); border-radius: 3px; }

/* ===== NAV ===== */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(14,42,57,0.92); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 60px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-name { font-family: var(--font-display); font-size: 16px; font-weight: 700; letter-spacing: 0.12em; color: var(--grey); text-transform: uppercase; }
.nav-tagline { font-size: 13px; color: var(--sky-blue); letter-spacing: 0.04em; opacity: 0.8; }
.nav-cta-link { font-size: 13px; font-weight: 600; color: var(--orange); text-decoration: none; padding: 6px 14px; border: 1px solid var(--orange); border-radius: 6px; transition: background 0.2s, color 0.2s; }
.nav-cta-link:hover { background: var(--orange); color: #0E2A39; }
.nav-dashboard-link { font-size: 13px; font-weight: 600; color: var(--text-muted); text-decoration: none; padding: 6px 12px; border-radius: 6px; transition: color 0.2s, background 0.2s; }
.nav-dashboard-link:hover { color: var(--text); background: var(--bg-card); }
.nav-for-brands-link { font-size: 13px; font-weight: 600; color: var(--sky-blue); text-decoration: none; padding: 6px 12px; border-radius: 6px; border: 1px solid transparent; transition: color 0.2s, border-color 0.2s; }
.nav-for-brands-link:hover { color: var(--text); border-color: var(--card-border); }

/* ===== HERO ===== */
.hero { position: relative; min-height: calc(100vh - 60px); display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.hero-bg-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(236,71,36,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(236,71,36,0.06) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }
.hero-content { max-width: 1200px; margin: 0 auto; padding: 80px 24px 60px; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--accent-dim); border: 1px solid rgba(245,166,35,0.3); border-radius: 100px; padding: 6px 14px; font-size: 13px; color: var(--accent); font-weight: 500; margin-bottom: 28px; width: fit-content; }
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-headline { font-family: var(--font-display); font-size: clamp(48px, 6vw, 80px); line-height: 0.95; letter-spacing: 0.02em; color: var(--text); margin-bottom: 24px; }
.hero-headline em { color: var(--accent); font-style: normal; }
.hero-sub { font-size: 18px; color: var(--text-muted); line-height: 1.5; margin-bottom: 32px; }
.hero-trades { display: flex; flex-wrap: wrap; gap: 8px; }
.trade-tag { background: var(--bg-card); border: 1px solid var(--card-border); border-radius: 6px; padding: 6px 12px; font-size: 13px; color: var(--text-muted); transition: border-color 0.2s; }
.trade-tag:hover { border-color: var(--accent); color: var(--accent); }

/* Hero right - card stack */
.hero-right { display: flex; justify-content: center; align-items: center; }
.hero-card-stack { position: relative; width: 320px; height: 360px; }
.hero-card { position: absolute; background: var(--bg-card); border: 1px solid var(--card-border); border-radius: 16px; padding: 18px; width: 200px; display: flex; align-items: flex-start; gap: 14px; box-shadow: 0 8px 32px rgba(0,0,0,0.4); transition: transform 0.3s; }
.hero-card:hover { transform: translateY(-4px) !important; }
.hero-card-1 { top: 0; left: 0; transform: rotate(-2deg); z-index: 1; }
.hero-card-2 { top: 30px; right: 0; transform: rotate(2deg); z-index: 2; }
.hero-card-3 { bottom: 30px; left: 20px; transform: rotate(-1deg); z-index: 3; }
.hero-card-4 { bottom: 0; right: 20px; transform: rotate(1.5deg); z-index: 4; }
.card-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #333 0%, #444 100%); flex-shrink: 0; }
.card-lines { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.card-line { height: 8px; border-radius: 4px; background: #2a2a2a; }
.card-line-long { width: 85%; }
.card-line-medium { width: 65%; }
.card-line-short { width: 50%; }
.card-badge { position: absolute; bottom: 12px; right: 12px; background: var(--accent-dim); border: 1px solid rgba(245,166,35,0.3); border-radius: 100px; padding: 4px 10px; font-size: 10px; color: var(--accent); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.hero-stat-float { position: absolute; bottom: -10px; left: -20px; background: var(--orange); color: #0E2A39; border-radius: 12px; padding: 12px 16px; text-align: center; box-shadow: 0 8px 24px rgba(236,71,36,0.3); z-index: 10; }
.stat-num { font-family: var(--font-display); font-size: 28px; line-height: 1; }
.stat-label { font-size: 10px; font-weight: 500; opacity: 0.8; margin-top: 2px; line-height: 1.3; }

/* Hero bottom bar */
.hero-bottom-bar { max-width: 1200px; margin: 0 auto; padding: 0 24px 60px; width: 100%; display: flex; align-items: center; gap: 0; border-top: 1px solid var(--border); padding-top: 28px; margin-top: 20px; }
.bar-stat { display: flex; align-items: baseline; gap: 10px; flex: 1; }
.bar-num { font-family: var(--font-display); font-size: 36px; color: var(--orange); line-height: 1; }
.bar-desc { font-size: 14px; color: var(--text-muted); }
.bar-divider { width: 1px; height: 36px; background: var(--border); margin: 0 32px; flex-shrink: 0; }

/* ===== PROOF ===== */
.proof { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 60px 0; }
.proof-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; text-align: center; }
.proof-label { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: 28px; }
.proof-brands { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; margin-bottom: 48px; }
.proof-brand { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 14px; font-weight: 500; }
.brand-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--bg); border: 1px solid var(--card-border); display: flex; align-items: center; justify-content: center; }
.proof-quote { font-size: 16px; color: var(--text-muted); max-width: 600px; margin: 0 auto; font-style: italic; line-height: 1.6; border-left: 3px solid var(--accent); padding-left: 20px; text-align: left; }

/* ===== FEATURES ===== */
.features { padding: 100px 0; }
.features-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.features-header { text-align: center; margin-bottom: 64px; }
.features-header h2 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); line-height: 1.05; color: var(--text); letter-spacing: 0.02em; }
.features-header h2 em { color: var(--accent); font-style: normal; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { background: var(--bg-card); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 32px; transition: border-color 0.2s, transform 0.2s; }
.feature-card:hover { border-color: #333; transform: translateY(-2px); }
.feature-card-accent { border-color: rgba(245,166,35,0.3); }
.feature-card-accent:hover { border-color: var(--accent); }
.feature-icon { margin-bottom: 20px; }
.feature-card h3 { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.04em; color: var(--text); margin-bottom: 12px; }
.feature-card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.feature-tag { display: inline-block; background: var(--accent-dim); border-radius: 100px; padding: 4px 12px; font-size: 12px; color: var(--accent); font-weight: 500; }

/* ===== HOW ===== */
.how { background: var(--bg-card); border-top: 1px solid var(--border); padding: 100px 0; }
.how-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.how-header { text-align: center; margin-bottom: 64px; }
.how-eyebrow { display: inline-block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 16px; }
.how-header h2 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); letter-spacing: 0.02em; color: var(--text); }
.how-columns { display: grid; grid-template-columns: 1fr 1px 1fr; gap: 40px; align-items: start; }
.how-divider { background: var(--border); height: 100%; min-height: 400px; }
.how-col-header { display: flex; align-items: center; gap: 14px; margin-bottom: 32px; }
.col-icon { width: 40px; height: 40px; border-radius: 10px; }
.col-icon-creator { background: var(--accent-dim); border: 1px solid rgba(245,166,35,0.3); }
.col-icon-brand { background: rgba(100,100,255,0.1); border: 1px solid rgba(100,100,255,0.2); }
.how-col h3 { font-family: var(--font-display); font-size: 28px; letter-spacing: 0.04em; color: var(--text); }
.how-list { list-style: none; display: flex; flex-direction: column; gap: 28px; }
.how-list li { display: flex; gap: 16px; align-items: flex-start; }
.how-num { font-family: var(--font-display); font-size: 28px; color: var(--accent); flex-shrink: 0; line-height: 1.1; }
.how-list strong { font-size: 16px; font-weight: 600; color: var(--text); display: block; margin-bottom: 4px; }
.how-list p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* ===== CLOSING ===== */
.closing { padding: 100px 0 80px; }
.closing-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.closing-content { max-width: 760px; margin: 0 auto; text-align: center; }
.closing-content h2 { font-family: var(--font-display); font-size: clamp(36px, 4.5vw, 58px); line-height: 1.05; letter-spacing: 0.02em; color: var(--text); margin-bottom: 24px; }
.closing-content h2 em { color: var(--accent); font-style: normal; }
.closing-content p { font-size: 18px; color: var(--text-muted); line-height: 1.6; margin-bottom: 32px; }
.closing-trades { font-size: 14px; color: var(--text-dim); display: flex; justify-content: center; flex-wrap: wrap; gap: 4px; margin-bottom: 20px; }
.closing-trades .sep { color: var(--text-dim); }
.closing-tagline { font-family: var(--font-display); font-size: 18px; letter-spacing: 0.08em; color: var(--accent); text-transform: uppercase; }

/* ===== FOOTER ===== */
.footer { border-top: 1px solid var(--border); padding: 32px 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 16px; letter-spacing: 0.08em; color: var(--text-muted); }
.footer-note { font-size: 13px; color: var(--text-dim); }

/* ===== CREATORS SECTION ===== */
.creators-section, .brand-section, .profile-section { max-width: 1200px; margin: 0 auto; padding: 60px 24px; }
.creators-header, .brand-header, .profile-header { text-align: center; margin-bottom: 40px; }
.creators-title, .brand-title { font-family: var(--font-display); font-size: clamp(36px, 4vw, 52px); color: var(--text); letter-spacing: 0.02em; margin-bottom: 12px; }
.creators-subtitle, .brand-subtitle { font-size: 16px; color: var(--text-muted); }
.profile-not-found { text-align: center; padding: 80px 0; }
.profile-not-found h2 { font-family: var(--font-display); font-size: 32px; color: var(--text); margin-bottom: 16px; }
.profile-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, #333 0%, #444 100%); margin: 0 auto 20px; }
.profile-name { font-family: var(--font-display); font-size: 28px; color: var(--text); letter-spacing: 0.04em; margin-bottom: 8px; }
.profile-trade { background: var(--accent-dim); border: 1px solid rgba(245,166,35,0.3); border-radius: 100px; padding: 6px 16px; font-size: 14px; color: var(--accent); font-weight: 500; display: inline-block; }
.profile-content { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; }
.profile-card { background: var(--bg-card); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 24px; }
.profile-card h3 { font-family: var(--font-display); font-size: 18px; color: var(--text); letter-spacing: 0.04em; margin-bottom: 12px; }
.profile-value { font-size: 15px; color: var(--text); line-height: 1.6; }
.profile-empty { font-size: 14px; color: var(--text-dim); font-style: italic; }
.platform-links { display: flex; flex-wrap: wrap; gap: 12px; }
.platform-link { background: var(--accent-dim); border: 1px solid rgba(245,166,35,0.3); border-radius: 8px; padding: 8px 16px; font-size: 14px; color: var(--accent); text-decoration: none; transition: border-color 0.2s; }
.platform-link:hover { border-color: var(--accent); }
.back-link { display: inline-block; margin-bottom: 24px; color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.back-link:hover { color: var(--accent); }

/* Creator card grid */
.creator-filter-bar, .brand-filter-bar { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; padding: 16px; background: var(--bg-card); border: 1px solid var(--card-border); border-radius: var(--radius-lg); }
.brand-filter-label { font-size: 14px; color: var(--text-muted); display: flex; align-items: center; margin-right: 8px; }
.filter-link { background: transparent; border: 1px solid var(--card-border); border-radius: 100px; padding: 8px 16px; font-size: 13px; color: var(--text-muted); text-decoration: none; transition: border-color 0.2s, color 0.2s; text-transform: capitalize; }
.filter-link:hover, .filter-link.active { border-color: var(--accent); color: var(--accent); }
.filter-link.active { background: var(--accent-dim); }
.creators-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.creators-empty { text-align: center; padding: 60px 0; color: var(--text-muted); grid-column: 1 / -1; }
.creator-card { background: var(--bg-card); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 24px; display: flex; flex-direction: column; gap: 16px; transition: border-color 0.2s; }
.creator-card:hover { border-color: var(--accent); }
.creator-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, #333 0%, #444 100%); }
.creator-info { flex: 1; }
.creator-name { font-family: var(--font-display); font-size: 18px; color: var(--text); letter-spacing: 0.04em; margin-bottom: 4px; }
.creator-trade { font-size: 14px; color: var(--accent); font-weight: 500; text-transform: capitalize; }
.creator-badge { display: inline-block; background: var(--accent-dim); border: 1px solid rgba(245,166,35,0.3); border-radius: 100px; padding: 4px 12px; font-size: 11px; color: var(--accent); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin-top: 8px; }
.creator-focus { font-size: 13px; color: var(--text-muted); margin-top: 8px; line-height: 1.5; }
.creator-view-btn { display: inline-block; background: var(--orange); color: #0E2A39; border-radius: var(--radius); padding: 10px 20px; font-size: 14px; font-weight: 600; text-decoration: none; text-align: center; transition: opacity 0.2s; }
.creator-view-btn:hover { opacity: 0.9; }

/* ===== BRAND ONBOARDING ===== */
.onboarding-section { max-width: 700px; margin: 0 auto; padding: 60px 24px; }
.onboarding-header { text-align: center; margin-bottom: 40px; }
.onboarding-title { font-family: var(--font-display); font-size: clamp(36px, 4vw, 52px); color: var(--text); letter-spacing: 0.02em; margin-bottom: 12px; }
.onboarding-subtitle { font-size: 16px; color: var(--text-muted); }
.onboarding-form { display: flex; flex-direction: column; gap: 24px; }
.onboarding-card { background: var(--bg-card); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 24px; }
.form-label { display: block; font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 8px; }
.form-input, .form-select, .form-textarea { width: 100%; background: var(--bg); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 12px 16px; font-size: 15px; color: var(--text); font-family: var(--font-body); transition: border-color 0.2s; }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--accent); }
.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 100px; }
.checkbox-group { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.checkbox-item { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.checkbox-item input { accent-color: var(--accent); width: 16px; height: 16px; }
.checkbox-item span { font-size: 14px; color: var(--text-muted); text-transform: capitalize; }
.brand-cta-btn { display: block; background: var(--orange); color: #0E2A39; border: none; border-radius: var(--radius); padding: 14px 28px; font-size: 16px; font-weight: 600; cursor: pointer; transition: opacity 0.2s; text-align: center; text-decoration: none; margin-top: 28px; }
.brand-cta-btn:hover { opacity: 0.9; }

/* Brand Dashboard Shortlist */
.shortlist-bar { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; padding: 16px; background: var(--bg-card); border: 1px solid var(--card-border); border-radius: var(--radius-lg); flex-wrap: wrap; }
.shortlist-label { font-size: 14px; color: var(--text-muted); margin-right: 8px; }
.shortlist-count { font-family: var(--font-display); font-size: 20px; color: var(--accent); }
.shortlist-empty { font-size: 14px; color: var(--text-dim); font-style: italic; }

/* ===== SHORTLIST BUTTON ===== */
.shortlist-btn { position: absolute; top: 14px; right: 14px; background: rgba(14,42,57,0.6); border: 1px solid var(--card-border); border-radius: 50%; width: 36px; height: 36px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s, border-color 0.2s, transform 0.15s; z-index: 2; }
.shortlist-btn .heart-icon { width: 16px; height: 16px; color: var(--text-muted); transition: color 0.2s, fill 0.2s; }
.shortlist-btn:hover { background: var(--accent-dim); border-color: var(--accent); transform: scale(1.1); }
.shortlist-btn.saved { background: var(--accent-dim); border-color: var(--accent); }
.shortlist-btn.saved .heart-icon { color: var(--orange); fill: var(--orange); stroke: var(--orange); }

/* Nav Saved Badge */
.nav-saved-badge { display: inline-block; font-size: 12px; font-weight: 600; color: var(--orange); text-decoration: none; padding: 4px 10px; border: 1px solid var(--accent); border-radius: 100px; transition: background 0.2s, color 0.2s; }
.nav-saved-badge:hover { background: var(--accent); color: #0E2A39; }

/* Profile Shortlist Button */
.pf-shortlist-btn { display: flex; align-items: center; gap: 6px; background: var(--bg); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 10px 16px; font-size: 14px; font-weight: 600; cursor: pointer; transition: background 0.2s, border-color 0.2s, color 0.2s; color: var(--text-muted); }
.pf-shortlist-btn .heart-icon { width: 16px; height: 16px; transition: color 0.2s, fill 0.2s; }
.pf-shortlist-btn:hover { border-color: var(--accent); color: var(--accent); }
.pf-shortlist-btn.saved { background: var(--accent-dim); border-color: var(--accent); color: var(--orange); }
.pf-shortlist-btn.saved .heart-icon { color: var(--orange); fill: var(--orange); stroke: var(--orange); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .hero-bottom-bar { flex-direction: column; gap: 20px; }
  .bar-divider { display: none; }
  .bar-stat { justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
  .how-columns { grid-template-columns: 1fr; }
  .how-divider { display: none; }
  .proof-brands { gap: 20px; }
  .nav-tagline { display: none; }
  .nav-cta-link { display: none; }
}
/* ===== PROFILE SHOWCASE ===== */
.pf-hero { background: var(--bg-card); border-bottom: 1px solid var(--border); padding: 48px 0 40px; }
.pf-hero-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: flex; align-items: flex-start; gap: 28px; }
.pf-avatar-wrap { position: relative; flex-shrink: 0; }
.pf-avatar-img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; border: 3px solid var(--card-border); }
.pf-avatar-placeholder { width: 96px; height: 96px; border-radius: 50%; background: linear-gradient(135deg, var(--orange) 0%, #c03518 100%); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 28px; font-weight: 700; color: #fff; letter-spacing: 0.04em; border: 3px solid rgba(236,71,36,0.3); }
.pf-avatar-badge { position: absolute; bottom: 2px; right: -4px; background: var(--orange); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 7px; border-radius: 100px; font-family: var(--font-display); letter-spacing: 0.04em; }
.pf-hero-info { flex: 1; min-width: 0; }
.pf-trade-pill { background: var(--accent-dim); border: 1px solid rgba(236,71,36,0.3); border-radius: 100px; padding: 4px 14px; font-size: 13px; color: var(--accent); font-weight: 500; display: inline-block; margin-bottom: 10px; text-transform: capitalize; }
.pf-name { font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px); color: var(--text); letter-spacing: 0.02em; line-height: 1.1; margin-bottom: 10px; }
.pf-bio { font-size: 15px; color: var(--text-muted); line-height: 1.6; max-width: 560px; margin-bottom: 16px; }
.pf-meta-row { display: flex; flex-wrap: wrap; gap: 16px; }
.pf-meta-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-dim); }
.pf-meta-item svg { flex-shrink: 0; }
.pf-hero-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; flex-shrink: 0; }
.pf-back-btn { font-size: 13px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; padding: 6px 0; }
.pf-back-btn:hover { color: var(--accent); }
.pf-edit-btn { background: var(--orange); color: #fff; border-radius: var(--radius); padding: 9px 18px; font-size: 13px; font-weight: 600; text-decoration: none; transition: opacity 0.2s; white-space: nowrap; }
.pf-edit-btn:hover { opacity: 0.88; }

/* Profile Body */
.pf-body { max-width: 1100px; margin: 0 auto; padding: 40px 24px 80px; display: flex; flex-direction: column; gap: 0; }
.pf-section { padding: 32px 0; border-bottom: 1px solid var(--border); }
.pf-section:last-child { border-bottom: none; }
.pf-section-label { font-family: var(--font-display); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-dim); margin-bottom: 20px; }

/* Certifications / Badges */
.pf-badges-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pf-badge { display: flex; align-items: center; gap: 10px; background: var(--bg-card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 10px 16px; font-size: 14px; color: var(--text); font-weight: 500; transition: border-color 0.2s; }
.pf-badge:hover { border-color: var(--accent); }
.pf-badge-icon { color: #22c55e; flex-shrink: 0; }

/* Portfolio Gallery */
.pf-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.pf-gallery-item { background: var(--bg-card); border: 1px solid var(--card-border); border-radius: var(--radius-lg); overflow: hidden; transition: border-color 0.2s, transform 0.2s; cursor: pointer; }
.pf-gallery-item:hover { border-color: var(--accent); transform: translateY(-2px); }
.pf-gallery-media { aspect-ratio: 16/9; overflow: hidden; background: var(--bg); }
.pf-gallery-media img, .pf-gallery-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.pf-gallery-caption { padding: 12px 16px; }
.pf-gallery-caption strong { display: block; font-size: 14px; color: var(--text); margin-bottom: 2px; }
.pf-gallery-caption { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.pf-gallery-year { display: block; font-size: 11px; color: var(--text-dim); margin-top: 4px; }

/* Two-column: Timeline + Tools */
.pf-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 0; border-bottom: 1px solid var(--border); }
.pf-two-col .pf-section { border-bottom: none; padding: 32px 0; }
.pf-two-col .pf-section:first-child { border-right: 1px solid var(--border); padding-right: 32px; }
.pf-two-col .pf-section:last-child { padding-left: 32px; }

/* Work History Timeline */
.pf-timeline { display: flex; flex-direction: column; gap: 0; }
.pf-timeline-item { display: flex; gap: 16px; position: relative; padding-bottom: 24px; }
.pf-timeline-item:last-child { padding-bottom: 0; }
.pf-timeline-item:not(:last-child)::before { content: ''; position: absolute; left: 6px; top: 20px; bottom: 0; width: 1px; background: var(--border); }
.pf-timeline-dot { width: 13px; height: 13px; border-radius: 50%; background: var(--orange); border: 2px solid var(--bg); flex-shrink: 0; margin-top: 4px; z-index: 1; }
.pf-timeline-content { flex: 1; min-width: 0; }
.pf-timeline-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 4px; }
.pf-timeline-role { font-size: 15px; font-weight: 600; color: var(--text); line-height: 1.3; }
.pf-timeline-company { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.pf-timeline-date { font-size: 12px; color: var(--text-dim); white-space: nowrap; font-family: var(--font-display); }
.pf-timeline-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* Tools Proficiency */
.pf-tools-list { display: flex; flex-direction: column; gap: 16px; }
.pf-tool-item { }
.pf-tool-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.pf-tool-name { font-size: 14px; font-weight: 500; color: var(--text); }
.pf-tool-pct { font-size: 12px; color: var(--accent); font-family: var(--font-display); }
.pf-tool-bar { height: 4px; background: var(--bg); border-radius: 2px; overflow: hidden; }
.pf-tool-fill { height: 100%; background: linear-gradient(90deg, var(--orange) 0%, #ff7a5c 100%); border-radius: 2px; transition: width 0.4s ease; }

/* Content Focus */
.pf-section--focus .pf-focus-text { font-size: 15px; color: var(--text-muted); line-height: 1.7; max-width: 680px; }

/* Platform Links */
.pf-platform-links { display: flex; flex-wrap: wrap; gap: 10px; }
.pf-platform-link { display: flex; align-items: center; gap: 8px; background: var(--bg-card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 10px 18px; font-size: 14px; color: var(--text-muted); text-decoration: none; font-weight: 500; transition: border-color 0.2s, color 0.2s; }
.pf-platform-link:hover { border-color: var(--accent); color: var(--accent); }
.pf-platform-link svg { opacity: 0.5; }

/* Edit Form */
.pf-edit-page { max-width: 760px; margin: 0 auto; padding: 48px 24px 80px; }
.pf-edit-header { margin-bottom: 36px; }
.pf-edit-header .pf-back-btn { display: inline-block; margin-bottom: 16px; }
.pf-edit-title { font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px); color: var(--text); letter-spacing: 0.02em; }
.pf-edit-form { display: flex; flex-direction: column; gap: 0; }
.pf-edit-section { padding: 28px 0; border-bottom: 1px solid var(--border); }
.pf-edit-section:last-of-type { border-bottom: none; }
.pf-edit-section-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--text); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 20px; }
.pf-edit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pf-field { display: flex; flex-direction: column; gap: 8px; }
.pf-field--full { grid-column: 1 / -1; }
.pf-field label { font-size: 13px; font-weight: 500; color: var(--text-muted); }
.pf-label-hint { font-size: 12px; color: var(--text-dim); font-weight: 400; }
.pf-portfolio-hint { margin-bottom: 8px; }
.pf-edit-grid input[type="text"],
.pf-edit-grid input[type="number"],
.pf-edit-grid input[type="url"],
.pf-edit-grid textarea { background: var(--bg); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 11px 14px; font-size: 14px; color: var(--text); font-family: var(--font-body); width: 100%; transition: border-color 0.2s; }
.pf-edit-grid input:focus,
.pf-edit-grid textarea:focus { outline: none; border-color: var(--accent); }
.pf-edit-grid textarea { resize: vertical; min-height: 80px; }
.pf-edit-actions { display: flex; align-items: center; gap: 16px; padding: 32px 0 0; }
.pf-save-btn { background: var(--orange); color: #fff; border: none; border-radius: var(--radius); padding: 13px 28px; font-size: 15px; font-weight: 600; cursor: pointer; transition: opacity 0.2s; font-family: var(--font-body); }
.pf-save-btn:hover { opacity: 0.88; }
.pf-cancel-btn { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.pf-cancel-btn:hover { color: var(--text); }

/* Creator Onboarding Form */
.form-section-label { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--text); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 20px; }
.onboarding-checkboxes { display: flex; flex-wrap: wrap; gap: 12px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .pf-hero-inner { flex-wrap: wrap; }
  .pf-hero-actions { flex-direction: row; align-items: center; }
  .pf-two-col { grid-template-columns: 1fr; }
  .pf-two-col .pf-section:first-child { border-right: none; padding-right: 0; border-bottom: 1px solid var(--border); }
  .pf-two-col .pf-section:last-child { padding-left: 0; }
  .pf-edit-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .pf-gallery { grid-template-columns: 1fr; }
  .pf-edit-page { padding: 32px 16px 60px; }
}

/* ===== CAMPAIGN BRIEF FORM ===== */
.brief-field { display: flex; flex-direction: column; gap: 6px; }
.budget-select { appearance: none; cursor: pointer; }
.deliverables-textarea { resize: vertical; min-height: 100px; }

/* ===== BRAND DISCOVERY ===== */
.brand-discovery { background: var(--bg-card); border-top: 1px solid var(--border); padding: 60px 0 80px; }
.brand-discovery-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.discovery-header { text-align: center; margin-bottom: 40px; }
.discovery-title { font-family: var(--font-display); font-size: clamp(28px, 3vw, 42px); color: var(--text); letter-spacing: 0.02em; margin-bottom: 8px; }
.discovery-subtitle { font-size: 16px; color: var(--text-muted); }

/* Creator card portfolio highlights */
.card-portfolio-thumb { width: 100%; aspect-ratio: 16/9; overflow: hidden; border-radius: var(--radius); margin-bottom: 4px; background: var(--bg); flex-shrink: 0; }
.card-portfolio-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-skills-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.card-experience { font-size: 12px; color: var(--text-dim); margin-top: 6px; font-family: var(--font-display); }

@media (max-width: 768px) {
  .onboarding-form { gap: 16px; }
  .creators-grid { grid-template-columns: 1fr; }
}

/* ── Contact Creator Modal ── */
.cm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 42, 57, 0.75);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cm-modal {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 48px rgba(0,0,0,0.25);
  font-family: var(--font-display, 'Nunito Sans', Arial, sans-serif);
}

.cm-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.15s;
}
.cm-close:hover { background: var(--bg); }

.cm-header { margin-bottom: 24px; }
.cm-title { font-size: 22px; font-weight: 700; color: var(--text); margin: 0 0 4px; }
.cm-subtitle { font-size: 14px; color: var(--text-muted); margin: 0; }

.cm-field { margin-bottom: 16px; }
.cm-field label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em; }
.cm-field input, .cm-field select, .cm-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #d0dce4;
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-display, 'Nunito Sans', Arial, sans-serif);
  color: var(--text);
  background: #fafcfe;
  box-sizing: border-box;
  transition: border-color 0.15s;
  outline: none;
}
.cm-field input:focus, .cm-field select:focus, .cm-field textarea:focus { border-color: var(--orange); }
.cm-field textarea { resize: vertical; }

.cm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.cm-submit {
  width: 100%;
  padding: 13px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-display, 'Nunito Sans', Arial, sans-serif);
  transition: background 0.15s;
  margin-top: 4px;
}
.cm-submit:hover:not(:disabled) { background: #c93a1c; }
.cm-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.cm-error {
  margin-top: 12px;
  padding: 10px;
  background: #fff5f3;
  border: 1px solid #ffcdc7;
  border-radius: 6px;
  color: #c9300a;
  font-size: 13px;
}

/* Success state */
.cm-success {
  text-align: center;
  padding: 16px 0;
}
.cm-check {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e6f9f0;
  color: #1a8a4a;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-weight: 700;
}
.cm-success h3 { font-size: 20px; color: var(--text); margin: 0 0 8px; }
.cm-success p { font-size: 14px; color: var(--text-muted); margin: 0 0 24px; }

/* Contact Creator button in profile */
.pf-contact-btn {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-display, 'Nunito Sans', Arial, sans-serif);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
  display: inline-block;
}
.pf-contact-btn:hover { background: #c93a1c; }

@media (max-width: 480px) {
  .cm-modal { padding: 20px; }
  .cm-row { grid-template-columns: 1fr; gap: 0; }
}

/* ===== BRAND DASHBOARD ===== */
.dash-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.dash-header {
  margin-bottom: 32px;
}
.dash-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--text);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.dash-subtitle {
  font-size: 16px;
  color: var(--text-muted);
}

/* Stats Row */
.dash-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}
.dash-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 100px;
}
.dash-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--orange);
  line-height: 1;
}
.dash-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.dash-stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* Sections */
.dash-section {
  margin-bottom: 48px;
}
.dash-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.dash-section-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text);
  letter-spacing: 0.04em;
}
.dash-link {
  font-size: 14px;
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}
.dash-link:hover { opacity: 0.8; }

/* Empty State */
.dash-empty {
  text-align: center;
  padding: 48px 24px;
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
}
.dash-empty p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.dash-empty-cta {
  display: inline-block;
  background: var(--orange);
  color: #0E2A39;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.dash-empty-cta:hover { opacity: 0.88; }

/* Dashboard Creator Card */
.dash-card-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.dash-inquiry-btn {
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  font-family: var(--font-body);
}
.dash-inquiry-btn:hover { border-color: var(--accent); color: var(--accent); }

.card-location {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 4px;
}

/* Inquiry Table */
.dash-inquiry-list {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.dash-inquiry-header {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1fr 1fr;
  padding: 14px 20px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  font-family: var(--font-display);
  font-weight: 600;
}
.dash-inquiry-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1fr 1fr;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
  align-items: center;
}
.dash-inquiry-row:last-child { border-bottom: none; }
.dash-inquiry-row:hover { background: var(--bg-card-hover); }

.dash-inq-creator a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.dash-inq-creator a:hover { color: var(--orange); }
.dash-inq-project, .dash-inq-budget {
  color: var(--text-muted);
}
.dash-inq-date { color: var(--text-dim); font-size: 13px; }

/* Status Badges */
.dash-status--new { color: var(--sky-blue); font-weight: 600; }
.dash-status--responded { color: #22c55e; font-weight: 600; }
.dash-status--closed { color: var(--text-dim); }

/* Responsive */
@media (max-width: 768px) {
  .dash-stats { gap: 12px; padding: 16px 20px; }
  .dash-stat-sep { display: none; }
  .dash-stat { min-width: 80px; }
  .dash-stat-num { font-size: 28px; }
  .dash-inquiry-header { grid-template-columns: 1.5fr 1fr 1fr; }
  .dash-inquiry-row { grid-template-columns: 1.5fr 1fr 1fr; }
  .dash-inq-date { display: none; }
  .dash-section-header { flex-direction: column; gap: 8px; }
}
@media (max-width: 480px) {
  .dash-container { padding: 32px 16px 60px; }
  .dash-inquiry-header { grid-template-columns: 1fr 1fr; }
  .dash-inquiry-row { grid-template-columns: 1fr 1fr; }
  .dash-inq-budget { display: none; }
  .creators-grid { grid-template-columns: 1fr; }
}

/* ── Creator Login Page ── */
.login-page {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}
.login-card {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 420px;
  text-align: center;
}
.login-logo { margin-bottom: 24px; display: flex; justify-content: center; }
.login-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.login-subtitle { font-size: 15px; color: var(--text-muted); margin-bottom: 32px; }
.login-error {
  background: rgba(236,71,36,0.1);
  border: 1px solid rgba(236,71,36,0.4);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--orange);
  font-size: 14px;
  margin-bottom: 20px;
  text-align: left;
}
.login-success {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #4ade80;
  font-size: 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}
.login-check { font-size: 20px; flex-shrink: 0; }
.login-form { display: flex; flex-direction: column; gap: 16px; }
.login-field { display: flex; flex-direction: column; gap: 8px; text-align: left; }
.login-field label { font-size: 13px; font-weight: 500; color: var(--text-muted); }
.login-field input {
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text);
  font-family: var(--font-body);
  transition: border-color 0.2s;
}
.login-field input:focus { outline: none; border-color: var(--accent); }
.login-btn {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: opacity 0.2s;
  margin-top: 8px;
}
.login-btn:hover { opacity: 0.88; }
.login-footer { margin-top: 28px; display: flex; flex-direction: column; gap: 6px; }
.login-footer p { font-size: 14px; color: var(--text-dim); }
.login-footer a { color: var(--sky-blue); text-decoration: none; transition: color 0.2s; }
.login-footer a:hover { color: var(--accent); }

/* ── Creator Inbox ── */
.inbox-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.inbox-header { margin-bottom: 32px; }
.inbox-title-row { display: flex; align-items: baseline; gap: 16px; margin-bottom: 8px; }
.inbox-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.inbox-count-label { font-size: 14px; color: var(--text-dim); font-family: var(--font-display); }
.inbox-subtitle { font-size: 16px; color: var(--text-muted); }

/* Stats Row */
.inbox-stats {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  margin-bottom: 40px;
  gap: 16px;
}
.inbox-stat { display: flex; flex-direction: column; gap: 4px; }
.inbox-stat-num { font-family: var(--font-display); font-size: 36px; color: var(--orange); line-height: 1; }
.inbox-stat-label { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.inbox-stat-sep { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* Inquiry Cards */
.inbox-list { display: flex; flex-direction: column; gap: 16px; }
.inquiry-card {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color 0.2s;
}
.inquiry-card--unread {
  border-color: rgba(236,71,36,0.3);
  border-left: 3px solid var(--orange);
}
.inquiry-card:hover { border-color: rgba(151,192,215,0.35); }
.inquiry-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 12px; }
.inquiry-brand-info { display: flex; flex-direction: column; gap: 2px; }
.inquiry-brand-name { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--text); letter-spacing: 0.02em; }
.inquiry-brand-company { font-size: 13px; color: var(--text-muted); }
.inquiry-brand-email { font-size: 13px; color: var(--text-dim); }
.inquiry-meta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.inquiry-budget {
  background: rgba(151,192,215,0.12);
  border: 1px solid rgba(151,192,215,0.25);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--sky-blue);
  font-family: var(--font-display);
  font-weight: 600;
}
.inquiry-new-badge {
  background: var(--accent);
  color: #fff;
  border-radius: 100px;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-family: var(--font-display);
}
.inquiry-time { font-size: 12px; color: var(--text-dim); white-space: nowrap; }
.inquiry-project-type { font-size: 14px; color: var(--accent); font-weight: 500; margin-bottom: 10px; font-family: var(--font-display); }
.inquiry-message {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.inquiry-actions { display: flex; gap: 10px; }
.inquiry-reply-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.inquiry-reply-btn:hover { opacity: 0.88; }

/* Empty State */
.inbox-empty {
  text-align: center;
  padding: 64px 24px;
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
}
.inbox-empty-icon { display: flex; justify-content: center; margin-bottom: 24px; }
.inbox-empty-title { font-family: var(--font-display); font-size: 24px; color: var(--text); letter-spacing: 0.02em; margin-bottom: 12px; }
.inbox-empty-body { font-size: 15px; color: var(--text-muted); line-height: 1.6; max-width: 420px; margin: 0 auto 24px; }
.inbox-edit-profile-btn { display: inline-block; background: var(--orange); color: #fff; padding: 12px 24px; border-radius: var(--radius); font-size: 15px; font-weight: 600; text-decoration: none; transition: opacity 0.2s; }
.inbox-edit-profile-btn:hover { opacity: 0.88; }

/* Nav Inbox Badge */
.nav-inbox-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--sky-blue);
  text-decoration: none;
  padding: 4px 10px;
  border: 1px solid var(--sky-blue);
  border-radius: 100px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.nav-inbox-badge:hover { background: var(--sky-blue); color: var(--dark-blue); }

/* ── Profile Inbox Link ── */
.pf-inbox-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.pf-inbox-btn:hover { border-color: var(--sky-blue); color: var(--sky-blue); }

@media (max-width: 768px) {
  .inquiry-card-top { flex-direction: column; }
  .inbox-stats { padding: 16px 20px; }
  .inbox-stat-num { font-size: 28px; }
}
