/* ============================================================
   African Dating Connections — Main Stylesheet
   Design: Premium Global · Cormorant Garamond × DM Sans
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─── CSS VARIABLES ──────────────────────────────────────────── */
:root {
  --ink:           #0D0D0F;
  --ink-mid:       #3D3D45;
  --ink-light:     #8A8A96;
  --gold:          #C4963A;
  --gold-light:    #E8C97A;
  --gold-pale:     #FBF5E8;
  --blush:         #F7EEE8;
  --surface:       #FAFAF9;
  --white:         #FFFFFF;
  --border:        #E8E4DF;
  --border-strong: #C8C4BF;
  --crimson:       #9B1D20;
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     22px;
  --radius-xl:     32px;
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'DM Sans', system-ui, sans-serif;
  --shadow-sm:     0 1px 4px rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.04);
  --shadow-md:     0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg:     0 8px 32px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.06);
  --transition:    all .22s cubic-bezier(.4,0,.2,1);
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--surface); color: var(--ink); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--ink); }
button, input, select, textarea { font-family: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3vw, 3rem); font-weight: 500; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 500; }
p  { font-size: 1rem; color: var(--ink-mid); line-height: 1.7; }

/* ─── UTILITY ────────────────────────────────────────────────── */
.container    { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.container-sm { max-width: 680px;  margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 740px; margin: 0 auto; padding: 0 28px; }
.section      { padding: 100px 0; }
.section-sm   { padding: 56px 0; }
.text-center  { text-align: center; }
.text-muted   { color: var(--ink-light); }
.small        { font-size: 0.84rem; }
.ml-auto      { margin-left: auto; }
.hidden       { display: none !important; }
.flex         { display: flex; }
.items-center { align-items: center; }
.gap-2        { gap: 8px; }
.gap-3        { gap: 12px; }
.form-row     { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:600px){ .form-row { grid-template-columns: 1fr; } }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px 28px; border-radius: var(--radius-md);
  font-weight: 500; font-size: 0.92rem; letter-spacing: .2px;
  cursor: pointer; border: none; transition: var(--transition); white-space: nowrap;
}
.btn-primary  { background: var(--ink); color: white; }
.btn-primary:hover  { background: #1e1e26; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(13,13,15,.25); color: white; }
.btn-gold     { background: var(--gold); color: white; }
.btn-gold:hover     { background: #b5882d; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(196,150,58,.3); color: white; }
.btn-outline  { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-outline:hover  { background: var(--ink); color: white; }
.btn-outline-light  { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,.5); }
.btn-outline-light:hover { background: white; color: var(--ink); }
.btn-ghost    { background: transparent; color: var(--ink-mid); border: 1.5px solid var(--border-strong); }
.btn-ghost:hover    { border-color: var(--ink); color: var(--ink); }
.btn-white    { background: white; color: var(--ink); }
.btn-white:hover    { background: var(--gold-pale); }
.btn-danger   { color: var(--crimson); border: 1.5px solid var(--crimson); background: none; }
.btn-danger:hover   { background: var(--crimson); color: white; }
.btn-warn     { color: #d97706; border: 1.5px solid #d97706; background: none; }
.btn-full     { width: 100%; }
.btn-lg       { padding: 16px 36px; font-size: 1rem; }
.btn-sm       { padding: 9px 18px; font-size: 0.85rem; }
.btn-xs       { padding: 5px 12px; font-size: 0.78rem; }
.btn-liked    { background: var(--crimson) !important; color: white !important; }

/* ─── FORMS ──────────────────────────────────────────────────── */
.form-group   { margin-bottom: 20px; }
.form-label   { display: block; font-weight: 500; font-size: 0.84rem; letter-spacing: .3px; margin-bottom: 7px; color: var(--ink); }
.form-input {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 0.95rem; background: white;
  transition: var(--transition); color: var(--ink); outline: none;
}
.form-input:focus   { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(196,150,58,.12); }
.form-input.input-error { border-color: var(--crimson); }
.form-textarea  { resize: vertical; min-height: 96px; }
.form-select {
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A8A96' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.form-section-title { font-weight: 600; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--ink-light); border-bottom: 1px solid var(--border); padding-bottom: 8px; margin: 24px 0 16px; }
.field-error  { display: block; color: var(--crimson); font-size: 0.8rem; margin-top: 4px; }
.field-hint   { display: block; color: var(--ink-light); font-size: 0.8rem; margin-top: 4px; }
.input-password-wrap { position: relative; }
.input-password-wrap .form-input { padding-right: 44px; }
.toggle-pw    { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; font-size: 1rem; color: var(--ink-light); padding: 0; }
.password-strength { font-size: 0.78rem; font-weight: 600; margin-top: 5px; height: 4px; border-radius: 2px; background: var(--border); overflow: hidden; }
.pw-bar { height: 100%; border-radius: 2px; transition: width .3s; }
.pw-weak   .pw-bar { width: 25%; background: var(--crimson); }
.pw-fair   .pw-bar { width: 50%; background: #d97706; }
.pw-good   .pw-bar { width: 75%; background: #2563eb; }
.pw-strong .pw-bar { width: 100%; background: #22c55e; }
.captcha-notice { text-align: center; font-size: 0.72rem; color: var(--ink-light); margin-top: 10px; }
.captcha-notice a { color: var(--ink-light); text-decoration: underline; }

/* ─── ALERTS ─────────────────────────────────────────────────── */
.alert { padding: 13px 16px; border-radius: var(--radius-sm); font-size: 0.875rem; margin-bottom: 16px; border-left: 4px solid transparent; }
.alert-success { background: #dcfce7; color: #166534; border-color: #22c55e; }
.alert-error   { background: #fee2e2; color: #991b1b; border-color: var(--crimson); }
.alert-warning { background: #fef3c7; color: #92400e; border-color: #f59e0b; }
.alert-info    { background: #dbeafe; color: #1e40af; border-color: #3b82f6; }

/* ─── TOAST NOTIFICATIONS ────────────────────────────────────── */
#toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; max-width: 360px; }
.toast { background: white; border-radius: var(--radius-md); padding: 14px 16px; box-shadow: var(--shadow-lg); border-left: 4px solid var(--ink); display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; opacity: 0; transform: translateX(20px); transition: all .3s ease; pointer-events: auto; }
.toast.toast-visible  { opacity: 1; transform: translateX(0); }
.toast-success { border-left-color: #22c55e; }
.toast-error   { border-left-color: var(--crimson); }
.toast-warning { border-left-color: #f59e0b; }
.toast-info    { border-left-color: #3b82f6; }
.toast-icon    { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.toast-message { flex: 1; color: var(--ink); line-height: 1.4; }
.toast-close   { background: none; border: none; cursor: pointer; color: var(--ink-light); font-size: 1.1rem; padding: 0; line-height: 1; flex-shrink: 0; }

/* ─── SPINNERS ───────────────────────────────────────────────── */
.spinner    { width: 36px; height: 36px; border: 2px solid var(--border); border-top-color: var(--ink); border-radius: 50%; animation: spin .7s linear infinite; }
.spinner-sm { width: 16px; height: 16px; border: 2px solid rgba(255,255,255,.3); border-top-color: white; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp .5s ease forwards; }
.fade-up-delay-1 { animation-delay: .1s; opacity: 0; }
.fade-up-delay-2 { animation-delay: .2s; opacity: 0; }

/* ─── MODALS ─────────────────────────────────────────────────── */
.modal-wrapper  { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-wrapper.modal-visible { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(13,13,15,.65); backdrop-filter: blur(4px); }
.modal          { position: relative; background: white; border-radius: var(--radius-xl); width: 100%; max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-lg); animation: fadeUp .25s ease; }
.modal-large    { max-width: 800px; }
.modal-small    { max-width: 440px; }
.modal-close    { position: absolute; top: 16px; right: 16px; background: var(--surface); border: 1px solid var(--border); width: 32px; height: 32px; border-radius: 50%; font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); z-index: 1; }
.modal-close:hover { background: var(--border); }
body.modal-open { overflow: hidden; }
.upgrade-prompt { padding: 44px 36px; text-align: center; }
.upgrade-icon   { font-size: 3rem; margin-bottom: 12px; }
.upgrade-gate   { padding: 80px 24px; text-align: center; max-width: 440px; margin: 0 auto; }

/* ─── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 900;
  background: rgba(250,250,249,.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.navbar-transparent { background: transparent; backdrop-filter: none; border-bottom: none; position: absolute; width: 100%; }
.nav-inner  { max-width: 1160px; margin: 0 auto; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; height: 66px; }
.nav-logo   { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-mark { width: 34px; height: 34px; background: var(--ink); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-logo-mark svg { width: 18px; height: 18px; }
.nav-logo-text { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--ink); letter-spacing: -.3px; }
.nav-logo-sub  { font-size: 0.66rem; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-light); margin-top: -1px; }
.nav-logo-light .nav-logo-text { color: white; }
.nav-logo-light .nav-logo-sub  { color: rgba(255,255,255,.4); }
.nav-links  { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.88rem; color: var(--ink-mid); font-weight: 500; transition: color .2s; }
.nav-links a:hover, .nav-links a.nav-active { color: var(--ink); }
.nav-links-light a { color: rgba(255,255,255,.6); }
.nav-links-light a:hover { color: white; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.mobile-menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.mobile-menu-toggle span { display: block; width: 22px; height: 1.5px; background: var(--ink); border-radius: 2px; transition: var(--transition); }
@media(max-width:768px){
  .mobile-menu-toggle { display: flex; }
  .nav-links, .nav-actions { display: none; }
}

/* ─── SECTION LABELS / HEADERS ───────────────────────────────── */
.section-label { display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.section-header { margin-bottom: 56px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p  { max-width: 520px; color: var(--ink-light); font-size: 1.02rem; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero { min-height: 92vh; background: var(--ink); display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-bg-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle at 15% 85%, rgba(196,150,58,.12) 0%, transparent 45%), radial-gradient(circle at 85% 15%, rgba(196,150,58,.06) 0%, transparent 40%); pointer-events: none; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px); background-size: 80px 80px; pointer-events: none; }
.hero-inner { max-width: 1160px; margin: 0 auto; padding: 80px 28px; display: grid; grid-template-columns: 1fr 480px; gap: 80px; align-items: center; width: 100%; }
@media(max-width:960px){ .hero-inner { grid-template-columns: 1fr; } .hero-right { display: none; } }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(196,150,58,.15); border: 1px solid rgba(196,150,58,.25); border-radius: 40px; padding: 6px 16px; font-size: 0.8rem; font-weight: 500; color: var(--gold-light); letter-spacing: .3px; margin-bottom: 28px; }
.hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.hero-title { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5rem); font-weight: 600; color: white; line-height: 1.06; margin-bottom: 24px; letter-spacing: -.5px; }
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-subtitle { font-size: 1.05rem; color: rgba(255,255,255,.6); max-width: 500px; margin-bottom: 40px; line-height: 1.75; font-weight: 300; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-btn-secondary { background: rgba(255,255,255,.08); color: rgba(255,255,255,.8); border: 1.5px solid rgba(255,255,255,.15); padding: 13px 22px; font-size: 0.92rem; border-radius: var(--radius-md); cursor: pointer; transition: var(--transition); font-family: var(--font-body); font-weight: 500; }
.hero-btn-secondary:hover { background: rgba(255,255,255,.14); color: white; }
.hero-stats { display: flex; gap: 40px; }
.hero-stat-num   { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; color: white; line-height: 1; }
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,.45); margin-top: 4px; font-weight: 400; }
.hero-stat-divider { width: 1px; background: rgba(255,255,255,.12); height: 40px; align-self: center; }
.hero-cards { position: relative; height: 460px; }
.hero-card { position: absolute; background: rgba(255,255,255,.06); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 22px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero-card-gold { border-color: rgba(196,150,58,.35); }
.hero-card-avatar { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; border: 2px solid rgba(255,255,255,.15); }
.hero-card-name   { font-size: 0.95rem; font-weight: 600; color: white; }
.hero-card-loc    { font-size: 0.78rem; color: rgba(255,255,255,.5); }
.hero-card-tag    { font-size: 0.72rem; padding: 4px 10px; border-radius: 20px; font-weight: 500; }
.tag-verified { background: rgba(34,197,94,.15); color: #86efac; border: 1px solid rgba(34,197,94,.2); }
.tag-match    { background: rgba(196,150,58,.2); color: var(--gold-light); border: 1px solid rgba(196,150,58,.3); }

/* ─── TRUST BAR ──────────────────────────────────────────────── */
.trust-bar { background: white; border-bottom: 1px solid var(--border); padding: 22px 0; }
.trust-items { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--ink-mid); font-size: 0.84rem; font-weight: 500; }
.trust-icon { width: 18px; height: 18px; flex-shrink: 0; color: var(--ink-light); }

/* ─── HOW IT WORKS ───────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--border); border-radius: var(--radius-lg); overflow: hidden; }
@media(max-width:800px){ .steps-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:480px){ .steps-grid { grid-template-columns: 1fr; } }
.step-card { background: white; padding: 36px 28px; }
.step-num  { font-family: var(--font-display); font-size: 3.5rem; font-weight: 300; color: var(--border); line-height: 1; margin-bottom: 20px; }
.step-icon { width: 44px; height: 44px; background: var(--gold-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 1.3rem; }
.step-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; font-family: var(--font-body); }
.step-card p  { font-size: 0.875rem; color: var(--ink-light); line-height: 1.6; }

/* ─── FEATURES BENTO ─────────────────────────────────────────── */
.features-bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media(max-width:860px){ .features-bento { grid-template-columns: 1fr 1fr; } }
@media(max-width:540px){ .features-bento { grid-template-columns: 1fr; } }
.feat { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: var(--transition); }
.feat:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--border-strong); }
.feat-wide { grid-column: span 2; }
@media(max-width:860px){ .feat-wide { grid-column: span 1; } }
.feat-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 1.4rem; }
.feat-icon-ink   { background: #f0f0f2; }
.feat-icon-gold  { background: var(--gold-pale); }
.feat-icon-blush { background: var(--blush); }
.feat h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; font-family: var(--font-body); }
.feat p  { font-size: 0.875rem; color: var(--ink-light); line-height: 1.65; }

/* ─── SAFETY SECTION ─────────────────────────────────────────── */
.safety-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media(max-width:860px){ .safety-wrap { grid-template-columns: 1fr; gap: 48px; } }
.safety-items { display: flex; flex-direction: column; gap: 24px; }
.safety-item  { display: flex; gap: 16px; align-items: flex-start; }
.safety-item-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
.safety-item-body strong { display: block; font-size: 0.93rem; margin-bottom: 4px; color: var(--ink); }
.safety-item-body p { font-size: 0.84rem; color: var(--ink-light); margin: 0; }
.safety-visual { background: var(--ink); border-radius: var(--radius-xl); padding: 40px; display: flex; flex-direction: column; gap: 16px; }
.safety-stat-card  { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-md); padding: 22px; display: flex; align-items: center; gap: 16px; }
.safety-stat-icon  { font-size: 1.8rem; }
.safety-stat-num   { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: white; line-height: 1; }
.safety-stat-label { font-size: 0.78rem; color: rgba(255,255,255,.45); margin-top: 3px; }

/* ─── PRICING CARDS ──────────────────────────────────────────── */
.pricing-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
@media(max-width:860px){ .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } }
.plan-card { background: white; border: 1.5px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; display: flex; flex-direction: column; transition: var(--transition); }
.plan-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.plan-card-featured { border-color: var(--ink); box-shadow: var(--shadow-md); }
.plan-card-platinum { border-color: var(--gold-light); }
.plan-featured-badge { background: var(--ink); color: white; text-align: center; padding: 10px; font-size: 0.75rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.plan-header  { padding: 28px 28px 0; }
.plan-tier    { font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-light); margin-bottom: 8px; }
.plan-tier-gold  { color: var(--gold); }
.plan-tier-plat  { color: var(--gold); }
.plan-price-wrap { display: flex; align-items: baseline; gap: 4px; margin: 14px 0 6px; }
.plan-price      { font-family: var(--font-display); font-size: 3rem; font-weight: 600; color: var(--ink); line-height: 1; }
.plan-price-period { font-size: 0.875rem; color: var(--ink-light); }
.plan-tagline    { font-size: 0.875rem; color: var(--ink-light); padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.plan-features-list { list-style: none; padding: 20px 28px; flex: 1; }
.plan-features-list li { padding: 9px 0; font-size: 0.88rem; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--border); }
.plan-features-list li:last-child { border: none; }
.feat-check { color: #22c55e; font-size: 0.85rem; font-weight: 700; flex-shrink: 0; }
.feat-cross { color: var(--border-strong); font-size: 0.85rem; font-weight: 700; flex-shrink: 0; }
.feat-cross + span { color: var(--ink-light); }
.plan-cta-wrap { padding: 0 28px 12px; }
.plan-billing-note { text-align: center; font-size: 0.75rem; color: var(--ink-light); padding-bottom: 20px; }

/* ─── CTA BAND ───────────────────────────────────────────────── */
.cta-band { background: var(--gold-pale); border-top: 1px solid rgba(196,150,58,.2); border-bottom: 1px solid rgba(196,150,58,.2); padding: 80px 0; text-align: center; }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 36px 40px; }
.faq-item { padding: 18px 0; border-bottom: 1px solid var(--border); }
.faq-item:last-child { border: none; padding-bottom: 0; }
.faq-item strong { display: block; font-size: 0.9rem; margin-bottom: 6px; color: var(--ink); }
.faq-item p { font-size: 0.875rem; margin: 0; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer { background: var(--ink); color: rgba(255,255,255,.5); padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
@media(max-width:860px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:540px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-brand-logo      { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand-logo-mark { width: 32px; height: 32px; background: var(--gold); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.footer-brand-text      { font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: white; }
.footer-brand-desc      { font-size: 0.84rem; line-height: 1.7; max-width: 280px; }
.footer-col h5 { font-size: 0.72rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col ul li a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.8rem; }
/* Simplified footer variant */
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.5); font-size: 0.875rem; }
.footer-links a:hover { color: var(--gold); }
.footer-legal { font-size: 0.78rem; width: 100%; }

/* ─── AUTH PAGES ─────────────────────────────────────────────── */
.auth-page   { min-height: 100vh; }
.auth-shell  { min-height: 100vh; display: flex; }
.auth-panel-l { flex: 1; background: var(--ink); display: flex; flex-direction: column; justify-content: center; padding: 60px; position: relative; overflow: hidden; }
@media(max-width:900px){ .auth-panel-l { display: none; } }
.auth-panel-l-bg { position: absolute; inset: 0; background: radial-gradient(circle at 30% 70%, rgba(196,150,58,.12) 0%, transparent 50%); }
.auth-panel-l-title { font-family: var(--font-display); font-size: 3.2rem; font-weight: 600; color: white; line-height: 1.1; margin-bottom: 20px; position: relative; }
.auth-panel-l-title em { color: var(--gold-light); font-style: italic; }
.auth-panel-l-sub { font-size: 1rem; color: rgba(255,255,255,.55); max-width: 380px; line-height: 1.7; margin-bottom: 48px; position: relative; }
.auth-trust-list { display: flex; flex-direction: column; gap: 14px; position: relative; }
.auth-trust-item { display: flex; align-items: center; gap: 12px; }
.auth-trust-icon { width: 32px; height: 32px; background: rgba(196,150,58,.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
.auth-trust-text { font-size: 0.875rem; color: rgba(255,255,255,.65); }
.auth-stats { display: flex; gap: 36px; position: relative; }
.auth-stat-num   { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; color: white; }
.auth-stat-label { font-size: 0.78rem; color: rgba(255,255,255,.4); }
.auth-stat-divider { width: 1px; background: rgba(255,255,255,.12); height: 36px; align-self: center; }
.auth-panel-r { width: 520px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; padding: 48px 40px; background: var(--surface); overflow-y: auto; }
@media(max-width:900px){ .auth-panel-r { width: 100%; } }
.auth-card { width: 100%; max-width: 440px; }
.auth-card-header { margin-bottom: 32px; }
.auth-card-header h2 { font-size: 2rem; margin-bottom: 6px; }
.auth-card-header p  { font-size: 0.9rem; color: var(--ink-light); }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 24px 0; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.auth-divider span { font-size: 0.8rem; color: var(--ink-light); }
.auth-success-state { text-align: center; padding: 20px 0; }
.success-icon { width: 60px; height: 60px; background: #dcfce7; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 20px; }
.auth-back-link { text-align: center; margin-top: 16px; }
.auth-back-link a { color: var(--ink-light); font-size: 0.875rem; }
.auth-back-link a:hover { color: var(--ink); }
.label-link { float: right; font-size: 0.82rem; font-weight: 400; color: var(--ink-light); }
.label-link:hover { color: var(--ink); }
/* Step indicator bar */
.step-indicator { display: flex; gap: 6px; margin-bottom: 28px; }
.step-indicator-bar { height: 3px; flex: 1; border-radius: 2px; background: var(--border); transition: background .3s; }
.step-indicator-bar.active { background: var(--ink); }
.step-indicator-bar.done   { background: var(--gold); }
.step-label { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--ink-light); margin-bottom: 20px; }
/* Review pending */
.id-upload-section { margin-top: 20px; }
.id-privacy-note { background: #dbeafe; color: #1e40af; padding: 12px 16px; border-radius: var(--radius-sm); font-size: 0.82rem; margin-top: 20px; border-left: 4px solid #3b82f6; }
.review-steps { margin: 20px 0; display: flex; flex-direction: column; gap: 10px; }
.review-step { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: var(--radius-sm); background: var(--surface); color: var(--ink-light); font-size: 0.875rem; border: 1px solid var(--border); }
.review-step.done   { background: #dcfce7; color: #166534; border-color: #86efac; }
.review-step.active { background: #fef3c7; color: #92400e; border-color: #fcd34d; font-weight: 600; }

/* ─── DASHBOARD ──────────────────────────────────────────────── */
.dashboard-body { background: #F4F3F1; min-height: 100vh; }
.dash-topbar { background: white; height: 60px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; padding: 0 24px; position: sticky; top: 0; z-index: 700; }
.dash-topbar-logo { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--ink); display: flex; align-items: center; gap: 8px; text-decoration: none; }
.dash-topbar-logo-mark { width: 28px; height: 28px; background: var(--ink); border-radius: 7px; flex-shrink: 0; }
.dash-topbar-right { display: flex; align-items: center; gap: 14px; }
.dash-plan-pill { padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; }
.pill-free  { background: #F0F0F2; color: var(--ink-mid); }
.pill-gold  { background: var(--gold-pale); color: #8B6514; }
.pill-plat  { background: #EDE9FE; color: #5B21B6; }
.dash-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--ink); display: flex; align-items: center; justify-content: center; font-size: 1rem; border: 2px solid var(--border); flex-shrink: 0; object-fit: cover; }
.dash-user-menu { position: relative; display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 0.875rem; color: var(--ink-mid); }
.dash-user-dropdown { position: absolute; top: calc(100% + 8px); right: 0; background: white; border-radius: var(--radius-md); min-width: 180px; box-shadow: var(--shadow-md); border: 1px solid var(--border); display: none; z-index: 900; }
.dash-user-dropdown.active { display: block; }
.dash-user-dropdown a, .dash-user-dropdown button { display: block; width: 100%; text-align: left; padding: 10px 16px; font-size: 0.875rem; color: var(--ink); background: none; border: none; cursor: pointer; transition: var(--transition); font-family: var(--font-body); }
.dash-user-dropdown a:hover, .dash-user-dropdown button:hover { background: var(--surface); }
.dash-user-dropdown hr { border: none; border-top: 1px solid var(--border); margin: 4px 0; }
.dash-layout  { display: flex; height: calc(100vh - 60px); overflow: hidden; }
.dash-sidebar { width: 228px; background: white; border-right: 1px solid var(--border); display: flex; flex-direction: column; padding: 20px 0; flex-shrink: 0; overflow-y: auto; }
.dash-sidebar-user { display: flex; align-items: center; gap: 10px; padding: 12px; margin: 0 12px 16px; border-bottom: 1px solid var(--border); padding-bottom: 16px; }
.dash-sidebar-user-name { font-weight: 600; font-size: 0.875rem; color: var(--ink); }
.dash-sidebar-user-loc  { font-size: 0.72rem; color: var(--ink-light); }
.dash-nav-section { padding: 0 12px; margin-bottom: 4px; }
.dash-nav-section-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-light); padding: 0 8px; margin-bottom: 8px; display: block; }
.dash-nav-btn { width: 100%; background: none; border: none; padding: 10px 12px; display: flex; align-items: center; gap: 10px; border-radius: var(--radius-sm); cursor: pointer; color: var(--ink-mid); font-size: 0.875rem; font-weight: 500; font-family: var(--font-body); transition: var(--transition); }
.dash-nav-btn:hover  { background: var(--surface); color: var(--ink); }
.dash-nav-btn.active { background: var(--ink); color: white; font-weight: 600; }
.nav-count { margin-left: auto; background: var(--ink-mid); color: white; font-size: 0.68rem; font-weight: 700; padding: 2px 7px; border-radius: 20px; }
.dash-nav-btn.active .nav-count { background: rgba(255,255,255,.25); }
.dash-logout { color: var(--ink-light) !important; }
.dash-logout:hover { color: var(--crimson) !important; background: #fee2e2 !important; }
.dash-main    { flex: 1; overflow-y: auto; padding: 32px 36px; background: #F4F3F1; }
.dash-loading { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; padding: 80px; color: var(--ink-light); }
@media(max-width:768px){ .dash-sidebar { display: none; } .dash-main { padding: 16px; } }

/* ─── BROWSE / PROFILE CARDS ─────────────────────────────────── */
.profiles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.profile-card { background: white; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: var(--transition); cursor: pointer; }
.profile-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--border-strong); }
.profile-card-photo { aspect-ratio: 3/4; position: relative; overflow: hidden; }
.profile-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.profile-card-photo-inner { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 4.5rem; }
.profile-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,13,15,.6) 0%, transparent 45%); opacity: 0; transition: opacity .25s; }
.profile-card:hover .profile-card-overlay { opacity: 1; }
.like-btn { position: absolute; bottom: 12px; right: 12px; width: 38px; height: 38px; border-radius: 50%; background: white; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1rem; box-shadow: var(--shadow-sm); transition: var(--transition); }
.like-btn:hover { background: var(--crimson); transform: scale(1.1); }
.like-btn.liked { background: var(--crimson); }
.profile-card-info   { padding: 14px; }
.profile-card-name   { font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.profile-card-meta   { font-size: 0.78rem; color: var(--ink-light); margin-top: 2px; }
.profile-card-active { font-size: 0.72rem; color: #22c55e; margin-top: 2px; }
/* Skeleton */
.skeleton { background: linear-gradient(90deg, #F0EDE8 25%, #F8F5F2 50%, #F0EDE8 75%); background-size: 200% 100%; animation: skeleton-loading 1.5s infinite; border-radius: var(--radius-sm); }
@keyframes skeleton-loading { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.skeleton-photo { aspect-ratio: 3/4; background: inherit; border-radius: inherit; }
.skeleton-info  { padding: 12px; }
.skeleton-line  { height: 12px; background: rgba(0,0,0,.06); border-radius: 4px; margin-bottom: 8px; }
.skeleton-line-sm { width: 60%; }
.skeleton-avatar { width: 44px; height: 44px; border-radius: 50%; background: rgba(0,0,0,.06); flex-shrink: 0; }
/* View counter */
.view-counter-bar { background: white; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 11px 16px; margin-bottom: 20px; font-size: 0.84rem; color: var(--ink-mid); display: flex; align-items: center; justify-content: space-between; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--ink-light); grid-column: 1/-1; }
.empty-state p { margin-bottom: 16px; }
.empty-state-small { padding: 24px 16px; text-align: center; color: var(--ink-light); font-size: 0.875rem; }
.pagination { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 28px; }
.pagination-info { font-size: 0.84rem; color: var(--ink-light); }
/* Browse filters */
.browse-filters { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }

/* ─── PROFILE MODAL ──────────────────────────────────────────── */
.modal-profile { display: grid; grid-template-columns: 1fr 1fr; min-height: 400px; }
@media(max-width:700px){ .modal-profile { grid-template-columns: 1fr; } }
.modal-photos { background: #111; border-radius: var(--radius-xl) 0 0 var(--radius-xl); overflow: hidden; }
.modal-photo-main img { width: 100%; height: 380px; object-fit: cover; display: block; }
.modal-photo-thumbs { display: flex; gap: 4px; padding: 4px; background: rgba(0,0,0,.8); }
.modal-thumb { width: 52px; height: 52px; object-fit: cover; border-radius: 4px; cursor: pointer; opacity: .6; transition: opacity .2s; border: 2px solid transparent; }
.modal-thumb.active, .modal-thumb:hover { opacity: 1; border-color: var(--gold); }
.modal-profile-info { padding: 32px 28px; overflow-y: auto; }
.modal-profile-info h2 { font-size: 1.6rem; margin-bottom: 4px; }
.modal-location { color: var(--ink-light); margin-bottom: 14px; font-size: 0.875rem; }
.modal-bio { color: var(--ink-mid); margin-bottom: 20px; line-height: 1.7; font-size: 0.9rem; }
.modal-details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 24px; }
.modal-details-grid label { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: .5px; color: var(--ink-light); margin-bottom: 2px; }
.modal-details-grid span { font-weight: 600; font-size: 0.875rem; color: var(--ink); }
.modal-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ─── MESSAGES ───────────────────────────────────────────────── */
.messages-layout { display: grid !important; grid-template-columns: 300px 1fr; height: calc(100vh - 60px); padding: 0 !important; max-width: 100% !important; overflow: hidden; margin: -32px -36px; }
@media(max-width:700px){ .messages-layout { grid-template-columns: 1fr; } }
.conversations-panel { border-right: 1px solid var(--border); background: white; display: flex; flex-direction: column; overflow: hidden; }
.conv-header { padding: 20px 16px 12px; border-bottom: 1px solid var(--border); font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; }
#conversations-list { flex: 1; overflow-y: auto; }
.conv-item { display: flex; align-items: center; gap: 12px; padding: 14px 16px; cursor: pointer; transition: background .15s; border-bottom: 1px solid var(--border); }
.conv-item:hover { background: var(--surface); }
.conv-item.active { background: var(--gold-pale); }
.conv-item.conv-unread .conv-name { font-weight: 700; }
.conv-avatar { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; overflow: hidden; background: var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; border: 1.5px solid var(--border); object-fit: cover; }
.conv-name    { font-weight: 600; font-size: 0.875rem; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.conv-preview { font-size: 0.78rem; color: var(--ink-light); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.conv-time    { font-size: 0.7rem; color: var(--ink-light); }
.conv-badge   { display: block; background: var(--crimson); color: white; border-radius: 20px; font-size: 0.68rem; font-weight: 700; padding: 2px 6px; text-align: center; margin-top: 3px; }
.thread-panel     { display: flex; flex-direction: column; background: var(--surface); overflow: hidden; }
.thread-header    { padding: 14px 20px; background: white; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 12px; }
.thread-avatar    { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; background: var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; overflow: hidden; object-fit: cover; }
.thread-name      { font-weight: 700; font-size: 0.95rem; color: var(--ink); }
.thread-meta      { font-size: 0.78rem; color: var(--ink-light); }
.thread-messages  { flex: 1; overflow-y: auto; padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.thread-empty, .thread-loading { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--ink-light); }
.thread-empty-msgs { text-align: center; color: var(--ink-light); padding: 40px; font-size: 0.9rem; }
.message-bubble     { max-width: 70%; display: flex; flex-direction: column; }
.bubble-sent        { align-self: flex-end; }
.bubble-received    { align-self: flex-start; }
.bubble-content     { padding: 11px 16px; border-radius: 18px; font-size: 0.9rem; line-height: 1.5; white-space: pre-wrap; word-break: break-word; }
.bubble-sent .bubble-content     { background: var(--ink); color: white; border-radius: 18px 18px 4px 18px; }
.bubble-received .bubble-content { background: white; color: var(--ink); border-radius: 18px 18px 18px 4px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.bubble-time        { font-size: 0.7rem; color: var(--ink-light); margin-top: 4px; }
.bubble-sent .bubble-time { text-align: right; }
.thread-compose     { display: flex; gap: 10px; padding: 14px 16px; background: white; border-top: 1px solid var(--border); align-items: flex-end; }
.thread-input       { flex: 1; resize: none; min-height: 44px; max-height: 120px; padding: 11px 14px; font-size: 0.9rem; border: 1.5px solid var(--border); border-radius: var(--radius-md); background: var(--surface); color: var(--ink); outline: none; transition: var(--transition); }
.thread-input:focus { border-color: var(--gold); }

/* ─── PROFILE EDITOR ─────────────────────────────────────────── */
.profile-edit-layout { display: grid; grid-template-columns: 260px 1fr; gap: 36px; align-items: start; }
@media(max-width:900px){ .profile-edit-layout { grid-template-columns: 1fr; } }
.photo-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.photo-slot  { aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden; position: relative; }
.photo-filled { border: 1.5px solid transparent; }
.photo-empty  { border: 1.5px dashed var(--border); background: var(--surface); display: flex; flex-direction: column; align-items: center; justify-content: center; cursor: pointer; font-size: 0.72rem; color: var(--ink-light); gap: 4px; transition: var(--transition); }
.photo-empty:hover { border-color: var(--gold); background: var(--gold-pale); color: var(--gold); }
.photo-slot img  { width: 100%; height: 100%; object-fit: cover; }
.photo-actions   { position: absolute; inset: 0; background: rgba(13,13,15,.5); opacity: 0; display: flex; align-items: center; justify-content: center; gap: 6px; transition: opacity .2s; }
.photo-slot:hover .photo-actions { opacity: 1; }
.btn-photo-action { background: rgba(255,255,255,.9); border: none; border-radius: 4px; width: 30px; height: 30px; cursor: pointer; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.btn-photo-action:hover { background: white; }
.btn-photo-delete:hover { background: var(--crimson); color: white; }
.primary-badge { background: var(--gold); color: var(--ink); font-size: 0.65rem; font-weight: 700; padding: 2px 6px; border-radius: 4px; }
.completeness-bar-wrap { background: white; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 16px; margin-top: 16px; }
.completeness-bar-bg   { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; margin-top: 8px; }
.completeness-bar-fill { height: 100%; background: linear-gradient(90deg, var(--ink), var(--gold)); border-radius: 3px; transition: width .5s ease; }
.id-verify-status { margin-top: 12px; padding: 10px 14px; border-radius: var(--radius-sm); font-size: 0.84rem; font-weight: 500; }
.id-approved  { background: #dcfce7; color: #166534; border: 1px solid #86efac; }
.id-pending   { background: #fef3c7; color: #92400e; border: 1px solid #fcd34d; }
.id-rejected  { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.id-unsubmitted { background: var(--surface); border: 1px solid var(--border); color: var(--ink-mid); }
.rejection-reason { color: #991b1b; font-size: 0.82rem; margin-top: 4px; }

/* ─── BILLING ────────────────────────────────────────────────── */
.billing-card { background: white; border: 1.5px solid var(--border); border-radius: var(--radius-xl); padding: 32px; margin-bottom: 20px; max-width: 640px; }
.billing-plan-row    { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; }
.billing-plan-icon   { width: 56px; height: 56px; border-radius: 16px; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; flex-shrink: 0; }
.billing-plan-name   { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 2px; }
.billing-plan-status { font-size: 0.84rem; color: #22c55e; font-weight: 500; }
.billing-detail-row  { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: var(--ink-mid); }
.billing-cancel-notice { background: #fef3c7; color: #92400e; padding: 10px 14px; border-radius: var(--radius-sm); font-size: 0.875rem; margin-bottom: 16px; }
.billing-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.billing-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.billing-table th { background: var(--surface); padding: 10px 14px; text-align: center; font-weight: 600; font-size: 0.78rem; color: var(--ink); border-bottom: 1px solid var(--border); }
.billing-table th:first-child { text-align: left; }
.billing-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); text-align: center; color: var(--ink-mid); }
.billing-table td:first-child { text-align: left; font-weight: 500; color: var(--ink); }

/* ─── SETTINGS ───────────────────────────────────────────────── */
.settings-sections { display: grid; gap: 20px; max-width: 600px; }
.settings-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.settings-card h2 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; margin-bottom: 18px; }
.settings-danger { border-color: #fca5a5; }
.settings-danger h2 { color: var(--crimson); }
.settings-dl { display: grid; grid-template-columns: 160px 1fr; gap: 10px 16px; font-size: 0.875rem; }
.settings-dl dt { color: var(--ink-light); }
.settings-dl dd { color: var(--ink); font-weight: 500; }

/* ─── PRICING PAGE ───────────────────────────────────────────── */
.pricing-hero { background: var(--ink); padding: 80px 0 60px; text-align: center; }
.billing-toggle { display: flex; align-items: center; justify-content: center; gap: 14px; }
.billing-label  { color: rgba(255,255,255,.5); font-size: 0.9rem; font-weight: 500; cursor: pointer; }
.billing-label.active { color: white; }
.badge-save { background: var(--gold); color: var(--ink); padding: 2px 8px; border-radius: 20px; font-size: 0.72rem; font-weight: 700; }
.toggle-switch { position: relative; width: 44px; height: 24px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider { position: absolute; inset: 0; background: rgba(255,255,255,.2); border-radius: 12px; cursor: pointer; transition: .3s; }
.toggle-slider::before { content: ''; position: absolute; width: 18px; height: 18px; left: 3px; top: 3px; background: white; border-radius: 50%; transition: .3s; }
.toggle-switch input:checked + .toggle-slider { background: var(--gold); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }

/* ─── CONTACT PAGE ───────────────────────────────────────────── */
.page-hero { background: var(--ink); padding: 80px 0; text-align: center; }
.page-hero h1 { color: white; margin-bottom: 8px; }
.page-hero p  { color: rgba(255,255,255,.55); }
.contact-layout { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }
@media(max-width:900px){ .contact-layout { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-info-card { background: white; border-radius: var(--radius-lg); padding: 24px; border: 1px solid var(--border); }
.contact-info-card h3 { font-size: 0.72rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-light); margin-bottom: 16px; }
.contact-info-item { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.contact-info-item:last-child { margin-bottom: 0; }
.ci-icon  { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.contact-info-item strong { display: block; font-size: 0.8rem; margin-bottom: 2px; color: var(--ink); }
.contact-info-item a, .contact-info-item span { font-size: 0.84rem; color: var(--ink-mid); }
.contact-info-item a:hover { color: var(--gold); }
.response-times { list-style: none; }
.response-times li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.84rem; color: var(--ink-mid); }
.response-times li:last-child { border: none; }
.contact-safety-card { background: #fee2e2; border-color: #fca5a5; }
.contact-safety-card h3, .contact-safety-card strong { color: #991b1b; }
.contact-safety-card p { font-size: 0.84rem; color: #7f1d1d; }

/* ─── LEGAL PAGE ─────────────────────────────────────────────── */
.legal-page { padding: 60px 0 80px; }
.legal-header { margin-bottom: 32px; }
.legal-header h1 { font-size: 2rem; margin-bottom: 8px; }
.legal-meta { color: var(--ink-light); font-size: 0.875rem; }
.legal-toc { background: var(--gold-pale); border: 1px solid rgba(196,150,58,.2); border-radius: var(--radius-md); padding: 22px 26px; margin-bottom: 48px; }
.legal-toc strong { display: block; font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.legal-toc ol { padding-left: 18px; }
.legal-toc li { margin-bottom: 5px; font-size: 0.875rem; color: var(--ink-mid); }
.legal-section { margin-bottom: 44px; }
.legal-section h2 { font-size: 1.2rem; font-family: var(--font-body); font-weight: 700; color: var(--ink); border-bottom: 1.5px solid var(--border); padding-bottom: 10px; margin-bottom: 16px; }
.legal-section h3 { font-size: 0.95rem; font-weight: 600; margin: 18px 0 8px; color: var(--ink); font-family: var(--font-body); }
.legal-section p  { margin-bottom: 14px; line-height: 1.8; font-size: 0.9rem; }
.legal-section ul, .legal-section ol { padding-left: 20px; margin-bottom: 14px; }
.legal-section li { margin-bottom: 6px; font-size: 0.9rem; color: var(--ink-mid); line-height: 1.7; }
.legal-callout { border-radius: var(--radius-sm); padding: 14px 18px; margin-bottom: 18px; font-size: 0.875rem; }
.legal-callout-warning { background: #fef3c7; color: #92400e; border-left: 4px solid #f59e0b; }

/* ─── ADMIN PANEL ────────────────────────────────────────────── */
.admin-body   { background: #F4F3F1; min-height: 100vh; }
.admin-topbar { background: var(--ink); height: 56px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; position: sticky; top: 0; z-index: 800; border-bottom: 1px solid rgba(255,255,255,.06); }
.admin-topbar-right { display: flex; align-items: center; gap: 16px; color: rgba(255,255,255,.5); font-size: 0.84rem; }
.admin-layout  { display: flex; height: calc(100vh - 56px); overflow: hidden; }
.admin-sidebar { width: 210px; background: var(--ink); border-right: 1px solid rgba(255,255,255,.06); display: flex; flex-direction: column; padding: 20px 0; flex-shrink: 0; }
.admin-nav-btn { width: 100%; text-align: left; background: none; border: none; padding: 11px 18px; cursor: pointer; font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,.45); transition: var(--transition); font-family: var(--font-body); display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.admin-nav-btn:hover  { background: rgba(255,255,255,.05); color: rgba(255,255,255,.85); }
.admin-nav-btn.active { background: rgba(255,255,255,.08); color: white; font-weight: 600; border-left: 2px solid var(--gold); }
.admin-main    { flex: 1; overflow-y: auto; background: #F4F3F1; padding: 32px 36px; }
.admin-view    { max-width: 1100px; }
.admin-h1 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 24px; color: var(--ink); display: flex; align-items: center; gap: 10px; }
.admin-view-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.admin-search { display: flex; gap: 8px; }
.admin-search .form-input { padding: 9px 14px; font-size: 0.84rem; width: 260px; }
.count-badge { background: var(--crimson); color: white; border-radius: 20px; font-size: 0.78rem; font-weight: 700; padding: 3px 10px; font-family: var(--font-body); }
.stats-grid  { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; margin-bottom: 32px; }
.stat-card   { background: white; border-radius: var(--radius-lg); padding: 20px 22px; border: 1px solid var(--border); }
.stat-card.stat-clickable { cursor: pointer; transition: var(--transition); }
.stat-card.stat-clickable:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.stat-icon   { font-size: 1.3rem; margin-bottom: 10px; }
.stat-value  { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--ink); line-height: 1; }
.stat-label  { font-size: 0.72rem; color: var(--ink-light); text-transform: uppercase; letter-spacing: .5px; margin-top: 5px; }
.admin-table-wrap { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.admin-table th { background: #F8F7F5; padding: 12px 18px; text-align: left; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; color: var(--ink-light); border-bottom: 1px solid var(--border); }
.admin-table td { padding: 13px 18px; border-bottom: 1px solid var(--border); color: var(--ink-mid); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #FAFAF9; }
.admin-table td code { background: #f0f0f2; padding: 2px 6px; border-radius: 4px; font-size: 0.8rem; }
.admin-recent h2 { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--ink-light); margin-bottom: 12px; font-family: var(--font-body); }
.status-badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 0.72rem; font-weight: 600; text-transform: capitalize; white-space: nowrap; }
.status-active        { background: #dcfce7; color: #166534; }
.status-pending_id, .status-pending { background: #fef3c7; color: #92400e; }
.status-pending_review { background: #dbeafe; color: #1e40af; }
.status-suspended     { background: #fee2e2; color: #991b1b; }
.status-banned        { background: #1c0505; color: #fca5a5; }
.status-approved      { background: #dcfce7; color: #166534; }
.status-rejected      { background: #fee2e2; color: #991b1b; }
.status-not_submitted { background: #f3f4f6; color: #374151; }
.status-open          { background: #fef3c7; color: #92400e; }
.status-resolved      { background: #f3f4f6; color: #374151; }
.plan-badge-sm { display: inline-block; padding: 2px 8px; border-radius: 20px; font-size: 0.72rem; font-weight: 700; }
.plan-free  { background: #F0F0F2; color: var(--ink-mid); }
.plan-gold  { background: var(--gold-pale); color: #8B6514; }
.plan-platinum { background: #EDE9FE; color: #5B21B6; }
.id-review-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.id-review-card { background: white; border-radius: var(--radius-lg); padding: 22px; border: 1px solid var(--border); }
.id-review-header { margin-bottom: 8px; }
.id-review-header strong { display: block; font-size: 1rem; color: var(--ink); }
.id-review-header span { font-size: 0.82rem; color: var(--ink-light); }
.id-review-meta { font-size: 0.78rem; color: var(--ink-light); margin-bottom: 14px; }
.id-review-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.id-docs-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 20px 0; }
@media(max-width:600px){ .id-docs-grid { grid-template-columns: 1fr; } }
.id-doc-panel h3 { font-size: 0.875rem; margin-bottom: 8px; color: var(--ink-light); }
.id-doc-img  { width: 100%; border-radius: var(--radius-sm); border: 1px solid var(--border); max-height: 300px; object-fit: contain; background: #111; }
.id-doc-actions { display: flex; gap: 10px; padding-bottom: 8px; }
.id-docs-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 14px 0; }
.id-doc-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); aspect-ratio: 4/3; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; font-size: 1.8rem; color: var(--ink-light); }
.id-doc-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: .5px; color: var(--ink-light); }
.user-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 16px; }
.user-detail-grid label { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: .5px; color: var(--ink-light); margin-bottom: 3px; }
.user-detail-grid span { font-size: 0.9rem; font-weight: 600; color: var(--ink); }

/* ─── BADGES & TAGS ──────────────────────────────────────────── */
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; border-radius: 20px; font-size: 0.72rem; font-weight: 600; }
.badge-gold  { background: var(--gold-pale); color: #8B6514; }
.badge-match { background: #fee2e2; color: #991b1b; }

/* ─── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar       { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--ink-light); }
