:root {
  --bg: #7380ff;
  --bg-deep: #4051d5;
  --panel: rgba(255, 255, 255, 0.19);
  --panel-strong: rgba(255, 255, 255, 0.72);
  --ink: #ffffff;
  --navy: #1f2a72;
  --muted: rgba(255, 255, 255, 0.78);
  --pink: #ff367d;
  --green: #52f68b;
  --line: rgba(255, 255, 255, 0.45);
  --shadow: 0 30px 90px rgba(26, 35, 126, 0.25);
  --radius-xl: 44px;
  --radius-lg: 30px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 10%, rgba(195, 151, 255, 0.86) 0 18%, transparent 19%),
    radial-gradient(circle at 18% 38%, rgba(154, 218, 255, 0.36) 0 20%, transparent 21%),
    linear-gradient(180deg, #7e88ff 0%, #6f83ff 43%, #4f63d9 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.7) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255,255,255,.32) 1px, transparent 1.5px);
  background-size: 82px 82px, 137px 137px;
  opacity: .45;
}

.orb { position: fixed; border-radius: 999px; pointer-events: none; opacity: .5; filter: blur(.2px); }
.orb-one { width: 420px; height: 420px; left: -160px; bottom: -90px; background: rgba(255, 217, 183, .55); }
.orb-two { width: 320px; height: 320px; right: -70px; top: 250px; background: rgba(147, 230, 247, .45); }
.orb-three { width: 240px; height: 240px; left: 14%; top: -70px; background: rgba(213, 162, 255, .5); }

.site-header {
  position: sticky;
  top: 18px;
  z-index: 10;
  width: min(1160px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(91, 100, 201, 0.58);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand { display: flex; align-items: center; gap: 12px; color: white; text-decoration: none; font-weight: 900; letter-spacing: -0.03em; }
.brand img { width: 46px; height: 46px; border-radius: 14px; box-shadow: 0 12px 30px rgba(0,0,0,.16); }
nav { display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
nav a, .language-links a {
  color: rgba(255,255,255,.86);
  text-decoration: none;
  font-weight: 800;
  padding: 10px 14px;
  border-radius: 999px;
}
nav a:hover, .language-links a:hover { background: rgba(255,255,255,.15); color: white; }

main { position: relative; z-index: 1; }
section { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.section-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 58px; align-items: center; padding: 90px 0; }
.hero { padding-top: 96px; }
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.badge-row span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.13);
  border-radius: 999px;
  color: rgba(255,255,255,.9);
  font-weight: 900;
  font-size: 13px;
}
.kicker {
  margin: 0 0 14px;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}
h1, h2 {
  font-family: "Baloo 2", Inter, sans-serif;
  margin: 0;
  line-height: .94;
  letter-spacing: -0.045em;
}
h1 { font-size: clamp(54px, 7vw, 104px); max-width: 820px; }
h2 { font-size: clamp(42px, 5vw, 76px); }
.lead, .section-text {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
  max-width: 720px;
  font-weight: 700;
}
.store-row { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 16px; }
.store-row.centered { justify-content: center; }
.store-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(24, 35, 108, .18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.store-button:hover { transform: translateY(-2px); box-shadow: 0 24px 55px rgba(24, 35, 108, .24); }
.store-button small { font-size: 25px; line-height: 1; }
.store-button.primary { background: var(--pink); color: white; }
.store-button.secondary { background: rgba(255,255,255,.9); color: var(--navy); }
.note { color: rgba(255,255,255,.72); font-weight: 800; max-width: 680px; line-height: 1.5; }

.hero-visual { position: relative; min-height: 760px; display: grid; place-items: center; }
.phone-shell {
  width: min(395px, 78vw);
  padding: 12px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 54px;
  background: rgba(255,255,255,.16);
  box-shadow: var(--shadow);
}
.phone-shell img { display: block; width: 100%; border-radius: 42px; }
.floating-card {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.22);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  padding: 18px 20px;
  display: grid;
  gap: 6px;
}
.floating-card strong { font-family: "Baloo 2"; font-size: 26px; line-height: 1; }
.floating-card span { color: rgba(255,255,255,.78); font-weight: 800; max-width: 230px; }
.cloud-card { left: 2%; top: 18%; }
.score-card { right: 0; bottom: 18%; text-align: center; }
.score-card strong { font-size: 44px; }

.stats-strip {
  margin-top: -38px;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(16px);
}
.stats-strip div { text-align: center; padding: 18px; border-radius: 24px; background: rgba(255,255,255,.12); }
.stats-strip strong { display: block; font-family: "Baloo 2"; font-size: 42px; line-height: 1; }
.stats-strip span { color: rgba(255,255,255,.75); font-weight: 900; }

.media-stack { position: relative; display: grid; place-items: center; min-height: 720px; }
.screen { border: 1px solid rgba(255,255,255,.45); box-shadow: var(--shadow); }
.screen.tall { width: min(370px, 75vw); border-radius: 44px; }
.screen.small-overlap { position: absolute; right: 7%; bottom: 4%; width: 180px; border-radius: 42px; transform: rotate(4deg); }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 34px; }
.feature-card, .premium-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.17);
  backdrop-filter: blur(14px);
}
.feature-card h3, .premium-card h3 { margin: 0 0 10px; font-size: 23px; color: white; }
.feature-card p, .premium-card p { margin: 0; color: rgba(255,255,255,.74); line-height: 1.5; font-weight: 750; }

.glass-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.19);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.creator-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items: center; padding: 42px; }
.steps { list-style: none; margin: 34px 0 0; padding: 0; display: grid; gap: 12px; }
.steps li { display: flex; align-items: center; gap: 14px; padding: 14px; border-radius: 22px; background: rgba(255,255,255,.13); font-weight: 900; }
.steps strong { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--green); color: var(--navy); }
.pet-screens { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; align-items: end; }
.pet-screens img { width: 100%; border-radius: 42px; border: 1px solid rgba(255,255,255,.45); box-shadow: var(--shadow); }
.pet-screens img:nth-child(2) { transform: translateY(30px); }

.premium-grid { display: grid; gap: 16px; }
.gallery-section { padding: 88px 0 28px; }
.gallery-copy { max-width: 780px; margin-bottom: 34px; }
.pet-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pet-gallery img { width: 100%; border-radius: 34px; border: 1px solid rgba(255,255,255,.44); box-shadow: var(--shadow); }

.faq-section { padding: 42px; margin-top: 68px; }
.faq-list { display: grid; gap: 12px; margin-top: 24px; }
details { border: 1px solid var(--line); border-radius: 24px; padding: 18px 22px; background: rgba(255,255,255,.12); }
summary { cursor: pointer; font-weight: 900; font-size: 19px; }
details p { margin: 12px 0 0; color: rgba(255,255,255,.76); font-weight: 750; line-height: 1.5; }

.final-cta { text-align: center; padding: 98px 0; }
.final-cta img { width: 132px; height: 132px; border-radius: 34px; box-shadow: var(--shadow); margin-bottom: 26px; }
.final-cta p { max-width: 660px; margin: 18px auto 0; color: var(--muted); font-size: 22px; font-weight: 800; }
footer {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto 30px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.75);
  font-weight: 800;
}
.language-links { display: flex; gap: 2px; flex-wrap: wrap; }
.language-links a { font-size: 13px; padding: 8px 10px; }

@media (max-width: 920px) {
  .site-header { align-items: flex-start; border-radius: 28px; }
  nav { display: none; }
  .section-grid, .creator-section { grid-template-columns: 1fr; gap: 34px; padding: 62px 0; }
  .creator-section { padding: 30px; }
  .hero-visual { min-height: 660px; }
  .feature-grid, .pet-gallery { grid-template-columns: repeat(2, 1fr); }
  .stats-strip { grid-template-columns: 1fr; margin-top: 0; }
  .pet-screens img:nth-child(2) { transform: none; }
  footer { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  section, .site-header, footer { width: min(100% - 20px, 1160px); }
  .brand span { font-size: 15px; }
  h1 { font-size: 54px; }
  h2 { font-size: 40px; }
  .lead, .section-text { font-size: 17px; }
  .store-button { width: 100%; justify-content: center; }
  .hero-visual { min-height: 560px; }
  .phone-shell { width: min(330px, 88vw); border-radius: 42px; }
  .phone-shell img { border-radius: 32px; }
  .floating-card { display: none; }
  .media-stack { min-height: 540px; }
  .screen.small-overlap { width: 126px; right: 0; }
  .feature-grid, .pet-gallery, .pet-screens { grid-template-columns: 1fr; }
  .creator-section, .faq-section { border-radius: 30px; padding: 24px; }
}
