:root {
  --ink: #f7f8ff;
  --muted: #a7b2ca;
  --deep: #071221;
  --deep-soft: #0b1a2d;
  --panel: #10213a;
  --panel-line: rgba(177, 196, 232, 0.13);
  --coral: #ff4f78;
  --coral-light: #ff7b94;
  --violet: #7b5cff;
  --cyan: #48d7ff;
  --gold: #f9c957;
  --green: #45e3ad;
  --radius-xl: 44px;
  --radius-lg: 30px;
  --radius-md: 20px;
  --page: min(1180px, calc(100vw - 48px));
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--deep);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 10%, rgba(75, 72, 184, 0.15), transparent 28rem),
    var(--deep);
}

body.nav-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--ink);
  color: var(--deep);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  padding: 18px 0;
  transition: background 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(7, 18, 33, 0.88);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: var(--page);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 24px;
  font-weight: 850;
  letter-spacing: -0.05em;
}

.brand img {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(255, 79, 120, 0.16);
}

.brand small {
  margin-left: -3px;
  padding-top: 6px;
  color: var(--coral);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #c5cee0;
  font-size: 14px;
  font-weight: 650;
}

.nav-links > a:not(.nav-download) {
  transition: color 150ms ease;
}

.nav-links > a:not(.nav-download):hover,
.nav-links > a:not(.nav-download):focus-visible {
  color: var(--ink);
}

.nav-download {
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
  transition: border-color 150ms ease, background 150ms ease, transform 150ms ease;
}

.nav-download:hover,
.nav-download:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  width: var(--page);
  min-height: 850px;
  margin: 0 auto;
  padding: 165px 0 100px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: 64px;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--coral-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
}

.hero .eyebrow i {
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: var(--cyan);
}

h1,
h2,
h3,
p {
  text-wrap: balance;
}

h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(72px, 8vw, 124px);
  line-height: 0.86;
  letter-spacing: -0.075em;
  font-weight: 850;
}

h1 span {
  color: transparent;
  background: linear-gradient(100deg, var(--coral), #ff8797 44%, #f4b25b 110%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-intro {
  max-width: 610px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.button {
  min-height: 60px;
  padding: 0 25px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: linear-gradient(112deg, var(--coral), #ff6b74);
  box-shadow: 0 18px 45px rgba(255, 79, 120, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 20px 55px rgba(255, 79, 120, 0.34);
}

.button-primary svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.button-primary span {
  display: grid;
  line-height: 1.08;
}

.button-primary small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 700;
}

.button-quiet {
  color: #d5dbea;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.button-quiet:hover,
.button-quiet:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.button-quiet svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.download-meta {
  margin-top: 23px;
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  color: #77859e;
  font-size: 12px;
  font-weight: 700;
}

.download-meta span {
  position: relative;
}

.download-meta span + span::before {
  position: absolute;
  left: -11px;
  content: "·";
}

.hero-visual {
  min-height: 610px;
  display: grid;
  place-items: center;
}

.phone {
  position: relative;
  width: min(365px, 75vw);
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 48px;
  background: #050a12;
  box-shadow:
    0 55px 100px rgba(0, 0, 0, 0.48),
    0 0 0 8px rgba(255, 255, 255, 0.025);
  transform: rotate(4deg);
}

.phone::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  content: "";
  pointer-events: none;
}

.phone img {
  width: 100%;
  height: auto;
  border-radius: 39px;
}

.app-ui {
  width: 100%;
  color: #f8f9ff;
  background: #071425;
}

.home-ui {
  min-height: 650px;
  padding: 18px 18px 15px;
  border-radius: 39px;
  overflow: hidden;
}

.ui-status {
  padding: 2px 9px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #c6cede;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.home-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ui-wordmark {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.07em;
}

.ui-wordmark em {
  margin-left: 3px;
  color: var(--coral);
  font-size: 8px;
  font-style: normal;
  letter-spacing: 0.16em;
}

.coin-pill {
  padding: 8px 11px;
  border-radius: 999px;
  background: #10233e;
  color: #f3f6ff;
  font-size: 9px;
  font-weight: 850;
}

.coin-pill span,
.coin-pill b {
  color: var(--gold);
}

.ui-greeting {
  margin: 8px 0 14px;
  color: #7f8ba3;
  font-size: 10px;
}

.ui-search {
  min-height: 43px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(173, 192, 226, 0.11);
  border-radius: 14px;
  background: #0f1f36;
  color: #66758e;
  font-size: 9px;
}

.ui-search span {
  color: #aab6cc;
  font-size: 18px;
}

.ui-categories {
  margin: 12px 0;
  display: flex;
  gap: 6px;
}

.ui-categories span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #0e1e34;
  color: #7f8da5;
  font-size: 7px;
  font-weight: 800;
}

.ui-categories .active {
  background: rgba(123, 92, 255, 0.22);
  color: #a795ff;
}

.ui-spotlight {
  position: relative;
  min-height: 140px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 104, 136, 0.22);
  border-radius: 20px;
  background:
    radial-gradient(circle at 86% 50%, rgba(255, 79, 120, 0.34), transparent 30%),
    linear-gradient(135deg, #2b1835, #171529 58%, #111c31);
}

.ui-spotlight::after {
  position: absolute;
  top: -20px;
  right: -12px;
  width: 120px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transform: rotate(28deg);
  content: "";
}

.ui-spotlight > img {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 51%;
  height: 100%;
  object-fit: cover;
  object-position: 51% 42%;
  border-radius: 0 20px 20px 0;
  opacity: 0.88;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 34%);
  mask-image: linear-gradient(90deg, transparent, #000 34%);
}

.ui-spotlight p {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  color: var(--coral-light);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.ui-spotlight strong,
.ui-spotlight small {
  position: relative;
  z-index: 1;
  display: block;
}

.ui-spotlight strong {
  max-width: 170px;
  font-size: 20px;
  letter-spacing: -0.04em;
}

.ui-spotlight small {
  margin-top: 5px;
  color: #919bb0;
  font-size: 7px;
}

.spotlight-button {
  position: absolute;
  z-index: 2;
  bottom: 17px;
  left: 20px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--coral);
  font-size: 7px;
  font-weight: 900;
}

.ui-spotlight i {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 20px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 7px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.ui-quick-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.ui-quick-grid > div {
  min-height: 59px;
  padding: 10px;
  display: grid;
  grid-template-columns: 31px 1fr auto;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  background: #0f2038;
}

.ui-quick-grid > div:first-child > span { color: var(--gold); }
.ui-quick-grid > div:nth-child(2) > span { color: var(--cyan); letter-spacing: -0.2em; }

.ui-quick-grid p {
  margin: 0;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.ui-quick-grid small {
  margin-top: 3px;
  display: block;
  color: #65738b;
  font-size: 6px;
  font-weight: 650;
  letter-spacing: 0;
}

.ui-quick-grid b {
  color: #65738b;
}

.ui-section-row {
  margin: 16px 1px 9px;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
}

.ui-section-row span {
  color: var(--violet);
  font-size: 7px;
}

.ui-live-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.live-tile {
  min-height: 92px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 14px;
  background: linear-gradient(145deg, #75404e, #1a2034 64%);
}

.live-tile-two {
  background: linear-gradient(145deg, #344a78, #172032 64%);
}

.live-tile > span {
  position: absolute;
  align-self: flex-start;
  margin-bottom: 58px;
  padding: 3px 5px;
  border-radius: 999px;
  background: var(--coral);
  font-size: 5px;
  font-weight: 900;
}

.live-tile strong { font-size: 8px; }
.live-tile small { margin-top: 2px; color: #8592a8; font-size: 6px; }

.ui-bottom-nav {
  margin: 13px -2px 0;
  padding: 9px 5px 2px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ui-bottom-nav > span {
  display: grid;
  place-items: center;
  color: #637088;
  font-size: 13px;
}

.ui-bottom-nav > span.active {
  color: var(--violet);
}

.ui-bottom-nav small {
  margin-top: 2px;
  font-size: 5px;
  font-weight: 750;
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 50%;
  width: 26%;
  height: 23px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #03060a;
}

.float-note {
  position: absolute;
  z-index: 3;
  padding: 13px 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(15, 30, 51, 0.88);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
}

.float-note strong,
.float-note small {
  display: block;
}

.float-note strong {
  font-size: 11px;
  letter-spacing: 0.1em;
}

.float-note small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.float-note-live {
  top: 75px;
  left: -20px;
  animation: float 5.5s ease-in-out infinite;
}

.float-note-pet {
  right: -15px;
  bottom: 110px;
  animation: float 6.5s ease-in-out infinite reverse;
}

.live-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.11), 0 0 22px rgba(255, 79, 120, 0.45);
}

.pet-paws {
  color: var(--cyan);
  font-size: 27px;
  line-height: 0.8;
  letter-spacing: -0.18em;
  transform: rotate(30deg);
}

.hero-mascot {
  position: absolute;
  z-index: 3;
  right: -15px;
  bottom: -25px;
  width: 145px;
  filter: drop-shadow(0 24px 26px rgba(0, 0, 0, 0.3));
  transform: rotate(-8deg);
}

.signal {
  position: absolute;
  border: 1px solid rgba(72, 215, 255, 0.14);
  border-radius: 50%;
}

.signal-one {
  width: 470px;
  height: 470px;
}

.signal-two {
  width: 610px;
  height: 610px;
  border-color: rgba(123, 92, 255, 0.09);
}

.hero-glow {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-glow-one {
  top: 7%;
  right: -18%;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(87, 75, 199, 0.19), transparent 68%);
}

.hero-glow-two {
  bottom: 4%;
  left: -35%;
  width: 640px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 79, 120, 0.11), transparent 68%);
}

.pulse-strip {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.pulse-track {
  width: max-content;
  min-width: 100%;
  min-height: 70px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: #8190a8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pulse-track i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 12px rgba(255, 79, 120, 0.65);
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: 150px 0;
}

.section-heading {
  max-width: 720px;
}

h2 {
  margin: 0;
  font-size: clamp(50px, 6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 820;
}

.section-heading > p:last-child,
.experience-copy > p,
.play-copy > p,
.download-copy > p {
  max-width: 610px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.feature-card {
  position: relative;
  min-height: 420px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid var(--panel-line);
  border-radius: var(--radius-lg);
  background: #0c1b2f;
}

.feature-card h3 {
  max-width: 420px;
  margin: 70px 0 17px;
  font-size: clamp(29px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.feature-card > p:not(.feature-number),
.feature-pet > div > p:not(.feature-number) {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.feature-icon {
  position: absolute;
  top: 34px;
  left: 34px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.07);
}

.feature-icon svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-live .feature-icon {
  color: var(--coral-light);
  background: rgba(255, 79, 120, 0.13);
}

.feature-chat .feature-icon {
  color: var(--cyan);
  background: rgba(72, 215, 255, 0.11);
}

.feature-gifts .feature-icon {
  color: var(--gold);
  background: rgba(249, 201, 87, 0.1);
}

.feature-pet .feature-icon {
  color: var(--violet);
  background: rgba(123, 92, 255, 0.14);
}

.feature-number {
  position: absolute;
  top: 40px;
  right: 38px;
  margin: 0;
  color: #40506a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.mini-live {
  position: absolute;
  right: 38px;
  bottom: 35px;
  left: 38px;
  padding: 14px 17px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(4, 11, 20, 0.6);
}

.mini-live-badge {
  color: var(--coral-light);
  font-size: 10px;
  font-weight: 900;
}

.mini-live strong {
  margin-left: auto;
  color: #7f8ca3;
  font-size: 11px;
}

.mini-live-bars {
  height: 21px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.mini-live-bars i {
  width: 3px;
  height: 7px;
  border-radius: 999px;
  background: var(--coral);
  animation: bars 1.2s ease-in-out infinite alternate;
}

.mini-live-bars i:nth-child(2) { height: 15px; animation-delay: -0.8s; }
.mini-live-bars i:nth-child(3) { height: 20px; animation-delay: -0.3s; }
.mini-live-bars i:nth-child(4) { height: 11px; animation-delay: -0.6s; }

.chat-bubbles {
  position: absolute;
  right: 35px;
  bottom: 35px;
  left: 35px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-bubbles span {
  width: max-content;
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 16px 16px 16px 5px;
  background: #172a46;
  color: #bcc7db;
  font-size: 12px;
}

.chat-bubbles span:last-child {
  margin-left: auto;
  border-radius: 16px 16px 5px 16px;
  background: var(--violet);
  color: white;
}

.gift-orbit {
  position: absolute;
  right: 32px;
  bottom: 28px;
  width: 195px;
  height: 95px;
}

.gift-orbit::before {
  position: absolute;
  inset: 15px;
  border: 1px dashed rgba(249, 201, 87, 0.25);
  border-radius: 50%;
  content: "";
}

.gift-orbit span {
  position: absolute;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: #17223a;
  color: var(--gold);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.gift-orbit span:nth-child(1) { left: 0; bottom: 5px; color: var(--coral-light); }
.gift-orbit span:nth-child(2) { top: 0; left: 75px; }
.gift-orbit span:nth-child(3) { right: 0; bottom: 2px; color: var(--violet); }

.feature-pet {
  display: grid;
  grid-template-columns: 1fr 210px;
  align-items: end;
  background:
    radial-gradient(circle at 82% 70%, rgba(123, 92, 255, 0.19), transparent 38%),
    #0c1b2f;
}

.feature-pet > div h3 {
  margin-top: 70px;
}

.feature-pet > img {
  width: 240px;
  max-width: 130%;
  margin: 0 -30px -20px -10px;
  filter: drop-shadow(0 25px 30px rgba(0, 0, 0, 0.3));
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 70px;
}

.experience-copy ul {
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  list-style: none;
}

.experience-copy li {
  padding: 19px 0;
  display: flex;
  align-items: center;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #c4cddd;
  font-size: 14px;
}

.experience-copy li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.experience-copy li span {
  color: var(--coral-light);
  font-size: 10px;
  font-weight: 900;
}

.phone-gallery {
  position: relative;
  height: 720px;
}

.gallery-phone {
  position: absolute;
  width: 290px;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 38px;
  background: #050a12;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.38);
}

.gallery-phone > img {
  width: 100%;
  border-radius: 31px;
}

.gallery-ui {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
  border-radius: 31px;
  background: #071425;
  color: #f7f9ff;
}

.gallery-status {
  position: relative;
  z-index: 4;
  height: 35px;
  padding: 14px 18px 0;
  display: flex;
  justify-content: space-between;
  color: #92a0b8;
  font-size: 7px;
  font-weight: 800;
}

.chat-ui {
  padding: 0 13px 14px;
  background:
    radial-gradient(circle at 20% 0%, rgba(123, 92, 255, 0.11), transparent 13rem),
    #071425;
}

.chat-header {
  min-height: 56px;
  display: grid;
  grid-template-columns: 29px 34px 1fr 30px;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ui-back {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #10213a;
  color: #d7deec;
  font-size: 20px;
}

.chat-avatar {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(72, 215, 255, 0.45);
  border-radius: 50%;
  background: linear-gradient(145deg, #5c8b9f, #293450);
  font-size: 10px;
  font-weight: 900;
}

.chat-avatar.small {
  width: 25px;
  height: 25px;
  border-width: 1px;
  font-size: 7px;
}

.chat-header p,
.pet-header p,
.live-topbar p {
  margin: 0;
}

.chat-header strong,
.chat-header small {
  display: block;
}

.chat-header strong {
  font-size: 10px;
}

.chat-header small {
  margin-top: 2px;
  color: var(--green);
  font-size: 6px;
}

.chat-call {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #10213a;
  color: var(--cyan);
}

.language-chips {
  margin: 12px 0 30px;
  display: flex;
  justify-content: flex-end;
  gap: 5px;
}

.language-chips span {
  padding: 5px 7px;
  border-radius: 7px;
  background: #0f213a;
  color: #6f7f99;
  font-size: 6px;
  font-weight: 850;
}

.language-chips .active {
  background: rgba(123, 92, 255, 0.24);
  color: #b7aaff;
}

.message-date {
  margin-bottom: 16px;
  color: #45536b;
  font-size: 5px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-align: center;
}

.message-row {
  margin: 12px 0;
  display: flex;
  align-items: flex-end;
  gap: 7px;
}

.message-row p {
  max-width: 74%;
  margin: 0;
  padding: 10px 11px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 13px 13px 13px 4px;
  background: #10223b;
  color: #c8d0df;
  font-size: 7px;
  line-height: 1.45;
}

.message-row p small {
  margin-top: 5px;
  display: block;
  color: #67778f;
  font-size: 5px;
}

.message-row.sent {
  justify-content: flex-end;
}

.message-row.sent p {
  border-radius: 13px 13px 4px 13px;
  border-color: transparent;
  background: linear-gradient(135deg, #7b5cff, #6750d8);
  color: #fff;
}

.typing-pill {
  width: 42px;
  margin-left: 32px;
  padding: 8px 10px;
  display: flex;
  gap: 3px;
  border-radius: 12px;
  background: #10223b;
}

.typing-pill i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #6d7c93;
}

.chat-composer {
  position: absolute;
  right: 13px;
  bottom: 14px;
  left: 13px;
  min-height: 45px;
  padding: 0 8px;
  display: grid;
  grid-template-columns: 30px 1fr 30px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  background: #0e1f37;
}

.chat-composer > span,
.chat-composer > b {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #172c49;
  color: var(--cyan);
  font-size: 12px;
}

.chat-composer p {
  margin: 0;
  color: #5d6d86;
  font-size: 7px;
}

.chat-composer > b {
  background: var(--violet);
  color: white;
  font-size: 9px;
}

.live-ui {
  background: #10131d;
}

.live-host-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
}

.live-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 7, 15, 0.7), transparent 22%, transparent 52%, rgba(4, 8, 17, 0.92) 100%),
    linear-gradient(90deg, rgba(7, 11, 21, 0.28), transparent 55%);
}

.live-status {
  color: rgba(255, 255, 255, 0.78);
}

.live-topbar {
  position: absolute;
  z-index: 3;
  top: 43px;
  right: 12px;
  left: 12px;
  display: grid;
  grid-template-columns: 35px 1fr auto 25px;
  align-items: center;
  gap: 7px;
}

.host-avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 2px solid var(--coral);
  border-radius: 50%;
  background: #35233f;
  font-size: 8px;
  font-weight: 900;
}

.live-topbar strong,
.live-topbar small {
  display: block;
}

.live-topbar strong { font-size: 9px; }
.live-topbar small { margin-top: 2px; color: rgba(255, 255, 255, 0.64); font-size: 5px; }
.live-topbar small i { width: 4px; height: 4px; display: inline-block; border-radius: 50%; background: var(--green); }

.follow-pill {
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255, 79, 120, 0.9);
  font-size: 6px;
  font-weight: 900;
}

.close-live {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(5, 8, 14, 0.42);
  font-size: 15px;
}

.live-badge {
  position: absolute;
  z-index: 3;
  top: 85px;
  left: 53px;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(255, 79, 120, 0.92);
  font-size: 5px;
  font-weight: 900;
}

.live-side-actions {
  position: absolute;
  z-index: 3;
  right: 11px;
  bottom: 145px;
  display: grid;
  gap: 10px;
}

.live-side-actions > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(7, 11, 19, 0.48);
  font-size: 13px;
  backdrop-filter: blur(8px);
}

.live-side-actions small {
  position: absolute;
  margin-top: 49px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 4px;
}

.live-comments {
  position: absolute;
  z-index: 3;
  right: 55px;
  bottom: 78px;
  left: 12px;
  display: grid;
  gap: 5px;
}

.live-comments p {
  width: max-content;
  max-width: 100%;
  margin: 0;
  padding: 5px 7px;
  border-radius: 8px;
  background: rgba(7, 11, 19, 0.43);
  color: rgba(255, 255, 255, 0.8);
  font-size: 5px;
  backdrop-filter: blur(6px);
}

.live-comments b {
  margin-right: 4px;
  color: #ff9caf;
}

.live-gift {
  position: absolute;
  z-index: 3;
  right: 55px;
  bottom: 154px;
  left: 12px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(249, 201, 87, 0.28);
  border-radius: 11px;
  background: linear-gradient(90deg, rgba(112, 66, 21, 0.8), rgba(74, 35, 67, 0.68));
}

.live-gift > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: linear-gradient(145deg, #ff7a91, #9b5cff);
}

.live-gift p,
.live-gift b,
.live-gift small {
  margin: 0;
  display: block;
}

.live-gift b { font-size: 6px; }
.live-gift small { margin-top: 2px; color: var(--gold); font-size: 5px; }

.live-composer {
  position: absolute;
  z-index: 3;
  right: 11px;
  bottom: 13px;
  left: 11px;
  display: grid;
  grid-template-columns: 1fr 30px 30px;
  align-items: center;
  gap: 6px;
}

.live-composer > span {
  min-height: 34px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(7, 11, 19, 0.45);
  color: rgba(255, 255, 255, 0.58);
  font-size: 6px;
  backdrop-filter: blur(8px);
}

.live-composer b {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(12, 19, 31, 0.76);
  color: var(--gold);
  font-size: 9px;
}

.pet-ui {
  padding: 0 13px 14px;
  background:
    radial-gradient(circle at 50% 35%, rgba(123, 92, 255, 0.19), transparent 13rem),
    linear-gradient(180deg, #0b1830, #071425);
}

.pet-header {
  min-height: 56px;
  display: grid;
  grid-template-columns: 30px 1fr 28px;
  align-items: center;
  gap: 9px;
}

.pet-header strong,
.pet-header small {
  display: block;
}

.pet-header strong { font-size: 11px; }
.pet-header small { margin-top: 2px; color: #6e7d95; font-size: 6px; }
.pet-header > span:last-child { color: #7e8ba0; text-align: center; }

.pet-stage {
  position: relative;
  min-height: 285px;
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(123, 92, 255, 0.15);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 125, 150, 0.13), transparent 45%),
    rgba(13, 27, 49, 0.84);
}

.pet-stage::after {
  position: absolute;
  right: 18px;
  bottom: 88px;
  left: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.13), transparent);
  content: "";
}

.pet-stage > img {
  width: 155px;
  margin: 17px 0 2px;
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.32));
}

.pet-level {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 7px;
  border-radius: 999px;
  background: rgba(123, 92, 255, 0.2);
  color: #baadff;
  font-size: 5px;
  font-weight: 900;
}

.pet-stage > strong { font-size: 12px; }
.pet-stage > small { margin-top: 3px; color: #74839b; font-size: 6px; }

.pet-progress {
  width: 75%;
  height: 4px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #182a43;
}

.pet-progress i {
  width: 68%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--violet), var(--coral));
}

.pet-needs {
  margin-top: 9px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.pet-needs span {
  min-height: 45px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #0f213a;
  color: var(--coral-light);
  font-size: 10px;
}

.pet-needs b,
.pet-action-grid b {
  display: block;
  color: #8b98ad;
  font-size: 5px;
}

.pet-action-grid {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.pet-action-grid span {
  min-height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  background: #0b1c33;
  color: var(--cyan);
  font-size: 13px;
}

.pet-cta {
  min-height: 40px;
  margin-top: 9px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  background: linear-gradient(105deg, var(--violet), var(--coral));
  font-size: 7px;
  font-weight: 900;
}

.gallery-phone-back {
  top: 115px;
  left: 10px;
  transform: rotate(-9deg);
  opacity: 0.66;
}

.gallery-phone-front {
  z-index: 2;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(2deg);
}

.gallery-phone-side {
  top: 145px;
  right: 0;
  transform: rotate(10deg);
  opacity: 0.76;
}

.play-section {
  padding-top: 20px;
}

.play-card {
  min-height: 650px;
  padding: 70px;
  display: grid;
  grid-template-columns: 1fr 370px;
  align-items: center;
  gap: 70px;
  overflow: hidden;
  border: 1px solid var(--panel-line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 80% 25%, rgba(249, 201, 87, 0.12), transparent 27rem),
    linear-gradient(140deg, #111d32, #0a1728 55%, #111a2b);
}

.play-tags {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.play-tags span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #9daac0;
  font-size: 11px;
  font-weight: 750;
}

.ranking-preview {
  width: 330px;
  height: 560px;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(249, 201, 87, 0.23);
  border-radius: 38px;
  background: #02060c;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
  transform: rotate(3deg);
}

.ranking-ui {
  height: 100%;
  padding: 0 12px 14px;
  overflow: hidden;
  border-radius: 31px;
  background: #07090e;
}

.ranking-header {
  min-height: 46px;
  display: grid;
  grid-template-columns: 25px 1fr 25px;
  align-items: center;
  color: #dce0e8;
  font-size: 9px;
  text-align: center;
}

.ranking-header strong {
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.ranking-hero {
  position: relative;
  min-height: 112px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(249, 201, 87, 0.3);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(98, 65, 18, 0.62), rgba(25, 21, 14, 0.9));
}

.ranking-hero p {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 6px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.ranking-hero strong,
.ranking-hero small {
  display: block;
}

.ranking-hero strong {
  font-size: 17px;
  letter-spacing: -0.04em;
}

.ranking-hero small {
  margin-top: 5px;
  color: #978b72;
  font-size: 5px;
}

.ranking-hero > b {
  position: absolute;
  right: 11px;
  bottom: -15px;
  color: rgba(249, 201, 87, 0.08);
  font-size: 80px;
  line-height: 1;
}

.ranking-tabs {
  margin: 9px 0;
  padding: 4px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 10px;
  background: #121318;
}

.ranking-tabs span {
  padding: 7px 3px;
  border-radius: 7px;
  color: #666872;
  font-size: 5px;
  font-weight: 800;
  text-align: center;
}

.ranking-tabs .active {
  background: #2a2b31;
  color: #fff;
}

.podium {
  min-height: 143px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 4px;
}

.podium > div {
  min-height: 108px;
  padding: 9px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  background: #15161b;
}

.podium > .winner {
  min-height: 132px;
  border-color: rgba(249, 201, 87, 0.34);
  background: linear-gradient(180deg, rgba(249, 201, 87, 0.13), #171612);
}

.rank-avatar {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 2px solid #9298a5;
  border-radius: 50%;
  background: linear-gradient(145deg, #525b70, #262a35);
  font-size: 11px;
  font-weight: 900;
}

.rank-one { border-color: var(--gold); background: linear-gradient(145deg, #8a6730, #332912); }
.rank-three { border-color: #b57957; background: linear-gradient(145deg, #744c40, #2d2321); }
.rank-crown { height: 13px; color: var(--gold); font-size: 14px; }
.podium b { margin-top: -5px; padding: 2px 4px; border-radius: 999px; background: #292b32; color: #d7d9df; font-size: 5px; }
.podium .winner b { background: var(--gold); color: #17130b; }
.podium strong { margin-top: 7px; font-size: 7px; }
.podium small { margin-top: 3px; color: var(--gold); font-size: 6px; font-weight: 850; }

.ranking-list {
  margin-top: 8px;
  display: grid;
  gap: 5px;
}

.ranking-list p {
  min-height: 45px;
  margin: 0;
  padding: 6px 8px;
  display: grid;
  grid-template-columns: 14px 28px 1fr auto;
  align-items: center;
  gap: 7px;
  border-radius: 10px;
  background: #121318;
}

.ranking-list p > b { color: #676a73; font-size: 6px; }
.ranking-list p > span { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; background: #22242a; color: #a7aab2; font-size: 6px; font-weight: 900; }
.ranking-list strong { font-size: 6px; }
.ranking-list strong small { margin-top: 2px; display: block; color: #5c5f68; font-size: 4px; }
.ranking-list em { color: var(--gold); font-size: 6px; font-style: normal; font-weight: 900; }

.safety {
  padding-bottom: 110px;
}

.safety-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.safety-heading .eyebrow {
  align-self: flex-start;
}

.safety-heading h2 {
  margin-left: auto;
  text-align: right;
}

.safety-heading h2 span {
  color: #6f7c94;
}

.safety-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.safety-grid article {
  min-height: 250px;
  padding: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 72%);
}

.safety-icon {
  color: var(--coral-light);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.safety-grid h3 {
  margin: 72px 0 15px;
  font-size: 23px;
  letter-spacing: -0.035em;
}

.safety-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.download-section {
  width: var(--page);
  margin: 0 auto;
  padding: 40px 0 130px;
}

.download-card {
  position: relative;
  min-height: 550px;
  padding: 80px;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  align-items: center;
  gap: 60px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 25% 50%, rgba(123, 92, 255, 0.32), transparent 25rem),
    linear-gradient(120deg, #512f91, #6c3f89 38%, #a9416e 76%, #db5263);
  box-shadow: 0 40px 90px rgba(20, 5, 48, 0.3);
}

.download-art {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
}

.download-art img {
  position: relative;
  z-index: 2;
  width: 380px;
  max-width: 115%;
  filter: drop-shadow(0 35px 36px rgba(0, 0, 0, 0.3));
}

.download-ring {
  position: absolute;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgba(255, 255, 255, 0.035),
    0 0 0 85px rgba(255, 255, 255, 0.025);
}

.download-copy h2 {
  font-size: clamp(50px, 6vw, 78px);
}

.download-copy > p {
  color: rgba(255, 255, 255, 0.76);
}

.download-copy .eyebrow {
  color: rgba(255, 255, 255, 0.65);
}

.download-copy .button {
  margin-top: 34px;
  background: white;
  color: #6b356d;
  box-shadow: 0 18px 45px rgba(61, 15, 64, 0.24);
}

.download-copy .button svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.download-copy > small {
  margin-top: 15px;
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

.site-footer {
  width: var(--page);
  min-height: 120px;
  margin: 0 auto;
  padding: 30px 0;
  display: flex;
  align-items: center;
  gap: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #77859d;
  font-size: 12px;
}

.site-footer .brand {
  color: var(--ink);
}

.site-footer .copyright {
  margin-left: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes bars {
  from { transform: scaleY(0.55); }
  to { transform: scaleY(1.05); }
}

@media (max-width: 1100px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr 420px;
    gap: 28px;
  }

  .feature-pet {
    grid-template-columns: 1fr 150px;
  }

  .feature-pet > img {
    width: 190px;
  }

  .experience {
    grid-template-columns: 0.9fr 1fr;
    gap: 30px;
  }

  .phone-gallery {
    transform: scale(0.85);
    transform-origin: center;
  }

  .play-card {
    padding: 55px;
  }
}

@media (max-width: 860px) {
  :root {
    --page: min(100% - 32px, 680px);
    --radius-xl: 32px;
  }

  .site-header {
    padding: 12px 0;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    width: 44px;
    height: 44px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-toggle span {
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: white;
    transition: transform 180ms ease;
  }

  .nav-toggle span:first-child { transform: translateY(-4px); }
  .nav-toggle span:last-child { transform: translateY(4px); }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

  .nav-links {
    position: fixed;
    inset: 0;
    padding: 110px 32px 40px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    transform: translateX(100%);
    background: rgba(7, 18, 33, 0.98);
    transition: transform 220ms ease;
  }

  .nav-links.is-open {
    transform: translateX(0);
  }

  .nav-links a {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 22px;
  }

  .nav-links .nav-download {
    margin-top: 24px;
    border: 0;
    text-align: center;
    background: var(--coral);
  }

  .hero {
    padding: 135px 0 85px;
    grid-template-columns: 1fr;
    gap: 75px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero .eyebrow,
  .hero-actions,
  .download-meta {
    justify-content: center;
  }

  h1 {
    font-size: clamp(69px, 20vw, 112px);
  }

  .hero-intro {
    margin-right: auto;
    margin-left: auto;
  }

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

  .float-note-live { left: 4%; }
  .float-note-pet { right: 3%; }
  .hero-mascot { right: 7%; }

  .pulse-track {
    justify-content: flex-start;
    animation: marquee 22s linear infinite;
  }

  .section {
    padding: 105px 0;
  }

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

  .feature-pet {
    grid-template-columns: 1fr 180px;
  }

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

  .phone-gallery {
    width: calc(100% + 32px);
    height: auto;
    margin: 35px -16px -20px;
    padding: 25px 16px 40px;
    display: flex;
    gap: 15px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding: 16px;
    scroll-snap-type: x mandatory;
    transform: none;
    scrollbar-width: none;
  }

  .phone-gallery::-webkit-scrollbar {
    display: none;
  }

  .gallery-phone,
  .gallery-phone-back,
  .gallery-phone-front,
  .gallery-phone-side {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    flex: 0 0 min(78vw, 290px);
    opacity: 1;
    transform: none;
    scroll-snap-align: center;
  }

  .gallery-phone-front {
    order: -1;
  }

  .play-card {
    padding: 55px 40px;
    grid-template-columns: 1fr;
  }

  .ranking-preview {
    width: min(330px, 100%);
    justify-self: center;
  }

  .safety-heading {
    display: block;
  }

  .safety-heading h2 {
    text-align: left;
  }

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

  .safety-grid article {
    min-height: 210px;
  }

  .download-card {
    padding: 45px 35px 60px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .download-copy > p {
    margin-right: auto;
    margin-left: auto;
  }

  .site-footer {
    padding: 45px 0;
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .site-footer .copyright {
    margin: 0;
  }

  @keyframes marquee {
    to { transform: translateX(-45%); }
  }
}

@media (max-width: 560px) {
  :root {
    --page: calc(100% - 26px);
  }

  .brand {
    font-size: 21px;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-intro {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .download-meta {
    gap: 13px;
    font-size: 10px;
  }

  .download-meta span + span::before {
    left: -8px;
  }

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

  .phone {
    width: 285px;
    border-radius: 40px;
  }

  .phone img {
    border-radius: 32px;
  }

  .float-note {
    padding: 10px 12px;
  }

  .float-note-live {
    top: 45px;
    left: 0;
  }

  .float-note-pet {
    right: -4px;
    bottom: 95px;
  }

  .hero-mascot {
    right: 1%;
    bottom: -10px;
    width: 115px;
  }

  .signal-one { width: 360px; height: 360px; }
  .signal-two { width: 450px; height: 450px; }

  h2 {
    font-size: clamp(45px, 14vw, 66px);
  }

  .feature-card {
    min-height: 420px;
    padding: 28px;
  }

  .feature-card h3 {
    margin-top: 72px;
  }

  .feature-icon {
    left: 27px;
  }

  .feature-number {
    right: 27px;
  }

  .mini-live,
  .chat-bubbles {
    right: 26px;
    left: 26px;
  }

  .feature-pet {
    display: block;
  }

  .feature-pet > img {
    position: absolute;
    right: -20px;
    bottom: -15px;
    width: 155px;
  }

  .feature-pet > div > p:not(.feature-number) {
    max-width: 68%;
  }

  .phone-gallery {
    width: calc(100% + 26px);
    height: auto;
    margin: 25px -13px -15px;
    padding: 18px 13px 35px;
    transform: none;
  }

  .gallery-phone,
  .gallery-phone-back,
  .gallery-phone-front,
  .gallery-phone-side {
    flex-basis: min(84vw, 290px);
  }

  .play-card {
    padding: 42px 27px;
    border-radius: 28px;
  }

  .safety-grid article {
    padding: 28px 20px;
  }

  .download-card {
    padding: 35px 22px 50px;
    border-radius: 28px;
  }

  .download-art {
    min-height: 275px;
  }

  .download-art img {
    width: 300px;
  }

  .download-ring {
    width: 255px;
    height: 255px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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