:root {
  --snow:      #FEF8F5;
  --glacier:   #D7DFE1;
  --winter:    #08151E;
  --turquoise: #5FB3AA;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--snow);
  color: var(--winter);
  font-family: 'DM Sans', sans-serif;
  min-height: 100vh;
}

/* ── Nav bar ─────────────────────────────────────────────── */
nav {
  background: var(--winter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 56px;
  position: relative;
  z-index: 10;
}
.nav-logo { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 0.18em; color: var(--snow); text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-links li { display: flex; align-items: center; }
.nav-links li:not(:last-child)::after { content: '|'; color: var(--snow); opacity: 0.25; padding: 0 14px; font-size: 11px; }
.nav-links a { font-family: 'DM Mono', monospace; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--snow); text-decoration: none; opacity: 0.65; transition: opacity 0.2s; white-space: nowrap; }
.nav-links a:hover { opacity: 1; }

@media (max-width: 680px) {
  nav { padding: 0 16px; }
  .nav-links a { font-size: 9px; letter-spacing: 0.08em; }
}

.content {
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.page-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: 10px;
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 8vw, 52px);
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.intro {
  font-size: 15px;
  line-height: 1.7;
  color: var(--winter);
  opacity: 0.7;
  margin-bottom: 48px;
  max-width: 520px;
}

/* ── Platform sections ───────────────────────────────────── */
.platform-section {
  margin-bottom: 16px;
}

.platform-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.platform-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--winter);
  color: var(--snow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.platform-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.06em;
  line-height: 1;
}

.platform-sub {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.45;
  display: block;
  margin-top: 2px;
}

/* ── Steps list ──────────────────────────────────────────── */
.steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.steps li {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(8,21,30,0.07);
}

.steps li:last-child {
  border-bottom: none;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--winter);
  color: var(--snow);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.step-body strong {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.step-body span {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.6;
}

/* ── Divider ─────────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--glacier);
  margin: 40px 0;
}

