:root {
  color-scheme: dark;
  --bg: #141313;
  --surface: #1e1e20;
  --surface-low: #19191b;
  --line: rgba(254, 77, 1, 0.2);
  --text: #f5eeee;
  --muted: #cfc2bc;
  --orange: #fe4d01;
  --teal: #006d77;
  --violet: #6d5bd0;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  min-height: 100%;
  background:
    linear-gradient(120deg, rgba(254, 77, 1, 0.16), transparent 28%),
    radial-gradient(circle at 86% 8%, rgba(109, 91, 208, 0.18), transparent 30%),
    radial-gradient(circle at 12% 92%, rgba(0, 109, 119, 0.2), transparent 34%),
    var(--bg);
  user-select: none;
  -webkit-user-select: none;
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--text);
  overflow-x: hidden;
}

img,
a,
button {
  -webkit-user-drag: none;
  user-drag: none;
}

img {
  display: block;
  pointer-events: none;
}

.store-page,
footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.store-page {
  padding: 42px 0 24px;
}

.hero-grid {
  min-height: calc(100svh - 92px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: center;
}

.title-block {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(150deg, rgba(30, 30, 32, 0.86), rgba(25, 25, 27, 0.72));
  box-shadow: var(--shadow);
}

.status-chip,
.section-label {
  width: fit-content;
  margin: 0 0 16px;
  color: var(--orange);
  background: rgba(254, 77, 1, 0.1);
  border: 1px solid rgba(254, 77, 1, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(4.2rem, 11vw, 9.8rem);
  line-height: 0.84;
  letter-spacing: 0;
}

.orange {
  color: var(--orange);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead,
.store-card p,
.pipeline-copy p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

.store-console {
  align-self: stretch;
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(245, 238, 238, 0.1);
  background: #0f0f10;
  box-shadow: var(--shadow);
}

.console-top {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  background: #0a0a0b;
}

.console-top span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--orange);
}

.console-top span:nth-child(2) {
  background: var(--teal);
}

.console-top span:nth-child(3) {
  background: var(--violet);
}

.console-body {
  display: grid;
  place-items: center;
  padding: 20px;
}
.console-body img,
.phone-frame img,
.pipeline-shot img {
  width: 100%;
  border-radius: 26px;
  object-fit: contain;
}

.shelf {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 340px) 1fr;
  gap: 18px;
  align-items: stretch;
  padding: 26px 0;
}

.store-card,
.phone-frame,
.pipeline,
.download-strip {
  border: 1px solid rgba(245, 238, 238, 0.1);
  border-radius: 30px;
  background: rgba(30, 30, 32, 0.82);
  box-shadow: var(--shadow);
}

.store-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
}

.store-card.tall {
  background:
    linear-gradient(180deg, rgba(0, 109, 119, 0.12), transparent),
    rgba(30, 30, 32, 0.82);
}

.orange-card {
  background:
    linear-gradient(180deg, rgba(254, 77, 1, 0.16), transparent),
    rgba(30, 30, 32, 0.82);
}

.phone-frame,
.pipeline-shot {
  padding: 12px;
  background: linear-gradient(150deg, rgba(254, 77, 1, 0.18), rgba(109, 91, 208, 0.16));
}

.pipeline {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: center;
  padding: 30px;
}

.download-strip {
  margin-top: 26px;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.download-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 180px;
  min-height: 54px;
  color: white;
  background: var(--orange);
  border: 1px solid rgba(254, 77, 1, 0.64);
  border-radius: 18px;
  text-decoration: none;
  font-weight: 950;
  pointer-events: auto;
  box-shadow: 0 16px 36px rgba(254, 77, 1, 0.24);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.download-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(254, 77, 1, 0.32);
}

footer {
  padding: 0 0 30px;
  color: var(--muted);
  font-weight: 800;
}

footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .hero-grid,
  .console-body,
  .shelf,
  .pipeline {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .store-card {
    min-height: 280px;
  }
}

@media (max-width: 560px) {
  .store-page,
  footer {
    width: min(100% - 20px, 1180px);
  }

  .title-block,
  .pipeline,
  .download-strip {
    padding: 20px;
    border-radius: 22px;
  }

  h1 {
    font-size: clamp(3.4rem, 20vw, 5.4rem);
  }

  .download-strip {
    display: grid;
  }

  .download-button {
    width: 100%;
  }
}
