/* ============================================
   WRITLY — Shared Stylesheet
   Design: Bold Magazine
   Farben: Schwarz #0D0D0D · Creme #FFFBF0 · Gelb #F5C842
============================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --black: #0D0D0D;
  --cream: #FFFBF0;
  --yellow: #F5C842;
  --line: #0D0D0D;
  --muted: #666;
  --green: #4ADE80;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.5;
}
a { color: inherit; }

/* ---- NAV ---- */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px; background: var(--black);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid #1E1E1E;
}
.logo { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 800; color: var(--cream); letter-spacing: -0.5px; text-decoration: none; }
.logo span { color: var(--yellow); }
nav ul { display: flex; gap: 32px; list-style: none; align-items: center; }
nav ul a { text-decoration: none; color: rgba(255,251,240,0.45); font-size: 14px; font-weight: 500; transition: color .2s; }
nav ul a:hover, nav ul a.active { color: var(--cream); }
.nav-cta { background: var(--yellow); color: var(--black); padding: 10px 24px; font-size: 14px; font-weight: 700; text-decoration: none; transition: opacity .2s; }
.nav-cta:hover { opacity: 0.85; }

/* ---- BUTTONS ---- */
.btn-primary {
  background: var(--yellow); color: var(--black); padding: 15px 30px;
  font-size: 14px; font-weight: 800; text-decoration: none; letter-spacing: 0.5px;
  border: 2px solid var(--yellow); transition: all .2s; display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
}
.btn-primary:hover { background: transparent; color: var(--yellow); }
.btn-dark {
  background: var(--black); color: var(--yellow); padding: 18px 36px;
  font-size: 15px; font-weight: 800; text-decoration: none; letter-spacing: 0.5px;
  border: 2px solid var(--black); transition: all .2s; cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
}
.btn-dark:hover { background: transparent; color: var(--black); }
.btn-ghost { color: rgba(255,251,240,0.35); font-size: 14px; text-decoration: none; }

/* ---- TICKER ---- */
.ticker { background: var(--yellow); padding: 13px 0; overflow: hidden; white-space: nowrap; border-top: 2px solid var(--black); border-bottom: 2px solid var(--black); }
.ticker-track { display: inline-block; animation: tick 28s linear infinite; }
.ticker-track span { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: var(--black); letter-spacing: 1.5px; text-transform: uppercase; padding: 0 28px; }
.ticker-track .sep { padding: 0; opacity: 0.35; }
@keyframes tick { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---- SECTION HELPERS ---- */
.eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #999; }
.page-head { padding: 80px 60px 60px; border-bottom: 2px solid var(--black); }
.page-head h1 { font-family: 'Syne', sans-serif; font-size: 72px; font-weight: 800; letter-spacing: -3px; line-height: 0.95; margin: 16px 0; }
.page-head p { font-size: 17px; color: var(--muted); max-width: 540px; line-height: 1.7; }

/* ---- FOOTER ---- */
footer { background: var(--black); padding: 48px 60px 28px; }
.footer-top { display: flex; justify-content: space-between; padding-bottom: 40px; border-bottom: 1px solid #1E1E1E; }
.footer-brand { max-width: 280px; }
.footer-logo { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: var(--cream); text-decoration: none; }
.footer-logo span { color: var(--yellow); }
.footer-brand p { font-size: 13px; color: rgba(255,251,240,0.3); margin-top: 12px; line-height: 1.6; }
.footer-cols { display: flex; gap: 64px; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,251,240,0.4); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; color: rgba(255,251,240,0.5); text-decoration: none; transition: color .2s; }
.footer-col ul a:hover { color: var(--cream); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; }
.footer-copy { font-size: 12px; color: rgba(255,251,240,0.2); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,251,240,0.2); text-decoration: none; }

/* ============================================
   LANDING PAGE
============================================ */
.hero { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 65px); border-bottom: 2px solid var(--black); }
.hero-left {
  background: var(--black); padding: 64px 60px;
  display: flex; flex-direction: column; justify-content: space-between;
  border-right: 2px solid #1E1E1E; position: relative; overflow: hidden;
}
.hero-left::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 48px, rgba(255,251,240,0.025) 48px, rgba(255,251,240,0.025) 49px);
  pointer-events: none;
}
.hero-tag { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--yellow); display: flex; align-items: center; gap: 8px; position: relative; z-index: 1; }
.hero-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); display: inline-block; }
.hero h1 { font-family: 'Syne', sans-serif; font-size: 84px; font-weight: 800; line-height: 0.88; letter-spacing: -4px; color: var(--cream); position: relative; z-index: 1; }
.hero h1 .yellow { color: var(--yellow); }
.hero h1 .outline { -webkit-text-stroke: 2px var(--yellow); color: transparent; }
.hero-bottom { display: flex; flex-direction: column; gap: 24px; position: relative; z-index: 1; }
.subtitle { font-size: 15px; color: rgba(255,251,240,0.4); line-height: 1.75; max-width: 380px; }
.cta-row { display: flex; gap: 16px; align-items: center; }

.hero-right { background: var(--cream); padding: 48px; display: flex; flex-direction: column; gap: 18px; justify-content: center; }
.serp-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #999; }
.serp-mockup { background: #fff; border-radius: 14px; border: 1.5px solid #E5E0D5; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.08); }
.serp-bar { padding: 14px 18px; background: #fff; border-bottom: 1px solid #F0EDE5; display: flex; align-items: center; gap: 10px; }
.g-colors { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; }
.gc1 { color: #4285F4; } .gc2 { color: #EA4335; } .gc3 { color: #FBBC05; } .gc4 { color: #4285F4; } .gc5 { color: #34A853; } .gc6 { color: #EA4335; }
.serp-input { flex: 1; background: #F8F5EE; border-radius: 999px; padding: 8px 16px; font-size: 12px; color: #555; border: 1px solid #E8E2D5; }
.serp-results { padding: 14px 18px; }
.serp-row { padding: 12px 0; border-bottom: 1px solid #F5F2EA; display: flex; gap: 10px; align-items: flex-start; }
.serp-row:last-child { border-bottom: none; }
.pos { width: 26px; height: 26px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; flex-shrink: 0; margin-top: 2px; }
.pos-1 { background: var(--yellow); color: var(--black); }
.pos-2, .pos-3 { background: #F0EDE5; color: #aaa; font-size: 10px; }
.serp-site { font-size: 10px; color: #4A7C59; margin-bottom: 2px; font-weight: 600; }
.serp-title { font-size: 13px; font-weight: 600; color: var(--black); margin-bottom: 3px; line-height: 1.35; }
.serp-desc { font-size: 11px; color: #888; line-height: 1.5; }
.serp-row:not(:first-child) .serp-title { color: #555; font-weight: 400; font-size: 12px; }
.serp-row:not(:first-child) .serp-desc { display: none; }

.rank-tracker { background: var(--black); border-radius: 14px; padding: 20px 24px; display: flex; gap: 20px; align-items: center; }
.tracker-chart-wrap { flex: 1; }
.tracker-lbl { font-size: 10px; color: rgba(255,251,240,0.3); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.chart-line { width: 100%; height: 56px; }
.tracker-nums { display: flex; gap: 20px; }
.tnum .val { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; line-height: 1; }
.tnum .before { color: rgba(255,251,240,0.2); text-decoration: line-through; font-size: 20px; }
.tnum .after { color: var(--green); }
.tnum .lbl { font-size: 10px; color: rgba(255,251,240,0.3); margin-top: 3px; letter-spacing: 1px; text-transform: uppercase; }

.stats { background: var(--black); display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 2px solid var(--black); }
.stat { padding: 40px 32px; text-align: center; border-right: 1px solid #1E1E1E; }
.stat:last-child { border-right: none; }
.stat-val { font-family: 'Syne', sans-serif; font-size: 52px; font-weight: 800; color: var(--yellow); letter-spacing: -2px; line-height: 1; }
.stat-lbl { font-size: 12px; color: rgba(255,251,240,0.3); margin-top: 8px; letter-spacing: 0.5px; }

.ranking-sec { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 2px solid var(--black); }
.rank-left { padding: 80px 60px; border-right: 2px solid var(--black); display: flex; flex-direction: column; justify-content: center; gap: 20px; }
.rank-left h2 { font-family: 'Syne', sans-serif; font-size: 54px; font-weight: 800; letter-spacing: -2px; line-height: 1; }
.rank-left p { font-size: 15px; color: var(--muted); line-height: 1.75; max-width: 400px; }
.rank-right { background: var(--black); padding: 56px; display: flex; align-items: center; justify-content: center; }

.platforms { padding: 72px 60px; border-bottom: 2px solid var(--black); }
.platforms-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; }
.platforms-head h2 { font-family: 'Syne', sans-serif; font-size: 40px; font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; }
.platforms-head p { font-size: 14px; color: #999; max-width: 260px; text-align: right; line-height: 1.6; }
.platforms-row { display: grid; grid-template-columns: repeat(8, 1fr); border: 2px solid var(--black); }
.plat { padding: 28px 16px; border-right: 2px solid var(--black); display: flex; flex-direction: column; align-items: center; gap: 10px; transition: background .2s; }
.plat:last-child { border-right: none; }
.plat:hover { background: var(--yellow); }
.plat img { width: 32px; height: 32px; }
.plat span { font-size: 10px; font-weight: 600; color: #888; letter-spacing: 0.5px; text-align: center; transition: color .2s; }
.plat:hover span { color: var(--black); }

.features { border-bottom: 2px solid var(--black); }
.features-head { padding: 64px 60px 0; display: flex; align-items: flex-end; justify-content: space-between; }
.features-head h2 { font-family: 'Syne', sans-serif; font-size: 48px; font-weight: 800; letter-spacing: -2px; line-height: 1.05; max-width: 520px; }
.features-head a { color: #999; font-size: 14px; text-decoration: none; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 2px solid var(--black); margin-top: 48px; }
.feat { padding: 48px; border-right: 2px solid var(--black); border-bottom: 2px solid var(--black); }
.feat:nth-child(3n) { border-right: none; }
.feat:nth-last-child(-n+3) { border-bottom: none; }
.feat-num { font-family: 'Syne', sans-serif; font-size: 64px; font-weight: 800; line-height: 1; color: #EDE9E0; letter-spacing: -3px; display: block; margin-bottom: 20px; }
.feat-icon { width: 52px; height: 52px; margin-bottom: 16px; }
.feat h3 { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.5px; }
.feat p { font-size: 14px; color: var(--muted); line-height: 1.75; }
.feat-badge { display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: 1.5px; padding: 4px 10px; margin-top: 16px; text-transform: uppercase; }
.feat-badge.free { background: var(--black); color: var(--yellow); }
.feat-badge.pro { background: var(--yellow); color: var(--black); }

.cta { background: var(--yellow); padding: 80px 60px; border-bottom: 2px solid var(--black); display: flex; align-items: center; justify-content: space-between; }
.cta h2 { font-family: 'Syne', sans-serif; font-size: 60px; font-weight: 800; letter-spacing: -2px; line-height: 0.95; color: var(--black); }
.cta-right { display: flex; flex-direction: column; gap: 16px; align-items: flex-end; }
.cta-right p { font-size: 14px; color: rgba(0,0,0,0.5); max-width: 280px; text-align: right; line-height: 1.65; }

/* ============================================
   PRICING PAGE
============================================ */
.toggle-wrap { display: flex; align-items: center; gap: 16px; margin-top: 32px; }
.toggle { display: inline-flex; background: var(--black); padding: 5px; gap: 4px; }
.toggle button { background: transparent; border: none; color: rgba(255,251,240,0.5); padding: 9px 22px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: 'DM Sans', sans-serif; letter-spacing: 0.3px; transition: all .2s; }
.toggle button.active { background: var(--yellow); color: var(--black); }
.save-badge { font-size: 12px; font-weight: 700; color: #4A7C59; background: #F0FDF4; padding: 5px 12px; border: 1px solid #BBF7D0; }

.pricing-grid-full { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 2px solid var(--black); border-bottom: 2px solid var(--black); }
.pcard { padding: 44px 36px; border-right: 2px solid var(--black); display: flex; flex-direction: column; }
.pcard:last-child { border-right: none; }
.pcard.hot { background: var(--black); color: var(--cream); position: relative; }
.pcard.hot .plan-lbl { color: var(--yellow); }
.plan-lbl { font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: #999; margin-bottom: 20px; }
.p-amt { font-family: 'Syne', sans-serif; font-size: 46px; font-weight: 800; line-height: 1; letter-spacing: -2px; }
.pcard.hot .p-amt { color: var(--cream); }
.p-amt .dec { font-size: 24px; }
.p-unit { font-size: 13px; color: #999; margin: 6px 0 4px; }
.p-percredit { font-size: 12px; color: #aaa; margin-bottom: 20px; }
.pcard.hot .p-unit, .pcard.hot .p-percredit { color: rgba(255,251,240,0.4); }
.p-divider { height: 1px; background: rgba(0,0,0,0.1); margin: 0 0 20px; }
.pcard.hot .p-divider { background: rgba(255,251,240,0.15); }
.p-feat { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; flex: 1; }
.p-feat li { font-size: 13px; color: #555; display: flex; gap: 9px; line-height: 1.4; }
.p-feat li::before { content: '✓'; color: #4A7C59; font-weight: 800; flex-shrink: 0; }
.p-feat li.off { color: #ccc; }
.p-feat li.off::before { content: '✕'; color: #ddd; }
.pcard.hot .p-feat li { color: rgba(255,251,240,0.55); }
.pcard.hot .p-feat li::before { color: var(--yellow); }
.btn-pcard { display: block; text-align: center; padding: 14px; font-size: 13px; font-weight: 800; text-decoration: none; border: 2px solid var(--black); color: var(--black); letter-spacing: 0.5px; transition: all .2s; }
.btn-pcard:hover { background: var(--black); color: var(--cream); }
.pcard.hot .btn-pcard { background: var(--yellow); border-color: var(--yellow); color: var(--black); }
.pcard.hot .btn-pcard:hover { opacity: 0.85; }

.addons { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 2px solid var(--black); }
.addon { padding: 48px; border-right: 2px solid var(--black); }
.addon:last-child { border-right: none; }
.addon h3 { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.addon .price { font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 800; color: var(--black); margin-bottom: 12px; }
.addon p { font-size: 14px; color: var(--muted); line-height: 1.7; }

.faq { padding: 72px 60px; border-bottom: 2px solid var(--black); }
.faq h2 { font-family: 'Syne', sans-serif; font-size: 40px; font-weight: 800; letter-spacing: -1.5px; margin-bottom: 40px; }
.faq-item { border-top: 1px solid #E5E0D5; padding: 24px 0; }
.faq-item:last-child { border-bottom: 1px solid #E5E0D5; }
.faq-item h4 { font-size: 17px; font-weight: 700; margin-bottom: 10px; display: flex; gap: 12px; }
.faq-item h4::before { content: '+'; color: var(--yellow); font-weight: 800; }
.faq-item p { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 720px; padding-left: 24px; }

/* ============================================
   WHITE-LABEL PAGE
============================================ */
.wl-hero { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 2px solid var(--black); }
.wl-hero-left { background: var(--black); color: var(--cream); padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; }
.wl-hero-left h1 { font-family: 'Syne', sans-serif; font-size: 64px; font-weight: 800; letter-spacing: -3px; line-height: 0.95; margin: 16px 0 24px; }
.wl-hero-left h1 .yellow { color: var(--yellow); }
.wl-hero-left p { font-size: 16px; color: rgba(255,251,240,0.5); line-height: 1.75; max-width: 440px; margin-bottom: 32px; }
.wl-hero-right { padding: 60px; display: flex; align-items: center; justify-content: center; background: var(--cream); }
.wl-mock { width: 100%; border: 2px solid var(--black); }
.wl-mock-bar { background: var(--black); padding: 12px 16px; display: flex; align-items: center; gap: 8px; }
.wl-dot { width: 10px; height: 10px; border-radius: 50%; }
.wl-mock-body { background: #fff; padding: 28px; }
.wl-mock-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 18px; color: #7C3AED; margin-bottom: 4px; }
.wl-mock-tag { font-size: 11px; color: #999; margin-bottom: 20px; }
.wl-mock-row { height: 10px; background: #F0EDE5; border-radius: 4px; margin-bottom: 10px; }
.wl-mock-row.short { width: 60%; }
.wl-mock-row.accent { background: #EDE9FE; }

.wl-benefits { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 2px solid var(--black); }
.wl-benefit { padding: 48px; border-right: 2px solid var(--black); }
.wl-benefit:last-child { border-right: none; }
.wl-benefit .ico { font-size: 28px; margin-bottom: 16px; }
.wl-benefit h3 { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.wl-benefit p { font-size: 14px; color: var(--muted); line-height: 1.7; }

.wl-pricing { padding: 72px 60px; border-bottom: 2px solid var(--black); text-align: center; }
.wl-pricing h2 { font-family: 'Syne', sans-serif; font-size: 44px; font-weight: 800; letter-spacing: -2px; margin-bottom: 48px; }
.wl-plans { display: flex; gap: 24px; justify-content: center; max-width: 720px; margin: 0 auto; }
.wl-plan { flex: 1; border: 2px solid var(--black); padding: 40px 32px; text-align: left; }
.wl-plan.feature { background: var(--black); color: var(--cream); }
.wl-plan .lbl { font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: #999; margin-bottom: 16px; }
.wl-plan.feature .lbl { color: var(--yellow); }
.wl-plan .amt { font-family: 'Syne', sans-serif; font-size: 44px; font-weight: 800; letter-spacing: -2px; line-height: 1; }
.wl-plan .per { font-size: 14px; color: #999; margin: 6px 0 24px; }
.wl-plan.feature .per { color: rgba(255,251,240,0.4); }
.wl-plan ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.wl-plan ul li { font-size: 13px; color: #555; display: flex; gap: 8px; }
.wl-plan ul li::before { content: '✓'; color: #4A7C59; font-weight: 800; }
.wl-plan.feature ul li { color: rgba(255,251,240,0.55); }
.wl-plan.feature ul li::before { color: var(--yellow); }

/* ============================================
   TOOL PAGE
============================================ */
.tool-wrap { max-width: 920px; margin: 0 auto; padding: 56px 40px 80px; }
.tool-head { text-align: center; margin-bottom: 40px; }
.tool-head h1 { font-family: 'Syne', sans-serif; font-size: 44px; font-weight: 800; letter-spacing: -2px; margin-bottom: 12px; }
.tool-head p { font-size: 16px; color: var(--muted); }
.mode-tabs { display: flex; justify-content: center; gap: 0; margin-bottom: 32px; border: 2px solid var(--black); width: fit-content; margin-left: auto; margin-right: auto; }
.mode-tab { padding: 12px 28px; font-size: 14px; font-weight: 700; cursor: pointer; background: var(--cream); border-right: 2px solid var(--black); }
.mode-tab:last-child { border-right: none; }
.mode-tab.active { background: var(--black); color: var(--yellow); }
.tool-card { border: 2px solid var(--black); background: #fff; padding: 40px; }
.tool-field { margin-bottom: 24px; }
.tool-field label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #999; margin-bottom: 10px; }
.tool-input { width: 100%; padding: 16px 18px; border: 2px solid var(--black); font-size: 15px; font-family: 'DM Sans', sans-serif; outline: none; background: var(--cream); }
.tool-input:focus { background: #fff; }
textarea.tool-input { resize: vertical; min-height: 90px; }
.tool-check { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 24px; font-size: 13px; color: var(--muted); line-height: 1.5; }
.tool-check input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--black); flex-shrink: 0; }
.tool-submit { width: 100%; justify-content: center; }
.tool-note { text-align: center; font-size: 12px; color: #aaa; margin-top: 16px; }

.result-block { margin-top: 40px; border: 2px solid var(--black); }
.result-bar { background: var(--black); color: var(--cream); padding: 14px 20px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.result-bar .ok { color: var(--green); font-weight: 700; }
.result-body { padding: 32px; }
.result-topic { border: 1.5px solid #E5E0D5; padding: 20px; margin-bottom: 12px; display: flex; gap: 16px; align-items: center; }
.result-topic .rnum { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; color: var(--yellow); }
.result-topic h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.result-topic .rmeta { font-size: 12px; color: #999; }
.result-topic .rscore { margin-left: auto; background: var(--yellow); color: var(--black); font-weight: 800; padding: 4px 12px; font-size: 13px; }
.locked { position: relative; }
.lock-badge { display: inline-flex; align-items: center; gap: 6px; background: #F0EDE5; color: #999; font-size: 11px; font-weight: 700; padding: 4px 10px; text-transform: uppercase; letter-spacing: 0.5px; }

/* ============================================
   LOGIN / REGISTER PAGE
============================================ */
.auth-wrap { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 65px); }
.auth-left { background: var(--black); color: var(--cream); padding: 80px 60px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.auth-left::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent, transparent 48px, rgba(255,251,240,0.025) 48px, rgba(255,251,240,0.025) 49px); }
.auth-left h2 { font-family: 'Syne', sans-serif; font-size: 48px; font-weight: 800; letter-spacing: -2px; line-height: 1; position: relative; z-index: 1; }
.auth-left h2 .yellow { color: var(--yellow); }
.auth-quote { position: relative; z-index: 1; }
.auth-quote p { font-size: 18px; color: rgba(255,251,240,0.6); line-height: 1.6; font-style: italic; margin-bottom: 16px; }
.auth-quote span { font-size: 13px; color: rgba(255,251,240,0.35); }
.auth-right { padding: 60px; display: flex; flex-direction: column; justify-content: center; max-width: 480px; margin: 0 auto; width: 100%; }
.auth-right h1 { font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 800; letter-spacing: -1px; margin-bottom: 8px; }
.auth-right .sub { font-size: 14px; color: var(--muted); margin-bottom: 32px; }
.social-btns { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.social-btn { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 14px; border: 2px solid var(--black); background: #fff; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none; color: var(--black); font-family: 'DM Sans', sans-serif; transition: all .2s; }
.social-btn:hover { background: var(--cream); }
.social-btn img { width: 18px; height: 18px; }
.divider { display: flex; align-items: center; gap: 16px; margin: 8px 0 24px; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: #E5E0D5; }
.divider span { font-size: 12px; color: #aaa; text-transform: uppercase; letter-spacing: 1px; }
.auth-field { margin-bottom: 16px; }
.auth-field label { display: block; font-size: 12px; font-weight: 700; color: #999; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.auth-field input { width: 100%; padding: 14px 16px; border: 2px solid var(--black); font-size: 14px; outline: none; font-family: 'DM Sans', sans-serif; }
.auth-submit { width: 100%; justify-content: center; margin-top: 8px; }
.auth-switch { text-align: center; font-size: 13px; color: var(--muted); margin-top: 24px; }
.auth-switch a { color: var(--black); font-weight: 700; text-decoration: none; }

/* ============================================
   DASHBOARD PAGE
============================================ */
.dash-wrap { display: grid; grid-template-columns: 240px 1fr; min-height: calc(100vh - 65px); }
.dash-side { background: var(--black); padding: 32px 20px; }
.dash-side .credits-box { background: rgba(255,251,240,0.04); border: 1px solid #1E1E1E; padding: 20px; margin-bottom: 28px; }
.dash-side .credits-box .num { font-family: 'Syne', sans-serif; font-size: 40px; font-weight: 800; color: var(--yellow); line-height: 1; }
.dash-side .credits-box .lbl { font-size: 12px; color: rgba(255,251,240,0.4); margin-top: 4px; }
.dash-side .credits-box a { display: block; text-align: center; margin-top: 14px; background: var(--yellow); color: var(--black); font-size: 12px; font-weight: 700; padding: 8px; text-decoration: none; }
.dash-nav { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.dash-nav a { display: flex; align-items: center; gap: 10px; padding: 11px 14px; font-size: 14px; color: rgba(255,251,240,0.5); text-decoration: none; font-weight: 500; transition: all .2s; }
.dash-nav a:hover, .dash-nav a.active { background: rgba(255,251,240,0.06); color: var(--cream); }
.dash-main { padding: 40px 48px; }
.dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 36px; }
.dash-header h1 { font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 800; letter-spacing: -1px; }
.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 36px; }
.dash-stat { border: 2px solid var(--black); padding: 24px; }
.dash-stat .v { font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800; letter-spacing: -1px; }
.dash-stat .l { font-size: 13px; color: var(--muted); margin-top: 4px; }
.dash-section-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #999; margin-bottom: 16px; }
.history-table { width: 100%; border: 2px solid var(--black); border-collapse: collapse; }
.history-table th { background: var(--black); color: var(--cream); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 14px 18px; text-align: left; }
.history-table td { padding: 16px 18px; font-size: 14px; border-top: 1px solid #E5E0D5; }
.history-table tr:hover td { background: #fff; }
.status-pill { font-size: 11px; font-weight: 700; padding: 4px 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.status-pill.done { background: #F0FDF4; color: #16A34A; }
.status-pill.running { background: #FEF9E7; color: #CA8A04; }
.score-cell { font-family: 'Syne', sans-serif; font-weight: 800; }

/* ============================================
   LEGAL PAGES
============================================ */
.legal-wrap { max-width: 800px; margin: 0 auto; padding: 64px 40px 80px; }
.legal-wrap h1 { font-family: 'Syne', sans-serif; font-size: 44px; font-weight: 800; letter-spacing: -2px; margin-bottom: 8px; }
.legal-wrap .updated { font-size: 13px; color: #aaa; margin-bottom: 40px; }
.legal-wrap h2 { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; margin: 36px 0 12px; }
.legal-wrap p, .legal-wrap li { font-size: 14px; color: #444; line-height: 1.8; margin-bottom: 12px; }
.legal-wrap ul { padding-left: 24px; }
.legal-wrap strong { color: var(--black); }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  nav ul { display: none; }
  .hero, .ranking-sec, .wl-hero, .auth-wrap, .dash-wrap { grid-template-columns: 1fr; }
  .hero-left { border-right: none; border-bottom: 2px solid #1E1E1E; }
  .rank-left, .wl-hero-left { border-right: none; }
  .hero h1 { font-size: 60px; }
  .stats, .pricing-grid-full, .platforms-row { grid-template-columns: repeat(2, 1fr); }
  .features-grid, .addons, .wl-benefits { grid-template-columns: 1fr; }
  .feat, .addon, .wl-benefit { border-right: none; }
  .wl-plans { flex-direction: column; }
  .page-head, .cta { padding: 48px 24px; }
  .page-head h1 { font-size: 48px; }
  .cta { flex-direction: column; gap: 24px; align-items: flex-start; }
  .cta-right { align-items: flex-start; }
  .cta-right p { text-align: left; }
  .dash-wrap { grid-template-columns: 1fr; }
}
