:root {
  color-scheme: dark;
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --panel: rgba(255, 255, 255, 0.2);
  --panel-strong: rgba(255, 255, 255, 0.28);
  --dark: #090812;
  --pink: #ff2d55;
  --orange: #ff9500;
  --mint: #00c7be;
  --yellow: #ffcc00;
  --blue: #0a84ff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
  font-family: ui-rounded, "SF Pro Rounded", "Arial Rounded MT Bold", "Nunito", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(135deg, #000000 0%, #5b168f 30%, #7c2cff 48%, #0647b8 70%, #ff2d55 100%);
  background-size: 180% 180%;
  animation: pumpGradientDrift 11s ease-in-out infinite alternate;
  color: var(--ink);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

@keyframes pumpGradientDrift {
  0% {
    background-position: 0% 18%;
  }

  50% {
    background-position: 70% 54%;
  }

  100% {
    background-position: 100% 82%;
  }
}

a {
  color: inherit;
}

.site-header,
.hero,
.feature-band,
.screens-section,
.support-band,
.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 24px;
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  text-decoration: none;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 1000;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(10, 132, 255, 0.34);
}

.nav-links {
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 900;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
  min-height: clamp(560px, 78vh, 760px);
  padding: 38px 0 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 0.9rem;
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 34px;
  font-size: clamp(5rem, 16vw, 11rem);
  line-height: 0.78;
  font-weight: 1000;
  letter-spacing: 0;
  text-shadow:
    0 10px 0 var(--pink),
    0 20px 0 rgba(255, 149, 0, 0.9),
    0 28px 40px rgba(0, 0, 0, 0.38);
}

.hero-subtitle {
  max-width: 660px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.5rem, 3.8vw, 3rem);
  font-weight: 1000;
  line-height: 1.04;
}

.watch-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 1000;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.store-button,
.support-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  border: 0;
  border-radius: 28px;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.store-button {
  flex-direction: column;
  align-items: flex-start;
  min-width: 210px;
  padding: 14px 24px 16px;
  background: var(--pink);
  color: var(--ink);
  transition: transform 180ms ease, filter 180ms ease;
}

.store-button span {
  font-size: 0.82rem;
  font-weight: 900;
  opacity: 0.78;
}

.store-button strong {
  font-size: 1.32rem;
  font-weight: 1000;
  line-height: 1;
}

.free-badge {
  display: inline-grid;
  place-items: center;
  min-height: 76px;
  padding: 0 24px;
  border-radius: 28px;
  background: var(--yellow);
  color: #151006;
  box-shadow: var(--shadow);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 1000;
}

.store-button:hover,
.store-button:focus-visible,
.support-link:hover,
.support-link:focus-visible {
  transform: translateY(-3px);
  filter: saturate(1.16);
}

.inactive-link {
  cursor: default;
}

.hero-visual {
  display: grid;
  justify-items: center;
  gap: 22px;
  padding: clamp(22px, 5vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 44px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-icon {
  width: min(52vw, 190px);
  height: auto;
  border-radius: 42px;
  box-shadow: 0 26px 70px rgba(10, 132, 255, 0.42);
}

.mini-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
}

.mini-panel div {
  min-width: 0;
  padding: 18px 12px;
  border-radius: 24px;
  background: var(--panel-strong);
  text-align: center;
}

.mini-panel span,
.feature p,
.screenshot-slot p,
.site-footer {
  color: var(--muted);
}

.mini-panel span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 1000;
}

.mini-panel strong {
  display: block;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 1000;
  line-height: 0.86;
}

.mini-panel small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 1000;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-block: 18px 82px;
}

.feature,
.screenshot-slot {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: var(--panel);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.feature {
  padding: 24px;
}

.feature-dot {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 999px;
}

.feature-dot.pink {
  background: var(--pink);
}

.feature-dot.orange {
  background: var(--orange);
}

.feature-dot.mint {
  background: var(--mint);
}

.feature h2,
.section-heading h2,
.support-band h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.95;
  font-weight: 1000;
}

.feature h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.feature p,
.screenshot-slot p {
  margin-bottom: 0;
  font-size: 1.05rem;
  font-weight: 850;
  line-height: 1.35;
}

.screens-section {
  padding-block: 28px 88px;
}

.section-heading {
  margin-bottom: 26px;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  align-items: stretch;
  gap: 18px;
}

.screenshot-slot {
  display: grid;
  align-content: start;
  justify-items: center;
  min-height: 500px;
  padding: clamp(18px, 4vw, 32px);
  text-align: center;
}

.watch-column {
  display: grid;
  gap: 18px;
}

.device-frame {
  display: grid;
  place-items: center;
  width: 100%;
  margin-bottom: 24px;
  overflow: hidden;
  background: #f9f9fb;
  border: 10px solid #f9f9fb;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  clip-path: inset(0 round var(--frame-radius));
}

.phone-frame {
  --frame-radius: 34px;
  max-width: 390px;
  aspect-ratio: 9 / 19;
  border-radius: var(--frame-radius);
}

.watch-frame {
  --frame-radius: 34px;
  align-self: center;
  max-width: 260px;
  aspect-ratio: 1 / 1.15;
  border-radius: var(--frame-radius);
}

.screen-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 26px;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 45, 85, 0.34), rgba(0, 199, 190, 0.2)),
    #080812;
  color: var(--ink);
}

.screen-video {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: max(0px, calc(var(--frame-radius) - 10px));
  clip-path: inset(0 round max(0px, calc(var(--frame-radius) - 10px)));
  object-fit: cover;
  transform: scale(1.025);
}

.screen-placeholder span {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 128px;
  border: 3px dashed rgba(255, 255, 255, 0.42);
  border-radius: 24px;
  font-size: clamp(1.1rem, 3vw, 1.8rem);
  font-weight: 1000;
}

.screenshot-slot h3 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 1000;
}

.benefits-card {
  width: 100%;
  padding: clamp(20px, 4vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: var(--panel);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  text-align: left;
}

.benefits-card h4 {
  margin: 0 0 16px;
  color: var(--yellow);
  font-size: clamp(1.8rem, 3.4vw, 2.35rem);
  font-weight: 1000;
}

.benefits-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefits-card li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.25;
}

.benefits-card li::before {
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(0, 199, 190, 0.18);
  content: "";
  transform: translateY(-50%);
}

.support-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 48px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 34px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.support-band h2 {
  margin-bottom: 0;
}

.support-link {
  min-width: min(100%, 320px);
  padding: 18px 24px;
  background: var(--orange);
  color: var(--ink);
  font-size: clamp(1rem, 2.8vw, 1.3rem);
  font-weight: 1000;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 32px;
  font-size: 0.95rem;
  font-weight: 900;
}

.notice {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 10;
  max-width: calc(100% - 32px);
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--yellow);
  color: #16110a;
  box-shadow: var(--shadow);
  font-weight: 1000;
  transform: translate(-50%, 120px);
  transition: transform 220ms ease;
}

.notice.is-visible {
  transform: translate(-50%, 0);
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
  }

  .hero,
  .feature-band,
  .screen-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 28px 0 28px;
  }

  .feature-band {
    padding-top: 6px;
    padding-bottom: 56px;
  }

  .screens-section {
    padding-bottom: 42px;
  }

  .screenshot-slot {
    min-height: auto;
  }

  .watch-frame {
    max-width: 260px;
  }

  .support-band,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .site-header {
    flex-direction: column;
  }

  .download-actions,
  .store-button {
    width: 100%;
  }

  .mini-panel {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
