﻿/* ============================================================
   Main stylesheet
   ============================================================ */

/* === VARIABLES === */
:root {
  --primary: #e31621;
  --primary-dark: #b50d17;
  --primary-light: #1e0406;
  --text: #f0f0f0;
  --text-muted: #aaa;
  --text-light: #555;
  --border: rgba(255,255,255,.1);
  --white: #141414;
  --bg-subtle: #1a1a1a;
  --nav-bg: #080808;
  --shadow-sm: 0 1px 4px rgba(0,0,0,.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,.4);
  --shadow-lg: 0 8px 28px rgba(0,0,0,.5);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-xs: 6px;
  --nav-h: 60px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: #0d0d0d;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* === LAYOUT === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; width: 100%; }
.section { padding: 4.5rem 0; }
.section-sm { padding: 3rem 0; }

/* === TYPOGRAPHY === */
h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 600; line-height: 1.2; color: var(--text); }
h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 600; line-height: 1.3; color: var(--text); }
h3 { font-size: 1.1rem; font-weight: 600; color: var(--text); }
p { color: var(--text-muted); }
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .5rem;
}
.section-title { margin-bottom: .75rem; }
.section-sub { color: var(--text-muted); max-width: 520px; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .55rem 1.2rem;
  border-radius: var(--radius-xs);
  font-family: inherit;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
  line-height: 1.4;
}
.btn-sm  { padding: .4rem .875rem; font-size: .8rem; }
.btn-lg  { padding: .75rem 1.75rem; font-size: 1rem; border-radius: var(--radius-sm); }
.btn-xl  { padding: .875rem 2.25rem; font-size: 1.05rem; border-radius: var(--radius-sm); }

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }

.btn-ghost-nav {
  background: transparent;
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.3);
}
.btn-ghost-nav:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.6);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-ghost:hover { background: var(--primary-light); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,.2);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

/* === AVATARS === */
.avatar {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
  user-select: none;
}
.avatar-xs { width: 36px; height: 36px; font-size: .85rem; }
.avatar-sm { width: 48px; height: 48px; font-size: 1rem; }
.avatar-md { width: 72px; height: 72px; font-size: 1.5rem; }
.avatar-lg { width: 120px; height: 120px; font-size: 2.5rem; }

.av-rose   { background: #3a0a10; color: #e31621; }
.av-blue   { background: #0a1a3a; color: #4a8ae8; }
.av-green  { background: #0a2a10; color: #4ae874; }
.av-amber  { background: #2a1a0a; color: #e8a04a; }
.av-purple { background: #1a0a2a; color: #a04ae8; }
.av-teal   { background: #0a2a28; color: #4ae8d8; }
.av-peach  { background: #2a1208; color: #e87848; }
.av-olive  { background: #1a2a08; color: #a8c840; }

/* === BADGES === */
.badge-online {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .76rem;
  font-weight: 600;
  color: #22c55e;
}
.badge-online .dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(.8); }
}
.badge-last {
  font-size: .76rem;
  color: var(--text-light);
}
.badge-singielka {
  font-size: .76rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  padding: .2rem .6rem;
  border-radius: 99px;
}

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  background: var(--nav-bg);
  border-bottom: 2px solid var(--primary);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img { height: 30px; width: auto; }
.nav-logo svg { height: 30px; width: auto; }
.logo-brand {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff !important;
  letter-spacing: -.5px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: none;
}
.logo-brand em {
  display: inline;
  margin-left: 0;
  color: #ff1744 !important;
  font-style: normal;
  text-shadow: none;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-menu a {
  text-decoration: none;
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  font-weight: 400;
  transition: color .2s;
}
.nav-menu a:hover { color: #fff; }
.nav-menu a.active { color: #fff; font-weight: 600; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: .625rem;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 199;
  background: var(--nav-bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--primary); }
.mobile-menu .mobile-actions {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  width: 100%;
  max-width: 280px;
  margin-top: 1rem;
}
.mobile-menu .btn { width: 100%; justify-content: center; padding: .75rem; font-size: 1rem; }
.mobile-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: rgba(255,255,255,.6);
  line-height: 1;
}

/* === HERO === */
.hero {
  padding: 4rem 0 3rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: center;
}
.hero-text h1 { margin-bottom: .875rem; }
.hero-text .hero-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 480px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: .75rem; flex-wrap: wrap; }

/* Hero aside */
.hero-aside {
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}
.aside-label {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.aside-profiles { display: flex; flex-direction: column; gap: .875rem; }
.aside-profile {
  display: flex;
  align-items: center;
  gap: .875rem;
  text-decoration: none;
  padding: .5rem;
  border-radius: var(--radius-sm);
  transition: background .15s;
}
.aside-profile:hover { background: rgba(255,255,255,.05); }
.aside-info { display: flex; flex-direction: column; min-width: 0; }
.aside-name { font-size: .88rem; font-weight: 600; color: var(--text); }
.aside-status { font-size: .75rem; color: var(--text-light); }
.aside-status.is-online { color: #22c55e; font-weight: 500; }
.aside-more {
  display: block;
  margin-top: 1.125rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  text-align: right;
}
.aside-more:hover { text-decoration: underline; }

/* === TRUST BAR === */
.trust-bar {
  background: #111;
  border-bottom: 1px solid var(--border);
  padding: .875rem 0;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .84rem;
  font-weight: 500;
  color: var(--text-muted);
}
.trust-item .check { color: var(--primary); font-weight: 700; }

/* === PROFILES SECTION === */
.profiles-section { background: #0d0d0d; }
.profiles-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* Profile card */
.profile-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
  cursor: default;
  overflow: hidden;
}
.profile-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(227,22,33,.3);
}
.card-photo {
  position: relative;
  margin: -1.25rem -1.25rem 0;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #1a1a1a;
  flex-shrink: 0;
}
.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-photo-fallback {
  width: 100%;
  height: 100%;
  border-radius: 0 !important;
  font-size: 3rem !important;
  display: none;
}
.card-dot {
  position: absolute;
  top: .625rem;
  right: .625rem;
  width: 12px;
  height: 12px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid #141414;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
.card-time {
  position: absolute;
  top: .625rem;
  right: .625rem;
  background: rgba(0,0,0,.7);
  color: #fff;
  font-size: .7rem;
  font-weight: 500;
  padding: .2rem .55rem;
  border-radius: 99px;
}
.card-meta { display: flex; flex-direction: column; gap: .2rem; }
.card-name { font-size: .95rem; font-weight: 600; color: var(--text); }
.card-footer { margin-top: auto; }
.card-footer .btn { width: 100%; }
.section-label-lg { font-size: .9rem; }
.profiles-browse {
  text-align: center;
  margin-top: 2rem;
}

/* === FEATURES SECTION === */
.features-section { background: var(--primary-light); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.feature-card {
  background: #1a1a1a;
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
}
.feature-icon { font-size: 1.6rem; margin-bottom: .75rem; }
.feature-title { font-size: .95rem; font-weight: 600; margin-bottom: .35rem; color: var(--text); }
.feature-desc { font-size: .83rem; color: var(--text-muted); line-height: 1.55; }

/* === JOIN SECTION === */
.join-section { background: var(--white); }
.join-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.join-text h2 { margin-bottom: .75rem; }
.join-text p { margin-bottom: 1.5rem; }
.join-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.join-point {
  display: flex;
  gap: .75rem;
  padding: 1rem;
  background: #1a1a1a;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.join-point-icon { font-size: 1.25rem; flex-shrink: 0; line-height: 1.4; }
.join-point-text strong { display: block; font-size: .88rem; color: var(--text); margin-bottom: .2rem; }
.join-point-text span { font-size: .79rem; color: var(--text-muted); }

/* === FAQ === */
.faq-section { background: #111; }
.faq-list { margin-top: 2rem; display: flex; flex-direction: column; gap: .75rem; max-width: 760px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-item summary {
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  color: var(--text);
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-light);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform .25s ease;
}
.faq-item[open] summary { color: var(--primary); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 1.25rem; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.faq-item[open] .faq-body { max-height: 200px; padding: 0 1.25rem 1.1rem; }
.faq-body p { font-size: .88rem; color: var(--text-muted); line-height: 1.65; }

/* === STATS BAR === */
.stats-bar { background: #080808; padding: 2.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-value { display: block; font-size: 1.8rem; font-weight: 600; color: var(--primary); line-height: 1.1; }
.stat-label { display: block; font-size: .82rem; color: rgba(255,255,255,.5); margin-top: .25rem; }

/* === CTA BOTTOM === */
.cta-bottom {
  background: var(--primary-light);
  border-top: 1px solid rgba(227,22,33,.2);
  border-bottom: 1px solid rgba(227,22,33,.2);
  padding: 3.5rem 0;
}
.cta-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta-bottom-text h2 { margin-bottom: .5rem; }
.cta-bottom-text p { color: var(--text-muted); }

/* === FOOTER === */
.footer {
  background: var(--nav-bg);
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand p { font-size: .83rem; color: rgba(255,255,255,.4); margin-top: .75rem; max-width: 220px; line-height: 1.6; }
.footer-brand .nav-logo img { height: 26px; }
.footer-col h4 { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.35); margin-bottom: .875rem; text-transform: uppercase; letter-spacing: .07em; }
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a { text-decoration: none; font-size: .85rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { font-size: .78rem; color: rgba(255,255,255,.3); text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* === MODAL === */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.modal-overlay.is-open { opacity: 1; pointer-events: all; }
.modal-box {
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 460px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  transform: scale(.95);
  transition: transform .2s ease;
  position: relative;
}
.modal-overlay.is-open .modal-box { transform: scale(1); }
.modal-close-btn {
  position: absolute;
  top: .875rem; right: .875rem;
  background: none; border: none;
  font-size: 1.3rem; cursor: pointer;
  color: var(--text-light); line-height: 1; padding: .25rem;
  transition: color .2s;
}
.modal-close-btn:hover { color: var(--text); }
.modal-profile { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.modal-profile h3 { font-size: 1.1rem; font-weight: 600; line-height: 1.35; color: var(--text); }
.modal-desc { font-size: .9rem; color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.6; }
.modal-perks {
  display: flex; flex-direction: column; gap: .5rem;
  margin-bottom: 1.5rem; padding: 1rem;
  background: var(--bg-subtle); border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.modal-perk { font-size: .86rem; color: var(--text-muted); }
.modal-perk::before { content: '✓ '; color: var(--primary); font-weight: 700; }
.modal-cta { width: 100%; text-align: center; padding: .85rem; font-size: 1rem; border-radius: var(--radius-sm); }
.modal-later {
  display: block; text-align: center; margin-top: .875rem;
  font-size: .82rem; color: var(--text-light);
  cursor: pointer; background: none; border: none;
  font-family: inherit; transition: color .2s;
}
.modal-later:hover { color: var(--text-muted); }

/* ============================================================
   PROFILE SUBPAGE
   ============================================================ */
.prof-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .875rem 0 .5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.prof-breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  color: var(--text-light);
}
.prof-breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color .2s; }
.prof-breadcrumb a:hover { color: var(--primary); }
.prof-status {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  font-weight: 600;
  color: #22c55e;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: 99px;
  padding: .25rem .75rem;
}
.prof-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

/* hero card */
.prof-hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.prof-hero {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  align-items: stretch;
}
.prof-photo-col {
  position: relative;
  background: linear-gradient(145deg, #1e0406 0%, #2a0608 100%);
  min-height: 340px;
  overflow: hidden;
}
.prof-avatar-blurred { filter: blur(3px); }
.prof-photo-col img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.prof-photo-fallback-hero {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; font-weight: 600;
  color: var(--primary);
  background: linear-gradient(145deg, #1e0406 0%, #2a0608 100%);
}
.prof-info {
  display: flex; flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  justify-content: center;
}
.prof-name {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600; line-height: 1.2;
  color: var(--text);
}
.prof-age { color: var(--text-muted); font-weight: 400; font-size: .85em; margin-left: .3rem; }
.prof-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.prof-tag {
  background: var(--primary-light);
  color: var(--primary);
  font-size: .75rem; font-weight: 600;
  padding: .25rem .7rem;
  border-radius: 99px;
  border: 1px solid rgba(227,22,33,.3);
}
.prof-divider { border: none; border-top: 1px solid var(--border); margin: .25rem 0; }
.prof-quote {
  font-size: .97rem;
  color: var(--text-muted);
  font-style: italic;
  border-left: 3px solid var(--primary);
  padding: .75rem 1rem;
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
  background: var(--primary-light);
  line-height: 1.6;
}
.prof-actions { display: flex; gap: .75rem; flex-wrap: wrap; padding-top: .25rem; }
.prof-hint { font-size: .76rem; color: var(--text-light); display: flex; align-items: center; gap: .35rem; }
.prof-hint svg { flex-shrink: 0; }

/* about card */
.prof-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
}
.prof-card h2 { font-size: 1.1rem; margin-bottom: .75rem; }
.prof-card p { color: var(--text-muted); font-size: .95rem; line-height: 1.7; }

/* heat section */
.heat-section {
  background: #0a0a0a;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  padding: 2rem 2rem 1.75rem;
  box-shadow: var(--shadow-lg);
}
.heat-inner { max-width: 620px; margin: 0 auto; }
.heat-header {
  display: flex;
  align-items: center;
  gap: .875rem;
  margin-bottom: 1.25rem;
}
.heat-label { font-weight: 600; color: #fff; font-size: .95rem; }
.heat-time { font-size: .76rem; color: #666; margin-top: .1rem; }
.heat-message-wrap { position: relative; margin-bottom: 1.5rem; }
.heat-message {
  background: #1a1a1a;
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: .95rem;
  color: #e0e0e0;
  line-height: 1.65;
}
.heat-blurred {
  filter: blur(4px);
  user-select: none;
  pointer-events: none;
}
.heat-lock {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: rgba(10,10,10,.7);
  border-radius: var(--radius-sm);
}
.heat-lock p { color: #ccc; font-size: .85rem; font-weight: 500; }
.heat-cta { width: 100%; justify-content: center; font-size: 1rem; padding: .875rem 1.5rem; }
.heat-sub { text-align: center; color: #666; font-size: .78rem; margin-top: .75rem; }

.heat-photos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .625rem;
}
.heat-photo-thumb {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #1a1a1a;
}
.heat-photo-lock {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.55);
}
@media (max-width: 480px) {
  .heat-photos-grid { grid-template-columns: repeat(2, 1fr); }
}

/* feed */
.feed-section-wrap { margin-bottom: 1.25rem; }
.feed-section-wrap h2 { font-size: 1.1rem; margin-bottom: 1rem; }
.feed-list { display: flex; flex-direction: column; gap: .875rem; }
.post-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s;
}
.post-card:hover { box-shadow: var(--shadow-md); }
.post-header { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.post-user { display: flex; flex-direction: column; }
.post-user strong { font-size: .88rem; color: var(--text); }
.post-time { font-size: .73rem; color: var(--text-light); }
.post-text { color: var(--text-muted); font-size: .92rem; line-height: 1.7; margin-bottom: .875rem; }
.post-photo {
  height: 120px;
  background: linear-gradient(135deg, #1e0406 0%, #2a0810 100%);
  border-radius: var(--radius-sm);
  margin-bottom: .875rem;
  display: flex; align-items: center; justify-content: center;
  gap: .5rem;
  color: var(--primary); font-size: .82rem; font-weight: 600;
}
.post-photo::before {
  content: '';
  display: inline-block; width: 16px; height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e31621'%3E%3Crect x='3' y='11' width='18' height='11' rx='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4' stroke='%23e31621' stroke-width='2' fill='none'/%3E%3C/svg%3E") no-repeat center/contain;
}
.post-photo::after { content: 'Foto visível após o registo'; }
.post-counters {
  display: flex; gap: 1rem;
  font-size: .75rem; color: var(--text-light);
  border-top: 1px solid var(--border);
  padding-top: .75rem; margin-top: .25rem;
}
.see-more { margin-top: 1rem; }

/* nearby on profile page */
.nearby-section-wrap { margin-bottom: 2rem; }
.nearby-section-wrap h2 { font-size: 1.1rem; margin-bottom: 1rem; }
.nearby-section-wrap .nearby-grid { grid-template-columns: repeat(2, 1fr); }
.card-hook { font-size: .82rem; color: var(--text-muted); font-style: italic; margin-top: .2rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-aside { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 3rem 0; }
  .nav-menu, .nav-actions { display: none; }
  .hamburger { display: flex; }

  .profiles-grid { grid-template-columns: repeat(2, 1fr); }
  .profiles-header { flex-direction: column; align-items: flex-start; }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .join-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .join-points { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-bottom-inner { flex-direction: column; text-align: center; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .trust-bar-inner { gap: 1.25rem; }

  .prof-hero { grid-template-columns: 1fr; }
  .prof-photo-col { min-height: 260px; }
  .prof-info { padding: 1.5rem; }
  .heat-section { padding: 1.5rem 1.25rem; }
  .prof-topbar { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .nearby-section-wrap .nearby-grid { grid-template-columns: 1fr 1fr; }
  .join-mobile-cta { display: block !important; text-align: center; }
  .join-desktop-cta { display: none !important; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .profiles-grid { grid-template-columns: 1fr 1fr; gap: .875rem; }
  .profile-card { padding: 1rem; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .modal-box { padding: 1.5rem 1.25rem; }
  .nearby-section-wrap .nearby-grid { grid-template-columns: 1fr; }
}
