@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;800&family=Fraunces:opsz,wght@9..144,500;9..144,700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-base: #0E0819;
  --bg-card: #1A1033;
  --accent: #FF2885;
  --highlight: #F5B947;
  --text: #F5F0FA;
  --muted: #8F85A8;
  --border: #2B1D4A;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(.2,.8,.2,1);
  --transition: 220ms var(--ease);
  --font-body: 'Manrope', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg-base);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  padding-bottom: 76px;
  overflow-x: hidden;
}
body::-webkit-scrollbar { width: 10px; }
body::-webkit-scrollbar-track { background: var(--bg-base); }
body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }
body::-webkit-scrollbar-thumb:hover { background: var(--accent); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; color: var(--text); }
h1 { font-size: clamp(2rem, 6vw, 3.4rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); margin: 2.2rem 0 1rem; }
h3 { font-size: clamp(1.15rem, 2.6vw, 1.45rem); margin: 1.4rem 0 .6rem; font-weight: 600; }
h4 { font-size: 1.05rem; margin: 1rem 0 .4rem; font-weight: 600; }
p { margin-bottom: 1rem; color: var(--text); }
strong { color: var(--highlight); font-weight: 700; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--highlight); }

.nv9-container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 18px; }

/* BUTTONS */
.nv9-btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; font-family: var(--font-body); font-weight: 700; border: 2px solid transparent; border-radius: 999px; cursor: pointer; text-align: center; text-decoration: none; transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition); min-height: 48px; padding: .85rem 1.5rem; font-size: 1rem; }
.nv9-btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 28px -12px rgba(255,40,133,.55); }
.nv9-btn-primary:hover { transform: translateY(-2px); background: #ff4f9d; color: #fff; }
.nv9-btn-highlight { background: var(--highlight); color: #1b1200; }
.nv9-btn-highlight:hover { transform: translateY(-2px); background: #ffc961; color: #1b1200; }
.nv9-btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.nv9-btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.nv9-btn-ghost { background: transparent; color: var(--muted); }
.nv9-btn-ghost:hover { color: var(--accent); }
.nv9-btn-full { width: 100%; }
.nv9-btn-lg { min-height: 56px; padding: 1rem 2rem; font-size: 1.05rem; }
.nv9-btn-sm { min-height: 40px; padding: .55rem 1rem; font-size: .9rem; }

/* NAV */
.nv9-nav { position: sticky; top: 0; z-index: 40; backdrop-filter: blur(12px); background: rgba(14,8,25,.82); border-bottom: 1px solid var(--border); }
.nv9-nav-inner { display: flex; align-items: center; justify-content: space-between; min-height: 64px; gap: 1rem; }
.nv9-logo { display: inline-flex; align-items: center; }
.nv9-logo img { height: 28px; width: auto; }
.nv9-nav-links { display: none; gap: 1.4rem; }
.nv9-nav-links a { color: var(--muted); font-weight: 600; font-size: .95rem; }
.nv9-nav-links a:hover { color: var(--text); }
.nv9-nav-cta { display: flex; align-items: center; gap: .6rem; }
.nv9-burger { display: inline-flex; flex-direction: column; justify-content: center; gap: 4px; width: 44px; height: 44px; border-radius: var(--radius-sm); border: 1px solid var(--border); background: transparent; cursor: pointer; padding: 12px 10px; }
.nv9-burger span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.nv9-mobile-nav { display: none; flex-direction: column; padding: .5rem 0 1.2rem; border-top: 1px solid var(--border); }
.nv9-mobile-nav.open { display: flex; }
.nv9-mobile-nav a { padding: .8rem 0; color: var(--text); font-weight: 600; border-bottom: 1px solid var(--border); }

/* TICKER */
.nv9-ticker { background: linear-gradient(90deg, rgba(255,40,133,.12), rgba(245,185,71,.08)); border-bottom: 1px solid var(--border); overflow: hidden; }
.nv9-ticker-track { display: flex; gap: 2.5rem; padding: .5rem 0; white-space: nowrap; animation: nv9-scroll 36s linear infinite; }
.nv9-ticker-item { font-size: .82rem; color: var(--muted); font-weight: 600; }
.nv9-ticker-item strong { color: var(--highlight); }

/* HERO — LAYOUT B: centred */
.nv9-hero { position: relative; padding: 3rem 0 2rem; text-align: center; overflow: hidden; }
.nv9-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(600px circle at 30% 20%, rgba(255,40,133,.18), transparent 60%), radial-gradient(500px circle at 80% 70%, rgba(245,185,71,.10), transparent 65%); z-index: 0; pointer-events: none; }
.nv9-hero-inner { position: relative; z-index: 1; }
.nv9-eyebrow { display: inline-block; padding: .4rem 1rem; border-radius: 999px; background: rgba(255,40,133,.12); color: var(--accent); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1rem; border: 1px solid rgba(255,40,133,.28); }
.nv9-hero-subtitle { font-size: 1.05rem; color: var(--muted); max-width: 640px; margin: 0 auto 1.6rem; }
.nv9-hero-ctas { display: flex; flex-direction: column; gap: .8rem; align-items: center; justify-content: center; margin-bottom: 2rem; }

/* BONUS BAR */
.nv9-bonus-bar { display: grid; grid-template-columns: 1fr; gap: .8rem; padding: 1.2rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); margin: 0 auto; max-width: 980px; box-shadow: 0 30px 80px -40px rgba(255,40,133,.30); }
.nv9-bonus-item { padding: 1rem; border-radius: var(--radius-md); background: linear-gradient(145deg, rgba(255,40,133,.08), rgba(245,185,71,.04)); border: 1px solid var(--border); text-align: left; }
.nv9-bonus-value { font-family: var(--font-display); font-size: 1.4rem; color: var(--highlight); font-weight: 700; line-height: 1; margin-bottom: .3rem; }
.nv9-bonus-label { font-size: .82rem; color: var(--muted); }

/* TRUST BAR */
.nv9-trust { padding: 1.4rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(26,16,51,.4); }
.nv9-trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; text-align: center; }
.nv9-trust-num { font-family: var(--font-display); font-size: 1.3rem; color: var(--highlight); font-weight: 700; }
.nv9-trust-lbl { font-size: .78rem; color: var(--muted); }

/* CONTENT SECTIONS */
.nv9-section { padding: 2.5rem 0; content-visibility: auto; contain-intrinsic-size: 0 600px; }
.nv9-section-tight { padding: 1.8rem 0; }
.nv9-lead { font-size: 1.08rem; color: var(--text); max-width: 760px; margin-bottom: 1.4rem; }
.nv9-prose p { margin-bottom: 1rem; }
.nv9-prose ul, .nv9-prose ol { margin: 0 0 1rem 1.2rem; color: var(--text); }
.nv9-prose li { margin-bottom: .4rem; }
.nv9-grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }

/* CARDS */
.nv9-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.4rem; }
.nv9-card h3 { margin-top: 0; color: var(--text); }
.nv9-card-accent { border-top: 3px solid var(--accent); }
.nv9-card-highlight { border-top: 3px solid var(--highlight); }

/* STEP LIST */
.nv9-steps { counter-reset: nv9-step; list-style: none; margin-left: 0 !important; padding-left: 0; }
.nv9-steps li { counter-increment: nv9-step; position: relative; padding: 1rem 1rem 1rem 3.4rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: .8rem; }
.nv9-steps li::before { content: counter(nv9-step); position: absolute; left: 1rem; top: 1rem; width: 32px; height: 32px; border-radius: 50%; background: var(--accent); color: #fff; font-family: var(--font-display); font-weight: 700; display: grid; place-items: center; font-size: .95rem; }

/* TABLES */
.nv9-table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--border); margin: 1.2rem 0; }
.nv9-table { width: 100%; border-collapse: collapse; min-width: 520px; background: var(--bg-card); }
.nv9-table th, .nv9-table td { padding: .9rem 1rem; text-align: left; border-bottom: 1px solid var(--border); font-size: .93rem; }
.nv9-table th { background: rgba(255,40,133,.06); color: var(--highlight); font-family: var(--font-display); font-weight: 700; font-size: .88rem; text-transform: uppercase; letter-spacing: .06em; }
.nv9-table tr:last-child td { border-bottom: none; }
.nv9-table td strong { color: var(--highlight); }

/* FAQ */
.nv9-faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: .8rem; overflow: hidden; }
.nv9-faq-q { width: 100%; text-align: left; padding: 1.1rem 3rem 1.1rem 1.2rem; background: transparent; border: none; color: var(--text); font-family: var(--font-body); font-weight: 700; font-size: 1rem; cursor: pointer; position: relative; }
.nv9-faq-q::after { content: '+'; position: absolute; right: 1.2rem; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--accent); transition: transform var(--transition); }
.nv9-faq-item.open .nv9-faq-q::after { content: '−'; }
.nv9-faq-a { max-height: 0; overflow: hidden; transition: max-height var(--transition); padding: 0 1.2rem; }
.nv9-faq-item.open .nv9-faq-a { max-height: 600px; padding-bottom: 1.2rem; }
.nv9-faq-a p { color: var(--muted); margin-bottom: .6rem; }

/* CTA BAND */
.nv9-cta-band { margin: 3rem 0 1rem; padding: 2.4rem 1.4rem; text-align: center; background: linear-gradient(135deg, rgba(255,40,133,.14), rgba(245,185,71,.10)); border: 1px solid var(--border); border-radius: var(--radius-lg); position: relative; overflow: hidden; }
.nv9-cta-band h2 { margin-top: 0; }
.nv9-cta-band p { color: var(--muted); max-width: 560px; margin: 0 auto 1.4rem; }

/* AUTHOR BLOCK */
.nv9-author-card { display: grid; grid-template-columns: 1fr; gap: 1.2rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.6rem; }
.nv9-avatar { width: 96px; height: 96px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--highlight)); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: #fff; margin: 0 auto; }
.nv9-author-meta h3 { margin-top: 0; }
.nv9-author-meta .nv9-role { color: var(--accent); font-weight: 700; font-size: .95rem; }

/* CHECKLIST */
.nv9-check { list-style: none; margin-left: 0 !important; }
.nv9-check li { position: relative; padding-left: 1.8rem; margin-bottom: .55rem; }
.nv9-check li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--highlight); font-weight: 800; }

/* FOOTER */
.nv9-footer { padding: 2.6rem 0 1.4rem; border-top: 1px solid var(--border); background: #090513; margin-top: 3rem; }
.nv9-footer-grid { display: grid; grid-template-columns: 1fr; gap: 1.8rem; margin-bottom: 2rem; }
.nv9-footer h4 { font-family: var(--font-body); text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; color: var(--muted); margin-bottom: .8rem; }
.nv9-footer ul { list-style: none; }
.nv9-footer li { margin-bottom: .45rem; }
.nv9-footer a { color: var(--text); font-size: .92rem; }
.nv9-footer a:hover { color: var(--accent); }
.nv9-footer-legal { padding-top: 1.4rem; border-top: 1px solid var(--border); font-size: .8rem; color: var(--muted); text-align: center; }
.nv9-age { display: inline-block; padding: .2rem .55rem; background: var(--accent); color: #fff; border-radius: 6px; font-weight: 800; margin-right: .5rem; }

/* STICKY MOBILE CTA */
.nv9-sticky { position: fixed; bottom: 0; left: 0; right: 0; z-index: 50; display: flex; gap: .6rem; padding: .6rem; background: rgba(14,8,25,.96); backdrop-filter: blur(10px); border-top: 1px solid var(--border); }
.nv9-sticky .nv9-btn { flex: 1; min-height: 48px; }

/* ANIMATIONS */
@keyframes nv9-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes nv9-fade-up { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.nv9-animate { opacity: 0; }
.nv9-animate.nv9-visible { animation: nv9-fade-up .6s var(--ease) forwards; }

/* FORMS */
.nv9-form { display: grid; gap: .9rem; }
.nv9-form label { font-size: .9rem; color: var(--muted); font-weight: 600; display: block; margin-bottom: .3rem; }
.nv9-form input, .nv9-form textarea, .nv9-form select { width: 100%; padding: .85rem 1rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text); font-family: var(--font-body); font-size: 1rem; min-height: 48px; }
.nv9-form textarea { min-height: 140px; resize: vertical; }
.nv9-form input:focus, .nv9-form textarea:focus, .nv9-form select:focus { outline: 2px solid var(--accent); outline-offset: 1px; }

/* BREADCRUMB */
.nv9-crumb { padding: .9rem 0; font-size: .84rem; color: var(--muted); }
.nv9-crumb a { color: var(--muted); }
.nv9-crumb a:hover { color: var(--accent); }
.nv9-crumb span { margin: 0 .4rem; opacity: .5; }

/* RESPONSIVE */
@media (min-width: 480px) {
  .nv9-hero-ctas { flex-direction: row; }
  .nv9-bonus-bar { grid-template-columns: 1fr 1fr; }
  .nv9-trust-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 768px) {
  body { padding-bottom: 0; }
  .nv9-sticky { display: none; }
  .nv9-nav-links { display: flex; }
  .nv9-burger { display: none; }
  .nv9-grid-2 { grid-template-columns: 1fr 1fr; }
  .nv9-bonus-bar { grid-template-columns: repeat(3, 1fr); }
  .nv9-author-card { grid-template-columns: 140px 1fr; align-items: start; }
  .nv9-avatar { margin: 0; }
  .nv9-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .nv9-hero { padding: 4.5rem 0 3rem; }
  .nv9-section { padding: 3.5rem 0; }
  h2 { margin-top: 3rem; }
}

@media (min-width: 1024px) {
  body { font-size: 17px; }
  .nv9-container { padding: 0 28px; }
  .nv9-section { padding: 4.5rem 0; }
}
