/* ChatMeFanz — shared styles */
:root{
  --ink:#14121b;
  --ink-2:#1c1926;
  --ink-3:#252132;
  --paper:#f6f1e8;
  --pink:#ff4f7b;
  --pink-soft:#ff8aa8;
  --gold:#f0bd4c;
  --slate:#9c93ab;
  --slate-dim:#6e6580;
  --white:#f8f6f2;
  --line: rgba(246,241,232,0.12);
  --radius: 18px;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--ink);
  color:var(--white);
  font-family:'Inter', sans-serif;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3{
  font-family:'Fraunces', serif;
  margin:0;
  font-weight:600;
  letter-spacing:-0.01em;
}
.mono{ font-family:'IBM Plex Mono', monospace; }
.eyebrow{
  font-family:'IBM Plex Mono', monospace;
  font-size:12px;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--pink-soft);
  display:flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{
  content:'';
  width:18px;
  height:1px;
  background:var(--pink-soft);
  display:inline-block;
}
a{color:inherit;}
:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:3px;
}
.wrap{
  max-width:1180px;
  margin:0 auto;
  padding:0 32px;
}

/* NAV */
nav{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(20,18,27,0.82);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  max-width:1180px;
  margin:0 auto;
  padding:18px 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.logo{
  font-family:'Fraunces', serif;
  font-size:20px;
  font-weight:600;
  letter-spacing:-0.02em;
  text-decoration:none;
  color:var(--white);
  white-space:nowrap;
}
.logo em{
  font-style:italic;
  font-weight:400;
  color:var(--pink);
}
.nav-links{
  display:flex;
  align-items:center;
  gap:26px;
  font-size:14px;
  color:var(--slate);
}
.nav-links a{ text-decoration:none; transition:color .2s ease; }
.nav-links a:hover{ color:var(--white); }
.nav-links a.active{ color:var(--pink); font-weight:700; }
.nav-links a.active:hover{ color:var(--pink); }
.nav-right{ display:flex; align-items:center; gap:18px; }
.nav-cta{
  font-family:'IBM Plex Mono', monospace;
  font-size:13px;
  border:1px solid var(--pink);
  color:var(--white);
  background:transparent;
  padding:10px 18px;
  border-radius:100px;
  cursor:pointer;
  transition:background .2s ease, color .2s ease;
  text-decoration:none;
  white-space:nowrap;
}
.nav-cta:hover{ background:var(--pink); }

/* BUTTONS */
.btn-primary{
  background:var(--pink);
  color:var(--ink);
  font-weight:600;
  border:none;
  padding:14px 26px;
  border-radius:100px;
  cursor:pointer;
  font-size:15px;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:transform .15s ease, box-shadow .15s ease;
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 10px 24px rgba(255,79,123,0.25); }
.btn-ghost{
  background:transparent;
  color:var(--white);
  border:1px solid var(--line);
  padding:14px 26px;
  border-radius:100px;
  cursor:pointer;
  font-size:15px;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.btn-gold{
  background:var(--gold);
  color:var(--ink);
  font-weight:600;
  border:none;
  padding:14px 26px;
  border-radius:100px;
  cursor:pointer;
  font-size:15px;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:transform .15s ease, box-shadow .15s ease;
}
.btn-gold:hover{ transform:translateY(-2px); box-shadow:0 10px 24px rgba(240,189,76,0.22); }

/* SECTIONS */
section{ padding:88px 0; }
.section-head{ margin-bottom:52px; max-width:640px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(28px,3.4vw,42px); margin:14px 0 12px; }
.section-head p{ color:var(--slate); font-size:16px; line-height:1.6; }

/* STEPS */
.steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
  border-radius:20px;
  overflow:hidden;
}
.step{ background:var(--ink); padding:36px 30px; }
.step-num{
  font-family:'IBM Plex Mono', monospace;
  color:var(--pink);
  font-size:13px;
  margin-bottom:18px;
  display:block;
}
.step h3{ font-size:20px; margin-bottom:10px; font-weight:500; }
.step p{ color:var(--slate); font-size:14.5px; line-height:1.6; }

/* FORMATS STRIP */
.formats{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.format-card{
  border:1px solid var(--line);
  border-radius:18px;
  padding:28px;
  background:var(--ink-2);
}
.format-card .fc-icon{
  width:38px;height:38px;
  border-radius:10px;
  background:var(--ink-3);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:16px;
  color:var(--pink-soft);
}
.format-card h3{ font-size:18px; margin-bottom:8px; font-weight:500; }
.format-card p{ color:var(--slate); font-size:14px; line-height:1.6; margin-bottom:14px;}
.format-card .fc-range{ font-family:'IBM Plex Mono', monospace; font-size:13px; color:var(--gold); }

/* TRUST */
.trust-grid{ display:grid; grid-template-columns: 0.9fr 1.1fr; gap:60px; align-items:center; }
.trust-list{ list-style:none; margin:0; padding:0; }
.trust-list li{ display:flex; gap:16px; padding:20px 0; border-top:1px solid var(--line); }
.trust-list li:last-child{ border-bottom:1px solid var(--line); }
.trust-list .ti{ font-family:'IBM Plex Mono', monospace; color:var(--pink); font-size:13px; padding-top:2px; }
.trust-list h4{ font-size:16px; font-weight:600; margin:0 0 6px; }
.trust-list p{ color:var(--slate); font-size:14px; line-height:1.6; margin:0; }

.example-card{ background:var(--ink-2); border:1px solid var(--line); border-radius:20px; padding:32px; }
.example-card .ec-tag{
  font-family:'IBM Plex Mono', monospace;
  font-size:11px;
  color:var(--slate-dim);
  text-transform:uppercase;
  letter-spacing:0.1em;
  margin-bottom:20px;
  display:block;
}
.ec-row{ display:flex; justify-content:space-between; padding:14px 0; border-top:1px dashed var(--line); font-size:14px; }
.ec-row:first-of-type{ border-top:none; }
.ec-row span:last-child{ font-family:'IBM Plex Mono', monospace; color:var(--white); }
.ec-total{ display:flex; justify-content:space-between; margin-top:18px; padding-top:18px; border-top:1px solid var(--line); font-size:16px; }
.ec-total b{ font-family:'IBM Plex Mono', monospace; color:var(--gold); font-size:20px; }

/* CTA */
.cta-section{ background:var(--ink-2); border-radius:28px; padding:64px; text-align:center; margin:0 32px; }
.cta-section h2{ font-size:clamp(28px,4vw,44px); margin-bottom:14px; }
.cta-section p{ color:var(--slate); max-width:52ch; margin:0 auto 32px; font-size:16px; line-height:1.6;}
.cta-form{ display:flex; gap:10px; max-width:460px; margin:0 auto; flex-wrap:wrap; justify-content:center; }
.cta-form input{
  flex:1;
  min-width:220px;
  padding:14px 18px;
  border-radius:100px;
  border:1px solid var(--line);
  background:var(--ink);
  color:var(--white);
  font-family:'Inter';
  font-size:14px;
}
.cta-form input::placeholder{ color:var(--slate-dim); }

/* TALENT CARDS (shared: featured section + browse page) */
.talent-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.talent-card{
  border:1px solid var(--line);
  border-radius:18px;
  background:var(--ink-2);
  padding:22px;
  text-decoration:none;
  color:var(--white);
  display:block;
  transition:transform .18s ease, border-color .18s ease;
}
.talent-card:hover{ transform:translateY(-4px); border-color:var(--pink); }
.tc-avatar-wrap{ position:relative; width:56px; height:70px; margin-bottom:16px; }
.tc-avatar-wrap .tc-avatar{ position:absolute; inset:0; width:100%; height:100%; margin-bottom:0; }
.tc-photo{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  border-radius:10px;
}
.talent-card .tc-avatar{
  width:56px; height:70px;
  border-radius:10px;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:5px;
  border:1.5px dashed rgba(20,18,27,0.38);
  font-family:'IBM Plex Mono', monospace; font-weight:600; font-size:10px;
  letter-spacing:0.04em; text-transform:uppercase;
  color:#14121b;
  position:relative;
}
.talent-card .tc-avatar::before{
  content:'';
  width:18px; height:18px;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314121b' stroke-width='1.8'><path d='M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z'/><circle cx='12' cy='13' r='4'/></svg>");
  background-repeat:no-repeat;
  background-size:contain;
  opacity:0.6;
}
.talent-card .tc-name{ font-size:16px; font-weight:600; margin-bottom:4px; }
.talent-card .tc-cat{
  font-family:'IBM Plex Mono', monospace;
  font-size:11px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--slate);
  margin-bottom:14px;
}
.talent-card .tc-foot{ display:flex; justify-content:flex-end; align-items:center; font-size:13px; }
.talent-card .tc-price{ font-family:'IBM Plex Mono', monospace; color:var(--gold); }
.talent-card .tc-arrow{ color:var(--pink-soft); font-family:'IBM Plex Mono', monospace; font-size:12px; }

.featured-foot{ text-align:center; margin-top:36px; }

/* SEARCH + CATEGORY FILTER (browse page) */
.browse-controls{
  display:flex;
  flex-direction:column;
  align-items:stretch;
  gap:14px;
  margin-bottom:34px;
}
.search-box{
  position:relative;
  flex:1;
  min-width:240px;
  max-width:420px;
}
.search-box svg{
  position:absolute;
  left:16px; top:50%;
  transform:translateY(-50%);
  width:16px; height:16px;
  color:var(--slate-dim);
  pointer-events:none;
}
.search-box input{
  width:100%;
  padding:13px 16px 13px 42px;
  border-radius:100px;
  border:1px solid var(--line);
  background:var(--ink-2);
  color:var(--white);
  font-family:'Inter';
  font-size:14px;
}
.search-box input::placeholder{ color:var(--slate-dim); }
.search-box input:focus{ outline:none; border-color:var(--pink); }

.cat-pills{ display:flex; flex-wrap:wrap; gap:8px; }
.cat-pill{
  border:1px solid var(--line);
  background:transparent;
  color:var(--slate);
  border-radius:100px;
  padding:9px 16px;
  font-size:13px;
  font-family:'Inter';
  cursor:pointer;
  white-space:nowrap;
  transition:all .15s ease;
}
.cat-pill.active{ background:var(--white); color:var(--ink); border-color:var(--white); }
.cat-pill:hover:not(.active){ border-color:var(--pink-soft); color:var(--white); }

.result-count{
  font-family:'IBM Plex Mono', monospace;
  font-size:12px;
  color:var(--slate-dim);
  margin-bottom:20px;
}
.empty-state{
  text-align:center;
  padding:60px 20px;
  color:var(--slate);
}
.empty-state h3{ font-size:20px; margin-bottom:8px; color:var(--white); font-weight:500; }

@media (max-width:960px){
  .talent-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:560px){
  .talent-grid{ grid-template-columns:1fr; }
}

.talent-card .tc-status{
  font-family:'IBM Plex Mono', monospace;
  font-size:11px;
  color:var(--slate-dim);
  letter-spacing:0.04em;
}

/* PROFILE PAGE */
.profile-head{ padding:56px 0 40px; }
.profile-top{ display:flex; gap:26px; align-items:flex-start; flex-wrap:wrap; }
.profile-avatar-wrap{ position:relative; width:112px; height:140px; flex-shrink:0; }
.profile-avatar-wrap .profile-avatar{ position:absolute; inset:0; width:100%; height:100%; }
.profile-photo{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  border-radius:14px;
}
.profile-avatar{
  width:112px; height:140px;
  border-radius:14px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  position:relative;
  border:2px dashed rgba(20,18,27,0.38);
  font-family:'IBM Plex Mono', monospace;
  font-weight:600;
  font-size:13px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:#14121b;
}
.profile-avatar::before{
  content:'';
  width:34px; height:34px;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314121b' stroke-width='1.6'><path d='M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z'/><circle cx='12' cy='13' r='4'/></svg>");
  background-repeat:no-repeat;
  background-size:contain;
  opacity:0.6;
}
.profile-name{ font-size:clamp(28px,3.6vw,42px); margin-bottom:6px; }
.profile-cat{ font-family:'IBM Plex Mono', monospace; font-size:13px; color:var(--pink-soft); margin-bottom:14px; }
.profile-stats{ display:flex; gap:26px; flex-wrap:wrap; }
.profile-stat{ font-size:13px; color:var(--slate-dim); }
.profile-stat b{ display:block; color:var(--white); font-size:15px; font-weight:600; font-family:'Inter'; }

.status-panel{
  border:1px solid var(--line);
  background:var(--ink-2);
  border-radius:16px;
  padding:20px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  margin:34px 0 0;
}
.status-panel .sp-label{ font-family:'IBM Plex Mono', monospace; font-size:12px; letter-spacing:0.06em; text-transform:uppercase; color:var(--gold); }
.status-panel p{ margin:6px 0 0; color:var(--slate); font-size:14px; max-width:52ch; }

.pricing-panel{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:20px 0 0;
}
.price-tag{
  background:var(--ink-2);
  border:1px solid var(--line);
  border-radius:100px;
  padding:10px 18px;
  font-family:'Inter';
  font-size:13.5px;
  color:var(--slate);
  text-decoration:none;
  display:inline-block;
  transition:border-color .15s ease, transform .15s ease;
}
.price-tag:hover{ border-color:var(--pink); transform:translateY(-1px); }
.price-tag b{
  font-family:'IBM Plex Mono', monospace;
  color:var(--gold);
  font-weight:600;
  margin-left:4px;
}

.charity-panel{
  display:none;
  align-items:center;
  gap:18px;
  border:1px solid var(--line);
  border-left:3px solid var(--gold);
  background:var(--ink-2);
  border-radius:16px;
  padding:16px 24px;
  margin:14px 0 0;
  flex-wrap:wrap;
}
.charity-panel .cp-label{
  font-family:'IBM Plex Mono', monospace;
  font-size:12px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--gold);
  white-space:nowrap;
}
.charity-panel p{ margin:0; color:var(--slate); font-size:14px; }
.charity-panel p strong{ color:var(--white); font-weight:600; }

/* Bio block sits inside "wrap bio-block" — it must NOT override wrap's
   own max-width/margin (that's what keeps it centered and aligned under
   the profile header above it). Instead, cap just the text elements at a
   readable line length so the block itself stays aligned at any viewport
   width, while paragraphs/lists don't stretch edge-to-edge on wide
   screens. */
.profile-head + section{ padding-top:16px; }
.bio-block p{ color:var(--slate); font-size:15.5px; line-height:1.75; margin-bottom:18px; max-width:70ch; }
.bio-block h3{ font-size:15px; margin:34px 0 14px; font-weight:600; color:var(--white); }
.works-list{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px; max-width:70ch; }
.works-list li{
  display:flex; justify-content:space-between;
  border-top:1px solid var(--line);
  padding:12px 0;
  font-size:14.5px;
  color:var(--slate);
}
.works-list li span:last-child{ font-family:'IBM Plex Mono', monospace; color:var(--slate-dim); font-size:13px; }

/* SHARED SUBPAGE BREADCRUMB (talent, browse, profile pages) */
.breadcrumb{ font-family:'IBM Plex Mono', monospace; font-size:12px; color:var(--slate-dim); margin-bottom:22px; }
.breadcrumb a{ text-decoration:none; color:var(--slate-dim); }
.breadcrumb a:hover{ color:var(--pink-soft); }

footer{
  padding:50px 32px 40px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:16px;
  color:var(--slate-dim);
  font-size:13px;
}
footer .flinks{ display:flex; gap:22px; }
footer a{ text-decoration:none; color:var(--slate-dim); }
footer a:hover{ color:var(--white); }

@media (max-width:860px){
  .trust-grid{ grid-template-columns:1fr; }
  .steps{ grid-template-columns:1fr; }
  .formats{ grid-template-columns:1fr; }
  .cta-section{ padding:40px 24px; margin:0 16px; }
  .wrap{ padding:0 20px; }
  .nav-links{ display:none; }
}
@media (prefers-reduced-motion: reduce){
  *{ animation:none !important; transition:none !important; }
  html{ scroll-behavior:auto; }
}
