:root {
  --bg: #0B1220;
  --bg2: #0F1A33;
  --card: #111C36;
  --text: #EAF0FF;
  --muted: #B9C4E3;
  --line: rgba(255,255,255,.10);
  --accent: #6EE7FF;
  --accentGold: #D4AF37;
  --accentGoldSoft: #F5D77A;
  --goldLine: rgba(212,175,55,.35);
  --btn: #EAF0FF;
  --btnText: #0B1220;
  --shadow: 0 18px 40px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1120px;
}

* { box-sizing: border-box }

html, body {
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

a { color: inherit; text-decoration: none }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px }

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.65);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand { display: flex; gap: 12px; align-items: center }

.logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 30% 30%, var(--accent), transparent 60%),
    radial-gradient(circle at 70% 70%, var(--accentGold), transparent 60%),
    rgba(255,255,255,.05);
  border: 1px solid var(--goldLine);
  box-shadow: var(--shadow);
}

.brand b { letter-spacing: .2px }

.links { display: flex; gap: 16px; flex-wrap: wrap }
.links a { font-size: 14px; color: var(--muted) }
.links a:hover { color: var(--text) }

.cta { display: flex; gap: 10px; align-items: center }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  cursor: pointer;
}

.btn.primary {
  background: var(--btn);
  color: var(--btnText);
  border-color: transparent;
}

.btn:hover { transform: translateY(-1px) }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none }

/* Hero */
.hero { padding: 64px 0 28px }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 26px;
  align-items: stretch;
}

.kicker {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
  font-size: 12px;
}

h1 {
  margin: 10px 0 12px;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -.8px;
}

.lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 20px;
}

.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px }

/* Panels & Cards */
.panel {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 14px }

.stat {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255,255,255,.03);
}

.stat b { display: block; font-size: 18px }
.stat span { color: var(--muted); font-size: 13px }

/* Sections */
.section { padding: 42px 0 }
.section h2 { font-size: 28px; margin: 0 0 12px; letter-spacing: -.3px }
.section p { color: var(--muted); line-height: 1.7; margin: 0 0 16px }

.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 14px }

.card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.card h3 { margin: 8px 0 8px; font-size: 16px }
.card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6 }

.tag {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: var(--accentGoldSoft);
  border: 1px solid rgba(212,175,55,.4);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(212,175,55,.08);
}

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 18px }

.list { display: grid; gap: 10px }

.li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 12px;
  background: rgba(255,255,255,.03);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  margin-top: 6px;
  background: var(--accentGold);
  box-shadow: 0 0 18px rgba(212,175,55,.18);
  flex: 0 0 auto;
}

.muted { color: var(--muted) }

.callout {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(110,231,255,.10), rgba(212,175,55,.12));
  box-shadow: var(--shadow);
}

/* Form Elements */
.input {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  outline: none;
  font: inherit;
}

.input::placeholder { color: rgba(185,196,227,.75) }
.input:focus { border-color: rgba(212,175,55,.45); box-shadow: 0 0 0 3px rgba(212,175,55,.10) }
textarea.input { resize: vertical; min-height: 92px }

/* Stepper */
.stepper { display: flex; gap: 8px; flex-wrap: wrap; margin: 10px 0 14px }

.step {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.step.active {
  border-color: rgba(212,175,55,.55);
  color: var(--accentGoldSoft);
  background: rgba(212,175,55,.08);
}

.step.done {
  border-color: rgba(110,231,255,.45);
  color: #dff7ff;
  background: rgba(110,231,255,.08);
}

.row { display: flex; gap: 10px; flex-wrap: wrap }

/* Footer */
.foot { padding: 26px 0 46px; border-top: 1px solid var(--line); margin-top: 28px }
.foot small { color: var(--muted) }

/* Responsive */
@media (max-width: 920px) {
  h1 { font-size: 36px }
  .hero-grid { grid-template-columns: 1fr }
  .cards { grid-template-columns: 1fr }
  .two-col { grid-template-columns: 1fr }
}
