:root {
  --bg: #07070a;
  --panel: #101018;
  --panel-2: #171724;
  --text: #f5f7fb;
  --muted: #a3a7b7;
  --line: rgba(255,255,255,.12);
  --gold: #f5c15b;
  --gold-2: #ffdf93;
  --blue: #8db7ff;
  --shadow: 0 30px 100px rgba(0,0,0,.45);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(245,193,91,.18), transparent 30%),
    radial-gradient(circle at top right, rgba(141,183,255,.16), transparent 28%),
    var(--bg);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(7,7,10,.72);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 78px; }
.brand { display: flex; gap: 12px; align-items: center; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 15px;
  background: linear-gradient(135deg, var(--gold), #fff1c7);
  color: #17100a; display: grid; place-items: center; font-weight: 900;
  box-shadow: 0 12px 40px rgba(245,193,91,.25);
}
.brand strong { display: block; font-size: 16px; letter-spacing: -.02em; }
.brand small { color: var(--muted); font-size: 12px; }
.nav-links { display: flex; align-items: center; gap: 24px; color: var(--muted); font-weight: 600; }
.nav-links a:hover { color: var(--text); }
.nav-cta { padding: 11px 16px; border-radius: 999px; background: rgba(255,255,255,.08); color: var(--text) !important; }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); font-size: 26px; }
.hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 46px; padding: 86px 0 68px; align-items: center; }
.eyebrow { color: var(--gold-2); font-weight: 800; text-transform: uppercase; letter-spacing: .14em; font-size: 12px; }
h1 { font-size: clamp(44px, 7vw, 78px); line-height: .93; margin: 16px 0 20px; letter-spacing: -.07em; }
h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1; letter-spacing: -.05em; margin: 10px 0 14px; }
h3 { letter-spacing: -.03em; }
p { color: var(--muted); line-height: 1.7; }
.hero-subtitle { max-width: 680px; font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 22px; border-radius: 999px; border: 1px solid var(--line);
  font-weight: 800; cursor: pointer; transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--gold), #fff0bf); color: #14100a; border: 0; }
.btn-secondary { background: rgba(255,255,255,.06); color: var(--text); }
.full { width: 100%; }
.hero-stats { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats div { min-width: 130px; padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.04); }
.hero-stats strong { display: block; font-size: 24px; }
.hero-stats span { color: var(--muted); font-size: 13px; }
.hero-card { position: relative; }
.hero-card:before {
  content: ""; position: absolute; inset: 50px -10px -10px 30px;
  background: linear-gradient(135deg, rgba(245,193,91,.18), rgba(141,183,255,.18));
  filter: blur(40px); border-radius: 40px;
}
.report-card {
  position: relative; background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  border: 1px solid var(--line); border-radius: 32px; padding: 32px; box-shadow: var(--shadow);
}
.report-top { display: flex; gap: 10px; align-items: center; color: var(--muted); font-weight: 700; }
.status-dot { width: 10px; height: 10px; background: #5cff9d; border-radius: 99px; box-shadow: 0 0 24px #5cff9d; }
.report-card h2 { font-size: 34px; }
.score-bar { height: 14px; background: rgba(255,255,255,.1); border-radius: 999px; overflow: hidden; }
.score-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--gold), var(--blue)); border-radius: inherit; }
.report-card ul, .price-card ul { padding: 0; list-style: none; margin: 24px 0; }
.report-card li, .price-card li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08); color: var(--muted); }
.report-card li:before, .price-card li:before { content: "✓"; color: var(--gold); margin-right: 10px; font-weight: 900; }
.mini-btn { border: 0; background: rgba(255,255,255,.1); color: var(--text); border-radius: 99px; padding: 12px 18px; font-weight: 800; }
.section { padding: 70px 0; }
.section-head { max-width: 760px; margin-bottom: 28px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.tool-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tool-card, .price-card, .app-shell, .steps > div, .final-cta {
  border: 1px solid var(--line); background: rgba(255,255,255,.045); border-radius: var(--radius);
  box-shadow: 0 18px 80px rgba(0,0,0,.16);
}
.tool-card { padding: 24px; min-height: 230px; }
.tool-card span { color: var(--gold); font-weight: 900; }
.tool-card h3 { font-size: 23px; margin-bottom: 8px; }
.featured-tool { background: linear-gradient(135deg, rgba(245,193,91,.12), rgba(141,183,255,.08)); }
.app-shell { display: grid; grid-template-columns: .8fr 1.2fr; gap: 24px; padding: 24px; background: rgba(255,255,255,.06); }
.app-sidebar, .tool-form { padding: 22px; }
.locked-box { margin-top: 28px; padding: 18px; border-radius: 18px; border: 1px solid rgba(245,193,91,.25); background: rgba(245,193,91,.08); }
.locked-box strong, .locked-box span { display: block; }
.locked-box span { color: var(--muted); margin-top: 6px; }
.tool-form { display: grid; gap: 16px; background: rgba(0,0,0,.18); border-radius: 22px; border: 1px solid rgba(255,255,255,.08); }
label { color: var(--text); font-weight: 800; font-size: 14px; display: grid; gap: 8px; }
input, select, textarea {
  width: 100%; background: rgba(255,255,255,.08); border: 1px solid var(--line); color: var(--text);
  border-radius: 14px; min-height: 48px; padding: 13px 14px; font: inherit; outline: none;
}
textarea { resize: vertical; }
select option { color: #111; }
input:focus, select:focus, textarea:focus { border-color: rgba(245,193,91,.6); box-shadow: 0 0 0 4px rgba(245,193,91,.1); }
.form-note { font-size: 12px; margin: 0; }
.result-box { margin-top: 18px; border: 1px solid rgba(245,193,91,.28); background: rgba(245,193,91,.07); border-radius: 22px; padding: 24px; }
.result-box h3 { margin-top: 0; }
.result-box pre { white-space: pre-wrap; font-family: inherit; color: var(--muted); line-height: 1.7; }
.hidden { display: none; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card { padding: 28px; position: relative; }
.price-card.popular { background: linear-gradient(180deg, rgba(245,193,91,.16), rgba(255,255,255,.045)); border-color: rgba(245,193,91,.4); transform: translateY(-12px); }
.badge { position: absolute; top: 18px; right: 18px; background: var(--gold); color: #15100a; font-weight: 900; padding: 7px 11px; border-radius: 999px; font-size: 12px; }
.price { font-size: 58px; font-weight: 900; letter-spacing: -.06em; margin: 20px 0; }
.price span { font-size: 24px; vertical-align: super; color: var(--gold); }
.price small { font-size: 15px; color: var(--muted); letter-spacing: 0; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.steps > div { padding: 22px; }
.steps strong { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 14px; background: rgba(245,193,91,.16); color: var(--gold); }
.final-cta { text-align: center; padding: 50px 24px; background: linear-gradient(135deg, rgba(245,193,91,.12), rgba(141,183,255,.08)); }
.footer { border-top: 1px solid var(--line); padding: 28px 0; color: var(--muted); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer a { margin-left: 16px; color: var(--text); }
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links { display: none; position: absolute; left: 16px; right: 16px; top: 78px; padding: 18px; background: rgba(16,16,24,.96); border: 1px solid var(--line); border-radius: 18px; flex-direction: column; align-items: flex-start; }
  .nav-links.show { display: flex; }
  .hero, .app-shell { grid-template-columns: 1fr; }
  .tool-grid, .pricing-grid, .steps { grid-template-columns: 1fr; }
  .price-card.popular { transform: none; }
  h1 { font-size: 46px; }
}
