:root{
  --bg:#090c10;
  --bg2:#0d1116;
  --panel:#12171d;
  --panel2:#181e25;
  --line:#28313a;
  --text:#f5f7f8;
  --muted:#9da7b0;
  --pink:#ed355d;
  --pink2:#ff5b7c;
  --green:#42d98b;
  --purple:#9b55ff;
  --gold:#efb849;
  --danger:#ff5959;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  background:
    radial-gradient(circle at 80% 0%,rgba(237,53,93,.08),transparent 30%),
    var(--bg);
  color:var(--text);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Inter,Arial,sans-serif;
}

a{color:inherit;text-decoration:none}

button,input,select,textarea{font:inherit}

button{cursor:pointer}

.container{
  width:min(1180px,calc(100% - 40px));
  margin:auto;
}

.narrow{
  width:min(820px,calc(100% - 40px));
}

.age-strip{
  background:#050709;
  border-bottom:1px solid var(--line);
  font-size:11px;
  color:#c7cdd2;
}

.age-inner{
  min-height:38px;
  display:flex;
  align-items:center;
  gap:10px;
}

.age-badge{
  display:grid;
  place-items:center;
  width:28px;
  height:28px;
  border:1px solid var(--pink);
  border-radius:50%;
  color:var(--pink);
  font-weight:900;
}

.dev-pill{
  margin-left:auto;
  padding:5px 8px;
  background:#2e2713;
  color:var(--gold);
  border:1px solid #5b4a1c;
  border-radius:6px;
  font-weight:800;
}

.header{
  position:sticky;
  top:0;
  z-index:30;
  background:rgba(9,12,16,.9);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,.04);
}

.nav{
  min-height:74px;
  display:flex;
  align-items:center;
  gap:25px;
}

.logo{
  font-size:20px;
  font-weight:900;
  letter-spacing:-.6px;
  display:flex;
  align-items:center;
}

.logo>span:last-child{color:var(--pink)}

.heart{
  color:var(--pink)!important;
  font-size:28px;
  margin-right:8px;
}

.desktop-nav{
  margin:auto;
  display:flex;
  gap:27px;
  color:#cbd1d6;
  font-size:14px;
}

.desktop-nav a:hover,
.desktop-nav .active{color:var(--pink)}

.nav-actions{
  display:flex;
  gap:8px;
  align-items:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:9px;
  padding:11px 17px;
  border:0;
  font-weight:750;
  transition:.2s;
}

.btn.primary{
  color:white;
  background:linear-gradient(135deg,var(--pink),var(--pink2));
  box-shadow:0 9px 30px rgba(237,53,93,.17);
}

.btn.primary:hover{filter:brightness(1.08);transform:translateY(-1px)}

.btn.ghost{
  color:white;
  background:transparent;
  border:1px solid #414b55;
}

.btn.danger{
  color:white;
  background:#4c1d23;
  border:1px solid #7b2e38;
}

.btn.big{padding:14px 25px}

.hero{
  border-bottom:1px solid var(--line);
  overflow:hidden;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  min-height:460px;
}

.hero-copy{
  padding:72px 0 55px;
  z-index:2;
}

.eyebrow,.kicker{
  color:var(--pink);
  font-size:11px;
  font-weight:900;
  letter-spacing:.15em;
}

.hero h1{
  margin:14px 0 20px;
  max-width:650px;
  font-size:clamp(42px,5.3vw,72px);
  line-height:.97;
  letter-spacing:-3px;
}

.hero h1 span{
  display:block;
  color:var(--pink);
}

.hero-copy>p{
  max-width:610px;
  color:#bec6cd;
  line-height:1.6;
  font-size:16px;
}

.search-box{
  display:grid;
  grid-template-columns:1.2fr .8fr auto;
  margin-top:28px;
  padding:6px;
  border:1px solid #3a444e;
  border-radius:12px;
  background:#0c1014;
}

.search-box input,
.search-box select{
  min-width:0;
  border:0;
  outline:0;
  padding:14px;
  background:transparent;
  color:white;
}

.search-box select{
  border-left:1px solid var(--line);
}

.search-box option{background:#11161b}

.trust-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:17px;
}

.trust-row span{
  font-size:11px;
  color:#acb5bd;
  padding:8px 10px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#0d1115;
}

.hero-visual{
  position:relative;
  min-height:430px;
  background:
    linear-gradient(90deg,var(--bg),transparent 35%),
    radial-gradient(circle at 62% 40%,#644037,#31221f 29%,#151417 55%,#0b0e11 75%);
}

.hero-glow{
  position:absolute;
  width:280px;
  height:280px;
  right:70px;
  top:75px;
  background:rgba(237,53,93,.11);
  filter:blur(45px);
  border-radius:50%;
}

.silhouette{
  position:absolute;
  width:330px;
  height:410px;
  right:48px;
  top:35px;
}

.head{
  position:absolute;
  right:90px;
  width:132px;
  height:157px;
  border-radius:48%;
  background:linear-gradient(145deg,#ae7861,#724b3e);
}

.head:before{
  content:"";
  position:absolute;
  z-index:-1;
  left:-38px;
  top:-16px;
  width:166px;
  height:190px;
  background:#191517;
  border-radius:50%;
}

.body-shape{
  position:absolute;
  right:0;
  top:132px;
  width:287px;
  height:300px;
  border-radius:50% 50% 8% 8%;
  background:linear-gradient(150deg,#a9725b 0 30%,#17171a 31%);
  transform:rotate(-4deg);
}

.protected{
  position:absolute;
  right:22%;
  bottom:58px;
  display:grid;
  gap:3px;
  padding:14px 18px;
  border:1px solid #303841;
  border-radius:11px;
  background:rgba(5,7,9,.9);
}

.protected small{color:var(--muted)}

.section{padding:50px 0}

.section-head,.panel-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:22px;
}

.section-head h2,
.panel-head h2{
  margin:5px 0 0;
}

.link-button{
  border:0;
  background:none;
  color:var(--pink);
  font-weight:750;
}

.category-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:12px;
}

.category{
  min-height:128px;
  padding:17px;
  text-align:left;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  border:1px solid transparent;
  border-radius:14px;
  background:linear-gradient(var(--panel2),var(--panel));
  color:white;
}

.category:hover,.category.active{
  border-color:#424c56;
  transform:translateY(-2px);
}

.category.active{
  box-shadow:inset 0 -2px var(--pink);
}

.category>span{
  font-size:29px;
  color:var(--pink);
}

.category:nth-child(4)>span{color:var(--purple)}
.category:nth-child(5)>span{color:var(--green)}
.category:nth-child(6)>span{color:var(--gold)}

.category small{color:var(--muted)}

.profiles-section{padding-top:16px}

.profile-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}

.profile-card{
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:14px;
  background:var(--panel);
  transition:.2s;
}

.profile-card:hover{
  transform:translateY(-3px);
  border-color:#414c56;
}

.profile-image{
  height:300px;
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 50% 31%,#96644f 0 18%,transparent 19%),
    radial-gradient(ellipse at 50% 100%,#252a30 0 44%,transparent 45%),
    linear-gradient(145deg,#40332f,#111518);
}

.profile-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.card-tag{
  position:absolute;
  z-index:2;
  top:10px;
  left:10px;
  padding:5px 8px;
  background:var(--pink);
  border-radius:6px;
  font-size:10px;
  font-weight:850;
}

.profile-card-body{padding:14px}

.profile-name{
  font-size:18px;
  font-weight:850;
}

.profile-meta{
  color:var(--muted);
  font-size:12px;
  margin-top:6px;
}

.card-buttons{
  display:grid;
  grid-template-columns:1fr 44px;
  gap:8px;
  margin-top:14px;
}

.favorite-btn{
  border:1px solid #46505a;
  border-radius:9px;
  background:transparent;
  color:white;
  font-size:18px;
}

.favorite-btn.on{
  color:var(--pink);
  border-color:var(--pink);
}

.empty,.status-box{
  padding:24px;
  display:grid;
  gap:6px;
  border:1px dashed #39444e;
  border-radius:13px;
  color:var(--muted);
  background:#0c1014;
}

.hidden{display:none!important}

.cta-card{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:25px;
  padding:30px 34px;
  border:1px solid #352832;
  border-radius:16px;
  background:linear-gradient(100deg,#30141f,#19151e 70%,#15191e);
}

.cta-icon{
  color:var(--pink);
  font-size:52px;
}

.cta-card h2{margin:5px 0 8px}
.cta-card p{margin:0;color:#b7bfc6}

.benefits{
  padding-top:35px;
  border-top:1px solid var(--line);
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.benefits article{
  display:flex;
  gap:12px;
}

.benefits article>b{
  color:var(--pink);
  font-size:24px;
}

.benefits p{
  color:var(--muted);
  line-height:1.5;
  font-size:12px;
}

.footer{
  display:flex;
  justify-content:space-between;
  gap:35px;
}

footer{
  padding:38px 0 95px;
  border-top:1px solid var(--line);
}

.footer p{
  color:var(--muted);
  font-size:11px;
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  color:var(--muted);
  align-items:center;
  font-size:12px;
}

.page-main{
  padding:48px 0 80px;
}

.page-heading{
  margin-bottom:30px;
}

.page-heading h1{
  margin:6px 0 10px;
  font-size:38px;
  letter-spacing:-1.5px;
}

.page-heading p{
  color:var(--muted);
}

.panel{
  margin-bottom:20px;
  padding:25px;
  border:1px solid var(--line);
  border-radius:15px;
  background:var(--panel);
}

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

.form-grid label,
#adminTokenPanel label{
  display:grid;
  gap:7px;
  color:#cbd1d6;
  font-size:12px;
}

.full-field{grid-column:1/-1}

input,select,textarea{
  width:100%;
  padding:13px 14px;
  border:1px solid #35404a;
  border-radius:9px;
  outline:0;
  color:white;
  background:#0c1014;
}

textarea{
  resize:vertical;
  line-height:1.5;
}

input:focus,select:focus,textarea:focus{
  border-color:var(--pink);
}

select option{background:#11161b}

.form-actions{
  display:flex;
  justify-content:flex-end;
}

.status-chip{
  padding:6px 9px;
  border-radius:8px;
  background:#20262c;
  color:#d2d8dd;
  font-size:11px;
  font-weight:750;
}

.status-approved{background:#153827;color:#6be8a8}
.status-pending{background:#392e14;color:#f2c766}
.status-rejected,.status-suspended{background:#421e24;color:#ff7c87}

.upload-box{
  display:grid;
  grid-template-columns:1fr auto;
  gap:10px;
}

.photo-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:18px;
}

.photo-item{
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:12px;
  background:#0c1014;
}

.photo-item img{
  width:100%;
  aspect-ratio:1;
  display:block;
  object-fit:cover;
}

.photo-info{
  padding:9px;
  display:grid;
  gap:7px;
}

.plan-panel{
  display:grid;
  grid-template-columns:1fr auto;
  gap:35px;
  align-items:center;
}

.plan-panel h2{font-size:30px;margin:5px 0}

.plan-panel p{color:var(--muted)}

.plan-side{
  min-width:210px;
  display:grid;
  gap:10px;
}

.price strong{
  font-size:42px;
  letter-spacing:-2px;
}

.price span{color:var(--muted)}

.metrics-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-bottom:20px;
}

.metric{
  padding:20px;
  border:1px solid var(--line);
  border-radius:14px;
  background:var(--panel);
}

.metric span,.metric small{
  color:var(--muted);
  display:block;
}

.metric strong{
  display:block;
  margin:8px 0;
  font-size:36px;
  letter-spacing:-1.5px;
}

.dashboard-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.source-list{
  display:grid;
  gap:10px;
}

.source-row{
  display:flex;
  justify-content:space-between;
  padding:10px 0;
  border-bottom:1px solid var(--line);
}

.profile-detail{
  max-width:900px;
  margin:auto;
}

.detail-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}

.detail-gallery{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
}

.detail-gallery img{
  width:100%;
  height:250px;
  object-fit:cover;
  border-radius:12px;
}

.detail-gallery img:first-child{
  grid-column:1/-1;
  height:430px;
}

.detail-info{
  padding:10px;
}

.detail-info h1{
  font-size:42px;
  margin:5px 0;
}

.detail-info p{
  line-height:1.65;
  color:#c0c7cd;
}

.contact-box{
  margin-top:22px;
  padding:18px;
  border-radius:13px;
  background:#21131a;
  border:1px solid #4a2631;
}

.admin-profile{
  padding:18px 0;
  border-bottom:1px solid var(--line);
  display:grid;
  grid-template-columns:1fr auto;
  gap:18px;
}

.admin-actions{
  display:flex;
  gap:8px;
  align-items:center;
}

.small{font-size:11px}
.muted{color:var(--muted)}

.modal{
  position:fixed;
  inset:0;
  z-index:100;
  display:none;
  place-items:center;
  padding:20px;
  background:rgba(0,0,0,.76);
  backdrop-filter:blur(10px);
}

.modal.open{display:grid}

.modal-card{
  width:min(440px,100%);
  padding:28px;
  border:1px solid #323c45;
  border-radius:18px;
  background:#11161b;
}

.age-card{text-align:center}

.age-large{
  width:60px;
  height:60px;
  display:grid;
  place-items:center;
  margin:0 auto 16px;
  border:2px solid var(--pink);
  border-radius:50%;
  color:var(--pink);
  font-weight:900;
}

.modal-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:20px;
}

.toast{
  position:fixed;
  z-index:150;
  right:20px;
  bottom:20px;
  max-width:420px;
  padding:13px 17px;
  border:1px solid #39444e;
  border-radius:10px;
  background:#151b21;
  color:white;
  opacity:0;
  pointer-events:none;
  transform:translateY(10px);
  transition:.25s;
}

.toast.show{
  opacity:1;
  transform:none;
}

.bottom-nav{display:none}

@media(max-width:950px){
  .desktop-nav{display:none}
  .hero-grid{grid-template-columns:1fr}
  .hero-visual{min-height:320px}
  .category-grid{grid-template-columns:repeat(3,1fr)}
  .profile-grid{grid-template-columns:repeat(3,1fr)}
  .benefits{grid-template-columns:repeat(2,1fr)}
  .metrics-grid{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:700px){
  .container,.narrow{width:calc(100% - 24px)}
  .nav{min-height:62px}
  .nav-actions .ghost{display:none}

  .hero-copy{padding:42px 0 32px}
  .hero h1{letter-spacing:-2px}

  .search-box{grid-template-columns:1fr}
  .search-box select{
    border-left:0;
    border-top:1px solid var(--line);
  }

  .category-grid{grid-template-columns:repeat(2,1fr)}
  .profile-grid{grid-template-columns:repeat(2,1fr);gap:9px}
  .profile-image{height:230px}

  .cta-card{grid-template-columns:1fr;padding:24px}
  .benefits{grid-template-columns:1fr}

  .footer{display:grid}

  .form-grid{grid-template-columns:1fr}
  .full-field{grid-column:auto}

  .plan-panel{grid-template-columns:1fr}

  .dashboard-grid{grid-template-columns:1fr}

  .detail-grid{grid-template-columns:1fr}
  .detail-gallery img:first-child{height:360px}

  .bottom-nav{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    position:fixed;
    z-index:60;
    left:8px;
    right:8px;
    bottom:8px;
    padding:7px;
    border:1px solid #343e47;
    border-radius:14px;
    background:rgba(16,20,25,.95);
    backdrop-filter:blur(18px);
  }

  .bottom-nav a{
    display:grid;
    place-items:center;
    gap:3px;
    font-size:18px;
  }

  .bottom-nav span{
    color:#a5adb5;
    font-size:9px;
  }

  .toast{
    left:12px;
    right:12px;
    bottom:78px;
  }
}

@media(max-width:430px){
  .profile-image{height:190px}
  .profile-card-body{padding:10px}
  .profile-name{font-size:15px}
  .metrics-grid{grid-template-columns:1fr 1fr}
  .metric{padding:15px}
  .metric strong{font-size:29px}
}
