:root {
  --bg: #05080c;
  --panel: #0b1218;
  --panel-2: #121b24;
  --text: #eef6f4;
  --muted: #8aa0aa;
  --accent: #6ee7c5;
  --accent-2: #7aa2ff;
  --accent-3: #c4a3ff;
  --line: rgba(238, 246, 244, 0.08);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

.veil {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse at 18% 8%, rgba(110, 231, 197, 0.22), transparent 42%),
    radial-gradient(ellipse at 88% 0%, rgba(196, 163, 255, 0.2), transparent 40%),
    radial-gradient(ellipse at 70% 30%, rgba(122, 162, 255, 0.12), transparent 46%);
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 20px 20px 64px;
}

header.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0 28px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.brand img {
  height: 36px;
  width: auto;
}

.brand span {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  align-items: center;
}

.links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.links a:hover,
.links a.active {
  color: var(--text);
}

.hero {
  display: grid;
  gap: 28px;
  align-items: center;
  padding: 12px 0 40px;
}

.hero-copy h1,
h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-copy p.lead,
.lead {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 38rem;
}

.globe-frame {
  position: relative;
  width: min(100%, 420px);
  margin: 0 auto;
  aspect-ratio: 1;
}

.globe-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(110, 231, 197, 0.18),
    0 20px 80px rgba(110, 231, 197, 0.16),
    0 0 90px rgba(196, 163, 255, 0.18);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn.primary {
  background: var(--accent);
  color: #052018;
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

section {
  margin: 18px 0 36px;
}

h2 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.sub {
  margin: 0 0 18px;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.card {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
}

.card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.card p,
.card li {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.card ul,
.prose ul,
.prose ol {
  margin: 8px 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.prose p { color: var(--muted); max-width: 42rem; }
.prose strong { color: var(--text); font-weight: 600; }

.faces {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.face {
  text-align: center;
}

.face img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 14%;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #05070a;
}

.face.globe img { object-position: center 40%; }
.face.aurora img { object-position: center 10%; }
.face.ben img { object-position: center 8%; }
.face.leo img { object-position: center 32%; }
.face.barry img { object-position: center 16%; }

.face span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
}

.steps {
  display: grid;
  gap: 12px;
  counter-reset: step;
}

.step {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 16px 16px 56px;
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #052018;
  font-weight: 700;
  font-size: 14px;
  display: grid;
  place-items: center;
}

.step h3 { margin: 0 0 6px; font-size: 1rem; }
.step p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

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

.legal p {
  color: var(--muted);
  max-width: 44rem;
}

footer {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  color: var(--muted);
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: space-between;
}

footer a { color: var(--accent); text-decoration: none; }

@media (min-width: 820px) {
  .hero {
    grid-template-columns: 1.1fr 0.9fr;
    padding-top: 24px;
  }
  .globe-frame { margin: 0 0 0 auto; }
}

@media (max-width: 800px) {
  .faces { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 520px) {
  .faces { grid-template-columns: repeat(2, 1fr); }
  .brand span { display: none; }
}
