:root{
  --bg:#060910;
  --bg-soft:#0e1420;
  --panel:#121a2b;
  --panel-2:#192336;
  --text:#fff6fb;
  --muted:#b8b2c6;
  --line:rgba(255,255,255,.08);
  --accent:#ff4d95;
  --accent-2:#ff8a3d;
  --accent-3:#4cf0a6;
  --shadow:0 24px 60px rgba(0,0,0,.42);
}

*{box-sizing:border-box}
html,body{
  margin:0;
  padding:0;
  min-height:100%;
  background:
    radial-gradient(circle at top,#351040 0%,rgba(53,16,64,0) 34%),
    linear-gradient(180deg,#060810 0%,#0a1020 40%,#05070d 100%);
  color:var(--text);
  font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
button,input,textarea{font:inherit}

.app-shell{min-height:100vh;display:flex;flex-direction:column}
.page-wrap{width:min(1140px,calc(100vw - 32px));margin:0 auto;padding:18px 0 72px;flex:1}
.site-topbar{
  width:min(1140px,calc(100vw - 32px));
  margin:0 auto;
  padding:18px 0 8px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}
.site-topbar__right{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.brand{display:inline-flex;align-items:center}
.brand-logo{width:min(296px,58vw);height:auto}
.brand-logo--footer{width:210px}
.locale-switcher{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.locale-switcher__item{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:9px 11px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--muted);
  font-size:.82rem;
}
.locale-switcher__item small{font-size:.76rem}
.locale-switcher__item.is-active{
  color:#fff;
  border-color:rgba(255,79,148,.28);
  background:rgba(255,79,148,.12);
}
.locale-switcher__item.is-suggested:not(.is-active){
  border-color:rgba(76,240,166,.24);
}
.site-topbar__badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  color:var(--muted);
  font-size:.9rem;
  white-space:nowrap;
}

.eyebrow{text-transform:uppercase;letter-spacing:.14em;color:#ffb5d6;font-size:.75rem;font-weight:800}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:none;
  border-radius:16px;
  padding:14px 20px;
  font-weight:800;
  cursor:pointer;
  transition:transform .18s ease,box-shadow .18s ease,background .18s ease,opacity .18s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  background:linear-gradient(135deg,var(--accent-2),var(--accent));
  color:#fff;
  box-shadow:0 14px 28px rgba(255,79,148,.24);
}
.btn-ghost{background:rgba(255,255,255,.04);color:var(--text);border:1px solid var(--line)}
.btn-xl{padding:18px 24px;font-size:1.02rem}
.btn-sm{padding:10px 14px;border-radius:12px}
.btn-skip{background:#192232;color:#d6cfde}
.btn-like{background:linear-gradient(135deg,#18263d,#244568);color:#fff}
.btn-chat-now{
  min-height:62px;
  padding:18px 24px;
  font-size:1.07rem;
  letter-spacing:.01em;
  box-shadow:0 18px 34px rgba(255,79,148,.3);
}

.stat-pill,.match-pill,.mini-badge,.match-topbar__pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  padding:8px 12px;
  border:1px solid var(--line);
}
.stat-pill-soft{color:var(--muted)}
.mini-badge{
  padding:7px 11px;
  background:rgba(255,255,255,.1);
  font-size:.82rem;
}

.hero,
.steps,
.prefs-home,
.content-card,
.match-shell,
.agegate-modal,
.preview-card,
.match-card,
.match-loading-card,
.contact-card{
  background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.02));
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  border-radius:28px;
}

.hero{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:28px;
  align-items:center;
  padding:34px;
}
.hero h1,.content-page h1{
  font-size:clamp(2.3rem,6vw,4.6rem);
  line-height:.96;
  margin:10px 0 14px;
  max-width:12ch;
}
.hero-sub{
  font-size:1.06rem;
  line-height:1.7;
  color:var(--muted);
  max-width:58ch;
}
.hero-actions,.hero-stats,.prefs-home__actions,.contact-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
}
.hero-stats{margin-top:18px}

.hero-preview{display:flex;align-items:center;justify-content:center}
.home-stage{
  position:relative;
  width:min(100%,360px);
  display:grid;
  place-items:center;
}
.home-stage__ghost{
  position:absolute;
  inset:18px 0 -18px 0;
  transform:scale(.96);
  opacity:.18;
  z-index:1;
  overflow:hidden;
  border-radius:30px;
  border:1px solid rgba(255,255,255,.06);
}
.home-stage__ghost img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.preview-card{
  position:relative;
  overflow:hidden;
}
.preview-card--featured{
  width:min(100%,340px);
  border-radius:30px;
  z-index:2;
}
.preview-card img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
}
.preview-card__topline{
  position:absolute;
  left:16px;
  right:16px;
  top:16px;
  display:flex;
  justify-content:space-between;
  gap:10px;
}
.preview-card__live,
.preview-card__badge{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  font-size:.82rem;
  font-weight:800;
  border:1px solid rgba(255,255,255,.12);
}
.preview-card__live{
  background:rgba(76,240,166,.14);
  color:#c5f8de;
}
.preview-card__badge{
  background:rgba(255,79,148,.18);
  color:#ffe1ef;
}
.preview-card__bottom{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:34px 16px 16px;
  display:grid;
  gap:4px;
  background:linear-gradient(180deg,rgba(6,9,18,0) 0%,rgba(6,9,18,.88) 76%,rgba(6,9,18,.96) 100%);
}
.preview-card__bottom strong{font-size:1.15rem}
.preview-card__bottom span{color:#dfd6e8}
.home-card__actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:10px;
}
.home-card__actions .btn-chat-now{grid-column:1/-1}

.steps,.prefs-home{padding:28px;margin-top:18px}
.guide-links{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin-top:18px;
}
.home-bottom-cta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  margin-top:18px;
  padding:24px 28px;
  border-radius:24px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.02));
  box-shadow:var(--shadow);
}
.home-bottom-cta__copy h2{
  margin:8px 0 10px;
  font-size:clamp(1.5rem,3vw,2.25rem);
}
.home-bottom-cta__copy p{
  margin:0;
  color:var(--muted);
  max-width:54ch;
}
.home-bottom-cta__actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
}
.guide-card{
  padding:22px;
  background:rgba(255,255,255,.02);
  border-radius:22px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.guide-card h3{margin:0 0 10px}
.guide-card p{margin:0 0 14px;color:var(--muted)}
.guide-link{color:#ffb5d6;font-weight:800}
.steps h2,.prefs-home h2,.content-card h2{margin:0 0 16px;font-size:1.7rem}
.step-grid,.content-sections{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.step-card,.content-card{
  padding:20px;
  background:rgba(255,255,255,.02);
  border-radius:22px;
  border:1px solid var(--line);
}
.step-card b{
  display:inline-flex;
  width:36px;
  height:36px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  align-items:center;
  justify-content:center;
  margin-bottom:12px;
}

.prefs-home__intro p,
.content-intro,
.site-footer p,
.contact-note{color:var(--muted);max-width:72ch}
.prefs-home__grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  margin-top:20px;
}
.prefs-home__grid--compact{grid-template-columns:1fr;gap:14px}
.pref-group{
  padding:18px;
  border-radius:22px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
}
.pref-group h3{margin:0 0 12px;font-size:1.05rem}
.pref-group--wide{grid-column:1/-1}
.chip-grid{display:flex;flex-wrap:wrap;gap:10px}
.chip{
  padding:11px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
  cursor:pointer;
}
.chip.is-active{
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  border-color:transparent;
}
.prefs-home__actions{margin-top:20px}
.program-backdrop{
  position:fixed;
  inset:0;
  padding:20px;
  background:rgba(4,6,10,.86);
  display:grid;
  place-items:center;
  z-index:25;
}
.program-modal{
  width:min(780px,100%);
  max-height:min(90vh,880px);
  overflow:auto;
  padding:22px;
  border-radius:28px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,#111827,#0d1423);
  box-shadow:var(--shadow);
}
.program-modal__header{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:flex-start;
}
.program-modal__header h2{margin:6px 0 0;font-size:1.8rem}
.program-steps{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:18px 0;
}
.program-step{
  padding:9px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  color:var(--muted);
  background:rgba(255,255,255,.03);
}
.program-step.is-active{
  color:#fff4fb;
  border-color:rgba(255,79,148,.22);
  background:rgba(255,79,148,.12);
}
.program-actions{
  display:flex;
  justify-content:space-between;
  gap:12px;
  margin-top:18px;
  flex-wrap:wrap;
}
.pref-group--program{background:rgba(255,255,255,.03)}

.match-shell{
  width:min(820px,100%);
  margin:0 auto;
  padding:18px;
  display:grid;
  gap:16px;
}
.match-topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
}
.match-topbar__title h1{
  margin:6px 0 0;
  font-size:clamp(1.26rem,3.2vw,1.6rem);
  line-height:1.05;
}
.match-topbar__stats{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  color:var(--muted);
  justify-content:flex-end;
}
.match-topbar__pill--button{
  color:#fff4fb;
  cursor:pointer;
}
.match-topbar__pill--liked{
  gap:10px;
  background:rgba(255,79,148,.1);
  border-color:rgba(255,79,148,.18);
}
.match-topbar__pill-icon{
  font-size:1rem;
  line-height:1;
}
.match-topbar__pill-hint{
  color:#ffbfdc;
  font-size:.95rem;
  line-height:1;
}
.match-stage{
  position:relative;
  width:min(100%,448px);
  margin:0 auto;
  aspect-ratio:.74;
  display:grid;
  place-items:center;
}
.match-card,
.match-card-ghost{
  position:absolute;
  inset:0;
  overflow:hidden;
  border-radius:30px;
}
.match-card{
  z-index:2;
  background:#0c111d;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 22px 44px rgba(0,0,0,.38);
  transition:transform .22s ease,opacity .22s ease;
  touch-action:pan-y;
  user-select:none;
  cursor:grab;
}
.match-card.is-dragging{transition:none;cursor:grabbing}
.match-card-ghost{
  z-index:1;
  transform:scale(.965) translateY(16px);
  opacity:.22;
  filter:saturate(.9);
  background:#0a0f1a;
}
.match-card--like-out{transform:translateX(22px) rotate(2deg);opacity:0}
.match-card--skip-out{transform:translateX(-22px) rotate(-2deg);opacity:0}
.match-card__image{
  width:100%;
  height:100%;
  object-fit:cover;
}
.match-reaction-flash{
  position:absolute;
  inset:0;
  z-index:5;
  display:grid;
  place-items:center;
  pointer-events:none;
  font-size:5rem;
  font-weight:900;
  text-shadow:0 0 28px rgba(0,0,0,.35);
  animation:reactionFlash .42s cubic-bezier(.18,.88,.25,1);
}
.match-reaction-flash--like{color:#6cf3b6}
.match-reaction-flash--skip{color:#ff6f89}
@keyframes reactionFlash{
  0%{opacity:0;transform:scale(.45)}
  25%{opacity:1;transform:scale(1.12)}
  100%{opacity:0;transform:scale(1)}
}
.match-stamp{
  position:absolute;
  z-index:4;
  top:50%;
  left:50%;
  width:112px;
  height:112px;
  margin-left:-56px;
  margin-top:-56px;
  border-radius:50%;
  border:3px solid currentColor;
  display:grid;
  place-items:center;
  font-size:3rem;
  font-weight:900;
  transform:rotate(-12deg);
  background:rgba(5,8,14,.28);
  backdrop-filter:blur(5px);
  pointer-events:none;
  animation:stampPop .42s cubic-bezier(.18,.88,.25,1);
}
.match-stamp--like{
  color:#55efad;
  box-shadow:0 0 34px rgba(85,239,173,.26);
}
.match-stamp--skip{
  color:#ff6f89;
  transform:rotate(11deg);
  box-shadow:0 0 34px rgba(255,111,137,.2);
}
@keyframes stampPop{
  0%{opacity:0;transform:scale(.35) rotate(0deg)}
  65%{opacity:1;transform:scale(1.12) rotate(-8deg)}
  100%{opacity:1;transform:scale(1) rotate(-12deg)}
}
.match-stamp--skip{
  animation-name:stampPopSkip;
}
@keyframes stampPopSkip{
  0%{opacity:0;transform:scale(.35) rotate(0deg)}
  65%{opacity:1;transform:scale(1.12) rotate(8deg)}
  100%{opacity:1;transform:scale(1) rotate(12deg)}
}
.match-card__topline{
  position:absolute;
  left:16px;
  right:16px;
  top:16px;
  z-index:3;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:10px;
}
.match-pill-live{
  background:rgba(76,240,166,.14);
  border-color:rgba(76,240,166,.24);
  color:#bff6da;
}
.match-pill-strong{
  background:rgba(255,79,148,.18);
  border-color:rgba(255,79,148,.28);
  color:#ffe1ef;
}
.match-card__bottom{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:2;
  padding:88px 18px 18px;
  background:linear-gradient(180deg,rgba(6,9,18,0) 0%,rgba(6,9,18,.16) 22%,rgba(6,9,18,.88) 78%,rgba(6,9,18,.97) 100%);
}
.match-card__body{display:grid;gap:8px;align-content:end}
.match-card__body h2{margin:0;font-size:2rem;line-height:1}
.match-card__urgency{margin:0;color:#ece6f6;font-size:.98rem}
.badge-row{display:flex;gap:8px;flex-wrap:wrap}
.match-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  width:min(100%,448px);
  margin:0 auto;
}
.match-actions .btn-chat-now{grid-column:1 / -1}
.btn-swipe-action{
  min-height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-size:1.05rem;
}
.btn-swipe-action__icon{
  font-size:1.24rem;
  line-height:1;
}
.match-feedback{
  width:min(100%,448px);
  margin:0 auto;
  min-height:24px;
  text-align:center;
  color:var(--muted);
}
.preference-drawer{
  width:min(100%,760px);
  margin:0 auto;
  padding:18px;
  border-radius:24px;
  border:1px solid var(--line);
  background:rgba(15,19,31,.94);
  display:block;
}
.preference-drawer__header{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:start;
}
.preference-drawer__status{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
  color:var(--muted);
}
.preference-drawer__actions{
  display:flex;
  justify-content:flex-end;
  margin-top:14px;
}

.content-page{padding:8px 0}
.contact-card{padding:24px;margin-top:18px}
.contact-form{display:grid;gap:14px}
.form-field{display:grid;gap:8px}
.form-field label{font-weight:700}
.form-field input,
.form-field textarea{
  width:100%;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.28);
  color:#f7f7f7;
  border-radius:12px;
  padding:13px 14px;
  outline:none;
  transition:border-color .2s ease,box-shadow .2s ease,background .2s ease;
}
.form-field input:focus,
.form-field textarea:focus{
  border-color:#fdbb2d;
  box-shadow:0 0 0 3px rgba(253,187,45,.22);
  background:rgba(0,0,0,.38);
}
.form-field textarea{min-height:180px;resize:vertical}
.form-hp{position:absolute !important;left:-9999px !important;top:-9999px !important;opacity:0 !important}
.contact-status{min-height:24px}
.contact-status.is-success{color:#9cf0c8}
.contact-status.is-error{color:#ffb2be}
.contact-status.is-pending{color:#ffd4a8}

.liked-drawer{
  width:min(100%,760px);
  margin:0 auto;
  padding:18px;
  border-radius:24px;
  border:1px solid var(--line);
  background:rgba(15,19,31,.96);
  display:block;
}
.liked-drawer__header{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-start;
}
.liked-drawer__header h2{margin:6px 0 0;font-size:1.5rem}
.liked-drawer__count{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:40px;
  height:40px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,79,148,.12);
  border:1px solid rgba(255,79,148,.18);
  color:#fff4fb;
  font-weight:800;
}
.liked-drawer__list{
  display:grid;
  gap:12px;
  margin-top:14px;
}
.liked-item{
  display:grid;
  grid-template-columns:88px 1fr auto;
  gap:14px;
  align-items:center;
  padding:12px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.06);
  background:rgba(255,255,255,.03);
}
.liked-item__media{
  position:relative;
  width:88px;
  height:88px;
  border-radius:14px;
  overflow:hidden;
  background:#0b0f18;
}
.liked-item__image{
  width:100%;
  height:100%;
  object-fit:cover;
}
.liked-item__preview{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transition:opacity .22s ease, transform .22s ease;
  transform:scale(1.03);
}
.liked-item__live{
  position:absolute;
  left:6px;
  top:6px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:5px 8px;
  border-radius:999px;
  background:rgba(76,240,166,.16);
  border:1px solid rgba(76,240,166,.24);
  color:#d9ffec;
  font-size:.68rem;
  font-weight:800;
}
.liked-item__media:hover .liked-item__preview,
.liked-item__media:focus-within .liked-item__preview{
  opacity:1;
  transform:scale(1);
}
.liked-item__body{
  display:grid;
  gap:6px;
}
.liked-item__body strong{font-size:1rem}
.liked-item__body span{color:var(--muted)}
.liked-item__actions{
  display:grid;
  gap:8px;
}
.liked-empty{
  margin:0;
  color:var(--muted);
  padding:12px 2px 2px;
}

.agegate-backdrop{
  position:fixed;
  inset:0;
  background:rgba(4,6,10,.86);
  display:grid;
  place-items:center;
  padding:24px;
  z-index:20;
}
.agegate-modal{
  position:relative;
  overflow:hidden;
  width:min(700px,100%);
  padding:34px 28px 28px;
  text-align:center;
  background:linear-gradient(180deg,rgba(42,12,56,.96),rgba(24,10,38,.98));
  border:1px solid rgba(255,255,255,.12);
}
.agegate-modal h2{
  margin:6px 0 10px;
  font-size:clamp(2rem,4vw,3.6rem);
  line-height:.95;
  color:#ff73b0;
}
.agegate-lead{
  margin:0 auto 10px;
  max-width:20ch;
  font-size:1.55rem;
  font-weight:800;
}
.agegate-muted{
  margin:0 auto 18px;
  max-width:34ch;
  color:#e3d9ea;
  line-height:1.55;
}
.agegate-actions{
  display:grid;
  gap:12px;
  margin-top:18px;
}
.agegate-btn{
  width:100%;
  min-height:52px;
  border-radius:14px;
  font-size:1rem;
  font-weight:800;
}
.agegate-btn--all{
  background:linear-gradient(135deg,#22d97d,#18c968);
  box-shadow:none;
}
.agegate-btn--essential{
  background:linear-gradient(135deg,#26b8c9,#3b84d4);
  color:#fff;
  border:none;
}
.agegate-btn--deny{
  background:linear-gradient(135deg,#ff7a27,#ff4f54);
  color:#fff;
}
.agegate-policy-open{
  display:inline-flex;
  margin-top:14px;
  justify-content:center;
  border:none;
  background:transparent;
  color:#ffd889;
  font-weight:800;
  text-decoration:underline;
  cursor:pointer;
  list-style:none;
  font-size:1rem;
}
.agegate-reader{
  position:absolute;
  inset:18px;
  z-index:2;
  display:flex;
  flex-direction:column;
  margin:0;
  padding:18px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg,rgba(15,18,29,.98),rgba(10,13,22,.99));
  box-shadow:0 28px 80px rgba(0,0,0,.48);
  text-align:left;
}
.agegate-reader[hidden]{
  display:none;
}
.agegate-reader__content{
  max-height:min(62vh,620px);
  overflow:auto;
  margin-top:16px;
  text-align:left;
  padding:0 6px 4px 0;
}
.agegate-reader__header{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-start;
  margin-bottom:12px;
}
.agegate-reader__header h3{
  margin:0;
  color:#fff6fb;
  font-size:clamp(1.45rem,3vw,2rem);
}
.agegate-reader__header span{
  color:#ffb5d6;
  font-weight:800;
  font-size:.9rem;
}
.agegate-reader__back{
  flex:0 0 auto;
  border:none;
  border-radius:999px;
  padding:10px 14px;
  background:linear-gradient(135deg,#ff8a34,#ff4f8f);
  color:#fff;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 10px 28px rgba(255,79,143,.28);
}
.agegate-reader__bottom{
  width:100%;
  margin-top:14px;
  background:linear-gradient(135deg,#ff8a34,#ff4f8f);
  color:#fff;
  border:none;
  box-shadow:0 10px 28px rgba(255,79,143,.28);
}
.policy-reader{
  position:absolute;
  inset:18px;
  z-index:3;
  display:flex;
  flex-direction:column;
  padding:18px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg,rgba(15,18,29,.98),rgba(10,13,22,.99));
  box-shadow:0 28px 80px rgba(0,0,0,.48);
  text-align:left;
}
.policy-reader__panel{
  position:relative;
  display:flex;
  flex-direction:column;
  min-height:0;
}
.policy-reader__close{
  align-self:flex-end;
  width:40px;
  height:40px;
  border:none;
  border-radius:999px;
  background:linear-gradient(135deg,#ff8a34,#ff4f8f);
  color:#fff;
  font-size:1.5rem;
  font-weight:900;
  cursor:pointer;
}
.policy-reader__back{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:max-content;
  border:none;
  border-radius:999px;
  padding:10px 14px;
  background:linear-gradient(135deg,#ff8a34,#ff4f8f);
  color:#fff;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 10px 28px rgba(255,79,143,.28);
}
.policy-reader__content{
  min-height:0;
  max-height:min(62vh,620px);
  overflow:auto;
  padding-right:6px;
}
.policy-reader__content h2{
  margin:12px 0 14px;
  color:#fff6fb;
}
.policy-reader__bottom{
  margin-top:14px;
}
.agegate-reader__content .policy-reader__section{
  margin-top:16px;
}
.policy-reader__section{
  display:grid;
  gap:12px;
  margin-top:18px;
}
.policy-reader__section h3{
  margin:0;
  color:#ffb5d6;
}
.policy-reader__intro{
  margin:0;
  color:var(--muted);
}
.policy-reader__card{
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
}
.policy-reader__card h4{
  margin:0 0 8px;
}
.policy-reader__card p{
  margin:0;
  color:#ddd6e7;
  line-height:1.6;
}
.agegate-badge{
  display:inline-flex;
  border-radius:999px;
  background:transparent;
  color:#ffd889;
  padding:8px 12px;
  border:1px solid rgba(255,216,137,.28);
  font-weight:800;
}

.no-access-shell{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:28px 16px;
}
.no-access-panel{
  width:min(760px,100%);
  display:grid;
  gap:22px;
  justify-items:center;
  padding:34px 28px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg,rgba(18,22,35,.96),rgba(8,11,19,.98));
  box-shadow:var(--shadow);
  text-align:center;
}
.no-access-logo{
  height:46px;
}
.no-access-panel .content-page{
  width:100%;
  margin:0;
}
.no-access-panel .content-page h1{
  margin-inline:auto;
}
.no-access-panel .content-intro{
  margin-inline:auto;
}
.no-access-panel .content-sections{
  grid-template-columns:1fr;
  text-align:left;
}

.site-footer{
  width:min(1140px,calc(100vw - 32px));
  margin:0 auto 28px;
  padding:22px 0;
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:nowrap;
  align-items:flex-start;
  color:var(--muted);
  border-top:1px solid var(--line);
}
.footer-brand{
  flex:1 1 420px;
  min-width:0;
}
.footer-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
  align-items:center;
  flex:0 1 430px;
}
.match-loading,.match-loading-card{display:grid;place-items:center;text-align:center;padding:72px 24px}

@media (max-width:900px){
  .hero,.step-grid,.content-sections,.prefs-home__grid,.guide-links{grid-template-columns:1fr}
  .home-bottom-cta{flex-direction:column;align-items:flex-start}
  .home-bottom-cta__actions{width:100%}
  .home-bottom-cta__actions .btn{width:100%}
}

@media (max-width:680px){
  .page-wrap,.site-topbar,.site-footer{width:min(100vw - 20px,1140px)}
  .site-topbar,.site-topbar__right,.preference-drawer__header,.contact-actions,.liked-drawer__header,.preview-modal__header{flex-direction:column;align-items:flex-start}
  .program-modal__header,.program-actions{flex-direction:column;align-items:flex-start}
  .site-topbar__badge{align-self:flex-start}
  .locale-switcher{justify-content:flex-start}
  .site-footer{flex-wrap:wrap}
  .footer-links{justify-content:flex-start;flex:1 1 100%}
  .hero,.steps,.prefs-home,.contact-card,.match-shell{padding:18px}
  .agegate-modal{padding:24px 18px 20px}
  .agegate-lead{font-size:1.3rem}
  .match-topbar{align-items:flex-start;flex-direction:column}
  .match-topbar__stats{justify-content:flex-start}
  .match-stage{width:100%;aspect-ratio:.76}
  .match-card__topline{top:14px;left:14px;right:14px}
  .match-card__bottom{padding:96px 16px 16px}
  .match-card__body h2{font-size:1.72rem}
  .match-reaction-flash{font-size:4rem}
  .match-stamp{width:88px;height:88px;margin-left:-44px;margin-top:-44px;font-size:2.25rem}
  .hero h1,.content-page h1{max-width:100%}
  .btn-xl,.btn-chat-now{width:100%}
  .hero-actions,.prefs-home__actions{width:100%}
  .home-stage{width:100%}
  .home-stage__ghost{inset:18px 10px -18px 10px}
  .home-card__actions{grid-template-columns:1fr}
  .match-actions{grid-template-columns:1fr 1fr}
  .match-actions .btn-chat-now{grid-column:1/-1}
  .liked-item{grid-template-columns:1fr;align-items:flex-start}
  .liked-item__media{width:100%;height:auto;aspect-ratio:4/3}
  .liked-item__actions{width:100%}
}
@keyframes pulseLive{
  0%{box-shadow:0 0 0 0 rgba(76,240,166,.5)}
  70%{box-shadow:0 0 0 8px rgba(76,240,166,0)}
  100%{box-shadow:0 0 0 0 rgba(76,240,166,0)}
}
