:root {
  --bg-top: #0a1d34;
  --bg-bottom: #114570;
  --card: rgba(18, 43, 71, 0.94);
  --border: rgba(46, 211, 230, 0.28);
  --text: #f5fbff;
  --muted: #adc8e2;
  --accent: #ff9b2f;
  --danger: #ff5574;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "PT Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, var(--bg-top), var(--bg-bottom));
}

a {
  color: inherit;
}

.wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 32px 18px 48px;
}

.card {
  width: 100%;
  padding: 20px;
  border-radius: 22px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.hero {
  margin-top: 24px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0 0 12px;
}

.lead,
p,
li {
  color: var(--muted);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #0a1d34;
  text-decoration: none;
  font-weight: 700;
}

.button.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.section {
  margin-top: 14px;
}

ul {
  padding-left: 20px;
}

.callout {
  border-left: 3px solid var(--danger);
  padding-left: 14px;
}
