* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --accent: #e11d48;
  --accent-2: #0891b2;
  --accent-3: #f59e0b;
  --ink: #131722;
  --body: #4b5565;
  --muted: #667085;
  --line: #dde4ee;
  --surface: #ffffff;
  --soft: #f6f8fb;
  --shadow: 0 22px 60px rgba(19, 23, 34, 0.16);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--soft);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(221, 228, 238, 0.8);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1140px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.nav-left {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.home-icon-link {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(19, 23, 34, 0.08);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.home-icon-link:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--accent) 36%, var(--line));
  box-shadow: 0 12px 24px rgba(19, 23, 34, 0.12);
}

.home-icon-link svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(19, 23, 34, 0.16);
}

.brand span {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

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

.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 64px 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 251, 0.94)),
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 18%, transparent), color-mix(in srgb, var(--accent-2) 16%, transparent));
}

.hero-inner,
.section-inner {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: 3.5rem;
  line-height: 1.02;
}

.intro {
  max-width: 660px;
  margin-bottom: 26px;
  color: var(--body);
  font-size: 1.18rem;
}

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

.store-link {
  display: inline-flex;
  width: 182px;
  min-height: 54px;
  align-items: center;
}

.google-play-badge {
  width: 182px;
  height: auto;
}

.app-visual {
  position: relative;
  display: grid;
  align-self: center;
  gap: 16px;
}

.app-icon-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.app-icon {
  width: 92px;
  height: 92px;
  border-radius: 22px;
  box-shadow: 0 18px 42px color-mix(in srgb, var(--accent) 24%, rgba(19, 23, 34, 0.18));
}

.app-meta {
  min-width: 0;
}

.app-meta strong {
  display: block;
  font-size: 1.05rem;
}

.app-meta span {
  color: var(--muted);
  font-weight: 700;
}

.sticker-board {
  height: clamp(286px, 28vw, 330px);
  min-height: 0;
  padding: 30px 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  align-self: start;
  align-content: center;
  align-items: center;
  justify-items: center;
  gap: 18px 22px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent) 20%, var(--line));
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.76)),
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 14%, transparent), color-mix(in srgb, var(--accent-2) 14%, transparent));
  box-shadow: var(--shadow);
}

.sticker-board img {
  width: 100%;
  max-width: 116px;
  max-height: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(19, 23, 34, 0.18));
}

.sticker-board img:nth-child(2n) {
  transform: rotate(4deg);
}

.sticker-board img:nth-child(3n) {
  transform: rotate(-5deg);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.stat {
  min-height: 78px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.stat strong {
  display: block;
  font-size: 1.32rem;
  line-height: 1.1;
}

.stat span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

section {
  padding: 64px 0;
}

.section-muted {
  background: var(--soft);
}

.section-kicker {
  margin-bottom: 10px;
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h2 {
  margin-bottom: 16px;
  font-size: 2rem;
  line-height: 1.16;
}

.lead {
  max-width: 760px;
  color: var(--body);
  font-size: 1.08rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.feature-card {
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.feature-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.06rem;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--body);
}

.packs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pack-chip {
  padding: 8px 12px;
  border: 1px solid color-mix(in srgb, var(--accent) 24%, var(--line));
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 8%, var(--surface));
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.download-band {
  background: var(--soft);
  color: var(--ink);
}

.download-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(19, 23, 34, 0.08);
}

.download-content p {
  margin-bottom: 0;
  color: var(--muted);
}

.download-content h2 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 2rem;
}

.download-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px;
  min-width: 280px;
}

.privacy-link {
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

footer {
  padding: 34px 20px;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
  text-align: center;
  font-size: 0.94rem;
}

@media (max-width: 900px) {
  h1 {
    font-size: 2.7rem;
  }

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

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .app-visual {
    max-width: 560px;
    width: 100%;
  }

  .feature-grid,
  .download-content {
    grid-template-columns: 1fr;
  }

  .download-links {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .nav {
    width: min(100% - 28px, 1140px);
    min-height: 64px;
    gap: 12px;
  }

  .nav-left {
    gap: 10px;
  }

  .nav-links {
    display: none;
  }

  .home-icon-link {
    width: 36px;
    height: 36px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand span {
    max-width: 210px;
  }

  .hero {
    padding: 44px 0;
  }

  .hero-inner,
  .section-inner {
    width: min(100% - 28px, 1140px);
  }

  h1 {
    font-size: 2.15rem;
  }

  .intro,
  .lead {
    font-size: 1rem;
  }

  .app-icon {
    width: 76px;
    height: 76px;
    border-radius: 18px;
  }

  .sticker-board {
    height: clamp(230px, 62vw, 280px);
    padding: 18px;
    gap: 12px;
  }

  .sticker-board img {
    max-width: 92px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  section {
    padding: 52px 0;
  }

  .download-content {
    padding: 28px 20px;
  }

  .download-links {
    min-width: 0;
  }

  .google-play-badge {
    max-width: 230px;
    height: auto;
  }
}
