:root {
  color-scheme: light;
  --ink: #07162f;
  --muted: #52647c;
  --blue: #2168ee;
  --blue-deep: #1252c7;
  --line: rgba(255, 255, 255, .78);
  --glass: rgba(248, 252, 255, .68);
  --shadow: 0 24px 70px rgba(56, 94, 150, .18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 2%, rgba(129, 224, 255, .55), transparent 30rem),
    radial-gradient(circle at 91% 12%, rgba(136, 130, 255, .35), transparent 33rem),
    linear-gradient(145deg, #e6f8ff 0%, #edf3ff 48%, #e7edff 100%);
}

a { color: inherit; }

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

.orb {
  position: absolute;
  width: 28rem;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(12px);
  opacity: .35;
  animation: drift 14s ease-in-out infinite alternate;
}

.orb-one { top: 38%; left: -13rem; background: #72e6ff; }
.orb-two { right: -10rem; bottom: -9rem; background: #9297ff; animation-delay: -6s; }

.site-header, main, footer {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 760;
  text-decoration: none;
  letter-spacing: -.02em;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 7px 18px rgba(20, 75, 165, .25);
}

nav { display: flex; gap: 28px; }

nav a {
  color: #394962;
  font-size: .95rem;
  text-decoration: none;
  transition: color .2s ease;
}

nav a:hover { color: var(--blue); }

.hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 28px;
  padding: 56px;
  border: 1px solid var(--line);
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(255,255,255,.74), rgba(246,250,255,.5));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(24px) saturate(135%);
  -webkit-backdrop-filter: blur(24px) saturate(135%);
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3.7rem, 7.2vw, 6rem);
  line-height: .89;
  letter-spacing: -.075em;
}

h1 span {
  color: transparent;
  background: linear-gradient(105deg, #0d52cb 8%, #309de9 65%, #5f70ee);
  -webkit-background-clip: text;
  background-clip: text;
}

.lede {
  max-width: 35rem;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.6;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.app-store-badge {
  display: inline-flex;
  transition: transform .2s ease;
}

.app-store-badge:hover { transform: translateY(-2px); }

.app-store-badge img {
  display: block;
  width: 150px;
  height: auto;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border-radius: 15px;
  font-weight: 720;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover { transform: translateY(-2px); }

.primary {
  color: white;
  background: linear-gradient(135deg, #3178f5, #205fe4);
  box-shadow: 0 12px 25px rgba(40, 104, 232, .26);
}

.secondary {
  border: 1px solid rgba(255,255,255,.9);
  background: rgba(255,255,255,.56);
}

.quick-facts {
  display: flex;
  gap: 26px;
  margin: 38px 0 0;
  padding: 0;
  color: #607088;
  font-size: .72rem;
  list-style: none;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.quick-facts span {
  display: block;
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -.04em;
}

.mascot-stage {
  position: relative;
  min-height: 510px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.84);
  border-radius: 34px;
  background:
    linear-gradient(rgba(255,255,255,.12), rgba(255,255,255,.28)),
    radial-gradient(circle at 50% 40%, #f8fdff 0, #d8f1ff 43%, #cbd8ff 100%);
  box-shadow: inset 0 1px 0 white, 0 25px 50px rgba(55, 105, 172, .18);
}

.mascot-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .25;
  background-image: linear-gradient(rgba(35,105,220,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(35,105,220,.18) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle, black, transparent 73%);
}

.mascot-stage img {
  position: relative;
  z-index: 2;
  width: 112%;
  max-width: 660px;
  filter: drop-shadow(0 28px 22px rgba(43, 82, 137, .22));
  transform: translate(1%, -4%);
  animation: float 5s ease-in-out infinite;
}

.mascot-caption {
  position: absolute;
  z-index: 3;
  left: 22px;
  bottom: 20px;
  margin: 0;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 16px;
  color: #4b5e77;
  background: rgba(255,255,255,.7);
  font-size: .78rem;
  line-height: 1.45;
  backdrop-filter: blur(12px);
}

.mascot-caption strong { color: var(--ink); }

.timezone-ring {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(38, 114, 239, .22);
  border-radius: 50%;
  transform: rotate(-15deg);
}

.ring-one { width: 82%; height: 38%; }
.ring-two { width: 58%; height: 80%; transform: rotate(56deg); }

.city-dot {
  position: absolute;
  z-index: 3;
  width: 8px;
  height: 8px;
  border: 2px solid white;
  border-radius: 50%;
  background: #276dea;
  box-shadow: 0 0 0 6px rgba(39,109,234,.12);
}

.dot-one { top: 18%; left: 19%; }
.dot-two { top: 26%; right: 15%; animation-delay: -1s; }
.dot-three { bottom: 25%; right: 12%; animation-delay: -2s; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 22px 0 0;
}

.feature-grid article, .page-card {
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 28px;
  background: rgba(250, 252, 255, .69);
  box-shadow: 0 18px 45px rgba(63, 91, 139, .12);
  backdrop-filter: blur(18px);
}

.feature-grid article {
  min-height: 250px;
  padding: 28px;
}

.card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  border-radius: 13px;
  color: white;
  background: linear-gradient(135deg, #60c9f1, #396ce6);
  box-shadow: 0 8px 18px rgba(48, 112, 221, .22);
}

h2 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  letter-spacing: -.035em;
}

.feature-grid p, .page-card p, .page-card li {
  color: var(--muted);
  line-height: 1.55;
}

.feature-grid article > a {
  display: inline-block;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.feature-grid article > a span { transition: margin .2s ease; }
.feature-grid article > a:hover span { margin-left: 4px; }

.page-shell { padding: 68px 0 20px; }

.page-intro {
  max-width: 730px;
  margin-bottom: 38px;
}

.page-intro h1 { font-size: clamp(3.3rem, 8vw, 6rem); }

.page-card {
  max-width: 820px;
  margin-bottom: 18px;
  padding: 32px;
}

.page-card h2 { margin-top: 0; }
.page-card a { color: var(--blue); }
.page-card ul { padding-left: 1.25rem; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 64px 38px;
  color: #64738a;
  font-size: .82rem;
}

@keyframes float {
  from { transform: translate(1%, -5%); }
  to { transform: translate(1%, -1%); }
}

@keyframes drift {
  to { transform: translate(3rem, -2rem) scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; padding: 40px; }
  .mascot-stage { min-height: 430px; }
  .mascot-stage img { width: min(110%, 650px); }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid article { min-height: 0; }
  .card-icon { margin-bottom: 22px; }
}

@media (max-width: 560px) {
  .site-header { min-height: 76px; }
  nav { gap: 14px; }
  nav a { font-size: .82rem; }
  nav a:last-child { display: none; }
  .hero { padding: 29px 22px 22px; border-radius: 29px; }
  h1 { font-size: clamp(3.25rem, 15.5vw, 4.4rem); }
  .lede { font-size: 1rem; }
  .quick-facts { gap: 17px; }
  .mascot-stage { min-height: 330px; margin-top: 12px; }
  .mascot-stage img { width: 126%; }
  .mascot-caption { left: 12px; right: 12px; bottom: 12px; }
  footer { flex-direction: column; padding-top: 44px; }
}
