:root {
  --bg: #0c111d;
  --panel: #10192c;
  --panel-2: #141f35;
  --text: #e7edf8;
  --muted: #a4b3cf;
  --line: rgba(255,255,255,0.09);
  --accent: #7bdcff;
  --accent-2: #66f0b1;
  --danger: #ff8f8f;
  --success: #82e5a7;
  --shadow: 0 18px 52px rgba(0,0,0,0.28);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; min-height: 100%; background-color: var(--bg); background-image: radial-gradient(circle at top, #14213d 0, var(--bg) 40%); color: var(--text); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
a { color: inherit; }
body { display: flex; flex-direction: column; }
.container { width: min(1080px, calc(100% - 32px)); margin: 0 auto; padding: 32px 0 56px; flex: 1; }
.topbar, .footer { width: min(1080px, calc(100% - 32px)); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar { padding: 18px 0 6px; }
.brand { font-weight: 800; text-decoration: none; letter-spacing: 0.4px; }
nav { display: flex; gap: 18px; flex-wrap: wrap; }
nav a { color: var(--muted); text-decoration: none; }
nav a:hover { color: var(--text); }
.hero { padding: 24px 0 22px; }
.hero.split { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: 22px; align-items: center; }
.hero.narrow { max-width: 820px; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.16em; color: var(--accent); font-size: 0.78rem; margin-bottom: 12px; }
h1 { font-size: clamp(2.4rem, 6vw, 4.9rem); line-height: 0.98; margin: 0 0 18px; max-width: 11ch; }
.lede { font-size: 1.1rem; line-height: 1.6; color: var(--muted); max-width: 68ch; }
.section-heading { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.section-heading h2 { margin: 0; font-size: clamp(1.5rem, 3vw, 2.2rem); max-width: 18ch; }
.grid { display: grid; gap: 18px; margin: 26px 0; }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card { background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)); border: 1px solid var(--line); border-radius: 18px; padding: 22px; box-shadow: var(--shadow); backdrop-filter: blur(8px); }
.preview { display: grid; gap: 12px; align-self: stretch; }
.preview img { display: block; width: 100%; height: auto; border-radius: 14px; background: #f7f2e9; border: 1px solid rgba(255,255,255,0.06); }
.card h2, .card h3 { margin-top: 0; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 999px; padding: 12px 18px; text-decoration: none; border: 1px solid transparent; font-weight: 700; cursor: pointer; }
.button.primary { background-color: var(--accent-2); background-image: linear-gradient(90deg, var(--accent), var(--accent-2)); color: #08101a; }
.button.secondary { background: rgba(255,255,255,0.03); color: var(--text); border-color: var(--line); }
.callout { display: flex; flex-direction: column; gap: 8px; }
.form { display: grid; gap: 16px; }
.field-grid { display: grid; gap: 16px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
label { display: grid; gap: 8px; }
label span { color: var(--muted); font-size: 0.92rem; }
input, textarea, select { width: 100%; padding: 14px 15px; border-radius: 12px; border: 1px solid var(--line); background: rgba(10,16,30,0.8); color: var(--text); font: inherit; }
textarea { resize: vertical; min-height: 140px; }
.notice { border-radius: 14px; padding: 14px 16px; margin: 16px 0; }
.notice.error { background: rgba(255,143,143,0.12); border: 1px solid rgba(255,143,143,0.28); color: #ffd6d6; }
.notice.success { background: rgba(130,229,167,0.12); border: 1px solid rgba(130,229,167,0.25); color: #d7ffe7; }
.price-tag { font-size: 2.8rem; margin: 8px 0 16px; font-weight: 800; }
.price-tag span { font-size: 1rem; color: var(--muted); font-weight: 600; }
.price.featured { border-color: rgba(123,220,255,0.28); transform: translateY(-4px); }
ul { color: var(--muted); line-height: 1.8; }
.result .meta-row { display: flex; flex-wrap: wrap; gap: 12px; color: var(--muted); margin-bottom: 18px; }
.report { line-height: 1.7; }
.report h1, .report h2, .report h3, .report h4 { margin-top: 1.4em; }
.report p, .report ul { color: var(--text); }
.report ul { padding-left: 20px; }
.muted { color: var(--muted); }
.footer { padding: 0 0 28px; color: var(--muted); font-size: 0.92rem; }
.footer .muted { margin-left: auto; }
.markdown { white-space: normal; }
.footnote { margin-top: 18px; }
section { scroll-margin-top: 96px; }
@media (max-width: 860px) {
  .hero.split { grid-template-columns: 1fr; }
  .grid.three, .grid.two, .field-grid { grid-template-columns: 1fr; }
  h1 { max-width: 100%; }
  .topbar, .footer { flex-direction: column; align-items: flex-start; }
  .footer .muted { margin-left: 0; }
}
