:root {
  --bg: #07090b;
  --bg-soft: #0e1216;
  /* --surface: rgba(16, 20, 25, 0.84);
  --surface-strong: rgba(19, 24, 29, 0.96);
  --surface-soft: rgba(255, 255, 255, 0.03); */
  --text: #f4f7fb;
  --muted: #9ea9b6;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #00c2ff;
  --max-width: 1200px;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.35);
  --header-offset: 92px;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  font-family: "Outfit", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(0, 194, 255, 0.18), transparent 24%),
    radial-gradient(circle at 88% 16%, var(--warm-soft), transparent 26%),
    linear-gradient(180deg, #050608 0%, #090c10 40%, #050608 100%);
}

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

img {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

.container {
  width: min(calc(100% - 8rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 9, 11, 0.7);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  flex-wrap: nowrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: max-content;
}

.brand--footer {
  align-items: flex-start;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}



.brand-lockup strong {
  font-size: 0.98rem;
  letter-spacing: 0.22em;
}

.brand-lockup small {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-menu {
  position: relative;
  margin-left: auto;
  z-index: 25;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  min-height: 52px;
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
  position: relative;
  z-index: 2;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle-label {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-toggle-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  width: 1.2rem;
}

.menu-toggle-icon span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-menu[data-open="true"] .menu-toggle-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-menu[data-open="true"] .menu-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.site-menu[data-open="true"] .menu-toggle-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.menu-panel {
  position: absolute;
  top: calc(100% + 0.85rem);
  right: 0;
  width: min(360px, calc(100vw - 2rem));
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(18, 22, 27, 0.97), rgba(9, 12, 15, 0.99));
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 30;
}

.menu-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0, 194, 255, 0.08), transparent 40%);
  pointer-events: none;
}

.site-menu[data-open="true"] .menu-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

@media (min-width: 961px) {
  .site-menu {
    display: flex;
    align-items: center;
  }

  .hero-layout {
    padding-bottom: var(--header-offset);
  }

  .site-menu .menu-toggle {
    display: none;
  }

  .site-menu .menu-panel {
    position: static;
    top: auto;
    right: auto;
    width: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .site-menu .menu-panel::before {
    display: none;
  }

  .site-menu .site-nav {
    display: flex;
    align-items: center;
    gap: 0.2rem;
  }

  .site-menu .site-nav a {
    white-space: nowrap;
  }

  .site-menu .menu-panel .header-actions {
    display: none;
  }
}

.site-nav {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.25rem;
}

.site-nav a,
.footer-nav a {
  color: var(--muted);
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.footer-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.header-actions,
.download-links,
.store-badges {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.header-actions {
  position: relative;
  z-index: 1;
  padding-top: 0.15rem;
}

.menu-panel .header-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.menu-panel .nav-button {
  min-height: 40px;
  padding: 0.68rem 0.9rem;
  font-size: 0.92rem;
  box-shadow: 0 12px 24px rgba(0, 194, 255, 0.16);
}

.menu-panel .nav-button--ghost {
  box-shadow: none;
}

.nav-button,
.primary-button,
.secondary-button,
.apk-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 2.6rem;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.nav-button,
.primary-button,
.apk-button {
  background: linear-gradient(135deg, #f9fbff 0%, #bdefff 100%);
  color: #031016;
  box-shadow: 0 18px 40px rgba(0, 194, 255, 0.24);
}

.nav-button--ghost,
.secondary-button {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--text);
  box-shadow: none;
}

.secondary-button--light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
}

.nav-button:hover,
.primary-button:hover,
.secondary-button:hover,
.apk-button:hover {
  transform: translateY(-2px);
}

.site-shell {
  position: relative;
  z-index: 1;
}

.section,
.page-hero,
.hero {
  position: relative;
}

.page-hero {
  padding: clamp(5.5rem, 9vw, 7.5rem) 0 clamp(4rem, 6vw, 5rem);
}

.hero {
  height: calc(100svh - var(--header-offset));
  height: calc(100dvh - var(--header-offset));
  border: 1px solid var(--line);
  overflow: hidden;
}

.page-hero {
  min-height: calc(100svh - var(--header-offset));
}

.hero-layout,
.page-hero-grid {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 0rem 0;
}

.hero-layout {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.4rem;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 9, 11, 0.4) 0%, rgba(7, 9, 11, 0.12) 28%, rgba(7, 9, 11, 0.92) 92%),
    linear-gradient(90deg, rgba(7, 9, 11, 0.96) 0%, rgba(7, 9, 11, 0.48) 32%, rgba(7, 9, 11, 0.88) 100%);
  z-index: 1;
}

.hero-backdrop--page::before {
  background:
    linear-gradient(180deg, rgba(7, 9, 11, 0.28) 0%, rgba(7, 9, 11, 0.18) 35%, rgba(7, 9, 11, 0.94) 94%),
    linear-gradient(90deg, rgba(7, 9, 11, 0.9) 0%, rgba(7, 9, 11, 0.45) 40%, rgba(7, 9, 11, 0.86) 100%);
}

.movie-grid {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 1rem;
}

.movie-grid--hero {
  left: -10vw;
  width: min(1500px, 135vw);
  padding: 6rem 0 2rem;
  transform: perspective(1800px) rotateX(20deg) rotateZ(-13deg);
  opacity: 0.68;
}

.movie-grid--page {
  right: -14vw;
  left: auto;
  width: min(1300px, 120vw);
  padding: 5rem 0 2rem;
  transform: perspective(1800px) rotateX(18deg) rotateZ(11deg);
  opacity: 0.52;
}

.movie-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 8rem;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.5rem;
  scrollbar-width: none;
}

.movie-row::-webkit-scrollbar {
  display: none;
}

.banner-card {
  margin: 0;
  aspect-ratio: 2 / 3;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
}

.banner-card picture,
.banner-card img {
  width: 100%;
  height: 100%;
}

.banner-card picture {
  display: block;
}

.banner-card img {
  object-fit: cover;
}

.page-hero-copy {
  max-width: 680px;
}

.eyebrow,
.section-kicker,
.card-eyebrow,
.spotlight-label,
.dashboard-label {
  margin: 0 0 2.4rem;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.section-kicker-text {
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.hero-title {
  margin: 0;
  font-size: 3rem;
  line-height: 0.92;
  letter-spacing: -0.01em;
}

.hero-title--page {
  max-width: 10ch;
}

.hero-descriotion {
  margin: 1.25rem 0 0;
  font-size: 1.15rem;
  
  line-height: 1.45;
  color: #dde7ef;
}

.platform-statement {
  max-width: 58ch;
  margin: 1.15rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-descriotion,
.hero-actions {
  margin-top: 0;
}

.hero-actions {
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.hero-actions p {
  margin: 0;
}

.hero-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.hero-signals li,
.metric-card,
.info-card,
.stat-tile {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: #dce5ef;
}

.audience-panel,
.hero-side-stack {
  display: grid;
  gap: 1rem;
  align-self: end;
}

.spotlight-card,
.feature-card,
.workflow-card,
.narrative-card,
.dashboard-shell,
.download-panel {
  position: relative;
  overflow: hidden;
  /* border: 1px solid var(--line); */
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

/* .spotlight-card::before,
.feature-card::before,
.workflow-card::before,
.dashboard-shell::before,
.download-panel::before,
.showcase-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 194, 255, 0.08), transparent 38%);
  pointer-events: none;
} */

.spotlight-card,
.feature-card,
.narrative-card,
.dashboard-shell,
.download-panel {
  padding: clamp(1.5rem, 3vw, 2rem);
}

.spotlight-card h2,
.feature-card h3,
.workflow-card h3,
.narrative-card h2,
.dashboard-copy h2,
.section-heading h2 {
  margin: 0;
  line-height: 1.05;
}

.spotlight-card h2 {
  font-size: clamp(1.55rem, 2.9vw, 2.3rem);
}

.spotlight-card p:last-of-type,
.feature-card p,
.workflow-card p,
.narrative-card p,
.section-heading p,
.dashboard-copy p,
.download-panel p,
.metric-card span,
.info-card p {
  color: var(--muted);
  line-height: 1.7;
}

.spotlight-card--accent,
.feature-card--accent,
.download-panel--partner {
  background:
    linear-gradient(160deg, rgba(0, 194, 255, 0.16), rgba(9, 12, 15, 0.92) 36%),
    linear-gradient(180deg, rgba(18, 22, 27, 0.94), rgba(9, 12, 15, 0.98));
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: #eefafe;
  font-weight: 600;
}

.text-link::after {
  content: "->";
  color: var(--accent-strong);
}

.section {
  padding: clamp(4.3rem, 7vw, 6.2rem) 0;
}

.section--compact {
  padding: clamp(3.2rem, 5.4vw, 4.6rem) 0;
}

.why-grid,
.dashboard-preview {
  display: grid;
  gap: 1.4rem;
}

.section-heading {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  margin-bottom: 1.5rem;
  align-items: end;
}



.section-heading--compact > * {
  max-width: 40rem;
}

.section-heading h2,
.dashboard-copy h2,
.narrative-card h2 {
  font-size: 1.6rem;
  font-weight: 500;

}

.category-pills {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.category-pill {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #dce7f1;
  font-size: 0.92rem;
}

.showcase-shell {
  /* padding: 1.35rem; */
}

/* .showcase-grid {
  display: grid;
  gap: 1rem;
} */

.showcase-note,
.panel-grid,
.workflow-grid,
.ecosystem-grid,
.footer-grid,
.footer-meta,
.payout-panel,
.stat-grid {
  display: grid;
  gap: 1rem;
}

.showcase-note {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.25rem;
}

.metric-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.panel-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel-grid--single {
  grid-template-columns: 1fr;
  justify-items: center;
}

.panel-grid--single > * {
  width: min(100%, 50rem);
}

.panel-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.1rem;
  color: #dce5ef;
  line-height: 1.65;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(0, 194, 255, 0.45);
}

.workflow-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.workflow-grid--single {
  grid-template-columns: 1fr;
  justify-items: center;
}

.workflow-grid--single > * {
  width: min(100%, 54rem);
}

/* .workflow-card--full {
  padding: clamp(1.5rem, 3vw, 2rem);
} */

.step-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.step-list--partner {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.step-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: start;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  /* background: rgba(255, 255, 255, 0.03); */
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(0, 194, 255, 0.16);
  color: var(--accent-strong);
  font-weight: 800;
}

.step-item h4 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.why-grid,
.dashboard-preview {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  align-items: stretch;
}

.narrative-card {
  background: linear-gradient(180deg, rgba(18, 22, 27, 0.86), rgba(10, 12, 15, 0.98));
}

.ecosystem-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ecosystem-grid--single {
  grid-template-columns: 1fr;
}

.info-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.dashboard-copy {
  align-self: center;
}

.dashboard-shell {
  display: grid;
  gap: 1rem;
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.dashboard-top h3 {
  margin: 0;
  font-size: 1.35rem;
}

.dashboard-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: #dceaf4;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-grid,
.payout-panel {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-tile strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.25rem;
  color: var(--text);
}

.chart-panel {
  position: relative;
  min-height: 220px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 68px),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 54px),
    linear-gradient(180deg, rgba(0, 194, 255, 0.06), rgba(10, 12, 15, 0.9) 62%),
    rgba(8, 11, 13, 0.92);
  overflow: hidden;
}

.chart-line {
  position: absolute;
  inset: 0;
}

.chart-line--fill {
  background: linear-gradient(180deg, rgba(0, 194, 255, 0.02), rgba(0, 194, 255, 0.28));
  clip-path: polygon(0 82%, 14% 72%, 29% 76%, 41% 54%, 55% 59%, 71% 36%, 86% 44%, 100% 18%, 100% 100%, 0 100%);
}

.chart-line--stroke {
  background: linear-gradient(90deg, #e8fbff 0%, var(--accent) 100%);
  clip-path: polygon(0 80%, 14% 70%, 29% 74%, 41% 52%, 55% 57%, 71% 34%, 86% 42%, 100% 16%, 100% 20%, 86% 46%, 71% 38%, 55% 61%, 41% 56%, 29% 78%, 14% 74%, 0 84%);
  opacity: 0.96;
}

.payout-panel div {
  padding: 0.95rem 1rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.payout-panel span {
  display: block;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.payout-panel strong {
  font-size: 1.05rem;
}

.download-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  gap: 1.5rem;
  align-items: center;
}

.download-section-shell {
  padding-top: clamp(3.2rem, 5.4vw, 4.6rem);
}

.download-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 5.6rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 194, 255, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(10, 12, 15, 0.88), rgba(7, 9, 11, 0.98));
  box-shadow: var(--shadow);
  text-align: center;
}

.download-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 45%);
  pointer-events: none;
}

.download-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.download-kicker {
  margin: 0 auto;
  color: #00c2ff;
  letter-spacing: 0.06em;
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 700;
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
}

.download-kicker-text {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  line-height: 1.1;
}

.download-kicker-text span {
  display: inline-flex;
  align-items: center;
}

.download-section .store-badges {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.download-section .store-link {
  display: inline-flex;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.download-section .store-link:hover {
  transform: translateY(-2px);
}

.download-section .store-link img {
  width: auto;
  height: clamp(52px, 8vw, 62px);
  display: block;
}

.download-section .apk-button {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 0.72rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: #f9fafb;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: none;
}

.download-section .apk-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(14, 165, 233, 0.45);
}

.download-actions {
  display: grid;
  gap: 1rem;
  justify-items: end;
}

.store-link {
  display: inline-flex;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.2s ease;
}

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

.store-link img {
  width: auto;
  height: clamp(52px, 7vw, 60px);
}

.site-footer {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  padding: 0 0 2.4rem;
}

.footer-grid {
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 2rem 0 1rem;
  align-items: start;
}

.footer-brand p {
  max-width: 48ch;
  color: var(--muted);
  line-height: 1.7;
}

.footer-nav {
  /* display: flex; */
  align-items: center;
  /* justify-content: flex-end; */
  gap: 0.35rem;
  /* flex-wrap: wrap; */
  display: grid;
  grid-template-columns: repeat(3, max-content);
}

.footer-meta {
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

@media (max-width: 1120px) {
  
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  :root {
    --header-offset: 120px;
  }

  .hero-layout,
  .page-hero-grid,
  .section-heading,
  .panel-grid,
  .workflow-grid,
  .why-grid,
  .dashboard-preview,
  .download-panel,
  .footer-grid,
  .footer-meta {
    grid-template-columns: 1fr;
  }


  .hero-layout,
  .page-hero-grid {
    align-items: start;
  }

  .hero-signals,
  .stat-grid,
  .payout-panel {
    grid-template-columns: 1fr;
  }

  .download-section {
    min-height: auto;
  }

  .step-list--partner {
    grid-template-columns: 1fr;
  }

  .download-actions {
    justify-items: start;
  }



  .movie-grid--hero {
    left: -24vw;
    width: min(1350px, 170vw);
    opacity: 0.5;
  }

  .movie-grid--page {
    right: -34vw;
    width: min(1200px, 170vw);
  }
}

@media (max-width: 720px) {
  .header-inner {
    gap: 0.8rem;
  }

  .nav-button,
  .primary-button,
  .secondary-button,
  .apk-button {
    flex: 1 1 180px;
  }

  .menu-toggle {
    min-height: auto;
    padding: 0.75rem;
    border: 0;
    background: transparent;
  }

  .menu-toggle:hover {
    transform: none;
    border-color: transparent;
    background: transparent;
  }

  .menu-toggle-label {
    display: none;
  }

  .menu-panel {
    width: min(320px, calc(100vw - 1.2rem));
  }

  .menu-panel .header-actions {
    grid-template-columns: 1fr;
  }

  .download-section {
    padding: 3.6rem 1rem 4rem;
  }

  .download-kicker {
    font-size: clamp(1.25rem, 6vw, 1.75rem);
    flex-direction: column;
    gap: 0.35rem;
  }

  .download-kicker-text {
    flex-direction: column;
    gap: 0.15rem;
  }

  .download-section .store-badges {
    gap: 1rem;
  }

  .download-section .store-link img {
    height: clamp(52px, 14vw, 60px);
  }

  .download-section .apk-button {
    flex: 0 0 auto;
    width: min(100%, 240px);
  }

  .showcase-shell,
  .spotlight-card,
  .feature-card,
  .workflow-card,
  .narrative-card,
  .dashboard-shell,
  .download-panel {
    border-radius: 26px;
  }

  .movie-row {
    /* grid-auto-columns: clamp(128px, 48vw, 180px); */
    gap: 0.8rem;
  }

  .movie-grid--hero {
    transform: perspective(1600px) rotateX(18deg) rotateZ(-11deg);
  }

  .movie-grid--page {
    transform: perspective(1600px) rotateX(18deg) rotateZ(9deg);
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 2.4rem), var(--max-width));
  }

  .menu-panel {
    right: 0;
    width: min(300px, calc(100vw - 1rem));
    padding: 0.9rem;
  }

  .section {
    padding-top: 4.4rem;
  }

  .hero {
    border: 1px solid var(--line);
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-descriotion {
    max-width: none;
  }

  .showcase-note,
  .panel-grid--four {
    grid-template-columns: 1fr;
  }

  .primary-button {
    padding: 0.6rem 1.2rem;
  }
}
