/* ============================================
   VaultPremium — Master Stylesheet
   ============================================ */

:root {
  --bg: #0b0d12;
  --bg-elev: #12151c;
  --bg-card: #171b24;
  --bg-card-hover: #1c2230;
  --border: #252b38;
  --border-soft: #1e2330;
  --text: #e8ecf1;
  --text-dim: #9aa3b2;
  --text-muted: #6b7280;
  --accent: #d4af37;          /* premium gold */
  --accent-hover: #e6c14a;
  --accent-soft: rgba(212,175,55,0.12);
  --success: #34d399;
  --danger: #f87171;
  --pw: #c8472b;              /* PornWorks brand color */
  --pw-hover: #db5635;
  --sd: #8b5cf6;              /* Seduced.com brand color */
  --sd-hover: #9d70f7;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 20px rgba(0,0,0,0.35);
  --shadow-glow: 0 0 30px rgba(212,175,55,0.18);
  --maxw: 1180px;
  --maxw-prose: 760px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color .15s ease;
}
a:hover { color: var(--accent-hover); }

img { max-width: 100%; height: auto; }

/* ---------- Age gate ---------- */
.age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(8,10,15,0.97);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(10px);
}
.age-gate.hidden { display: none; }
.age-gate__box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  max-width: 460px;
  text-align: center;
  box-shadow: var(--shadow);
}
.age-gate__box h2 { margin: 0 0 12px; font-size: 26px; }
.age-gate__box p { color: var(--text-dim); margin: 0 0 24px; }
.age-gate__actions { display: flex; gap: 12px; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,13,18,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 700;
  color: var(--text);
  letter-spacing: 0.3px;
}
.brand__mark {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--accent), #b8932a);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--bg); font-weight: 900; font-size: 18px;
  font-family: var(--font);
}
.brand:hover { color: var(--accent); }
.main-nav { display: flex; gap: 4px; align-items: center; }
.main-nav a {
  color: var(--text-dim);
  font-size: 14px; font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all .15s ease;
}
.main-nav a:hover { color: var(--text); background: var(--bg-elev); }
.main-nav .nav-cta {
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
}
.main-nav .nav-cta:hover { background: var(--accent-hover); color: var(--bg); }
.nav-toggle {
  display: none; background: none; border: 0;
  color: var(--text); font-size: 24px; cursor: pointer;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #08090d;
  border-top: 1px solid var(--border);
  margin-top: 80px;
  padding: 56px 20px 28px;
}
.site-footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h4 {
  font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--accent); margin: 0 0 16px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: var(--text-dim); font-size: 14px; }
.footer-grid a:hover { color: var(--text); }
.footer-grid p { color: var(--text-dim); font-size: 14px; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  color: var(--text-muted); font-size: 13px;
}
.footer-disclosure {
  background: var(--bg-elev);
  border-left: 3px solid var(--accent);
  padding: 14px 18px;
  border-radius: 6px;
  margin-bottom: 32px;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ---------- Container & Layout ---------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
.prose {
  max-width: var(--maxw-prose);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}
h1 { font-size: clamp(28px, 4.4vw, 44px); margin: 0 0 16px; }
h2 { font-size: clamp(24px, 3vw, 32px); margin: 48px 0 16px; }
h3 { font-size: clamp(19px, 2.2vw, 24px); margin: 32px 0 12px; }
h4 { font-size: 18px; margin: 24px 0 10px; }
p { margin: 0 0 16px; }

.tagline {
  font-style: italic;
  color: var(--text-dim);
  font-size: 17px;
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 16px;
  margin: 0 0 32px;
}

.lede {
  font-size: 18px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 20px;
  margin: 24px 0 32px;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  font-size: 13px;
  color: var(--text-muted);
  margin: 20px 0 12px;
}
.breadcrumbs a { color: var(--text-dim); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span { margin: 0 6px; }

/* ---------- Last-verified stamp ---------- */
.verified-stamp {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--text-dim);
  margin: 0 0 24px;
}
.verified-stamp::before {
  content: "✓";
  color: var(--success);
  font-weight: 700;
}

.byline {
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 24px;
}
.byline a { color: var(--accent); }

/* ---------- Verdict box ---------- */
.verdict-box {
  background: linear-gradient(135deg, var(--bg-card) 0%, #1d2330 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 32px 0;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.verdict-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), #b8932a, var(--accent));
}
.verdict-box h3 {
  margin-top: 0;
  font-family: var(--font);
  font-size: 28px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.score-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  padding: 4px 14px;
  border-radius: 6px;
  font-size: 22px; font-weight: 800;
  font-family: var(--font);
}
.verdict-row { margin: 12px 0; color: var(--text-dim); font-size: 15px; }
.verdict-row strong { color: var(--text); }

.score-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin: 24px 0;
}
.score-grid__item {
  background: var(--bg-elev);
  padding: 12px 14px;
  border-radius: 8px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px;
}
.score-grid__item span:last-child {
  color: var(--accent);
  font-weight: 700;
}

/* ---------- Buttons / CTAs ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  text-align: center;
  border: 0;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  letter-spacing: 0.2px;
}
.btn:hover { transform: translateY(-1px); }
.btn-pw {
  background: linear-gradient(135deg, var(--pw), #a93620);
  color: #fff;
  box-shadow: 0 4px 14px rgba(200,71,43,0.4);
}
.btn-pw:hover { background: linear-gradient(135deg, var(--pw-hover), #b94026); color: #fff; box-shadow: 0 6px 20px rgba(200,71,43,0.55); }
.btn-sd {
  background: linear-gradient(135deg, var(--sd), #6d3fd1);
  color: #fff;
  box-shadow: 0 4px 14px rgba(139,92,246,0.4);
}
.btn-sd:hover { background: linear-gradient(135deg, var(--sd-hover), #7d4fdb); color: #fff; box-shadow: 0 6px 20px rgba(139,92,246,0.55); }
.btn-accent {
  background: var(--accent); color: var(--bg);
  box-shadow: 0 4px 14px rgba(212,175,55,0.35);
}
.btn-accent:hover { background: var(--accent-hover); color: var(--bg); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--bg-elev); color: var(--text); }
.btn-lg { padding: 18px 36px; font-size: 17px; }
.btn-block { display: block; width: 100%; }

.cta-row {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin: 24px 0;
}

/* ---------- Hero ---------- */
.hero {
  padding: 60px 0 40px;
  text-align: center;
  position: relative;
}
.hero h1 {
  font-size: clamp(34px, 5.2vw, 56px);
  max-width: 920px;
  margin: 0 auto 20px;
}
.hero__sub {
  color: var(--text-dim);
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.hero__editor-note {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 18px 22px;
  border-radius: 8px;
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}
.hero__editor-note strong { color: var(--text); }

/* ---------- Network dual card (homepage) ---------- */
.dual-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.network-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color .15s ease, transform .15s ease;
}
.network-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.network-card__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
}
.network-card__head h3 { margin: 0; font-size: 24px; font-family: var(--font); }
.network-card__tag {
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
  display: block;
}
.network-card ul.pros, .network-card ul.cons {
  list-style: none; padding: 0; margin: 16px 0;
}
.network-card ul.pros li::before { content: "✅ "; }
.network-card ul.cons li::before { content: "❌ "; }
.network-card ul.pros li, .network-card ul.cons li {
  font-size: 14px; color: var(--text-dim); margin-bottom: 6px;
}
.network-card .card-actions { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.network-card .card-actions .btn { flex: 1; min-width: 140px; }

/* ---------- Direct-answer block (AIO) ---------- */
.direct-answer {
  background: linear-gradient(135deg, var(--accent-soft), rgba(212,175,55,0.04));
  border: 1px solid rgba(212,175,55,0.3);
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  border-radius: 8px;
  margin: 24px 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
}
.direct-answer__label {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 700;
}

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; margin: 24px 0; }
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 14px;
}
th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
}
th {
  background: var(--bg-elev);
  font-weight: 600;
  color: var(--accent);
  font-family: var(--font);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
tr:last-child td { border-bottom: 0; }
tr:hover td { background: var(--bg-card-hover); }
td strong { color: var(--text); }
.green { color: var(--success); font-weight: 700; }
.red { color: var(--danger); }

/* ---------- Pros/Cons grid ---------- */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}
.pros-cons__box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.pros-cons__box h4 {
  margin: 0 0 14px;
  font-family: var(--font);
  font-size: 17px;
}
.pros-cons__box.pros h4 { color: var(--success); }
.pros-cons__box.cons h4 { color: var(--danger); }
.pros-cons__box ul { padding-left: 20px; margin: 0; }
.pros-cons__box li { margin-bottom: 10px; color: var(--text-dim); font-size: 14px; line-height: 1.6; }

/* ---------- FAQ ---------- */
.faq details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .15s ease;
}
.faq details:hover { border-color: var(--accent); }
.faq summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--accent);
  font-size: 22px;
  font-weight: 300;
  margin-left: 12px;
  transition: transform .15s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details[open] summary { color: var(--accent); }
.faq .faq-body {
  padding: 0 20px 20px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.75;
}

/* ---------- Card lists ---------- */
.card-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.list-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: all .15s ease;
  display: block;
  color: inherit;
}
.list-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  color: inherit;
}
.list-card__tag {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 600;
}
.list-card h3 {
  margin: 0 0 8px;
  font-family: var(--font);
  font-size: 17px;
  color: var(--text);
}
.list-card p {
  color: var(--text-dim);
  font-size: 14px;
  margin: 0;
  line-height: 1.55;
}

/* ---------- Persona routing block (homepage) ---------- */
.persona-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
}
.persona-block h3 {
  margin: 0 0 10px;
  font-family: var(--font);
  font-size: 18px;
  color: var(--accent);
}
.persona-block__links {
  margin-top: 12px;
  font-size: 14px;
}
.persona-block__links a {
  display: inline-block;
  margin: 4px 12px 4px 0;
  color: var(--text-dim);
  border-bottom: 1px dashed var(--border);
  padding-bottom: 1px;
}
.persona-block__links a:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- Risk reversal block ---------- */
.risk-reversal {
  background: linear-gradient(135deg, rgba(52,211,153,0.08), rgba(52,211,153,0.02));
  border: 1px solid rgba(52,211,153,0.3);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 32px 0;
}
.risk-reversal h3 {
  margin-top: 0;
  color: var(--success);
  font-family: var(--font);
  font-size: 20px;
  display: flex; align-items: center; gap: 10px;
}
.risk-reversal ol { padding-left: 20px; }
.risk-reversal li { margin-bottom: 10px; color: var(--text-dim); }
.risk-reversal li strong { color: var(--text); }

/* ---------- Email capture ---------- */
.email-capture {
  background: linear-gradient(135deg, var(--bg-card), #1c2230);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin: 40px 0;
  text-align: center;
  box-shadow: var(--shadow-glow);
}
.email-capture h3 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  color: var(--accent);
}
.email-capture p { color: var(--text-dim); margin-bottom: 20px; }
.email-form {
  display: flex; gap: 10px; max-width: 460px; margin: 0 auto;
  flex-wrap: wrap;
}
.email-form input {
  flex: 1; min-width: 200px;
  padding: 13px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
}
.email-form input:focus { outline: none; border-color: var(--accent); }
.email-form small {
  display: block; width: 100%;
  color: var(--text-muted);
  font-size: 12px; margin-top: 10px;
}

/* ---------- Screenshot placeholder ---------- */
.screenshot-placeholder {
  background: repeating-linear-gradient(45deg, var(--bg-card), var(--bg-card) 10px, var(--bg-elev) 10px, var(--bg-elev) 20px);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 60px 20px;
  margin: 20px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  font-style: italic;
}
.screenshot-placeholder::before {
  content: "📸";
  display: block; font-size: 32px; margin-bottom: 10px;
}

/* ---------- Inline contextual CTA ---------- */
.inline-cta {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  padding: 18px 22px;
  border-radius: 8px;
  margin: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.inline-cta p { margin: 0; color: var(--text); font-weight: 500; }

/* ---------- Final CTA grid ---------- */
.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px 0;
}
.final-cta-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}
.final-cta-card h4 { margin: 0 0 14px; font-family: var(--font); }

/* ---------- Section dividers ---------- */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 56px 0;
  border: 0;
}

/* ---------- Build notes (visible in dev, hidden in prod) ---------- */
.build-notes { display: none; }

/* ---------- Page-notes section (footer of long pages) ---------- */
.page-meta {
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  padding: 24px;
  border-radius: var(--radius);
  margin: 56px 0 20px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .dual-card-grid { grid-template-columns: 1fr; }
  .final-cta-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .pros-cons { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-elev);
    border-bottom: 1px solid var(--border);
    padding: 14px;
    gap: 4px;
  }
  .main-nav.open a { display: block; }
  .nav-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 40px 0 24px; }
  .verdict-box { padding: 22px; }
  .verdict-box h3 { font-size: 22px; }
}
