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

:root {
  --bg: #0D0B1F;
  --bg-2: #14122B;
  --card: #1A1838;
  --card-2: #221F45;
  --line: rgba(255,255,255,0.1);
  --white: #F3F1FF;
  --slate: #A8A3CC;
  --muted: #6B6699;
  --neon: #B8F02D;
  --neon-deep: #93C415;
  --purple: #8B5CF6;
  --pink: #EC4899;
  --cyan: #22D3EE;
  --danger: #F2555A;
  --safe: #34D399;
  --grad: linear-gradient(120deg, #8B5CF6, #EC4899);
  --radius: 16px;
  --maxw: 880px;
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); background: var(--bg); color: var(--white); line-height: 1.7; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--cyan); text-decoration: none; }

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 8px; top: 8px; background: var(--neon); color: var(--bg); padding: 8px 14px; border-radius: 8px; z-index: 100; }

.container { width: 100%; max-width: 1100px; margin-inline: auto; padding-inline: 20px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(13,11,31,0.9); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); }
.header-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 60px; }
.brand { display: flex; align-items: center; gap: 10px; color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 19px; }
.brand-mark { width: 34px; height: 34px; display: grid; place-items: center; background: var(--grad); border-radius: 9px; font-size: 18px; }
.brand b { color: var(--neon); }
.main-nav-inline { display: flex; gap: 8px; }
.main-nav-inline a { color: var(--slate); font-size: 13px; font-weight: 600; padding: 8px 12px; border-radius: 8px; }
.main-nav-inline a:hover { color: #fff; background: var(--card); text-decoration: none; }
@media (max-width: 560px) { .main-nav-inline { display: none; } }

/* Hero */
.hero { background: linear-gradient(160deg, #14122B, #0D0B1F); position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero::after { content: ""; position: absolute; top: -30%; right: -10%; width: 480px; height: 480px; background: radial-gradient(circle, rgba(139,92,246,0.22), transparent 60%); pointer-events: none; }
.hero::before { content: ""; position: absolute; bottom: -40%; left: -10%; width: 420px; height: 420px; background: radial-gradient(circle, rgba(236,72,153,0.16), transparent 60%); pointer-events: none; }
.hero-inner { position: relative; padding-block: 48px 52px; max-width: var(--maxw); }
.hero-eyebrow { display: inline-block; font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--neon); background: rgba(184,240,45,0.1); border: 1px solid rgba(184,240,45,0.25); padding: 7px 16px; border-radius: 999px; margin-bottom: 22px; }
.hero h1 { font-family: var(--font-display); font-size: clamp(30px, 6vw, 54px); font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 18px; }
.hero h1 .hl { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: clamp(16px, 2.4vw, 19px); color: var(--slate); max-width: 60ch; margin-bottom: 22px; }
.hero-sub strong { color: var(--white); }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px; font-size: 13px; color: var(--muted); }

/* Article wrap */
.article-wrap { max-width: var(--maxw); margin-inline: auto; padding-block: 44px; }

h2 { font-family: var(--font-display); font-size: clamp(22px, 3.6vw, 30px); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; color: var(--white); }

/* Reality box */
.reality-box { background: linear-gradient(135deg, rgba(139,92,246,0.14), rgba(236,72,153,0.1)); border: 1px solid var(--line); border-left: 4px solid var(--neon); border-radius: var(--radius); padding: 26px 28px; margin-bottom: 44px; }
.reality-box h2 { font-size: 20px; margin-bottom: 10px; }
.reality-box p { color: var(--slate); font-size: 15.5px; }
.reality-box strong { color: var(--white); }

/* Method blocks */
.method { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; margin-bottom: 20px; transition: border-color 0.2s, transform 0.2s; }
.method:hover { border-color: rgba(139,92,246,0.4); transform: translateY(-2px); }
.method-head { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.method-num { flex-shrink: 0; width: 46px; height: 46px; display: grid; place-items: center; background: var(--grad); border-radius: 12px; font-family: var(--font-display); font-weight: 800; font-size: 22px; color: #fff; }
.method-head h2 { font-size: clamp(18px, 3vw, 23px); }
.method > p { color: var(--slate); font-size: 15.5px; margin-bottom: 14px; }
.method > p strong { color: var(--white); }
.method-points { display: flex; flex-direction: column; gap: 8px; }
.method-points li { font-size: 14.5px; color: var(--slate); padding-left: 18px; position: relative; }
.method-points li::before { content: "▸"; position: absolute; left: 0; color: var(--neon); }
.method-points strong { color: var(--white); }

/* Scam section */
.scam-section { margin-top: 48px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; }
.scam-section > p { color: var(--slate); margin: 10px 0 20px; font-size: 15.5px; }
.scam-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 700px) { .scam-grid { grid-template-columns: 1fr 1fr; } }
.scam-card { border-radius: 12px; padding: 22px; border: 1px solid var(--line); }
.scam-card.danger { background: rgba(242,85,90,0.08); border-color: rgba(242,85,90,0.3); }
.scam-card.safe { background: rgba(52,211,153,0.08); border-color: rgba(52,211,153,0.3); }
.scam-card h3 { font-family: var(--font-display); font-size: 17px; margin-bottom: 12px; }
.scam-card.danger h3 { color: var(--danger); }
.scam-card.safe h3 { color: var(--safe); }
.scam-card ul { display: flex; flex-direction: column; gap: 9px; }
.scam-card li { font-size: 14px; color: var(--slate); padding-left: 18px; position: relative; line-height: 1.5; }
.scam-card li::before { content: "•"; position: absolute; left: 4px; }
.scam-card.danger li::before { color: var(--danger); }
.scam-card.safe li::before { color: var(--safe); }
.scam-card strong { color: var(--white); }

/* Callout */
.callout { border-radius: 12px; padding: 18px 22px; background: var(--card-2); border-left: 4px solid var(--purple); font-size: 15px; color: var(--slate); }
.callout.danger { border-color: var(--danger); background: rgba(242,85,90,0.08); }
.callout strong { color: var(--white); display: block; margin-bottom: 4px; }
.callout em { color: var(--neon); font-style: normal; font-weight: 600; }

/* Section spacing */
section { margin-top: 44px; }
section > h2 { margin-bottom: 18px; }

/* Table */
.table-wrap { overflow-x: auto; border-radius: 12px; border: 1px solid var(--line); }
.sum-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 520px; }
.sum-table th { background: var(--card-2); color: #fff; text-align: left; padding: 14px 16px; font-family: var(--font-display); font-size: 13px; }
.sum-table td { padding: 12px 16px; border-top: 1px solid var(--line); color: var(--slate); }
.sum-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.sum-table td:first-child { color: #fff; font-weight: 600; }
.note { font-size: 14px; color: var(--muted); margin-top: 14px; }
.note strong { color: var(--slate); }

/* FAQ */
.faq { margin-top: 8px; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; }
.faq summary { cursor: pointer; padding: 18px 22px; font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--white); list-style: none; display: flex; justify-content: space-between; gap: 14px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--neon); font-size: 22px; transition: transform 0.2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-a { padding: 0 22px 18px; color: var(--slate); font-size: 14.5px; line-height: 1.7; }

/* Disclaimer */
.disclaimer { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; font-size: 13.5px; color: var(--muted); line-height: 1.7; }
.disclaimer strong { color: var(--slate); }
.mt-32 { margin-top: 36px; }

/* Footer */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-block: 44px 26px; margin-top: 56px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 28px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand .brand { margin-bottom: 12px; }
.footer-brand p { font-size: 14px; color: var(--slate); max-width: 38ch; }
.footer-col h4 { font-family: var(--font-display); color: #fff; font-size: 14px; margin-bottom: 12px; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--slate); font-size: 14px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: 20px; font-size: 12.5px; color: var(--muted); line-height: 1.6; }
