:root {
  --ink: #07111d;
  --navy: #081a2c;
  --panel: #0f2136;
  --panel-soft: #132a43;
  --line: #25415f;
  --text: #eef3f9;
  --muted: #93a6bc;
  --gold: #f5c24b;
  --green: #2fe07e;
}

* { box-sizing: border-box; }
html { background: var(--ink); scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font: 16px/1.65 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 50% -10%, rgba(47, 224, 126, .11), transparent 30rem),
    linear-gradient(rgba(245, 194, 75, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 194, 75, .025) 1px, transparent 1px),
    var(--ink);
  background-size: auto, 34px 34px, 34px 34px, auto;
}
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.shell { width: min(1080px, calc(100% - 36px)); margin: auto; }
.topbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 0; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--text); text-decoration: none; font-weight: 900; letter-spacing: -.02em; }
.brand img { width: 42px; height: 42px; border-radius: 11px; box-shadow: 0 8px 28px rgba(245, 194, 75, .12); }
.nav { display: flex; align-items: center; gap: 24px; }
.nav a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 750; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--gold); }
.hero { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 56px; min-height: 620px; padding: 70px 0 96px; }
.eyebrow { margin: 0 0 14px; color: var(--gold); font-size: 12px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; line-height: 1.08; }
h1 { margin-bottom: 22px; font-size: clamp(48px, 8vw, 86px); letter-spacing: -.055em; }
h2 { margin-bottom: 14px; font-size: clamp(30px, 5vw, 48px); letter-spacing: -.035em; }
h3 { margin-bottom: 8px; font-size: 18px; }
.lead { max-width: 580px; margin: 0; color: #c8d4e0; font-size: clamp(17px, 2vw, 20px); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; border: 1px solid var(--gold); border-radius: 12px; padding: 0 20px; background: var(--gold); color: var(--ink); text-decoration: none; font-weight: 900; cursor: pointer; }
.button.secondary { border-color: var(--line); background: var(--panel); color: var(--text); }
.hero-art { position: relative; display: grid; place-items: center; min-height: 410px; border: 1px solid var(--line); border-radius: 30px; background: linear-gradient(145deg, var(--panel-soft), #091827); overflow: hidden; }
.hero-art::before { content: ""; position: absolute; width: 330px; height: 330px; border: 1px solid rgba(245,194,75,.25); border-radius: 50%; box-shadow: 0 0 0 42px rgba(245,194,75,.035), 0 0 0 84px rgba(245,194,75,.025); }
.hero-art img { position: relative; width: 190px; height: 190px; border-radius: 42px; box-shadow: 0 24px 70px rgba(0,0,0,.45); }
.section { padding: 90px 0; }
.section-heading { max-width: 680px; margin-bottom: 34px; }
.section-heading p, .card p, .legal p, .legal li { color: var(--muted); }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.card { min-height: 190px; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: rgba(15,33,54,.82); }
.card-mark { display: grid; width: 38px; height: 38px; place-items: center; margin-bottom: 30px; border: 1px solid rgba(245,194,75,.45); border-radius: 11px; color: var(--gold); font-weight: 900; }
.cta-panel { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 80px; padding: 36px; border: 1px solid rgba(47,224,126,.35); border-radius: 22px; background: linear-gradient(135deg, rgba(47,224,126,.08), var(--panel)); }
.cta-panel h2 { margin-bottom: 7px; font-size: 30px; }
.cta-panel p { margin: 0; color: var(--muted); }
.page-head { max-width: 760px; padding: 86px 0 38px; }
.page-head h1 { margin-bottom: 14px; font-size: clamp(44px, 8vw, 72px); }
.page-head p { color: var(--muted); font-size: 18px; }
.form-card { margin-bottom: 80px; padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: rgba(15,33,54,.9); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { color: #c8d4e0; font-size: 13px; font-weight: 800; }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 11px; outline: none; background: var(--navy); color: var(--text); padding: 13px 14px; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,194,75,.1); }
textarea { min-height: 180px; resize: vertical; }
.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 18px; }
.status { min-height: 24px; margin: 0; color: var(--muted); font-size: 14px; }
.status.success { color: var(--green); }
.status.error { color: #ff8b8b; }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden; clip: rect(0 0 0 0); }
.legal { display: grid; gap: 14px; max-width: 820px; margin-bottom: 80px; }
.legal section { padding: 22px 24px; border: 1px solid var(--line); border-radius: 16px; background: rgba(15, 33, 54, .82); }
.legal p { margin: 0; }
.legal p + p { margin-top: 10px; }
.legal ul { margin: 8px 0 0; padding-left: 20px; }
.legal li + li { margin-top: 7px; }
.legal h2 { margin-bottom: 10px; font-size: 22px; color: var(--gold); }
.legal p, .legal li { font-size: 15px; }
.legal a { color: var(--gold); }
.page-head .updated { margin: -4px 0 14px; color: var(--green); font-size: 14px; font-weight: 800; }
.page-head .summary { max-width: 720px; color: #c8d4e0; font-size: 17px; }
footer { display: flex; justify-content: space-between; gap: 24px; padding: 28px 0 40px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { text-decoration: none; }
@media (max-width: 760px) {
  .nav { gap: 13px; }
  .nav a:first-child { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 56px 0 76px; }
  .hero-art { min-height: 330px; }
  .grid { grid-template-columns: 1fr; }
  .cta-panel, footer { align-items: flex-start; flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .form-foot { align-items: stretch; flex-direction: column; }
}
@media (max-width: 460px) {
  .shell { width: min(100% - 24px, 1080px); }
  .brand span { display: none; }
  .page-head { padding-top: 54px; }
  .form-card { padding: 19px; }
  .legal section { padding: 18px; }
}
