:root {
  --midnight-navy: #0b1023;
  --deep-space-blue: #121a3a;
  --gradient-deep: #1a2250;
  --moon-purple: #8b6dff;
  --soft-lavender: #b69cff;
  --moonlight-ivory: #ffe7c2;
  --dream-white: #f5f7ff;
  --splash-lavender: #c8c9ef;
  --splash-muted: #9092b0;
  --lilac-mist: #c9b8f0;
  --card-border: rgba(255, 255, 255, 0.14);
  --card-bg: rgba(18, 26, 58, 0.42);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--dream-white);
  background: linear-gradient(
    165deg,
    var(--midnight-navy) 0%,
    var(--deep-space-blue) 45%,
    var(--gradient-deep) 100%
  );
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

.bg-glow {
  position: fixed;
  inset: -20% -10% auto;
  height: 70vh;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(139, 109, 255, 0.22), transparent 65%);
  z-index: 0;
}

.page {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.hero {
  text-align: center;
  padding: 24px 0 48px;
}

.logo {
  max-width: min(280px, 78vw);
  height: auto;
  margin: 0 auto 20px;
  display: block;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3.5px;
  color: var(--splash-muted);
  text-transform: uppercase;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(28px, 6vw, 36px);
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--splash-lavender);
}

.lead {
  margin: 0 auto 28px;
  max-width: 34rem;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(245, 247, 255, 0.78);
}

.cta {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  color: var(--deep-space-blue);
  background: linear-gradient(90deg, var(--soft-lavender), var(--lilac-mist), var(--moonlight-ivory));
  box-shadow: 0 10px 22px rgba(139, 109, 255, 0.45);
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.cta:hover {
  transform: scale(0.99);
  opacity: 0.94;
}

.features {
  display: grid;
  gap: 16px;
  margin-bottom: 40px;
}

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

.card {
  padding: 22px 20px;
  border-radius: 20px;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.card h2 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--dream-white);
}

.card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(200, 201, 239, 0.72);
}

.card--narrow {
  max-width: 28rem;
  margin: 0 auto;
  text-align: center;
}

.notify {
  margin-bottom: 48px;
}

.domain {
  margin: 16px 0 0;
}

.domain a {
  color: var(--soft-lavender);
  font-weight: 600;
  text-decoration: none;
}

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

.footer {
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-line {
  margin: 0 0 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.8px;
  color: var(--splash-muted);
}

.footer-copy {
  margin: 0 0 24px;
  font-size: 13px;
  color: rgba(144, 146, 176, 0.85);
}

.jettfy {
  display: inline-block;
  opacity: 0.72;
  transition: opacity 0.15s ease;
}

.jettfy:hover {
  opacity: 1;
}

.jettfy-logo {
  display: block;
  width: auto;
  height: 26px;
  max-width: 120px;
}
