:root {
  --ink: #172033;
  --muted: #667085;
  --accent: #6c63ff;
  --accent-deep: #5148e5;
  --soft: #f4f2ff;
  --card: rgba(255,255,255,.86);
  --line: rgba(23,32,51,.08);
  --shadow: 0 24px 70px rgba(56,49,120,.12);
}
* { box-sizing: border-box; }
html {
  min-height: 100%;
  background:
    radial-gradient(circle at 8% 10%, #ece9ff 0, transparent 34%),
    radial-gradient(circle at 92% 18%, #fff1cf 0, transparent 32%),
    linear-gradient(180deg, #fbfbff 0%, #ffffff 52%, #faf9ff 100%);
}
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  display: grid;
  grid-template-rows: 1fr auto;
}
.page-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 26px;
  display: grid;
  align-items: center;
}
.hero {
  width: 100%;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid rgba(108,99,255,.10);
  border-radius: 36px;
  background: var(--card);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.hero::before {
  width: 260px;
  height: 260px;
  right: -90px;
  top: -110px;
  background: rgba(108,99,255,.08);
}
.hero::after {
  width: 180px;
  height: 180px;
  left: -90px;
  bottom: -100px;
  background: rgba(255,196,86,.11);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  position: relative;
  z-index: 1;
}
.brand-name {
  font-weight: 800;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -.04em;
}
.brand-mark {
  width: 46px;
  height: 46px;
  position: relative;
  display: inline-block;
}
.step {
  position: absolute;
  width: 11px;
  border-radius: 7px 7px 3px 3px;
  background: var(--accent);
  bottom: 5px;
}
.step-one { height: 12px; left: 2px; opacity: .55; }
.step-two { height: 21px; left: 15px; opacity: .78; }
.step-three { height: 30px; left: 28px; }
.star {
  position: absolute;
  color: #f5b942;
  font-size: 15px;
  right: 0;
  top: -2px;
  transform: rotate(8deg);
}
.hero-copy {
  max-width: 790px;
  margin: clamp(52px, 8vw, 92px) auto 54px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-deep);
  font-weight: 750;
  letter-spacing: .11em;
  text-transform: uppercase;
  font-size: 12px;
}
h1 {
  margin: 0;
  font-size: clamp(54px, 8vw, 96px);
  line-height: .94;
  letter-spacing: -.065em;
  font-weight: 850;
}
h1 span { color: var(--accent); }
.lead {
  margin: 28px auto 0;
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
}
.coming-soon {
  margin: 30px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #4038bc;
  background: var(--soft);
  font-size: 14px;
  font-weight: 750;
}
.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(108,99,255,.11);
}
.journey {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.journey-card {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.76);
}
.icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--soft);
  color: var(--accent-deep);
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
}
.journey-card h2 {
  margin: 0 0 9px;
  font-size: 19px;
  letter-spacing: -.025em;
}
.journey-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
}
.arrow {
  color: #aaa5e8;
  font-size: 26px;
  font-weight: 700;
}
.note {
  margin: 28px 0 0;
  text-align: center;
  color: #7d8390;
  font-size: 14px;
  position: relative;
  z-index: 1;
}
footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0 28px;
  color: #8a909d;
  text-align: center;
  font-size: 12px;
}
.dot { margin: 0 7px; }

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 22px, 1180px);
    padding-top: 12px;
  }
  .hero {
    border-radius: 26px;
    padding: 26px 20px 30px;
  }
  .hero-copy {
    margin: 52px auto 42px;
  }
  h1 {
    font-size: clamp(50px, 15vw, 72px);
  }
  .journey {
    grid-template-columns: 1fr;
  }
  .arrow {
    transform: rotate(90deg);
    text-align: center;
    line-height: 1;
  }
  .journey-card {
    min-height: auto;
  }
  footer .dot { display: none; }
  footer span { display: block; margin: 3px 0; }
}

@media (prefers-reduced-motion: no-preference) {
  .pulse { animation: breathe 2.4s ease-in-out infinite; }
  @keyframes breathe {
    0%,100% { box-shadow: 0 0 0 5px rgba(108,99,255,.10); }
    50% { box-shadow: 0 0 0 9px rgba(108,99,255,.04); }
  }
}
