:root {
  --bg: #11122d;
  --bg-soft: #17193a;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --text: #f7f3ea;
  --muted: #c8c3b8;
  --line: rgba(255, 255, 255, 0.14);
  --orange: #ff9a2f;
  --orange-deep: #ff7e1b;
  --blue: #63c7ff;
  --green: #4fd16f;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Helvetica Neue", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(99, 199, 255, 0.14), transparent 32%),
    radial-gradient(circle at 85% 15%, rgba(255, 154, 47, 0.18), transparent 28%),
    linear-gradient(180deg, #12132e 0%, #0b0c19 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 16px 20px;
  background: rgba(13, 14, 31, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.site-nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.96rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 40px;
  min-height: calc(100vh - 120px);
  padding: 72px 0 40px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
.brand span {
  font-family: "Avenir Next Condensed", "Avenir Next", sans-serif;
}

h1 {
  margin: 0;
  font-size: clamp(3.25rem, 7vw, 6.2rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  max-width: 10.5ch;
}

.hero-text,
.section p,
.site-footer p,
.mini-list span,
.watch-step p,
.feature-card p,
.pricing-card p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.03rem;
}

.hero-text {
  max-width: 60ch;
  margin: 22px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #22160d;
  box-shadow: 0 18px 40px rgba(255, 126, 27, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li,
.pricing-points span,
.social-pills span {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-size: 0.94rem;
}

.app-store-badge {
  display: inline-flex;
  width: 190px;
  margin-top: 22px;
  border-radius: 14px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.app-store-badge:hover,
.app-store-badge:focus-visible {
  transform: translateY(-2px);
  opacity: 0.94;
}

.app-store-badge img {
  width: 100%;
  height: auto;
}

.hero-visual {
  position: relative;
  min-height: 760px;
}

.phone-stack {
  position: absolute;
  width: min(100%, 410px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 42px;
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.phone-stack img {
  width: 100%;
  height: auto;
}

.phone-front {
  right: 0;
  top: 34px;
  transform: rotate(6deg);
  animation: floatFront 6.5s ease-in-out infinite;
}

.phone-back {
  left: 10px;
  bottom: 0;
  transform: rotate(-8deg);
  animation: floatBack 7s ease-in-out infinite;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(50px);
  opacity: 0.8;
}

.glow-orange {
  width: 220px;
  height: 220px;
  top: 90px;
  right: 10px;
  background: rgba(255, 154, 47, 0.36);
}

.glow-blue {
  width: 180px;
  height: 180px;
  left: 10px;
  bottom: 130px;
  background: rgba(99, 199, 255, 0.3);
}

.stats-strip,
.feature-card,
.media-card,
.watch-step,
.pricing-card,
.community-section,
.site-footer {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius-xl);
}

.stats-strip article {
  padding: 10px 8px;
}

.stat-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stats-strip strong {
  font-size: 1.08rem;
  line-height: 1.4;
}

.section {
  padding: 110px 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4.5vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

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

.feature-card {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.feature-index {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.feature-card h3,
.watch-step h3 {
  margin: 0 0 10px;
  font-size: 1.6rem;
  line-height: 1.05;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: start;
}

.showcase-copy {
  position: sticky;
  top: 130px;
}

.mini-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.mini-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 320px));
  justify-content: center;
  gap: 18px;
}

.media-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.media-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.media-tall {
  aspect-ratio: 1260 / 2736;
  min-height: 0;
  background: rgba(255, 255, 255, 0.03);
}

.media-wide {
  grid-column: 1 / -1;
  min-height: 420px;
}

.media-wide img {
  height: 100%;
  object-fit: cover;
}

.watch-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.watch-step {
  display: grid;
  gap: 20px;
  padding: 20px;
  border-radius: var(--radius-xl);
}

.watch-step img {
  border-radius: 22px;
}

.community-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 22px;
  padding: 24px;
  border-radius: var(--radius-xl);
}

.community-visual {
  max-height: 860px;
  background: rgba(255, 255, 255, 0.03);
}

.community-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 100%;
}

.social-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.pricing-section {
  padding-bottom: 110px;
}

.pricing-card {
  padding: 34px;
  border-radius: var(--radius-xl);
  text-align: center;
}

.pricing-card h2 {
  max-width: 12ch;
  margin: 0 auto;
}

.pricing-card p {
  max-width: 56ch;
  margin: 22px auto 0;
}

.pricing-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.app-store-badge-centered {
  margin: 28px auto 0;
}

.contact-button {
  margin-top: 28px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  padding: 22px 26px;
  border-radius: 24px 24px 0 0;
  border-bottom: 0;
}

.site-footer p {
  margin: 0;
  font-size: 0.94rem;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatFront {
  0%,
  100% {
    transform: rotate(6deg) translateY(0);
  }
  50% {
    transform: rotate(5deg) translateY(-14px);
  }
}

@keyframes floatBack {
  0%,
  100% {
    transform: rotate(-8deg) translateY(0);
  }
  50% {
    transform: rotate(-7deg) translateY(16px);
  }
}

@media (max-width: 1080px) {
  .hero,
  .showcase,
  .community-section {
    grid-template-columns: 1fr;
  }

  .showcase-copy {
    position: static;
  }

  .hero-visual {
    min-height: 640px;
  }
}

@media (max-width: 780px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .site-header {
    position: static;
    border-radius: 26px;
    padding: 18px;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .stats-strip,
  .feature-grid,
  .showcase-grid,
  .watch-steps,
  .community-section {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
  }

  .phone-stack {
    width: min(84vw, 350px);
    border-radius: 34px;
  }

  .phone-front {
    right: 0;
    top: 10px;
  }

  .phone-back {
    left: 0;
    bottom: 0;
  }

  .media-tall {
    min-height: auto;
  }

  .section {
    padding-top: 84px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
