:root {
  color-scheme: light;
  --blue: #23a8df;
  --blue-dark: #0875a7;
  --green: #77c043;
  --yellow: #ffd85a;
  --ink: #163144;
  --muted: #5c6b75;
  --paper: #ffffff;
  --soft: #f4fbfd;
  --line: #d8edf5;
  --surface: #ffffff;
  --surface-soft: #f8fcfd;
  --topbar-bg: rgba(255, 255, 255, 0.94);
  --hero-scrim: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72) 45%, rgba(255, 255, 255, 0.12));
  --hero-scrim-mobile: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.8) 58%, rgba(255, 255, 255, 0.16));
  --card-shadow: 0 16px 44px rgba(8, 117, 167, 0.08);
  --art-shadow: rgba(22, 49, 68, 0.18);
  --chip-bg: #eaf8d9;
  --chip-border: #caeaa9;
  --chip-text: #356f16;
  --quote-bg: #fff8d8;
  --download-bg: #0875a7;
  --download-eyebrow: #c9f3ff;
  --footer-bg: #102f42;
  --footer-text: #eaf8ff;
  --side-bg: #f7fbfd;
  --video-button-bg: rgba(255, 255, 255, 0.92);
  --button-text: #ffffff;
  --store-panel: rgba(255, 255, 255, 0.1);
  --store-panel-border: rgba(255, 255, 255, 0.22);
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --blue: #4dbfed;
  --blue-dark: #8bd9ff;
  --green: #9ad66c;
  --yellow: #ffd965;
  --ink: #eef8ff;
  --muted: #bdd2df;
  --paper: #071722;
  --soft: #0c2331;
  --line: #24495c;
  --surface: #102b3a;
  --surface-soft: #0b202d;
  --topbar-bg: rgba(7, 23, 34, 0.94);
  --hero-scrim: linear-gradient(90deg, rgba(7, 23, 34, 0.96), rgba(7, 23, 34, 0.76) 48%, rgba(7, 23, 34, 0.22));
  --hero-scrim-mobile: linear-gradient(180deg, rgba(7, 23, 34, 0.98), rgba(7, 23, 34, 0.84) 60%, rgba(7, 23, 34, 0.28));
  --card-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  --art-shadow: rgba(0, 0, 0, 0.34);
  --chip-bg: #173820;
  --chip-border: #3f7d42;
  --chip-text: #c8f4ae;
  --quote-bg: #2a2512;
  --download-bg: #0a3a50;
  --download-eyebrow: #9fe8ff;
  --footer-bg: #06111a;
  --footer-text: #d8f3ff;
  --side-bg: #071722;
  --video-button-bg: rgba(238, 248, 255, 0.94);
  --button-text: #ffffff;
  --store-panel: rgba(255, 255, 255, 0.08);
  --store-panel-border: rgba(255, 255, 255, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--paper);
}

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

a {
  color: inherit;
}

.topbar {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: var(--topbar-bg);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand img {
  width: 178px;
}

.nav,
.langs,
.topbar-actions,
.footer nav,
.socials {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav {
  justify-content: center;
  font-weight: 700;
}

.nav a,
.footer a,
.langs a {
  text-decoration: none;
}

.nav a:hover,
.footer a:hover {
  color: var(--blue-dark);
}

.langs {
  gap: 12px;
  font-weight: 800;
  font-size: 12px;
}

.langs a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.langs img {
  width: 22px;
  height: 22px;
}

.topbar-actions {
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 4px 10px 4px 5px;
  color: var(--ink);
  cursor: pointer;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
}

.theme-toggle-track {
  position: relative;
  width: 48px;
  height: 26px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.theme-toggle-track span {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--blue);
  border-radius: 999px;
  transition: transform 180ms ease;
}

.theme-toggle[aria-pressed="true"] .theme-toggle-track span {
  transform: translateX(22px);
}

.hero {
  position: relative;
  min-height: calc(100svh - 82px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(48px, 8vw, 96px) clamp(20px, 6vw, 90px);
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--hero-scrim);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(44px, 8vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.hero-copy p:not(.eyebrow),
.lead {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  color: #fff;
  background: var(--blue);
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(35, 168, 223, 0.26);
}

.hero-parrot {
  position: absolute;
  right: clamp(14px, 8vw, 130px);
  bottom: clamp(18px, 7vw, 80px);
  width: clamp(150px, 22vw, 330px);
  filter: drop-shadow(0 20px 24px rgba(0, 0, 0, 0.16));
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 6vw, 90px);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.benefits {
  background: var(--soft);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto 44px;
}

.benefit {
  min-height: 465px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--card-shadow);
}

.benefit img {
  width: 100%;
  height: 242px;
  object-fit: contain;
  margin-bottom: 22px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.benefit p,
.faq p,
blockquote p {
  color: var(--muted);
  line-height: 1.65;
}

.app-shot {
  width: min(980px, 100%);
  margin: 0 auto;
  filter: drop-shadow(0 26px 34px var(--art-shadow));
}

.stories {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.story-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.story-list span {
  padding: 10px 14px;
  background: var(--chip-bg);
  border: 1px solid var(--chip-border);
  border-radius: 999px;
  color: var(--chip-text);
  font-weight: 800;
}

.story-art {
  position: relative;
  min-height: 520px;
}

.story-art img:first-child {
  width: min(560px, 82%);
  margin: 0 auto;
  filter: drop-shadow(0 18px 26px var(--art-shadow));
}

.story-art img:not(:first-child) {
  position: absolute;
  width: 118px;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 14px 18px var(--art-shadow));
}

.story-art img:nth-child(2) {
  top: 0;
  left: 0;
  width: 142px;
}

.story-art img:nth-child(3) {
  right: 4%;
  bottom: 7%;
  width: 104px;
}

.story-art img:nth-child(4) {
  left: 3%;
  bottom: 8%;
  width: 150px;
}

.story-art img:nth-child(5) {
  top: 7%;
  right: 2%;
  width: 104px;
}

.story-art img:nth-child(6) {
  left: 11%;
  top: 44%;
  width: 128px;
}

.quote-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background: var(--quote-bg);
}

.quote-band > img {
  width: min(360px, 100%);
  margin: 0 auto;
}

blockquote {
  margin: 0 0 24px;
  padding-left: 22px;
  border-left: 6px solid var(--yellow);
}

blockquote p {
  font-size: 22px;
}

cite {
  font-style: normal;
  font-weight: 900;
}

.faq {
  background: var(--soft);
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

details {
  margin-bottom: 14px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
}

summary::marker {
  color: var(--blue);
}

.download {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(54px, 7vw, 88px) clamp(20px, 6vw, 90px);
  color: var(--button-text);
  background: var(--download-bg);
}

.download .eyebrow {
  color: var(--download-eyebrow);
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 18px;
}

.store-grid a {
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 18px;
  color: inherit;
  background: var(--store-panel);
  border: 1px solid var(--store-panel-border);
  border-radius: 8px;
  text-decoration: none;
}

.store-badge {
  height: 38px;
  width: auto;
}

.qr {
  width: 122px;
  border-radius: 6px;
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px 28px;
  padding: 28px clamp(20px, 6vw, 90px);
  color: var(--footer-text);
  background: var(--footer-bg);
}

.footer img {
  width: 146px;
}

.footer p {
  margin: 0;
}

.footer nav {
  grid-column: 2 / 4;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.socials img {
  width: 24px;
  height: 24px;
}

.legal-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 22px 80px;
  color: var(--ink);
  line-height: 1.7;
}

.legal-body a {
  color: var(--blue-dark);
}

.legal-header {
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.legal-header a {
  font-weight: 900;
  color: var(--blue-dark);
  text-decoration: none;
}

.side-page {
  min-height: 100vh;
  background: var(--side-bg);
}

.side-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.side-header img {
  width: 168px;
}

.side-header a {
  color: var(--blue-dark);
  font-weight: 900;
  text-decoration: none;
}

.video-page {
  display: grid;
  place-items: center;
  padding: clamp(32px, 7vw, 80px) 18px;
}

.video-wrap {
  position: relative;
  width: min(920px, 100%);
}

.video-wrap video {
  width: 100%;
  max-height: 70vh;
  background: #000;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(22, 49, 68, 0.2);
  pointer-events: none;
}

.video-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: clamp(86px, 16vw, 132px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  cursor: pointer;
  background: var(--video-button-bg);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.video-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  border-top: clamp(20px, 4vw, 32px) solid transparent;
  border-bottom: clamp(20px, 4vw, 32px) solid transparent;
  border-left: clamp(32px, 6vw, 50px) solid var(--blue-dark);
}

.video-play.is-hidden {
  display: none;
}

.side-email {
  margin: 24px 0 0;
  text-align: center;
  font-size: clamp(20px, 4vw, 34px);
  font-weight: 900;
}

.side-email a {
  color: var(--blue-dark);
  text-decoration: none;
}

.ad-page {
  padding: clamp(32px, 6vw, 72px) clamp(18px, 5vw, 72px) 80px;
}

.ad-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  max-width: 1220px;
  margin: 0 auto;
}

.ad-copy {
  position: sticky;
  top: 105px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--card-shadow);
}

.ad-copy h1 {
  margin-bottom: 4px;
  font-size: clamp(44px, 7vw, 78px);
}

.ad-phone {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--blue-dark);
  font-size: 30px;
  font-weight: 900;
  text-decoration: none;
}

.ad-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.ad-gallery {
  display: grid;
  gap: 18px;
}

.ad-gallery img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(22, 49, 68, 0.12);
}

@media (max-width: 860px) {
  .topbar {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .nav,
  .langs {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero {
    min-height: 780px;
    align-items: start;
  }

  .hero::after {
    background: var(--hero-scrim-mobile);
  }

  .benefit-grid,
  .stories,
  .quote-band,
  .download,
  .footer {
    grid-template-columns: 1fr;
  }

  .story-art {
    min-height: 460px;
  }

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

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

  .ad-layout {
    grid-template-columns: 1fr;
  }

  .ad-copy {
    position: static;
  }
}

@media (max-width: 520px) {
  .brand img {
    width: 150px;
  }

  .hero {
    min-height: 700px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-copy p:not(.eyebrow),
  .lead {
    font-size: 18px;
  }

  .benefit {
    padding: 22px;
    min-height: auto;
  }

  .benefit img {
    height: 276px;
  }

  .story-art {
    min-height: 360px;
  }

  .story-art img:first-child {
    width: min(350px, 86%);
  }

  .story-art img:not(:first-child) {
    width: 86px;
  }
}
