:root {
  --bg: #0f172a;
  --bg-soft: #111827;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --line: #dbe4f0;
  --primary: #0082BA;
  --primary-dark: #929497;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, lab(30% 4.62 -30.21) 0%, #0082ba 100%);
}

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

.hero,
.steps,
.incentive,
.footer {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.hero {
  text-align: center;
}

.steps,
.incentive,
.footer {
  margin-top: 18px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
}

h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.05;
}

h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.subhead,
.deadline,
.small,
li {
  color: var(--muted);
  line-height: 1.6;
}

.deadline {
  max-width: 650px;
  margin: 0 auto 18px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 14px;
  padding: 14px 22px;
  font-weight: 700;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

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

.btn.primary:hover {
  background: var(--primary-dark);
}

.small {
  margin-top: 14px;
  font-size: 0.95rem;
}

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

.footer {
  text-align: center;
}

code {
  background: #e2e8f0;
  padding: 2px 6px;
  border-radius: 6px;
}

@media (max-width: 640px) {
  .wrap {
    padding: 20px 14px 36px;
  }

  .hero,
  .steps,
  .incentive,
  .footer {
    padding: 22px;
    border-radius: 16px;
  }
}

.logo-header,
.logo-footer {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 24px 16px;
}

.logo-header {
  padding-top: 32px;
  padding-bottom: 12px;
}

.logo-footer {
  padding-top: 20px;
  padding-bottom: 32px;
  margin-top: 40px;
}

.logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cloud-logo {
  max-width: 220px;
  width: 100%;
  height: auto;
  display: block;
}

.footer-logo {
  max-width: 160px;
  opacity: 0.95;
}

