:root {
  --bg: #020510;
  --surface: rgba(10, 17, 35, 0.74);
  --border: rgba(96, 165, 250, 0.22);
  --text: #f0f4ff;
  --muted: #8fa3c0;
  --cyan: #06b6d4;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(ellipse 58% 42% at 78% 16%, rgba(59, 130, 246, 0.16), transparent 66%),
    linear-gradient(180deg, #020510, #050c1a 62%, #020510);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.75;
}

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

.page {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: 42px 24px 72px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 72px;
}

.logo {
  display: block;
  width: min(260px, 58vw);
  height: auto;
}

.back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(2, 5, 16, 0.42);
  color: var(--text);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.panel {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: clamp(28px, 5vw, 56px);
}

.eyebrow {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2 {
  font-family: "Space Grotesk", Inter, sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

h1 {
  margin: 14px 0 22px;
  font-size: clamp(2.3rem, 7vw, 4.4rem);
}

h2 {
  margin: 34px 0 10px;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
}

p, li { color: var(--muted); }

strong { color: var(--text); }

ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid rgba(96, 165, 250, 0.36);
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .nav { align-items: flex-start; flex-direction: column; margin-bottom: 44px; }
}
