:root {
  --bg: #efeff4;
  --text: #0f172a;
  --muted: #5b6475;
  --accent: #2aabee;
  --accent-soft: rgba(42, 171, 238, 0.16);
  --violet: #7c5cff;
  --green: #3a9f20;
  --surface: rgba(255, 255, 255, 0.72);
  --border: rgba(15, 23, 42, 0.1);
  --radius: 16px;
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Fraunces', Georgia, serif;
}

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

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-display);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.atmosphere {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  will-change: transform;
  animation: drift 18s ease-in-out infinite;
}

.blob-blue {
  width: min(70vw, 520px);
  height: min(70vw, 520px);
  top: -12%;
  right: -8%;
  background: var(--accent);
  opacity: 0.28;
}

.blob-violet {
  width: min(55vw, 420px);
  height: min(55vw, 420px);
  bottom: 18%;
  left: -12%;
  background: var(--violet);
  opacity: 0.2;
  animation-delay: -6s;
}

.blob-green {
  width: min(40vw, 280px);
  height: min(40vw, 280px);
  top: 42%;
  right: 8%;
  background: var(--green);
  opacity: 0.14;
  animation-delay: -11s;
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(2%, -3%, 0) scale(1.06);
  }
}

.page {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 0 3rem;
}

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 4.5rem 0 3rem;
  animation: rise 0.7s ease-out both;
}

.logo {
  width: 112px;
  height: 112px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  animation: rise 0.75s ease-out both;
}

.brand {
  margin: 1.25rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 9vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  animation: rise 0.8s ease-out 0.05s both;
}

.tagline {
  margin: 1rem 0 0;
  max-width: 22ch;
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 3.6vw, 1.65rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--muted);
  animation: rise 0.85s ease-out 0.1s both;
}

.cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 28rem;
  animation: rise 0.9s ease-out 0.15s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

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

.btn-primary:hover {
  opacity: 0.92;
}

.stores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.store {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  text-decoration: none;
  cursor: default;
  opacity: 0.72;
}

.store-label {
  font-size: 0.95rem;
  font-weight: 600;
}

.store-soon {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.how {
  padding: 1rem 0 2.5rem;
  border-top: 1px solid var(--border);
  animation: rise 0.7s ease-out 0.2s both;
}

.how h2 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--muted);
}

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

.steps li {
  display: grid;
  gap: 0.25rem;
}

.steps strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.steps span {
  font-family: var(--font-body);
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.35;
  max-width: 36ch;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer p {
  margin: 0;
}

.footer a {
  text-decoration: none;
  font-weight: 600;
  color: var(--accent);
}

.footer a:hover {
  text-decoration: underline;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .blob,
  .hero,
  .logo,
  .brand,
  .tagline,
  .cta,
  .how {
    animation: none;
  }
}

@media (min-width: 720px) {
  .stores {
    grid-template-columns: repeat(4, 1fr);
  }

  .tagline {
    max-width: 28ch;
  }
}
