/*
Theme Name: NghiemTuc
Theme URI: https://nghiemtuc.com
Author: NghiemTuc.com
Author URI: https://nghiemtuc.com
Description: Nền tảng kết nối hẹn hò nghiêm túc – giao diện dating app hiện đại, đầy đủ chức năng thành viên.
Version: 1.0.0
License: Proprietary
Text Domain: nghiemtuc
Tags: dating, membership, custom-background, custom-logo, responsive-layout
*/

/* ===================================
   CSS VARIABLES
=================================== */
:root {
  --brand:      #ff4f7b;
  --brand-2:    #ff9a5c;
  --brand-3:    #7b61ff;
  --bg:         #fff7f4;
  --bg-2:       #fff0ea;
  --ink:        #211614;
  --muted:      #806661;
  --line:       rgba(33,22,20,.1);
  --card:       #ffffff;
  --green:      #22b978;
  --red:        #e53e3e;
  --shadow:     0 26px 80px rgba(101,46,53,.14);
  --soft-shadow:0 16px 45px rgba(101,46,53,.08);
  --radius:     30px;
  --radius-sm:  18px;
  --header-h:   72px;
}

/* ===================================
   RESET & BASE
=================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
body.has-topbar { padding-top: 0; }
a { text-decoration: none; color: inherit; transition: color .2s; }
a:hover { color: var(--brand); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ===================================
   TYPOGRAPHY
=================================== */
h1,h2,h3,h4,h5,h6 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: var(--ink);
}
h1 { font-size: clamp(36px,6vw,72px); }
h2 { font-size: clamp(26px,4vw,48px); }
h3 { font-size: clamp(20px,2.5vw,28px); }
h4 { font-size: 20px; }
p { color: var(--muted); line-height: 1.75; }
.text-brand { color: var(--brand); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }

/* ===================================
   LAYOUT
=================================== */
.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-head { margin-bottom: 36px; }
.section-head h2 { margin-bottom: 12px; }
.section-head p { font-size: 17px; max-width: 560px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-sm { gap: 10px; }
.gap-md { gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

/* ===================================
   BUTTONS
=================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 800;
  font-size: 14px;
  transition: .22s ease;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  box-shadow: 0 14px 36px rgba(255,79,123,.28);
}
.btn-primary:hover { transform: translateY(-2px) scale(1.02); color: #fff; }
.btn-outline {
  background: transparent;
  border-color: var(--brand);
  color: var(--brand);
}
.btn-outline:hover { background: var(--brand); color: #fff; }
.btn-light {
  background: rgba(255,255,255,.9);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(101,46,53,.07);
}
.btn-light:hover { background: #fff; transform: translateY(-1px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { opacity: .88; color: #fff; }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-block { width: 100%; display: flex; }
.btn-icon { width: 44px; height: 44px; padding: 0; border-radius: 50%; }

/* ===================================
   TOPBAR
=================================== */
.nt-topbar {
  background: var(--ink);
  color: #ffe6df;
  font-size: 13px;
  font-weight: 600;
}
.nt-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.nt-topbar strong { color: #fff; }
.nt-topbar a { color: #ffb8a0; }
.nt-topbar a:hover { color: #fff; }

/* ===================================
   HEADER
=================================== */
.nt-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,247,244,.88);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255,255,255,.6);
  transition: box-shadow .3s;
}
.nt-header.scrolled { box-shadow: 0 4px 24px rgba(101,46,53,.1); }
.nt-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.nt-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  font-size: 22px;
  letter-spacing: -.8px;
  color: var(--ink);
}
.nt-logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 10px 28px rgba(255,79,123,.3);
  flex-shrink: 0;
}
.nt-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nt-menu a {
  font-size: 14px;
  font-weight: 700;
  color: #513b36;
  padding: 8px 12px;
  border-radius: 12px;
  transition: .2s;
}
.nt-menu a:hover,
.nt-menu .current-menu-item > a { color: var(--brand); background: rgba(255,79,123,.07); }
.nt-actions { display: flex; gap: 8px; align-items: center; }
.mobile-toggle {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 9px 12px;
  font-size: 20px;
  font-weight: 900;
  color: var(--ink);
}
.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 16px 0;
}
.mobile-menu a {
  display: block;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 14px;
  margin: 2px 0;
  transition: .2s;
}
.mobile-menu a:hover { background: var(--bg-2); color: var(--brand); }
.mobile-menu.active { display: block; }
.user-avatar-mini {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  overflow: hidden;
}
.user-avatar-mini img { width: 100%; height: 100%; object-fit: cover; }

/* ===================================
   HERO
=================================== */
.nt-hero {
  position: relative;
  padding: 80px 0 52px;
  overflow: hidden;
}
.nt-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,79,123,.18), transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(123,97,255,.14), transparent 38%),
    radial-gradient(circle at 50% 90%, rgba(255,154,92,.12), transparent 40%);
  pointer-events: none;
}
.nt-hero-grid {
  display: grid;
  grid-template-columns: 1fr .88fr;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.nt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 800;
  font-size: 13px;
  color: #684d48;
  box-shadow: var(--soft-shadow);
  margin-bottom: 20px;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(34,185,120,.15);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 5px rgba(34,185,120,.15); }
  50%      { box-shadow: 0 0 0 10px rgba(34,185,120,.05); }
}
.nt-hero h1 { margin-bottom: 18px; }
.nt-hero h1 span {
  background: linear-gradient(135deg, var(--brand), var(--brand-2) 50%, var(--brand-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nt-hero .lead {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 28px;
  font-weight: 500;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.trust-card {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 20px;
  padding: 14px 16px;
  box-shadow: 0 10px 28px rgba(101,46,53,.06);
  backdrop-filter: blur(12px);
}
.trust-card strong {
  display: block;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--ink);
}
.trust-card span { font-size: 12px; color: var(--muted); font-weight: 700; }

/* ===================================
   APP MOCKUP / PHONE
=================================== */
.app-showcase { position: relative; overflow: hidden; }
.app-phone {
  width: min(370px, 100%);
  margin: auto;
  background: #1a0f0f;
  border: 7px solid #1a0f0f;
  border-radius: 44px;
  padding: 10px;
  box-shadow: 0 36px 100px rgba(30,12,16,.3);
  transform: rotate(2.5deg);
  position: relative;
  z-index: 2;
}
.app-inner {
  border-radius: 34px;
  background: linear-gradient(180deg, #fff8f5, #fff);
  padding: 16px;
  overflow: hidden;
  min-height: 590px;
}
.app-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.app-title { font-weight: 950; font-size: 19px; letter-spacing: -.5px; color: var(--ink); }
.app-badge {
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border-radius: 999px;
  padding: 6px 10px;
}
.swipe-card {
  position: relative;
  height: 370px;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffd9d0, #ffb7c8 48%, #d7ccff);
  box-shadow: 0 18px 55px rgba(101,46,53,.18);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: #fff;
}
.swipe-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(22,11,15,.72));
}
.swipe-emoji {
  position: absolute;
  inset: 40px 0 auto;
  display: grid;
  place-items: center;
  font-size: 110px;
}
.swipe-info { position: relative; z-index: 1; }
.swipe-info h3 { font-size: 26px; color: #fff; line-height: 1; margin-bottom: 6px; }
.swipe-info p { color: #ffece9; font-weight: 700; font-size: 14px; margin-bottom: 10px; }
.swipe-tags { display: flex; gap: 7px; flex-wrap: wrap; }
.swipe-tag {
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  border-radius: 999px;
  padding: 6px 10px;
  backdrop-filter: blur(10px);
}
.swipe-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 14px 0;
}
.swipe-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 12px 30px rgba(101,46,53,.12);
  font-size: 22px;
  display: grid;
  place-items: center;
}
.swipe-btn.main {
  width: 66px;
  height: 66px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  font-size: 28px;
}
.app-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.app-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 12px;
}
.app-stat strong { display: block; font-size: 20px; color: var(--brand); font-weight: 900; }
.app-stat span { font-size: 12px; color: var(--muted); font-weight: 700; }
.float-badge {
  position: absolute;
  z-index: 5;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: var(--shadow);
  border-radius: 22px;
  padding: 13px 16px;
}
.float-badge strong { display: block; font-size: 17px; font-weight: 900; }
.float-badge span { font-size: 12px; color: var(--muted); font-weight: 700; }
.float-badge.left { left: -18px; top: 88px; transform: rotate(-5deg); }
.float-badge.right { right: -18px; bottom: 95px; transform: rotate(5deg); }

/* ===================================
   CARDS
=================================== */
.nt-card {
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
  transition: transform .22s, box-shadow .22s;
}
.nt-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffe9f0, #fff0d9);
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.nt-card h3 { margin-bottom: 10px; font-size: 19px; }

/* ===================================
   PROFILE CARDS
=================================== */
.profile-card {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--soft-shadow);
  transition: .22s;
}
.profile-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.profile-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #ffe0d2, #ffb7c8 55%, #dad0ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
}
.profile-card-img img { width: 100%; height: 100%; object-fit: cover; }
.profile-card-body { padding: 18px; }
.profile-card-body h3 { font-size: 18px; margin-bottom: 4px; }
.profile-card-body p { font-size: 14px; margin-bottom: 12px; }
.verify-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #ecfff6;
  color: #178856;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 999px;
}

/* ===================================
   CATEGORIES
=================================== */
.cat-card {
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 28px;
  padding: 22px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: .22s;
  box-shadow: 0 12px 34px rgba(101,46,53,.06);
  text-decoration: none;
}
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.cat-card small { font-weight: 800; color: var(--brand); font-size: 12px; display: block; margin-bottom: 8px; }
.cat-card h3 { font-size: 18px; letter-spacing: -.4px; margin-bottom: 8px; color: var(--ink); }
.cat-card p { font-size: 14px; color: var(--muted); font-weight: 600; margin: 0; }

/* ===================================
   HOW IT WORKS
=================================== */
.steps-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; align-items: stretch; }
.dark-panel {
  background: linear-gradient(135deg, #211614, #49302b);
  color: #fff;
  border-radius: 38px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.dark-panel::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255,79,123,.22);
  right: -80px;
  bottom: -80px;
  pointer-events: none;
}
.dark-panel h2 { color: #fff; margin-bottom: 14px; }
.dark-panel p { color: #ffe4dc; margin-bottom: 24px; }
.steps-list { display: grid; gap: 14px; }
.step-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 26px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(101,46,53,.05);
}
.step-num {
  min-width: 40px;
  height: 40px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 16px;
  flex-shrink: 0;
}
.step-content h4 { margin-bottom: 4px; font-size: 16px; }
.step-content p { font-size: 14px; margin: 0; }

/* ===================================
   PRICING
=================================== */
.pricing-page-header {
  background: linear-gradient(135deg, #211614, #4b302c 50%, #2d1d2e);
  padding: 72px 0 60px; text-align: center; color: #fff;
}
.pricing-page-header h1 { font-size: clamp(26px,4vw,40px); margin-bottom: 14px; color: #fff; }
.pricing-page-header p  { font-size: 17px; opacity: .8; max-width: 520px; margin: 0 auto; line-height: 1.7; }
.pricing-grid-page { margin-bottom: 64px; }
.pricing-faq { max-width: 720px; margin: 0 auto 56px; }
.pricing-faq-title { font-size: 26px; text-align: center; margin-bottom: 28px; }
.pricing-trust { border-top: 1px solid var(--line); padding-top: 48px; }
.pricing-trust .trust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.trust-item-box {
  text-align: center; padding: 28px 20px;
  background: #fff; border-radius: var(--radius-sm);
  box-shadow: var(--soft-shadow);
}
.trust-box-icon { font-size: 36px; margin-bottom: 14px; }
.trust-item-box h3 { font-size: 16px; font-weight: 900; margin-bottom: 8px; }
.trust-item-box p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }
@media (max-width: 700px) {
  .pricing-trust .trust-grid { grid-template-columns: 1fr; }
}
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price-card {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 32px;
  padding: 28px;
  box-shadow: 0 16px 45px rgba(101,46,53,.07);
  position: relative;
}
.price-card.featured {
  background: linear-gradient(135deg, #211614, #4b302c);
  color: #fff;
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}
.price-card.featured p,
.price-card.featured li,
.price-card.featured .price-desc { color: #ffe4d7; }
.price-card h3 { font-size: 22px; margin-bottom: 6px; }
.price-desc { font-size: 15px; color: var(--muted); margin-bottom: 4px; }
.price-amount { font-size: 38px; font-weight: 900; letter-spacing: -2px; margin: 16px 0; }
.price-features { margin: 18px 0 24px; }
.price-features li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(33,22,20,.07);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 900;
  font-size: 13px;
}
.featured .price-features li { color: #ffe4d7; border-color: rgba(255,255,255,.1); }
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 7px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ===================================
   ARTICLES / BLOG
=================================== */
.articles-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 20px; }
.article-main {
  min-height: 360px;
  background: linear-gradient(135deg, #271817, #623333 45%, #94415d);
  color: #fff;
  border-radius: 38px;
  padding: 30px;
  display: block;
  box-shadow: var(--shadow);
  transition: .22s;
  position: relative;
  overflow: hidden;
}
.article-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(33,22,20,.08) 0%, rgba(33,22,20,.42) 42%, rgba(33,22,20,.86) 100%);
  z-index: 1;
}
.article-main > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .32s ease;
}
.article-main:hover > img { transform: scale(1.05); }
.article-main-content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 2;
}
.article-main:hover { transform: translateY(-4px); }
.article-main h3 { font-size: 28px; letter-spacing: -1px; line-height: 1.15; margin: 14px 0 8px; color: #fff; }
.article-main p { color: #ffe8df; margin: 0; }
.article-category {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  padding: 6px 12px;
}
.articles-list { display: grid; gap: 14px; }
.post-card {
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 26px;
  padding: 12px;
  box-shadow: 0 10px 28px rgba(101,46,53,.05);
  transition: .22s;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}
.post-card:hover { transform: translateY(-3px); }
.post-card-thumb {
  display: block;
  width: 112px;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-2);
}
.post-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}
.post-card:hover .post-card-thumb img { transform: scale(1.05); }
.post-card-content { min-width: 0; }
.post-card small { color: var(--brand); font-weight: 800; font-size: 12px; display: block; margin-bottom: 6px; }
.post-card h4 { font-size: 17px; margin-bottom: 6px; }
.post-card p { font-size: 14px; margin: 0; }

/* ===================================
   CTA BANNER
=================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--brand), var(--brand-2) 60%, var(--brand-3));
  border-radius: 44px;
  padding: 50px 48px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-shadow: 0 28px 80px rgba(255,79,123,.28);
}
.cta-banner h2 { color: #fff; margin-bottom: 10px; }
.cta-banner p { color: #fff4ee; max-width: 580px; }
.cta-banner .btn { background: #fff; color: var(--brand); }
.cta-banner .btn:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,0,0,.15); }

/* ===================================
   FOOTER
=================================== */
.nt-footer {
  background: #211614;
  color: #ffe8dc;
  margin-top: 72px;
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.footer-brand { font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 12px; }
.footer-brand-desc { color: #c8a99c; font-size: 14px; line-height: 1.7; }
.footer-col h4 { color: #fff; font-size: 14px; margin-bottom: 16px; letter-spacing: .02em; text-transform: uppercase; }
.footer-col a { display: block; color: #c8a99c; font-size: 14px; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: #9e7a72;
  font-size: 13px;
}

/* ===================================
   FORMS
=================================== */
.nt-form { max-width: 520px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 7px;
  color: var(--ink);
}
.form-group label span { color: var(--brand); }
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--line);
  border-radius: 16px;
  font-size: 15px;
  background: #fff;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-control:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(255,79,123,.1);
}
.form-control::placeholder { color: #bda9a5; }
select.form-control { appearance: none; cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-hint { font-size: 13px; color: var(--muted); margin-top: 5px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input[type=checkbox] {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 2px solid var(--line);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--brand);
}
.form-check label { font-size: 14px; color: var(--muted); }
.form-check a { color: var(--brand); }
.form-divider { text-align: center; color: var(--muted); font-size: 14px; margin: 18px 0; position: relative; }
.form-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.form-divider span { background: #fff; padding: 0 14px; position: relative; z-index: 1; }

/* ===================================
   AUTH PAGES
=================================== */
.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.auth-left {
  background: linear-gradient(135deg, #211614, #623333 50%, #94415d);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
}
.auth-left::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,79,123,.2);
  right: -160px;
  bottom: -100px;
  pointer-events: none;
}
.auth-left .logo { color: #fff; margin-bottom: 28px; font-size: 26px; font-weight: 900; }
.auth-left h2 { font-size: 32px; color: #fff; margin-bottom: 14px; }
.auth-left p { color: #ffe8df; font-size: 16px; }
.auth-right {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
}
.auth-right h2 { margin-bottom: 8px; }
.auth-right .auth-sub { color: var(--muted); margin-bottom: 28px; }
.auth-link { text-align: center; margin-top: 20px; font-size: 14px; color: var(--muted); }
.auth-link a { color: var(--brand); font-weight: 700; }

/* ===================================
   DASHBOARD
=================================== */
.dashboard-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  min-height: calc(100vh - var(--header-h) - 60px);
  padding: 30px 0;
}
.dashboard-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  align-self: start;
}
.sidebar-card {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 26px;
  padding: 24px;
  box-shadow: var(--soft-shadow);
  margin-bottom: 16px;
}
.sidebar-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  font-weight: 900;
  margin: 0 auto 14px;
  overflow: hidden;
}
.sidebar-avatar img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-name { font-size: 17px; font-weight: 800; text-align: center; margin-bottom: 4px; }
.sidebar-meta { font-size: 13px; color: var(--muted); text-align: center; margin-bottom: 18px; }
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 14px;
  color: var(--muted);
  transition: .2s;
  margin-bottom: 4px;
}
.sidebar-nav a:hover, .sidebar-nav a.active {
  background: rgba(255,79,123,.1);
  color: var(--brand);
}
.sidebar-nav a .nav-icon { font-size: 18px; width: 26px; text-align: center; }
.dashboard-main { min-height: 500px; }
.dash-header { margin-bottom: 24px; }
.dash-header h2 { margin-bottom: 6px; font-size: 26px; }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 24px; }
.stat-item {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--soft-shadow);
}
.stat-item strong { display: block; font-size: 28px; font-weight: 900; color: var(--brand); }
.stat-item span { font-size: 12px; color: var(--muted); font-weight: 700; }
.profile-complete-bar { margin: 20px 0; }
.profile-complete-bar label { font-size: 14px; font-weight: 700; margin-bottom: 8px; display: block; }
.progress-bar { height: 8px; background: var(--line); border-radius: 999px; overflow: hidden; }
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  border-radius: 999px;
  transition: width .5s ease;
}

/* ===================================
   PROFILE PAGE (PUBLIC)
=================================== */
.profile-hero {
  height: 300px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffe0d2, #ffb7c8 55%, #dad0ff);
  border-radius: 0 0 44px 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
}
.profile-hero img { width: 100%; height: 100%; object-fit: cover; }
.profile-layout { display: grid; grid-template-columns: 310px 1fr; gap: 24px; margin-top: -60px; position: relative; z-index: 10; }
.profile-sidebar-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow);
  text-align: center;
}
.profile-big-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: #fff;
  margin: 0 auto 14px;
  border: 4px solid #fff;
  box-shadow: 0 12px 36px rgba(255,79,123,.2);
  overflow: hidden;
}
.profile-big-avatar img { width: 100%; height: 100%; object-fit: cover; }
.profile-actions { display: grid; gap: 10px; margin-top: 18px; }
.profile-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 18px 0; }
.profile-detail-item { background: var(--bg); border-radius: 16px; padding: 12px 14px; }
.profile-detail-item small { display: block; font-size: 12px; color: var(--muted); font-weight: 700; margin-bottom: 3px; }
.profile-detail-item span { font-weight: 700; font-size: 14px; color: var(--ink); }
.profile-section { margin-bottom: 24px; }
.profile-section h4 { font-size: 17px; margin-bottom: 12px; border-bottom: 2px solid var(--line); padding-bottom: 8px; }
.profile-bio { font-size: 15px; line-height: 1.8; color: var(--muted); }
.interests-list { display: flex; flex-wrap: wrap; gap: 8px; }
.interest-tag {
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
}

/* ===================================
   MEMBERS LIST
=================================== */
.members-page { padding-top: 30px; }
.filter-bar {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 26px;
  padding: 20px 24px;
  box-shadow: var(--soft-shadow);
  margin-bottom: 24px;
  display: flex;
  gap: 12px;
  align-items: flex-end;
  flex-wrap: wrap;
}
.filter-group { flex: 1; min-width: 160px; }
.filter-group label { display: block; font-size: 12px; font-weight: 800; color: var(--muted); margin-bottom: 6px; text-transform: uppercase; }
.filter-select {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--line);
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  outline: none;
  appearance: none;
}
.filter-select:focus { border-color: var(--brand); }

/* ===================================
   NOTICES & ALERTS
=================================== */
.nt-alert {
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nt-alert-success { background: #ecfff6; color: #167a4a; border: 1px solid #b2f5d8; }
.nt-alert-error { background: #fff5f5; color: #c53030; border: 1px solid #fed7d7; }
.nt-alert-info { background: #ebf8ff; color: #2b6cb0; border: 1px solid #bee3f8; }

/* ===================================
   SINGLE ARTICLE
=================================== */
.single-layout { display: grid; grid-template-columns: 1fr 320px; gap: 28px; }
.article-body { background: #fff; border-radius: var(--radius); padding: 36px; box-shadow: var(--soft-shadow); }
.article-body h1 { font-size: 36px; line-height: 1.2; margin-bottom: 14px; }
.article-meta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 2px solid var(--line); }
.article-meta span { font-size: 14px; color: var(--muted); font-weight: 600; }
.article-content { font-size: 16px; line-height: 1.85; color: #3d2a27; }
.article-content h2 { font-size: 24px; margin: 32px 0 14px; }
.article-content h3 { font-size: 20px; margin: 24px 0 12px; }
.article-content p { margin-bottom: 18px; }
.article-content ul { margin: 14px 0 18px 20px; list-style: disc; }
.article-content ul li { margin-bottom: 8px; }
.article-content blockquote {
  border-left: 4px solid var(--brand);
  padding: 16px 20px;
  background: var(--bg-2);
  border-radius: 0 16px 16px 0;
  margin: 20px 0;
  font-style: italic;
  color: var(--muted);
}
.article-sidebar { position: sticky; top: calc(var(--header-h) + 20px); align-self: start; }
.sidebar-widget { background: #fff; border-radius: 24px; padding: 22px; box-shadow: var(--soft-shadow); margin-bottom: 18px; }
.sidebar-widget h4 { font-size: 16px; margin-bottom: 16px; }

/* ===================================
   BREADCRUMB
=================================== */
.nt-breadcrumb { padding: 16px 0; font-size: 14px; color: var(--muted); font-weight: 600; }
.nt-breadcrumb a { color: var(--muted); }
.nt-breadcrumb a:hover { color: var(--brand); }
.nt-breadcrumb span { color: var(--brand); }

/* ===================================
   REPORT MODAL
=================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(33,22,20,.55);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: .3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  width: min(500px, calc(100% - 40px));
  box-shadow: var(--shadow);
  transform: translateY(20px);
  transition: .3s;
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.modal-close { font-size: 22px; cursor: pointer; color: var(--muted); padding: 4px 8px; border-radius: 8px; }
.modal-close:hover { color: var(--brand); }

/* ===================================
   PAGE HERO
=================================== */
.page-hero {
  padding: 60px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,79,123,.12), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(123,97,255,.1), transparent 50%);
  pointer-events: none;
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { max-width: 600px; margin: 0 auto; font-size: 18px; }

/* ===================================
   FAQ
=================================== */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
}
.faq-question::after { content: '+'; font-size: 22px; color: var(--brand); transition: .3s; }
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer { font-size: 15px; color: var(--muted); display: none; padding-bottom: 16px; line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }

/* ===================================
   404
=================================== */
.page-404 {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.page-404 .emoji-404 { font-size: 80px; margin-bottom: 24px; }
.page-404 h1 { margin-bottom: 14px; }
.page-404 p { margin-bottom: 28px; max-width: 480px; }

/* ===================================
   RESPONSIVE
=================================== */
@media (max-width: 1024px) {
  .nt-menu { display: none; }
  .mobile-toggle { display: block; }
  .nt-hero-grid, .steps-split, .articles-grid, .single-layout { grid-template-columns: 1fr; }
  .app-showcase { display: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .auth-page { grid-template-columns: 1fr; }
  .auth-left { display: none; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .dashboard-sidebar { position: static; }
  .profile-layout { grid-template-columns: 1fr; margin-top: 0; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .price-card.featured { transform: none; }
}
@media (max-width: 640px) {
  .nt-topbar { display: none; }
  .section { padding: 48px 0; }
  .article-main {
    min-height: 320px;
    border-radius: 26px;
  }
  .article-main-content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  .post-card {
    grid-template-columns: 92px minmax(0, 1fr);
    border-radius: 20px;
  }
  .post-card-thumb {
    width: 92px;
    border-radius: 14px;
  }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; border-radius: 28px; padding: 30px; }
  .footer-grid { grid-template-columns: 1fr; }
  .filter-bar { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  h1 { letter-spacing: -.04em; }
  .dark-panel { border-radius: 26px; }
  .float-badge { display: none; }
}

/* ===================================
   UTILITIES
=================================== */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 36px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 36px; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.separator { border: none; border-top: 1px solid var(--line); margin: 28px 0; }

/* ===================================
   SECTION UTILITIES
=================================== */
.section-padding { padding: 72px 0; }
.bg-soft { background: var(--bg-2); }

/* ===================================
   MISSING BUTTONS
=================================== */
.btn-ghost {
  background: transparent;
  border-color: rgba(33,22,20,.18);
  color: var(--ink);
}
.btn-ghost:hover { background: rgba(33,22,20,.06); color: var(--ink); }
.btn-white {
  background: #fff;
  color: var(--brand);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(0,0,0,.13);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,0,0,.18); color: var(--brand); }
.btn-ghost-white {
  background: transparent;
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.btn-ghost-white:hover { background: rgba(255,255,255,.14); color: #fff; }

/* ===================================
   ADMIN BAR COMPENSATION
=================================== */
.admin-bar .nt-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .nt-header { top: 46px; }
}

/* ===================================
   TOPBAR
=================================== */
.nt-topbar {
  background: var(--ink);
  color: #ffe6df;
  font-size: 12px;
  font-weight: 600;
}
.nt-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  gap: 10px;
  flex-wrap: wrap;
}
.nt-topbar strong { color: #fff; }

/* ===================================
   HEADER (nt-* classes)
=================================== */
.nt-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,247,244,.9);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255,255,255,.6);
  transition: box-shadow .3s;
}
.nt-header.scrolled { box-shadow: 0 4px 24px rgba(101,46,53,.1); }
.nt-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.nt-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 21px;
  letter-spacing: -.7px;
  color: var(--ink);
  flex-shrink: 0;
}
.nt-logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 8px 22px rgba(255,79,123,.28);
  flex-shrink: 0;
}
.nt-menu {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.nt-menu-list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nt-menu-list li { position: relative; }
.nt-menu a,
.nt-menu-list a {
  font-size: 14px;
  font-weight: 700;
  color: #513b36;
  padding: 8px 12px;
  border-radius: 12px;
  transition: .2s;
  display: block;
}
.nt-menu a:hover,
.nt-menu-list a:hover,
.nt-menu-list .current-menu-item > a { color: var(--brand); background: rgba(255,79,123,.07); }
.nt-actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.mobile-toggle {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 18px;
  color: var(--ink);
  cursor: pointer;
  line-height: 1;
}
.mobile-toggle.active { background: var(--bg-2); }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 12px 0 18px;
}
.mobile-menu.active { display: block; }
.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu a,
.mobile-menu-list a {
  display: block;
  padding: 11px 14px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 14px;
  margin: 2px 0;
  transition: .2s;
  color: var(--ink);
}
.mobile-menu a:hover,
.mobile-menu-list a:hover { background: var(--bg-2); color: var(--brand); }

/* Header user dropdown */
.header-user-menu { position: relative; }
.user-avatar-mini {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  overflow: hidden;
  cursor: pointer;
  border: none;
}
.user-avatar-mini img { width: 100%; height: 100%; object-fit: cover; }
.user-avatar-btn { background: none; border: none; padding: 0; cursor: pointer; }
.user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 10px;
  min-width: 200px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 200;
}
.user-dropdown.open { display: block; }
.user-dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  transition: .2s;
}
.user-dropdown a:hover { background: var(--bg-2); color: var(--brand); }
.dropdown-divider { height: 1px; background: var(--line); margin: 6px 4px; }

/* ===================================
   STATS SECTION
=================================== */
.stats-section {
  padding: 36px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.stat-item-home {
  text-align: center;
  padding: 18px 12px;
  border-right: 1px solid var(--line);
}
.stat-item-home:last-child { border-right: none; }
.stat-number {
  font-size: clamp(26px,3vw,40px);
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
  background: linear-gradient(135deg,var(--brand),var(--brand-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 13px; color: var(--muted); font-weight: 700; }

/* ===================================
   SECTION HEADER
=================================== */
.section-header { margin-bottom: 44px; text-align: center; }
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg,rgba(255,79,123,.1),rgba(123,97,255,.08));
  border: 1px solid rgba(255,79,123,.18);
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 14px;
}
.section-title { font-size: clamp(26px,4vw,40px); margin-bottom: 14px; color: var(--ink); }
.section-desc { font-size: 16px; max-width: 560px; margin: 0 auto; }
.section-footer-link { text-align: center; margin-top: 36px; }

/* ===================================
   WHY SECTION
=================================== */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.why-card {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.95);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
  transition: transform .22s, box-shadow .22s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-icon { font-size: 32px; margin-bottom: 14px; }
.why-card h3 { font-size: 18px; margin-bottom: 10px; }
.why-card p { font-size: 14px; margin: 0; }

/* ===================================
   CATEGORIES
=================================== */
.categories-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.category-card {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 28px;
  padding: 22px;
  min-height: 152px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: .22s;
  box-shadow: 0 12px 34px rgba(101,46,53,.06);
  text-decoration: none;
  color: inherit;
}
.category-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); color: var(--ink); }
.category-icon { font-size: 28px; margin-bottom: 8px; }
.category-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 5px; color: var(--ink); }
.category-card p { font-size: 13px; color: var(--muted); font-weight: 600; margin: 0; line-height: 1.5; }
.category-arrow { color: var(--brand); font-size: 16px; font-weight: 900; align-self: flex-end; margin-top: 8px; }
.category-card-featured {
  background: linear-gradient(135deg,var(--brand),var(--brand-2));
  border-color: transparent;
}
.category-card-featured h3,
.category-card-featured .category-arrow { color: #fff; }
.category-card-featured p { color: rgba(255,255,255,.88); }
.category-card-featured:hover { color: #fff; }

/* ===================================
   HOW IT WORKS
=================================== */
.how-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 40px; }
.how-step {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.95);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--soft-shadow);
  transition: .22s;
}
.how-step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.how-step-num {
  font-size: 11px;
  font-weight: 900;
  color: var(--brand);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.how-step-icon { font-size: 36px; margin-bottom: 12px; }
.how-step h3 { font-size: 17px; margin-bottom: 8px; }
.how-step p { font-size: 13px; margin: 0; }
.how-cta { text-align: center; }

/* ===================================
   MEMBERS GRID & PROFILE CARDS
=================================== */
.profiles-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.profile-card-avatar-fallback {
  font-size: 60px;
  position: absolute;
  opacity: .55;
  pointer-events: none;
}
.profile-card-img { position: relative; }
.profile-card-img img { position: relative; z-index: 1; }
.profile-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.profile-card-name { font-size: 16px; margin: 0; }
.profile-card-name a { color: var(--ink); }
.profile-age { color: var(--muted); font-weight: 600; font-size: 14px; }
.save-profile-btn { font-size: 18px; padding: 0; background: none; border: none; cursor: pointer; line-height: 1; }
.profile-card-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.meta-item { font-size: 12px; color: var(--muted); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.profile-card-goal { margin-bottom: 10px; }
.profile-card-bio { font-size: 13px; margin-bottom: 14px; line-height: 1.6; }
.profile-card-cta { margin-top: 4px; }
.badge { display: inline-flex; align-items: center; font-weight: 800; border-radius: 999px; }
.badge-pink { background: rgba(255,79,123,.1); color: var(--brand); padding: 5px 10px; font-size: 12px; }
.badge-sm { font-size: 11px; padding: 4px 8px; }
.verified-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.empty-state { text-align: center; padding: 60px 20px; }
.empty-icon { font-size: 56px; margin-bottom: 16px; }

/* ===================================
   ARTICLE CARDS
=================================== */
.articles-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.article-card {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.95);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--soft-shadow);
  transition: .22s;
  display: flex;
  flex-direction: column;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.article-card-img-link { display: block; }
.article-card-img {
  height: 170px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg,#ffd6e7,#d9d0ff);
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-img-gradient { background: linear-gradient(135deg,#ffd6e7,#ffe4cc 50%,#d9d0ff); }
.article-card-img img { width: 100%; height: 100%; object-fit: cover; }
.article-img-icon { font-size: 52px; opacity: .55; }
.article-topic-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,.92);
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
  border-radius: 999px;
  padding: 5px 10px;
}
.article-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.article-card-meta { display: flex; gap: 10px; margin-bottom: 8px; font-size: 12px; color: var(--muted); font-weight: 600; }
.article-card-title { font-size: 15px; margin-bottom: 8px; line-height: 1.35; flex: 1; }
.article-card-title a { color: var(--ink); }
.article-card-title a:hover { color: var(--brand); }
.article-card-excerpt { font-size: 13px; margin-bottom: 14px; line-height: 1.6; }
.article-read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 800;
  color: var(--brand);
  margin-top: auto;
  transition: gap .2s;
}
.article-read-more:hover { gap: 8px; color: var(--brand); }

/* ===================================
   PRICING CARDS (new class names)
=================================== */
.pricing-card {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 32px;
  padding: 28px;
  box-shadow: 0 16px 45px rgba(101,46,53,.07);
  position: relative;
  transition: .22s;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pricing-card-featured {
  background: linear-gradient(135deg,#211614,#4b302c);
  border-color: transparent;
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}
.pricing-card-featured:hover { transform: translateY(-14px); }
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg,var(--brand),var(--brand-2));
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 7px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-title { font-size: 22px; margin-bottom: 6px; }
.pricing-card-featured .pricing-title { color: #fff; }
.pricing-desc { font-size: 14px; color: var(--muted); margin-bottom: 4px; }
.pricing-card-featured .pricing-desc { color: #ffe4d7; }
.pricing-price { margin: 16px 0; }
.price-amount { font-size: 36px; font-weight: 900; letter-spacing: -2px; color: var(--ink); }
.pricing-card-featured .price-amount { color: #fff; }
.price-currency { font-size: 14px; color: var(--muted); font-weight: 600; margin-left: 4px; }
.pricing-card-featured .price-currency { color: #ffe4d7; }
.pricing-features { margin: 18px 0 24px; list-style: none; flex: 1; }
.pricing-features li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(33,22,20,.07);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-card-featured .pricing-features li { border-color: rgba(255,255,255,.1); color: #ffe4d7; }
.feature-icon { font-size: 13px; font-weight: 900; flex-shrink: 0; }
.feature-yes .feature-icon { color: var(--green); }
.feature-no .feature-icon { color: var(--red); opacity: .7; }
.pricing-manual-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}
.pricing-card-featured .pricing-manual-note { color: #ffe4d7; }

/* ===================================
   SAFETY SECTION
=================================== */
.safety-section { padding: 72px 0; }
.safety-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.safety-content h2 { margin: 14px 0 16px; }
.safety-content > p { margin-bottom: 22px; }
.safety-list { list-style: none; margin-bottom: 28px; }
.safety-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.safety-list li:last-child { border-bottom: none; }
.safety-list li svg { color: var(--green); flex-shrink: 0; }
.safety-visual { display: grid; gap: 14px; }
.safety-badge-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--soft-shadow);
}
.s-badge-icon { font-size: 28px; width: 46px; text-align: center; flex-shrink: 0; }
.s-badge-text strong { display: block; font-size: 15px; font-weight: 800; margin-bottom: 2px; }
.s-badge-text span { font-size: 13px; color: var(--muted); }

/* ===================================
   CTA SECTION
=================================== */
.cta-section { padding: 40px 0 56px; }
.cta-bg-shape { display: none; }
.cta-inner {
  background: linear-gradient(135deg,var(--brand),var(--brand-2) 60%,var(--brand-3));
  border-radius: 36px;
  padding: 36px 56px;
  text-align: center;
  color: #fff;
  box-shadow: 0 20px 60px rgba(255,79,123,.24);
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  right: -60px; top: -60px;
  pointer-events: none;
}
.cta-inner h2 { color: #fff; margin-bottom: 10px; font-size: clamp(22px,3vw,34px); position: relative; }
.cta-inner p { color: rgba(255,255,255,.88); max-width: 540px; margin: 0 auto 22px; font-size: 16px; position: relative; }
.cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; position: relative; }
.cta-note { font-size: 13px; color: rgba(255,255,255,.72); font-weight: 700; position: relative; }

/* ===================================
   FOOTER (site-footer classes)
=================================== */
.site-footer {
  background: #211614;
  color: #ffe8dc;
  margin-top: 72px;
  padding: 56px 0 0;
}
.footer-top { padding-bottom: 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4,1fr);
  gap: 28px;
  padding-bottom: 48px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -.01em;
}
.footer-logo .logo-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 16px rgba(255,79,123,.4);
  flex-shrink: 0;
}
.footer-tagline {
  color: #b89a90;
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 22px;
}

/* Contact stack */
.footer-contact-stack { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.footer-brand-col .footer-contact-item {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: #b89a90;
  transition: color .2s;
  margin-bottom: 0;
}
.footer-brand-col .footer-contact-item:hover { color: #fff; }
.footer-contact-icon {
  color: var(--brand);
  display: inline-flex; align-items: center;
  flex-shrink: 0; opacity: .8;
  line-height: 1;
}
.contact-value { font-size: 14px; }

/* Social buttons */
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: rgba(255,255,255,.07);
  color: #b89a90;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.social-btn:hover { color: #fff; }
.social-btn--fb:hover { background: #1877f2; }
.social-btn--tt:hover { background: #111; }
.social-btn--zl:hover { background: #0068ff; }
.social-btn--yt:hover { background: #ff0000; }
.footer-heading {
  color: #fff;
  font-size: 12px;
  margin-bottom: 16px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 800;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #c8a99c; font-size: 14px; transition: color .2s; display: block; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-inner p { color: #9e7a72; font-size: 13px; margin: 0; }
.footer-disclaimer { font-size: 12px !important; opacity: .75; }

/* ===================================
   TOAST NOTIFICATIONS
=================================== */
#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nt-toast {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow);
  transform: translateX(120%);
  transition: transform .3s ease;
  max-width: 280px;
}
.nt-toast.show { transform: translateX(0); }
.nt-toast-success { border-left: 4px solid var(--green); }
.nt-toast-error { border-left: 4px solid var(--red); }

/* ===================================
   RESPONSIVE ADDITIONS
=================================== */
@media (max-width: 1100px) {
  .profiles-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 1024px) {
  .nt-menu { display: none; }
  .mobile-toggle { display: block; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .how-grid { grid-template-columns: repeat(2,1fr); }
  .categories-grid { grid-template-columns: repeat(2,1fr); }
  .profiles-grid { grid-template-columns: repeat(2,1fr); }
  .articles-grid-4 { grid-template-columns: repeat(2,1fr); }
  .safety-inner { grid-template-columns: 1fr; gap: 36px; }
  .cta-inner { padding: 30px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item-home { padding: 14px 10px; }
  .stat-item-home:nth-child(2) { border-right: none; }
  .why-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2,1fr); }
  .profiles-grid { grid-template-columns: 1fr; }
  .articles-grid-4 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card-featured { transform: none; }
  .pricing-card-featured:hover { transform: translateY(-4px); }
  .cta-inner { padding: 28px 20px; border-radius: 26px; }
  .site-footer { margin-top: 40px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .nt-topbar .container { flex-direction: column; align-items: flex-start; gap: 3px; }
  .section-header { margin-bottom: 30px; }
  .section-padding { padding: 48px 0; }
  .safety-section, .how-section, .cta-section { padding: 48px 0; }
}
@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ===================================
   ARCHIVE PAGE
=================================== */
.archive-header {
  background: linear-gradient(135deg, rgba(255,79,123,.08), rgba(123,97,255,.06));
  padding: 40px 0 32px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.archive-title { margin-bottom: 8px; }
.archive-desc { font-size: 17px; max-width: 600px; }
.archive-layout { display: grid; grid-template-columns: 1fr 300px; gap: 28px; }
.archive-pagination { margin-top: 40px; text-align: center; }
.archive-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 12px;
  font-size: 14px; font-weight: 700; margin: 0 3px;
  border: 1px solid var(--line); color: var(--ink); transition: .2s;
}
.archive-pagination .page-numbers:hover,
.archive-pagination .page-numbers.current { background: var(--brand); color: #fff; border-color: var(--brand); }
@media (max-width: 768px) {
  .archive-layout { grid-template-columns: 1fr; }
  .archive-sidebar { display: none; }
}

/* ===================================
   SINGLE MEMBER (PROFILE) PAGE
=================================== */

/* Cover */
.profile-cover {
  height: 300px;
  background: linear-gradient(135deg, #ffe0d2, #ffb7c8 55%, #dad0ff);
  background-size: cover;
  background-position: center top;
  position: relative;
  overflow: hidden;
}
.profile-cover::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg, #faf7f6));
  pointer-events: none;
  z-index: 1;
}
.profile-cover-gradient {
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(255,79,123,.40) 0%, rgba(255,154,92,.24) 42%, rgba(123,97,255,.26) 100%),
    radial-gradient(circle at 18% 8%, rgba(255,255,255,.44), transparent 32%);
}

/* Layout */
.single-page .container { padding-top: 0; }
.profile-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  padding: 24px 0 64px;
  margin-top: -70px;
  position: relative;
  z-index: 10;
}
.profile-main { min-width: 0; }

/* Hero card */
.profile-hero-card {
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,255,255,.92)),
    radial-gradient(circle at 10% 0%, rgba(255,79,123,.10), transparent 34%);
  border: 1px solid rgba(255,255,255,.92);
  border-radius: 34px;
  padding: 36px 40px 34px;
  box-shadow: 0 26px 80px rgba(101,46,53,.14), 0 1px 0 rgba(255,255,255,.9) inset;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}
.profile-hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,79,123,.14), rgba(255,154,92,.10) 42%, transparent 72%);
  opacity: .75;
}

/* Avatar — lifted to overlap cover */
.profile-avatar-large {
  width: 160px; height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff, #fff0ea);
  display: flex; align-items: center; justify-content: center;
  font-size: 52px;
  overflow: hidden;
  flex-shrink: 0;
  border: 6px solid #fff;
  box-shadow:
    0 18px 44px rgba(101,46,53,.18),
    0 0 0 1px rgba(255,79,123,.16),
    0 0 0 10px rgba(255,255,255,.58);
  position: relative;
  z-index: 2;
  margin-top: -70px;
}
.profile-avatar-large img {
  width: 100%; height: 100%;
  object-fit: cover; position: relative; z-index: 1;
}
.profile-avatar-emoji-fallback { position: absolute; z-index: 0; font-size: 54px; }

.profile-hero-info {
  min-width: 0;
  position: relative;
  z-index: 2;
  padding-top: 2px;
}
.profile-name-row {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-bottom: 12px;
}
.profile-name {
  font-size: 34px;
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}
.profile-age { font-size: 21px; color: var(--muted); font-weight: 750; }
.verified-badge-lg {
  display: inline-flex; align-items: center; gap: 5px;
  background: #ecfff6; color: #178856;
  border: 1px solid rgba(23,136,86,.22);
  font-size: 13px; font-weight: 900;
  padding: 8px 15px; border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(23,136,86,.08);
}
.profile-meta-row { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 16px; }
.meta-chip {
  background: rgba(255,240,234,.72);
  border: 1px solid rgba(101,46,53,.12);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px; font-weight: 850; color: #72504a;
}
.profile-goal-row { margin-bottom: 24px; }
.profile-goal-row .badge {
  border: 1px solid rgba(255,79,123,.12);
  box-shadow: 0 10px 22px rgba(255,79,123,.08);
}
.profile-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.profile-action-row .btn {
  min-height: 48px;
  border-radius: 999px;
  font-weight: 950;
}
.profile-action-row .btn-lg {
  min-height: 56px;
  padding-inline: 26px;
  font-size: 16px;
}
.profile-action-row .btn-primary {
  box-shadow: 0 18px 36px rgba(255,79,123,.24);
}
.profile-action-row .btn-outline {
  background: rgba(255,255,255,.72);
  border-color: rgba(33,22,20,.14);
}
.profile-action-row .report-btn {
  min-height: 42px;
  padding-inline: 16px;
  background: #fff;
  border: 1px solid rgba(33,22,20,.16);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(33,22,20,.06);
}
.btn-interested { opacity: .65; cursor: not-allowed; pointer-events: none; }

/* Profile sections */
.profile-section {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 26px 28px;
  box-shadow: 0 2px 16px rgba(33,22,20,.06);
  margin-bottom: 16px;
}
.profile-section-title {
  font-size: 17px; font-weight: 900;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--line);
  color: var(--ink);
}
.profile-bio { font-size: 15px; line-height: 1.9; color: var(--muted); }

/* Interest tags */
.interests-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.interest-tag {
  background: var(--bg-2);
  border: 1.5px solid var(--line);
  color: var(--ink);
  font-size: 13px; font-weight: 700;
  padding: 7px 14px; border-radius: 999px;
  transition: background .18s, border-color .18s, color .18s;
}
.interest-tag:hover {
  background: rgba(255,79,123,.1);
  border-color: var(--brand);
  color: var(--brand);
}

/* Details grid */
.profile-details-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.profile-detail-item {
  background: var(--bg);
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
}
.detail-label {
  display: block;
  font-size: 10px; font-weight: 900;
  color: var(--muted);
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 5px;
}
.detail-value { font-size: 14px; font-weight: 800; color: var(--ink); }

/* Viewpoints */
.viewpoint-item {
  padding: 18px 20px;
  background: var(--bg);
  border-radius: 14px;
  border-left: 3px solid var(--brand);
  margin-bottom: 12px;
}
.viewpoint-item:last-child { margin-bottom: 0; }
.viewpoint-item h3 { font-size: 15px; font-weight: 900; margin-bottom: 8px; color: var(--brand); }
.viewpoint-item p { font-size: 15px; line-height: 1.75; color: var(--muted); margin: 0; }

/* Sidebar */
.profile-sidebar {
  display: flex; flex-direction: column; gap: 18px;
  position: sticky;
  top: calc(var(--header-h, 72px) + 16px);
  align-self: start;
}
.profile-sidebar-card {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  box-shadow: 0 2px 16px rgba(33,22,20,.06);
}
.sidebar-interest-count { text-align: center; padding: 8px 0 4px; }
.interest-num {
  font-size: 52px; font-weight: 900; color: var(--brand);
  display: block; line-height: 1; margin-bottom: 6px;
}
.sidebar-interest-count > span { font-size: 14px; color: var(--muted); font-weight: 700; }
.safety-card h3 { font-size: 15px; font-weight: 900; margin-bottom: 14px; }
.safety-card ul { list-style: none; margin-bottom: 18px; }
.safety-card ul li {
  font-size: 13px; color: var(--muted);
  padding: 9px 0 9px 24px;
  border-bottom: 1px solid var(--line);
  position: relative; line-height: 1.5;
}
.safety-card ul li:last-child { border-bottom: none; }
.safety-card ul li::before { content: '✓'; position: absolute; left: 0; color: #178856; font-weight: 900; }

/* Report modal */
.report-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: none; align-items: center; justify-content: center;
}
.report-modal.open { display: flex; }
.report-modal-overlay {
  position: absolute; inset: 0;
  background: rgba(33,22,20,.6);
  backdrop-filter: blur(8px);
}
.report-modal-inner {
  position: relative; z-index: 1;
  background: #fff; border-radius: var(--radius);
  padding: 36px 32px;
  width: min(500px, calc(100% - 40px));
  box-shadow: var(--shadow);
}
.report-modal-close {
  position: absolute; top: 16px; right: 16px;
  font-size: 18px; cursor: pointer; color: var(--muted);
  padding: 6px 9px; background: var(--bg); border-radius: 50%;
  line-height: 1; transition: .18s; border: none;
}
.report-modal-close:hover { color: var(--brand); background: rgba(255,79,123,.1); }
.report-modal-inner h2 { margin-bottom: 8px; }
.report-modal-inner p { margin-bottom: 22px; color: var(--muted); font-size: 14px; }
.form-label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 7px; }
.form-select { appearance: none; cursor: pointer; }
.required { color: var(--brand); }

/* Responsive */
@media (max-width: 960px) {
  .profile-layout { grid-template-columns: 1fr; margin-top: -40px; }
  .profile-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .profile-sidebar-card { flex: 1; min-width: 200px; }
  .profile-hero-card { grid-template-columns: 1fr; gap: 18px; }
  .profile-avatar-large { margin-top: -58px; margin-bottom: 0; }
}
@media (max-width: 600px) {
  .profile-cover { height: 210px; }
  .profile-layout { margin-top: -30px; padding: 0 0 40px; }
  .profile-hero-card { padding: 24px 20px 22px; border-radius: 26px; }
  .profile-avatar-large { width: 112px; height: 112px; font-size: 40px; margin-top: -44px; }
  .profile-name-row { gap: 8px; }
  .profile-name { font-size: 26px; }
  .profile-age { font-size: 17px; }
  .profile-action-row { flex-direction: column; }
  .profile-action-row .btn { width: 100%; justify-content: center; }
  .profile-details-grid { grid-template-columns: 1fr; }
  .profile-sidebar { flex-direction: column; }
}

/* Profile page refresh: compact, editorial, data-first */
.single-nt_member,
.single-nt_member body {
  background: #f7f3f1;
}
.single-nt_member .profile-cover {
  height: 188px;
  background:
    linear-gradient(115deg, rgba(255,79,123,.18), rgba(255,154,92,.10) 44%, rgba(123,97,255,.18)),
    linear-gradient(180deg, #fff8f6 0%, #f7f3f1 100%);
  border-bottom: 1px solid rgba(33,22,20,.08);
}
.single-nt_member .profile-cover::after {
  height: 72px;
  background: linear-gradient(to bottom, transparent, #f7f3f1);
}
.single-nt_member .profile-cover-gradient {
  background:
    linear-gradient(90deg, rgba(255,79,123,.22), transparent 34%, rgba(123,97,255,.18)),
    radial-gradient(circle at 78% 18%, rgba(255,255,255,.62), transparent 30%);
}
.single-nt_member .profile-layout {
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 24px;
  margin-top: -82px;
  padding: 0 0 72px;
}
.single-nt_member .profile-hero-card,
.single-nt_member .profile-section,
.single-nt_member .profile-sidebar-card {
  border: 1px solid rgba(33,22,20,.09);
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 50px rgba(33,22,20,.07);
}
.single-nt_member .profile-hero-card {
  grid-template-columns: 184px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  border-radius: 24px;
  padding: 24px;
  overflow: visible;
}
.single-nt_member .profile-hero-card::before {
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
  opacity: 1;
  border-radius: 24px 0 0 24px;
}
.single-nt_member .profile-avatar-large {
  width: 184px;
  height: 230px;
  margin: 0;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 18px 34px rgba(33,22,20,.16);
  background: #f2ebe8;
}
.single-nt_member .profile-avatar-large img {
  object-fit: cover;
}
.single-nt_member .profile-hero-info {
  display: grid;
  gap: 14px;
  padding-top: 0;
}
.single-nt_member .profile-name-row {
  margin: 0;
  gap: 12px;
}
.single-nt_member .profile-name {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1;
  font-weight: 950;
}
.single-nt_member .profile-age {
  font-size: .58em;
  font-weight: 850;
  color: #866a64;
}
.single-nt_member .verified-badge-lg {
  padding: 8px 13px;
  border-radius: 10px;
  background: #eafaf1;
  color: #12805a;
  box-shadow: none;
}
.single-nt_member .profile-meta-row {
  gap: 8px;
  margin: 0;
}
.single-nt_member .meta-chip,
.single-nt_member .profile-goal-row .badge {
  border-radius: 10px;
  padding: 9px 12px;
  background: #f8f4f2;
  border-color: rgba(33,22,20,.09);
  color: #6f5650;
  box-shadow: none;
}
.single-nt_member .profile-goal-row {
  margin: 0;
}
.single-nt_member .profile-goal-row .badge {
  background: #fff0f4;
  color: var(--brand);
}
.single-nt_member .profile-action-row {
  gap: 10px;
  padding-top: 8px;
}
.single-nt_member .profile-action-row .btn {
  min-height: 46px;
  border-radius: 12px;
  box-shadow: none;
}
.single-nt_member .profile-action-row .btn-lg {
  min-height: 52px;
  padding-inline: 22px;
}
.single-nt_member .profile-action-row .btn-primary {
  background: #211614;
  color: #fff;
}
.single-nt_member .profile-action-row .btn-primary:hover {
  background: #3a2925;
}
.single-nt_member .profile-action-row .btn-outline,
.single-nt_member .profile-action-row .report-btn {
  background: #fff;
  border-color: rgba(33,22,20,.12);
  color: #211614;
}
.single-nt_member .profile-section {
  border-radius: 20px;
  padding: 28px 32px;
  margin-bottom: 16px;
}
.single-nt_member .profile-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(33,22,20,.08);
  margin-bottom: 20px;
  padding-bottom: 14px;
  font-size: 18px;
  letter-spacing: 0;
}
.single-nt_member .profile-section-title::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}
.single-nt_member .profile-bio {
  max-width: 760px;
  color: #5f4843;
  font-size: 16px;
}
.single-nt_member .profile-details-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.single-nt_member .profile-detail-item {
  min-height: 94px;
  border-radius: 14px;
  background: #fbf8f6;
  border: 1px solid rgba(33,22,20,.08);
  padding: 16px;
}
.single-nt_member .detail-label {
  color: #927974;
  font-size: 11px;
  letter-spacing: .08em;
}
.single-nt_member .detail-value {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.35;
}
.single-nt_member .profile-sidebar {
  gap: 14px;
}
.single-nt_member .profile-sidebar-card {
  border-radius: 18px;
  padding: 20px;
}
.single-nt_member .interest-num {
  color: #211614;
  font-size: 38px;
}
.single-nt_member .safety-card h3 {
  font-size: 16px;
  margin-bottom: 12px;
}
.single-nt_member .safety-card ul li {
  color: #6f5650;
  font-size: 14px;
}
@media (max-width: 960px) {
  .single-nt_member .profile-cover { height: 150px; }
  .single-nt_member .profile-layout {
    grid-template-columns: 1fr;
    margin-top: -64px;
  }
  .single-nt_member .profile-sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .single-nt_member .profile-hero-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .single-nt_member .profile-avatar-large {
    width: 100%;
    height: min(360px, 72vw);
  }
  .single-nt_member .profile-details-grid,
  .single-nt_member .profile-sidebar {
    grid-template-columns: 1fr;
  }
}

/* ===================================
   CONTACT PAGE
=================================== */
.contact-page-header {
  background: linear-gradient(135deg, #fff0ea, #ffd6e7 55%, #e8e0ff);
  padding: 64px 0 56px;
}
.contact-page-header h1 { font-size: clamp(26px,4vw,40px); margin-bottom: 12px; }
.contact-page-header p  { font-size: 17px; color: var(--muted); margin: 0; max-width: 540px; line-height: 1.7; }
.contact-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: var(--soft-shadow);
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info-item:first-child { padding-top: 0; }
.contact-info-item:last-child  { border-bottom: none; padding-bottom: 0; }
.contact-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,79,123,.13), rgba(123,97,255,.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.contact-info-item h3 { font-size: 15px; font-weight: 900; margin-bottom: 4px; }
.contact-info-item a  { font-size: 15px; color: var(--brand); font-weight: 700; display: block; margin-bottom: 3px; }
.contact-info-item a:hover { text-decoration: underline; }
.contact-info-item > div > p { font-size: 12px; color: var(--muted); margin: 0; }
.contact-quick-links {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  box-shadow: var(--soft-shadow);
}
.contact-quick-links h3 { font-size: 15px; font-weight: 900; margin-bottom: 14px; }
.contact-quick-links ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.contact-quick-links ul li a {
  display: block; font-size: 14px; font-weight: 700; color: var(--muted);
  padding: 9px 12px; border-radius: 10px;
  background: var(--bg); transition: .18s;
}
.contact-quick-links ul li a:hover { color: var(--brand); background: rgba(255,79,123,.08); }
.contact-form-wrap { }
.contact-form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 40px;
  box-shadow: var(--soft-shadow);
}
.contact-form-card h2 { font-size: 22px; margin-bottom: 24px; }
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { flex-direction: row; flex-wrap: wrap; }
  .contact-info-card, .contact-quick-links { flex: 1; min-width: 260px; }
}
@media (max-width: 600px) {
  .contact-page-header { padding: 40px 0 36px; }
  .contact-form-card { padding: 24px 20px; }
  .contact-info { flex-direction: column; }
}

/* ===================================
   SINGLE ARTICLE PAGE
=================================== */
.article-page { padding: 20px 0 60px; }
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 28px; }
.article-content-wrap {
  background: rgba(255,255,255,.95);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--soft-shadow);
}
.article-header { margin-bottom: 24px; }
.article-topic-link {
  display: inline-block;
  background: rgba(255,79,123,.1); color: var(--brand);
  font-size: 12px; font-weight: 800;
  border-radius: 999px; padding: 6px 12px;
  margin-bottom: 14px;
}
.article-title { font-size: clamp(24px,4vw,36px); margin-bottom: 14px; }
.article-meta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; padding-bottom: 20px; border-bottom: 2px solid var(--line); }
.article-meta span { font-size: 14px; color: var(--muted); font-weight: 600; }
.article-featured-img { margin-bottom: 28px; border-radius: 20px; overflow: hidden; }
.article-featured-img img { width: 100%; object-fit: cover; max-height: 440px; }
.article-body { font-size: 16px; line-height: 1.85; color: #3d2a27; }
.article-body h2 { font-size: 24px; margin: 32px 0 14px; color: var(--ink); }
.article-body h3 { font-size: 20px; margin: 24px 0 12px; color: var(--ink); }
.article-body p { margin-bottom: 18px; }
.article-body ul, .article-body ol { margin: 14px 0 18px 24px; }
.article-body li { margin-bottom: 8px; }
.article-body .article-toc {
  display: grid;
  gap: 8px;
  background: #fff7f4;
  border: 1px solid rgba(33,22,20,.08);
  border-radius: 18px;
  padding: 18px 20px;
  margin: 24px 0;
}
.article-body .article-toc strong {
  color: var(--ink);
  font-size: 15px;
  margin-bottom: 2px;
}
.article-body .article-toc a {
  color: #72504a;
  font-weight: 800;
  text-decoration: none;
}
.article-body .article-toc a:hover { color: var(--brand); }
.article-body blockquote {
  border-left: 4px solid var(--brand); padding: 16px 20px;
  background: var(--bg-2); border-radius: 0 16px 16px 0;
  margin: 20px 0; font-style: italic; color: var(--muted);
}
.article-cta { margin-top: 36px; }
.article-cta-inner {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border-radius: 28px; padding: 32px; text-align: center; color: #fff;
}
.article-cta-inner h3 { color: #fff; font-size: 22px; margin-bottom: 8px; }
.article-cta-inner p { color: rgba(255,255,255,.88); margin-bottom: 18px; }
.article-sidebar { display: flex; flex-direction: column; gap: 18px; }
.sidebar-widget { background: rgba(255,255,255,.95); border-radius: 22px; padding: 22px; box-shadow: var(--soft-shadow); }
.widget-title { font-size: 16px; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--line); }
.related-articles { list-style: none; }
.related-articles li { border-bottom: 1px solid var(--line); padding: 10px 0; }
.related-articles li:last-child { border-bottom: none; }
.related-articles a { font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1.4; }
.related-articles a:hover { color: var(--brand); }
.topic-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.topic-tag {
  background: var(--bg-2); border: 1px solid var(--line);
  color: var(--muted); font-size: 13px; font-weight: 700;
  padding: 7px 12px; border-radius: 999px; transition: .2s;
}
.topic-tag:hover, .topic-tag.active { background: var(--brand); color: #fff; border-color: var(--brand); }
.sidebar-cta-widget .sidebar-cta { text-align: center; }
.sidebar-cta h3 { font-size: 18px; margin-bottom: 8px; }
.sidebar-cta p { font-size: 14px; margin-bottom: 16px; }
@media (max-width: 768px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }
  .article-content-wrap { padding: 22px; }
}

/* ===================================
   PAGE DEFAULT
=================================== */
.default-single { max-width: 720px; margin: 0 auto; }
.default-single h1 { margin-bottom: 24px; }
.default-content { font-size: 16px; line-height: 1.85; color: #3d2a27; }
.default-content h2 { font-size: 24px; margin: 28px 0 12px; }
.default-content p { margin-bottom: 16px; }

/* ===================================
   MEMBERS PAGE FILTER
=================================== */
.members-page { padding: 20px 0 60px; }
.members-header { margin-bottom: 28px; }
.members-header h1 { margin-bottom: 8px; }
.members-filter { margin-bottom: 28px; }
.topic-list { list-style: none; }
.topic-list li { border-bottom: 1px solid var(--line); }
.topic-list a { display: flex; justify-content: space-between; padding: 10px 0; font-size: 14px; font-weight: 700; color: var(--muted); }
.topic-list a:hover { color: var(--brand); }
.topic-list a span { font-size: 12px; color: var(--muted); }

/* ===================================
   DASHBOARD PAGE — FULL
=================================== */
.dashboard-page { padding: 0 0 60px; }

/* Layout */
.dashboard-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
  padding: 30px 0;
}

/* ---- Sidebar ---- */
.dashboard-sidebar {
  position: sticky;
  top: calc(var(--header-h, 72px) + 20px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sidebar-profile-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--soft-shadow);
  text-align: center;
}

.sidebar-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  margin: 0 auto 14px;
  overflow: hidden;
  position: relative;
}
.sidebar-avatar img { width: 100%; height: 100%; object-fit: cover; }

.sidebar-name {
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 2px;
  color: var(--ink);
}
.sidebar-age { font-size: 14px; color: var(--muted); font-weight: 600; }
.sidebar-region { font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.sidebar-status {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.status-dot.status-public { background: var(--green, #22c55e); }
.status-dot.status-hidden { background: #aaa; }

.sidebar-membership {
  margin: 0 0 16px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff8f5;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sidebar-membership span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.sidebar-membership strong {
  color: var(--brand);
  font-size: 15px;
}
.sidebar-membership small {
  color: var(--muted);
  font-size: 12px;
}

.sidebar-actions { display: flex; flex-direction: column; gap: 8px; }

/* Completion bar */
.sidebar-completion {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--soft-shadow);
}
.completion-header {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 10px;
}
.completion-header strong { color: var(--brand); font-size: 15px; }
.completion-bar {
  height: 8px;
  background: var(--line, #ede3e0);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 10px;
}
.completion-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  border-radius: 999px;
  transition: width .6s ease;
}
.completion-tip { font-size: 12px; color: var(--muted); }

/* Dashboard nav */
.dashboard-nav {
  background: #fff;
  border-radius: var(--radius);
  padding: 10px;
  box-shadow: var(--soft-shadow);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dashboard-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  color: var(--muted);
  transition: .18s;
  position: relative;
}
.dashboard-nav-item:hover {
  background: rgba(255,79,123,.08);
  color: var(--brand);
}
.dashboard-nav-item.active {
  background: rgba(255,79,123,.12);
  color: var(--brand);
}
.nav-badge {
  margin-left: auto;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  border-radius: 999px;
  padding: 2px 8px;
  min-width: 20px;
  text-align: center;
}
.nav-divider { height: 1px; background: var(--line, #ede3e0); margin: 6px 0; }
.nav-logout { color: #c53030; }
.nav-logout:hover { background: #fff5f5; color: #c53030; }

/* ---- Main content ---- */
.dashboard-main { min-height: 500px; display: flex; flex-direction: column; gap: 20px; }

.dashboard-welcome {
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  border-radius: var(--radius);
  padding: 28px 32px;
  color: #fff;
}
.dashboard-welcome h1 { color: #fff; font-size: clamp(22px,3vw,28px); margin-bottom: 6px; }
.dashboard-welcome p { color: rgba(255,255,255,.88); font-size: 15px; margin: 0; }

/* Stat cards row */
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.stat-card {
  background: #fff;
  border-radius: var(--radius-sm, 20px);
  padding: 20px 22px;
  box-shadow: var(--soft-shadow);
  display: flex;
  align-items: center;
  gap: 16px;
}
.stat-card-icon { font-size: 32px; line-height: 1; flex-shrink: 0; }
.stat-card-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-card-label { font-size: 12px; color: var(--muted); font-weight: 700; }
.stat-card-interest { border-left: 4px solid var(--brand); }
.stat-card-saved    { border-left: 4px solid var(--brand-3, #7b61ff); }
.stat-card-completion { border-left: 4px solid var(--brand-2, #ff9a5c); }

/* Dashboard section */
.dashboard-section {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: var(--soft-shadow);
}
.dashboard-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.dashboard-section-header h2 { font-size: 18px; margin: 0; }
.dashboard-section-header a { font-size: 13px; color: var(--brand); font-weight: 700; }
.dashboard-section-header a:hover { text-decoration: underline; }

.dashboard-complete-tips { text-align: center; padding: 32px; }
.dashboard-complete-tips h2 { font-size: 20px; margin-bottom: 8px; }
.dashboard-complete-tips p { color: var(--muted); margin-bottom: 18px; }

/* Smaller profiles grid inside dashboard */
.profiles-grid-sm {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* Responsive dashboard */
@media (max-width: 1024px) {
  .profiles-grid-sm { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .dashboard-layout { grid-template-columns: 1fr; }
  .dashboard-sidebar { position: static; }
  .dashboard-stats { grid-template-columns: 1fr 1fr; }
  .dashboard-welcome { padding: 22px 20px; }
  .profiles-grid-sm { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .dashboard-stats { grid-template-columns: 1fr; }
  .profiles-grid-sm { grid-template-columns: 1fr 1fr; }
}

/* ===================================
   EDIT PROFILE PAGE
=================================== */
.edit-profile-page { padding: 0 0 60px; }

.edit-profile-title {
  font-size: clamp(20px,2.8vw,26px);
  margin-bottom: 22px;
  color: var(--ink);
  padding-bottom: 16px;
  border-bottom: 2px solid var(--line);
}

/* Section card */
.edit-section {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--soft-shadow);
  margin-bottom: 18px;
}
.edit-section-title {
  font-size: 16px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Avatar + cover upload area */
.avatar-cover-wrap {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.cover-upload-wrap {
  flex: 1;
  min-width: 200px;
}
.cover-preview {
  width: 100%;
  height: 130px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffd6e7, #ffe4cc 50%, #d9d0ff);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
  border: 2px dashed var(--line);
  cursor: pointer;
  transition: .2s;
}
.cover-preview:hover { border-color: var(--brand); }

.avatar-upload-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.avatar-preview {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--line);
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}
.avatar-preview img { width: 100%; height: 100%; object-fit: cover; }

.upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg);
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: .18s;
}
.upload-btn:hover { border-color: var(--brand); color: var(--brand); }
.hidden-file-input { display: none; }

/* Visibility options */
.visibility-options { display: flex; gap: 14px; flex-wrap: wrap; }
.visibility-option { cursor: pointer; flex: 1; min-width: 220px; }
.visibility-option input[type="radio"] { display: none; }
.visibility-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 2px solid var(--line);
  border-radius: 18px;
  background: var(--bg);
  transition: .18s;
  cursor: pointer;
}
.visibility-icon { font-size: 26px; flex-shrink: 0; }
.visibility-card strong { display: block; font-size: 14px; margin-bottom: 2px; color: var(--ink); }
.visibility-card p { font-size: 12px; color: var(--muted); margin: 0; line-height: 1.4; }
.visibility-option input[type="radio"]:checked + .visibility-card {
  border-color: var(--brand);
  background: rgba(255,79,123,.05);
}
.visibility-card:hover { border-color: var(--brand); }

/* Form action buttons */
.edit-form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-top: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .edit-section { padding: 20px 18px; }
  .avatar-cover-wrap { flex-direction: column; }
  .cover-upload-wrap { min-width: 100%; }
  .visibility-options { flex-direction: column; }
  .edit-form-actions { flex-direction: column; }
  .edit-form-actions .btn { width: 100%; justify-content: center; }
}

/* ===================================
   AUTH PAGES — LOGIN + REGISTER
   (overrides old .auth-page grid)
=================================== */
.auth-page {
  min-height: calc(100vh - 80px);
  background: var(--bg);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 20px 64px;
}

/* LOGIN: 2-col (card | side) */
.auth-container {
  width: 100%;
  max-width: 980px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: start;
}

/* REGISTER: single centered card */
.auth-container-register {
  grid-template-columns: 1fr;
  max-width: 700px;
}

/* The form card */
.auth-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 44px;
  box-shadow: var(--shadow);
}

.auth-card-wide {
  padding: 40px 48px;
}

/* Logo in card */
.auth-logo {
  text-align: center;
  margin-bottom: 22px;
}
.auth-logo a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
  text-decoration: none;
}
.auth-logo .logo-icon { font-size: 26px; }

.auth-title {
  font-size: clamp(20px,2.5vw,26px);
  text-align: center;
  margin-bottom: 6px;
  color: var(--ink);
}
.auth-subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 14px;
  font-weight: 600;
}

/* Forgot-password link beside label */
.form-group .form-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-label-link {
  font-size: 13px;
  color: var(--brand);
  font-weight: 700;
}

/* Password toggle */
.input-password-wrap { position: relative; }
.input-password-wrap .form-control { padding-right: 46px; }
.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  padding: 4px;
  display: flex;
  align-items: center;
  line-height: 1;
}
.toggle-password:hover { color: var(--brand); }

/* Divider */
.auth-divider {
  text-align: center;
  margin: 20px 0;
  position: relative;
}
.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
}
.auth-divider span {
  background: #fff;
  padding: 0 14px;
  position: relative;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

/* Goal options — radio pill buttons */
.goal-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}
.goal-option { cursor: pointer; }
.goal-option input[type="radio"] { display: none; }
.goal-label {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 999px;
  border: 2px solid var(--line);
  background: var(--bg);
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  transition: .18s;
  cursor: pointer;
  user-select: none;
}
.goal-label:hover { border-color: var(--brand); color: var(--brand); }
.goal-option input[type="radio"]:checked + .goal-label {
  background: rgba(255,79,123,.1);
  border-color: var(--brand);
  color: var(--brand);
}

/* Custom checkbox */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
.checkbox-label input[type="checkbox"] { display: none; }
.checkbox-custom {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid var(--line);
  background: var(--bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .18s;
  margin-top: 2px;
}
.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  background: var(--brand);
  border-color: var(--brand);
}
.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
  display: block;
}
.checkbox-label a { color: var(--brand); font-weight: 700; }
.form-remember { margin-bottom: 20px; }

/* Auth-switch link at bottom */
.auth-switch {
  text-align: center;
  margin-top: 22px;
  font-size: 14px;
  color: var(--muted);
}
.auth-switch-link { color: var(--brand); font-weight: 800; }
.auth-switch-link:hover { text-decoration: underline; }

/* Side panel (login page) */
.auth-side {
  background: linear-gradient(160deg,#211614,#623333 50%,#94415d);
  border-radius: var(--radius);
  padding: 40px 36px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 400px;
  position: sticky;
  top: 100px;
}
.auth-side-content h2 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.4;
}
.auth-benefits { list-style: none; margin-bottom: 28px; }
.auth-benefits li {
  padding: 9px 0;
  font-size: 15px;
  color: #ffe8df;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-weight: 600;
}
.auth-benefits li:last-child { border-bottom: none; }
.auth-testimonial {
  background: rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 18px;
}
.testimonial-text {
  font-size: 14px;
  font-style: italic;
  color: #ffe8df;
  margin-bottom: 8px;
  line-height: 1.6;
}
.testimonial-author {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  font-weight: 700;
}

/* Captcha */
.captcha-group .form-label { margin-bottom: 10px; }
.captcha-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.captcha-question-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 10px 18px;
  white-space: nowrap;
}
.captcha-label { font-size: 13px; color: var(--muted); font-weight: 700; }
.captcha-question { font-size: 20px; color: var(--brand); font-weight: 900; letter-spacing: .5px; }
.captcha-input { width: 120px; flex-shrink: 0; }
.form-hint { font-size: 12px; color: var(--muted); margin-top: 6px; }

/* Responsive */
@media (max-width: 768px) {
  .auth-container { grid-template-columns: 1fr; }
  .auth-side { display: none; }
  .auth-card { padding: 32px 28px; }
  .auth-card-wide { padding: 32px 28px; }
}
@media (max-width: 480px) {
  .auth-page { padding: 24px 14px 40px; }
  .auth-card,
  .auth-card-wide { padding: 26px 20px; }
  .goal-label { font-size: 13px; padding: 8px 14px; }
  .captcha-wrap { flex-direction: column; align-items: flex-start; }
  .captcha-input { width: 100%; }
}

/* ===================================
   INNER PAGES — Shared
=================================== */
.inner-page-hero {
  background: linear-gradient(135deg, #fff0ea, #ffd6e7 50%, #e8e0ff);
  padding: 72px 0 64px;
  text-align: center;
  position: relative;
}
.inner-page-hero--sm { padding: 52px 0 48px; }
.inner-page-hero--safety { background: linear-gradient(135deg, #fff7f0, #ffe0e9 50%, #fff0f0); }
.inner-page-hero--stories { background: linear-gradient(135deg, #fce4ec, #f3e5f5 50%, #e8eaf6); }
.inner-page-hero-content { max-width: 640px; margin: 0 auto; }
.inner-eyebrow {
  display: inline-block;
  background: rgba(255,79,123,.12);
  color: var(--brand);
  font-size: 13px; font-weight: 900;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px;
  margin-bottom: 16px;
}
.inner-page-hero h1 { font-size: clamp(28px,5vw,44px); margin-bottom: 14px; }
.inner-page-hero p { font-size: 17px; color: var(--muted); line-height: 1.7; margin: 0; }

/* ===================================
   ABOUT PAGE
=================================== */
.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.about-mission-text h2 { font-size: 28px; margin-bottom: 18px; }
.about-mission-text p { font-size: 16px; line-height: 1.85; color: var(--muted); margin-bottom: 16px; }
.about-stats-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.about-stat { text-align: center; }
.about-stat strong { display: block; font-size: 32px; font-weight: 900; color: var(--brand); line-height: 1; margin-bottom: 6px; }
.about-stat span { font-size: 13px; color: var(--muted); font-weight: 700; }
.about-values-section { background: var(--bg); padding: 64px 0; }
.about-section-title { font-size: 26px; text-align: center; margin-bottom: 36px; }
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
.value-card {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 28px 24px;
  box-shadow: var(--soft-shadow);
  text-align: center;
}
.value-icon { font-size: 36px; margin-bottom: 14px; }
.value-card h3 { font-size: 17px; font-weight: 900; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0; }
.about-steps { display: flex; flex-direction: column; gap: 0; }
.about-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.about-step:last-child { border-bottom: none; }
.step-num {
  font-size: 48px; font-weight: 900;
  color: rgba(255,79,123,.18);
  line-height: 1; flex-shrink: 0; min-width: 72px;
  letter-spacing: -.02em;
}
.step-body h3 { font-size: 19px; margin-bottom: 10px; }
.step-body p { font-size: 15px; color: var(--muted); line-height: 1.8; margin: 0; }
.about-team-section { background: var(--bg); padding: 64px 0; }
.about-team-lead {
  font-size: 16px; color: var(--muted); line-height: 1.85;
  max-width: 700px; margin: 0 auto 40px; text-align: center;
}
.about-team-values {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.team-value-item {
  background: #fff;
  border-radius: 16px;
  padding: 20px 22px;
  display: flex; gap: 16px; align-items: flex-start;
  box-shadow: var(--soft-shadow);
}
.team-value-icon { font-size: 28px; flex-shrink: 0; }
.team-value-item h4 { font-size: 15px; font-weight: 900; margin-bottom: 6px; }
.team-value-item p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.6; }
.about-cta-section {
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  padding: 72px 0;
}
.about-cta-inner { text-align: center; color: #fff; }
.about-cta-inner h2 { font-size: 32px; margin-bottom: 14px; color: #fff; }
.about-cta-inner p { font-size: 17px; opacity: .88; margin-bottom: 28px; }
.about-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.about-cta-btns .btn-primary { background: #fff; color: var(--brand); }
.about-cta-btns .btn-primary:hover { background: var(--bg); }
.about-cta-btns .btn-outline { border-color: rgba(255,255,255,.6); color: #fff; }
.about-cta-btns .btn-outline:hover { background: rgba(255,255,255,.15); }

@media (max-width: 900px) {
  .about-mission-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-values-grid { grid-template-columns: repeat(2,1fr); }
  .about-team-values { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .about-values-grid { grid-template-columns: 1fr; }
  .about-stats-box { grid-template-columns: 1fr 1fr; }
  .step-num { font-size: 36px; min-width: 52px; }
}

/* ===================================
   FAQ PAGE
=================================== */
.faq-cat-nav {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 36px;
}
.faq-cat-btn {
  background: var(--bg-2);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px; font-weight: 800;
  color: var(--muted); cursor: pointer;
  transition: .18s;
}
.faq-cat-btn:hover { border-color: var(--brand); color: var(--brand); }
.faq-cat-btn.active {
  background: var(--brand); border-color: var(--brand);
  color: #fff;
}
.faq-section { margin-bottom: 40px; }
.faq-section-heading {
  font-size: 20px; font-weight: 900;
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 2px solid var(--line);
}
.faq-cta-box {
  background: linear-gradient(135deg, #fff0ea, #ffd6e7);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  margin-top: 40px;
}
.faq-cta-box h3 { font-size: 22px; margin-bottom: 10px; }
.faq-cta-box p { font-size: 16px; color: var(--muted); margin-bottom: 20px; }

/* ===================================
   SAFETY PAGE
=================================== */
.safety-section-title { font-size: 24px; margin-bottom: 24px; font-weight: 900; }
.safety-measures-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
  margin-bottom: 56px;
}
.safety-measure-card {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 26px 22px;
  box-shadow: var(--soft-shadow);
  text-align: center;
}
.safety-measure-icon { font-size: 36px; margin-bottom: 14px; }
.safety-measure-card h3 { font-size: 15px; font-weight: 900; margin-bottom: 10px; }
.safety-measure-card p { font-size: 13px; color: var(--muted); line-height: 1.7; margin: 0; }
.safety-tips-section { margin-bottom: 56px; }
.safety-tips-grid { display: flex; flex-direction: column; gap: 0; }
.safety-tip {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 24px 0; border-bottom: 1px solid var(--line);
}
.safety-tip:last-child { border-bottom: none; }
.tip-num {
  font-size: 32px; font-weight: 900;
  color: rgba(255,79,123,.2); flex-shrink: 0;
  min-width: 52px; line-height: 1;
}
.tip-body h3 { font-size: 17px; margin-bottom: 8px; }
.tip-body p { font-size: 15px; color: var(--muted); line-height: 1.8; margin: 0; }
.safety-firstdate { margin-bottom: 56px; }
.safety-firstdate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.firstdate-label { font-size: 16px; font-weight: 900; margin-bottom: 16px; }
.firstdate-do-label { color: #178856; }
.firstdate-dont-label { color: #c53030; }
.safety-checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.safety-checklist li {
  font-size: 14px; color: var(--muted); line-height: 1.6;
  padding: 12px 14px; background: #fff;
  border-radius: 10px; box-shadow: var(--soft-shadow);
}
.safety-redflags { margin-bottom: 56px; }
.redflags-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 12px;
}
.redflag-item {
  background: #fff8f7;
  border: 1px solid rgba(197,48,48,.15);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex; gap: 12px; align-items: flex-start;
}
.redflag-icon { font-size: 18px; flex-shrink: 0; }
.redflag-item p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.55; }
.safety-report-card {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border-radius: var(--radius);
  padding: 48px;
  display: flex; gap: 40px; align-items: center;
  color: #fff;
}
.safety-report-content { flex: 1; }
.safety-report-content h2 { font-size: 26px; margin-bottom: 12px; color: #fff; }
.safety-report-content p { font-size: 16px; opacity: .88; margin-bottom: 24px; line-height: 1.7; }
.safety-report-steps {
  display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap;
}
.report-step {
  background: rgba(255,255,255,.18);
  border-radius: 12px; padding: 10px 16px;
  display: flex; flex-direction: column; gap: 3px;
}
.report-step strong { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; opacity: .75; }
.report-step span { font-size: 13px; font-weight: 700; }
.safety-report-content .btn-primary { background: #fff; color: var(--brand); }
.safety-report-content .btn-primary:hover { background: var(--bg); }
.safety-report-visual { font-size: 96px; flex-shrink: 0; opacity: .35; }

@media (max-width: 900px) {
  .safety-measures-grid { grid-template-columns: repeat(2,1fr); }
  .safety-firstdate-grid { grid-template-columns: 1fr; }
  .redflags-grid { grid-template-columns: 1fr; }
  .safety-report-card { flex-direction: column; gap: 24px; }
  .safety-report-visual { display: none; }
}
@media (max-width: 600px) {
  .safety-measures-grid { grid-template-columns: 1fr; }
}

/* ===================================
   SUCCESS STORIES PAGE
=================================== */
.stories-stats-bar {
  background: var(--ink);
  padding: 24px 0;
}
.stories-stats-row {
  display: flex; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.stories-stat { text-align: center; color: #fff; }
.stories-stat strong { display: block; font-size: 28px; font-weight: 900; color: var(--brand-2); line-height: 1; margin-bottom: 4px; }
.stories-stat span { font-size: 13px; opacity: .7; font-weight: 700; }
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
  margin-bottom: 56px;
}
.story-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--soft-shadow);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .22s, box-shadow .22s;
}
.story-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.story-couple-avatars {
  display: flex; align-items: center; gap: 8px;
}
.story-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, #ffe0d2, #ffd6e7);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}
.story-heart { font-size: 20px; }
.story-meta-top { }
.story-goal-badge {
  display: inline-block;
  background: rgba(255,79,123,.1);
  color: var(--brand);
  font-size: 11px; font-weight: 900;
  padding: 4px 10px; border-radius: 999px;
}
.story-names { font-size: 18px; font-weight: 900; margin: 0; }
.story-details {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.story-details span { font-size: 13px; color: var(--muted); font-weight: 700; }
.story-quote {
  font-size: 14px; line-height: 1.75; color: var(--muted);
  font-style: italic; margin: 0;
  padding: 14px 16px;
  background: var(--bg);
  border-left: 3px solid var(--brand);
  border-radius: 0 10px 10px 0;
  flex: 1;
}
.story-date { font-size: 12px; color: var(--muted); font-weight: 700; opacity: .7; margin-top: auto; }
.stories-cta {
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  border-radius: var(--radius);
  padding: 56px 40px;
  text-align: center;
}
.stories-cta-inner h2 { font-size: 28px; color: #fff; margin-bottom: 12px; }
.stories-cta-inner p { font-size: 16px; color: rgba(255,255,255,.85); margin-bottom: 24px; }
.stories-cta-inner .btn-primary { background: #fff; color: var(--brand); }
.stories-cta-inner .btn-primary:hover { background: var(--bg); }

@media (max-width: 900px) {
  .stories-grid { grid-template-columns: repeat(2,1fr); }
  .stories-stats-row { gap: 28px; }
}
@media (max-width: 600px) {
  .stories-grid { grid-template-columns: 1fr; }
  .stories-stats-row { gap: 20px; }
  .stories-cta { padding: 36px 24px; }
  .safety-report-steps { flex-direction: column; }
}

/* ===================================
   LEGAL PAGES (shared)
=================================== */
.legal-page .inner-page-hero { background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 50%, #1a1a2e 100%); }
.legal-page .inner-page-hero h1 { color: #fff; }
.legal-page .inner-page-hero p { color: rgba(255,255,255,.78); }
.legal-page .inner-eyebrow { color: rgba(255,255,255,.6); border-color: rgba(255,255,255,.2); }

.legal-body { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: start; }

/* Table of contents sidebar */
.legal-toc {
  position: sticky;
  top: calc(var(--header-h, 72px) + 20px);
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 22px 20px;
  box-shadow: var(--soft-shadow);
}
.legal-toc-title {
  font-size: 11px; font-weight: 900; text-transform: uppercase;
  letter-spacing: .1em; color: var(--muted); margin-bottom: 14px;
}
.legal-toc-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.legal-toc-list a {
  display: block; font-size: 13px; color: var(--muted);
  padding: 5px 10px; border-radius: 7px;
  text-decoration: none; transition: .15s;
  border-left: 2px solid transparent;
}
.legal-toc-list a:hover {
  background: rgba(255,79,123,.06);
  color: var(--brand);
  border-left-color: var(--brand);
}

/* Legal content area */
.legal-content {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 48px;
  box-shadow: var(--soft-shadow);
}
.legal-meta {
  font-size: 13px; color: var(--muted); margin-bottom: 32px;
  padding-bottom: 20px; border-bottom: 1px solid var(--line);
  display: flex; gap: 20px; flex-wrap: wrap;
}
.legal-meta span { display: flex; align-items: center; gap: 5px; }
.legal-section { margin-bottom: 36px; scroll-margin-top: calc(var(--header-h, 72px) + 24px); }
.legal-section h2 {
  font-size: 20px; font-weight: 900; margin-bottom: 14px;
  padding-bottom: 10px; border-bottom: 2px solid var(--line);
  display: flex; align-items: center; gap: 10px;
}
.legal-section h2 .legal-sec-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff; font-size: 13px; font-weight: 900; flex-shrink: 0;
}
.legal-section p { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 14px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul, .legal-section ol {
  padding-left: 0; list-style: none;
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 14px;
}
.legal-section ul li, .legal-section ol li {
  font-size: 15px; color: var(--muted); line-height: 1.75;
  padding: 10px 14px 10px 36px;
  background: var(--bg);
  border-radius: 8px;
  position: relative;
}
.legal-section ul li::before {
  content: '•';
  position: absolute; left: 14px;
  color: var(--brand); font-weight: 900;
}
.legal-section ol { counter-reset: legal-ol; }
.legal-section ol li { counter-increment: legal-ol; }
.legal-section ol li::before {
  content: counter(legal-ol);
  position: absolute; left: 11px;
  color: var(--brand); font-weight: 900; font-size: 13px;
}
.legal-highlight {
  background: rgba(255,79,123,.07);
  border-left: 3px solid var(--brand);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 15px; color: var(--ink); line-height: 1.75;
}

@media (max-width: 900px) {
  .legal-body { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .legal-content { padding: 28px 24px; }
}
@media (max-width: 600px) {
  .legal-content { padding: 22px 18px; }
  .legal-section h2 { font-size: 17px; }
}
