/* ============================================================
   Tokens
   ============================================================ */
:root {
  --bg: #0f0d15;
  --surface: #1b1725;
  --border: #322c46;
  --accent: #6d4aff;
  --accent-soft: #c2b2ff;
  --text: #f1eefa;
  --text-muted: #9993b0;
  --text-faint: #8a82a8; /* AA-checked: >=4.5:1 on both --bg and --surface */

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --content-width: 760px;
  --radius: 10px;
}

/* ============================================================
   Reset & base
   ============================================================ */
* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--accent-soft);
}

.wrap {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  margin: 0;
  font-weight: 650;
  letter-spacing: -0.01em;
}

:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  padding: 28px 0 0;
}

.header-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.wordmark {
  height: 24px;
  width: auto;
}

.unofficial-tag {
  font-size: 13px;
  color: var(--text-faint);
  padding-left: 12px;
  border-left: 1px solid var(--border);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding: 56px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4.2vw, 2.75rem);
  line-height: 1.14;
  margin-bottom: 20px;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 46ch;
  margin: 0 0 28px;
}

.cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 8px;
  transition: background-color 0.15s ease, transform 0.15s ease;
}

.cta:hover {
  background: #7d5bff;
  transform: translateY(-1px);
}

.cta:active {
  transform: translateY(0);
}

.offer-line {
  margin: 20px 0 0;
  font-size: 1rem;
  max-width: 46ch;
}

.offer-amount {
  color: var(--accent-soft);
}

.offer-hedge {
  margin: 12px 0 0;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--text-faint);
  max-width: 48ch;
}

.offer-hedge a {
  color: var(--text-faint);
  text-decoration-color: var(--border);
}

.checked-date {
  display: block;
  margin-top: 6px;
}

/* Hero badge cluster: a loose, overlapping scatter of the actual
   product marks, standing in for the generic gradient-blob hero. */
.hero-cluster {
  position: relative;
  height: 280px;
}

.hero-cluster .badge {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.55);
}

.b-mail     { top: 4%;   left: 30%;  width: 84px; height: 84px; transform: rotate(-6deg); z-index: 5; }
.b-vpn      { top: 2%;   left: 68%;  width: 58px; height: 58px; transform: rotate(8deg);  z-index: 3; }
.b-drive    { top: 34%;  left: 6%;   width: 60px; height: 60px; transform: rotate(-9deg); z-index: 2; }
.b-pass     { top: 40%;  left: 62%;  width: 72px; height: 72px; transform: rotate(5deg);  z-index: 4; }
.b-calendar { top: 62%;  left: 30%;  width: 56px; height: 56px; transform: rotate(10deg); z-index: 3; }
.b-wallet   { top: 66%;  left: 2%;   width: 50px; height: 50px; transform: rotate(-4deg); z-index: 1; }
.b-lumo     { top: 68%;  left: 70%;  width: 58px; height: 58px; transform: rotate(-7deg); z-index: 2; }

/* ============================================================
   How it works
   ============================================================ */
.how {
  padding: 8px 0 64px;
}

.how h2 {
  font-size: 1.5rem;
  margin-bottom: 28px;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 24px;
}

.steps li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.step-num {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--accent-soft);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.steps p {
  margin: 0;
  color: var(--text-muted);
  max-width: 54ch;
}

/* ============================================================
   Services: a row list with hairline dividers, not cards.
   Echoes an account/app-list panel rather than a marketing grid.
   ============================================================ */
.services {
  padding: 8px 0 72px;
  border-top: 1px solid var(--border);
}

.services h2 {
  font-size: 1.5rem;
  margin: 48px 0 8px;
}

.service-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  border-top: 1px solid var(--border);
}

.service-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.service-row img {
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 9px;
}

.service-text h3 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.service-text p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ============================================================
   Second CTA
   ============================================================ */
.second-cta {
  padding: 8px 0 80px;
  text-align: left;
}

.second-cta h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 32px 0 48px;
}

.site-footer p {
  margin: 0 0 14px;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-faint);
  max-width: 68ch;
}

.site-footer p:last-child {
  margin-bottom: 0;
}

.site-footer a {
  color: var(--text-muted);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 760px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-cluster {
    height: 220px;
    order: -1;
  }
}

@media (max-width: 420px) {
  body {
    font-size: 16px;
  }

  .hero {
    padding: 40px 0 56px;
  }

  .cta {
    display: block;
    text-align: center;
    width: 100%;
  }
}
