/* ═══════════════ TOKENS ═══════════════ */
:root {
  --blue: #0a7cff;
  --blue-dark: #0059d6;
  --sky-1: #3fa4ff;
  --sky-2: #0a6de8;
  --yellow: #ffc931;
  --pink: #ff5d8f;
  --ink: #14284b;
  --muted: #5b7099;
  --bg: #f6faff;
  --card: #ffffff;
  --radius: 28px;
  --shadow: 0 12px 40px -12px rgba(20, 40, 75, 0.14);
  --font: "Nunito", -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box; margin: 0; padding: 0;
  /* no dark flash on tap (mobile) */
  -webkit-tap-highlight-color: transparent;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  touch-action: pan-x pan-y;
}
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  -webkit-user-select: none;
  user-select: none;
  /* no long-press callout / image save sheet in mobile Safari */
  -webkit-touch-callout: none;
  touch-action: pan-x pan-y;
}
img {
  max-width: 100%; display: block;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
  pointer-events: none;
}
a {
  color: inherit; text-decoration: none;
  /* links can't be picked up and dragged with a long press */
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}
button { -webkit-touch-callout: none; }
/* interactive images (inside links/buttons) must stay clickable */
a img, button img { pointer-events: auto; }

/* Native-feeling press animation */
.is-pressed {
  transform: scale(0.94) !important;
  opacity: 0.85 !important;
  transition: transform 0.15s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.15s ease !important;
}

/* ═══════════════ REVEAL ═══════════════ */
.reveal        { opacity: 0; transform: translateY(24px); }
.reveal-left   { opacity: 0; transform: translateX(-64px); }
.reveal-right  { opacity: 0; transform: translateX(64px); }
.reveal, .reveal-left, .reveal-right {
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.is-visible { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; transition: none; }
  .float, .tw { animation: none !important; }
}

/* ═══════════════ NAV ═══════════════ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  padding: 14px 20px;
}
.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  pointer-events: none;
}
.nav.is-scrolled::before {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px -8px rgba(20, 40, 75, 0.12);
}
.nav__inner { position: relative; z-index: 1; max-width: 1120px; margin: 0 auto; display: flex; align-items: center; gap: 28px; }
.nav__brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 20px; color: #fff; transition: color 0.3s; }
.nav.is-scrolled .nav__brand { color: var(--ink); }
.nav__icon { width: 38px; height: 38px; border-radius: 10px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.nav__links { margin-left: auto; display: flex; gap: 26px; font-weight: 700; font-size: 15px; color: rgba(255,255,255,0.9); transition: color 0.3s; }
.nav.is-scrolled .nav__links { color: var(--muted); }
.nav__links a:hover { opacity: 0.7; }
.btn--nav {
  background: var(--yellow); color: var(--ink);
  font-weight: 800; font-size: 15px;
  padding: 10px 22px; border-radius: 999px;
  box-shadow: 0 6px 18px -6px rgba(255, 201, 49, 0.7);
  transition: transform 0.15s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.15s ease;
}
.btn--nav:hover { transform: translateY(-2px); }
@media (max-width: 640px) { .nav__links { display: none; } .btn--nav { margin-left: auto; } }

/* custom language picker (legal pages) */
.lang-picker {
  float: right;
  position: relative;
  z-index: 20;
  margin: 4px 0 16px 16px;
}
.lang-picker__btn {
  display: inline-flex; align-items: center; gap: 10px;
  font: inherit; font-weight: 700; font-size: 15px; color: var(--ink);
  background: #fff;
  border: none;
  border-radius: 14px;
  padding: 10px 16px 10px 14px;
  cursor: pointer;
  box-shadow: 0 6px 20px -6px rgba(20, 40, 75, 0.12);
  transition: transform 0.15s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.lang-picker__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -6px rgba(20, 40, 75, 0.16);
}
.lang-picker.is-open .lang-picker__btn {
  background: #e7f1ff;
  color: var(--blue);
  box-shadow: 0 6px 20px -6px rgba(20, 40, 75, 0.12);
}
.lang-picker__flag { font-size: 18px; line-height: 1; }
.lang-picker__chev {
  width: 8px; height: 8px; margin-top: -4px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1), margin-top 0.3s cubic-bezier(0.32, 0.72, 0, 1);
  opacity: 0.5;
}
.lang-picker.is-open .lang-picker__chev { 
  transform: rotate(-135deg); 
  margin-top: 4px; 
  opacity: 1;
}
.lang-picker__menu {
  position: absolute; top: calc(100% + 8px); right: 0; z-index: 30;
  list-style: none;
  min-width: 160px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 16px 40px -10px rgba(20, 40, 75, 0.2);
  padding: 8px !important;
  margin: 0 !important;
  opacity: 0;
  transform: translateY(-8px) scale(0.97);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.32, 0.72, 0, 1), transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}
.lang-picker.is-open .lang-picker__menu { opacity: 1; transform: none; pointer-events: auto; }
.lang-picker__menu li {
  display: flex; align-items: center; gap: 11px;
  font-weight: 700; font-size: 14.5px; color: var(--ink);
  padding: 10px 13px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.lang-picker__menu li span { font-size: 18px; line-height: 1; }
.lang-picker__menu li:hover { background: #f0f6ff; }
.lang-picker__menu li.is-active { background: #e7f1ff; color: var(--blue); }

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  background:
    radial-gradient(1000px 600px at 50% 0%, rgba(255, 255, 255, 0.4) 0%, transparent 80%),
    radial-gradient(800px 600px at 80% 20%, rgba(226, 239, 255, 0.5) 0%, transparent 70%),
    linear-gradient(165deg, var(--sky-1) 0%, var(--sky-2) 100%);
  padding: 130px 0 0;
  overflow: hidden;
}
.hero__inner {
  max-width: 1120px; margin: 0 auto;
  padding-inline: 20px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px;
  align-items: center;
  padding-bottom: 210px;
}
.hero__eyebrow {
  color: rgba(255,255,255,0.7);
  font-weight: 800; font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  margin-bottom: 22px;
}
.hero h1 {
  color: #fff; font-size: clamp(44px, 6vw, 72px);
  font-weight: 900; line-height: 1.05; letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--yellow); }
.hero__sub {
  color: rgba(255,255,255,0.92); font-size: 19px; font-weight: 600;
  max-width: 460px; margin-bottom: 34px;
}
.hero__proof { display: flex; align-items: center; gap: 10px; margin-top: 22px; color: rgba(255,255,255,0.85); font-weight: 700; font-size: 14px; }
.hero__rating { color: var(--yellow); letter-spacing: 2px; font-size: 16px; }

/* stores */
.stores { display: flex; gap: 14px; flex-wrap: wrap; }
.store {
  display: flex; align-items: center; gap: 12px;
  background: #10182b; color: #fff;
  padding: 12px 22px; border-radius: 16px;
  box-shadow: 0 10px 26px -10px rgba(0,0,0,0.45);
  transition: transform 0.15s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.15s ease, box-shadow 0.15s ease;
}
.store:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -10px rgba(0,0,0,0.5); }
.store__logo { width: 26px; height: 26px; flex-shrink: 0; }
.store__text { display: flex; flex-direction: column; line-height: 1.15; }
.store__text small { font-size: 11px; opacity: 0.75; font-weight: 600; }
.store__text b { font-size: 18px; font-weight: 800; }

/* phone mockups */
.phone {
  border-radius: 42px;
  border: 10px solid #10182b;
  background: #10182b;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(6, 30, 80, 0.55);
}
.phone img { width: 100%; height: 100%; object-fit: cover; border-radius: 32px; }
/* phone + chips tilt together; chips are anchored in % of the phone */
.phone-wrap {
  position: relative;
  width: min(330px, 78vw);
  margin: 0 auto;
  transform: rotate(3deg);
}
.phone-img {
  display: block;
  width: 100%;
  filter: drop-shadow(0 40px 80px rgba(6, 30, 80, 0.45));
}

.hero__visual { position: relative; }
/* UI chips over the phone; shadows are baked into the PNGs.
   Geometry matches the design at 1:1 scale (phone 465.3x956pt, origin bottom-left):
   scores solid-center 232.6,509 / streak solid-center 418,852,
   positioned from measured solid-pixel centers of each PNG. */
.chip {
  position: absolute;
  pointer-events: none;
  max-width: none;
}
.chip--streak {
  width: 37.75%;
  top: 5%; left: 70.99%;
  transform-origin: 50% 46%;
  animation: chip-float 4.5s ease-in-out infinite;
}
.chip--scores {
  width: 125.93%;
  top: 39.05%; left: -12.94%;
  transform-origin: 50% 46%;
  animation: chip-float 5.5s ease-in-out 0.8s infinite;
}
@keyframes chip-float {
  0%, 100% { transform: translateY(-4px) rotate(0deg) scale(1); }
  50%      { transform: translateY(4px) rotate(-1.5deg) scale(0.984); }
}
@keyframes bob { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-14px) rotate(3deg); } }

/* twinkles */
.hero__stars { position: absolute; inset: 0; pointer-events: none; }
.tw { position: absolute; color: rgba(255,255,255,0.8); animation: twinkle 3s ease-in-out infinite; }
.tw--1 { top: 14%; left: 8%;  font-size: 20px; }
.tw--2 { top: 26%; left: 30%; font-size: 12px; animation-delay: 0.6s; }
.tw--3 { top: 12%; left: 58%; font-size: 16px; animation-delay: 1.2s; }
.tw--4 { top: 34%; left: 90%; font-size: 20px; animation-delay: 0.3s; }
.tw--5 { top: 55%; left: 4%;  font-size: 14px; animation-delay: 1.8s; }
.tw--6 { top: 66%; left: 46%; font-size: 12px; animation-delay: 0.9s; }
.tw--7 { top: 20%; left: 76%; font-size: 13px; animation-delay: 2.2s; }
.tw--8 { top: 48%; left: 64%; font-size: 17px; animation-delay: 1.5s; }
@keyframes twinkle { 0%,100% { opacity: 0.25; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1.15); } }

.hero__clouds {
  display: block; width: 100%;
  height: clamp(110px, 17.4vw, 250px);
  margin-top: calc(clamp(110px, 17.4vw, 250px) * -1);
  position: relative;
  /* overlap by 1px to prevent subpixel rendering gaps */
  transform: translateY(1px);
}

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; padding-bottom: 150px; }
  .hero__sub { margin-inline: auto; }
  .stores { justify-content: center; }
  .hero__proof { justify-content: center; }
  .hero__visual { margin-top: 20px; }
}

/* ═══════════════ STATS ═══════════════ */
.stats {
  max-width: 760px; margin: 44px auto 0; position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(3, 1fr);
  padding: 0 20px;
}
.stat {
  text-align: center;
  padding: 6px 10px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start;
}
.stat + .stat { border-left: 1px solid rgba(20, 40, 75, 0.1); }
.stat b {
  display: block;
  font-size: clamp(24px, 4.4vw, 34px);
  font-weight: 900; color: var(--blue); line-height: 1.1;
  margin-bottom: 2px;
}
.stat span {
  font-size: clamp(11px, 1.8vw, 14px);
  font-weight: 700; color: var(--muted);
  line-height: 1.35;
  text-wrap: balance;
}
@media (max-width: 640px) {
  .stats { margin-inline: 16px; padding: 0; gap: 0; }
  .stat { padding: 4px 6px; }
  .stat span { font-size: clamp(10.5px, 2.9vw, 12.5px); }
}

/* ═══════════════ SECTIONS ═══════════════ */
.section { max-width: 1120px; margin: 0 auto; padding: 110px 20px 0; }
.section__head { text-align: center; max-width: 560px; margin: 0 auto 56px; }
.section__head h2 { font-size: clamp(30px, 4vw, 42px); font-weight: 900; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 14px; }
.section__head p { color: var(--muted); font-size: 18px; font-weight: 600; }

/* features list */
.feature-list {
  max-width: 640px; margin: 0 auto;
  display: flex; flex-direction: column;
}
.feature {
  display: flex; align-items: center; gap: 24px;
  padding: 26px 6px;
  border-bottom: 1px solid rgba(20, 40, 75, 0.08);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.feature:last-child { border-bottom: none; }
.feature--flip { flex-direction: row; text-align: left; }
.feature__img {
  flex-shrink: 0;
  width: 72px; height: 72px;
  display: grid; place-items: center;
}
.feature__img img { width: 68px; height: 68px; object-fit: contain; }
.feature h3 { font-size: 19px; font-weight: 800; margin-bottom: 4px; }
.feature p { color: var(--muted); font-size: 15px; font-weight: 600; }
@media (max-width: 600px) {
  .feature { gap: 18px; padding: 22px 2px; }
  .feature__img { width: 58px; height: 58px; }
  .feature__img img { width: 54px; height: 54px; }
}

/* ═══════════════ MASCOT ═══════════════ */
.mascot {
  margin-top: 120px;
  background: linear-gradient(165deg, #eaf4ff, #dcecff);
  position: relative;
  overflow: hidden;
}
.mascot__inner {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px;
  align-items: center; padding: 90px 20px;
}
.mascot__peek {
  position: absolute; left: 0; top: 50%;
  width: min(520px, 46vw);
  transform: translate(-30%, -50%);
  pointer-events: none;
}
.mascot__peek.reveal-left { transform: translate(-60%, -50%); opacity: 0; }
.mascot__peek.is-visible  { transform: translate(-30%, -50%) !important; opacity: 1 !important; }
.mascot__peek img {
  width: 100%;
  object-fit: cover; object-position: right center;
  aspect-ratio: 1.05 / 1;
  filter: drop-shadow(0 24px 40px rgba(20,40,75,0.16));
}
.mascot__copy h2 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 900; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 16px; }
.mascot__head p { color: var(--muted); font-size: 18px; font-weight: 600; }
.mascot__head { margin-bottom: 26px; }
.checks { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.checks li {
  background: #fff; border-radius: 18px;
  padding: 14px 20px 14px 48px;
  position: relative;
  font-weight: 600; color: var(--muted); font-size: 15px;
  box-shadow: 0 6px 20px -8px rgba(20,40,75,0.12);
}
.checks li b { color: var(--ink); font-weight: 800; }
.checks li::before {
  content: "✓";
  position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  color: var(--blue); font-weight: 900; font-size: 17px;
}
@media (max-width: 860px) {
  .mascot__inner { grid-template-columns: 1fr; text-align: left; padding-top: 56px; padding-bottom: 56px; }
  .mascot__spacer { display: none; }

  /* star peeks from the left edge, aligned with the heading */
  .mascot__peek {
    top: 56px; left: 0;
    width: min(250px, 58vw);
    transform: translateX(-30%);
  }
  .mascot__peek.reveal-left { transform: translateX(-64%); opacity: 0; }
  .mascot__peek.is-visible  { transform: translateX(-30%) !important; opacity: 1 !important; }

  /* heading + subtitle sit beside the star */
  .mascot__head {
    margin-left: min(180px, 42vw);
    min-height: min(238px, 55vw);
    display: flex; flex-direction: column; justify-content: center;
    margin-bottom: 30px;
  }
  .mascot__copy h2 { font-size: clamp(22px, 6vw, 28px); }
  .mascot__head p { font-size: 15.5px; }
}

/* ═══════════════ SCREENS ═══════════════ */
.screens {
  display: flex; gap: 16px; justify-content: center;
  align-items: center;
  padding: 20px 0;
}
/* moon & stars decorations around the screens slider */
.section--screens { position: relative; }
.screens-deco { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.deco { position: absolute; color: #a9c6f4; animation: twinkle 3.4s ease-in-out infinite; }
.deco--moon { width: 44px; top: 6%; right: 12%; animation: bob 6s ease-in-out infinite; }
.deco--s1 { top: 10%; left: 8%;  font-size: 20px; }
.deco--s2 { top: 26%; left: 16%; font-size: 13px; animation-delay: 0.7s; }
.deco--s3 { top: 18%; right: 24%; font-size: 15px; animation-delay: 1.3s; }
.deco--s4 { top: 52%; left: 4%;  font-size: 17px; animation-delay: 0.4s; }
.deco--s5 { top: 60%; right: 6%; font-size: 20px; animation-delay: 1.8s; }
.deco--s6 { top: 38%; right: 3%; font-size: 13px; animation-delay: 2.3s; }

.shot { width: 300px; flex-shrink: 0; }
/* loop clones only exist in carousel mode */
.shot--clone { display: none; }
@media (max-width: 1120px) { .shot--clone { display: block; } }
.shot img { 
  width: 100%; 
  aspect-ratio: 1758 / 2868; 
  object-fit: cover; 
  display: block; 
}
.shot__caption { text-align: center; margin-bottom: 16px; min-height: 96px; }
.shot__caption h3 { font-size: 20px; font-weight: 800; line-height: 1.2; margin-bottom: 6px; }
.shot__caption p { color: var(--muted); font-size: 13.5px; font-weight: 600; }

@media (max-width: 1120px) {
  /* full-bleed native carousel */
  .screens {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    justify-content: flex-start;
    gap: 0px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 26px calc(50vw - 135px);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .screens::-webkit-scrollbar { display: none; }
  .screens .shot {
    flex: 0 0 270px;
    scroll-snap-align: center;
    transform: scale(0.92);
    transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1);
  }
  .screens .shot.is-centered { transform: scale(1.08); z-index: 2; }
}

/* ═══════════════ FAQ ═══════════════ */
.section--faq { max-width: 760px; }
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq__item {
  background: var(--card); border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq__q {
  display: block; width: 100%;
  font: inherit; color: inherit; text-align: left;
  background: none; border: none;
  cursor: pointer;
  padding: 20px 52px 20px 24px;
  font-weight: 800; font-size: 17px;
  position: relative;
  outline: none;
  transition: background 0.15s ease;
}
.faq__q:active { background: rgba(0, 0, 0, 0.04); }
.faq__q::after {
  content: "+";
  position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: #e7f1ff; color: var(--blue);
  display: grid; place-items: center;
  font-weight: 900; font-size: 18px;
  transition: transform 0.25s ease;
}
.faq__item.is-open .faq__q::after { transform: translateY(-50%) rotate(45deg); }
.faq .faq__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.32, 0.72, 0, 1);
}
.faq__item.is-open .faq__content { grid-template-rows: 1fr; }
.faq .faq__content-inner { overflow: hidden; min-height: 0; }
.faq .faq__content p {
  padding: 0 24px 20px;
  color: var(--muted);
  font-weight: 600;
  font-size: 15px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease, transform 0.35s ease;
}
.faq__item.is-open .faq__content p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.08s;
}

/* ═══════════════ CTA ═══════════════ */
.cta {
  margin-top: 110px;
  padding: 80px 20px;
  background:
    radial-gradient(600px 300px at 90% 0%, rgba(255,255,255,0.18), transparent 60%),
    linear-gradient(160deg, var(--sky-1), var(--sky-2));
  overflow: hidden;
}
.cta__inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 30px;
  align-items: center;
}
.cta__mascot { width: min(380px, 100%); object-fit: contain; }
.cta__copy h2 { color: #fff; font-size: clamp(28px, 3.6vw, 40px); font-weight: 900; letter-spacing: -0.02em; margin-bottom: 10px; }
.cta__copy p { color: rgba(255,255,255,0.92); font-size: 18px; font-weight: 600; margin-bottom: 28px; }
@media (max-width: 800px) {
  .cta { padding: 56px 28px; }
  .cta__inner { grid-template-columns: 1fr; text-align: center; }
  .cta__mascot { margin: 0 auto; width: min(300px, 84%); }
  .stores--cta { justify-content: center; }
}

/* ═══════════════ FOOTER ═══════════════ */
.footer { background: #10182b; color: rgba(255,255,255,0.75); padding: 34px 20px; }
.footer__inner { max-width: 1120px; margin: 0 auto; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.footer__brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 18px; color: #fff; }
.footer__brand img { width: 34px; height: 34px; border-radius: 9px; }
.footer__links { display: flex; gap: 24px; font-weight: 700; font-size: 14px; order: 3; }
.footer__links a:hover { color: #fff; }
.footer__copy { font-size: 13px; opacity: 0.55; order: 2; margin-inline: auto; }
@media (max-width: 760px) {
  .footer__inner { flex-direction: column; text-align: center; gap: 18px; }
  .footer__links { order: 0; }
  .footer__copy { order: 0; margin-inline: 0; }
}

/* ═══════════════ FULL-SCREEN SKY PAGES (coming soon / support) ═══════════════ */
.page-fill { display: flex; flex-direction: column; min-height: 100vh; }
.page-fill .footer { margin-top: auto; }
.soon {
  flex: 1;
  min-height: 100vh;
  display: flex; flex-direction: column;
  padding-top: 0;
}
.soon__content {
  position: relative;
  margin: auto;
  max-width: 640px;
  padding: 150px 20px 80px;
  text-align: center;
}
.soon__content h1 { margin-bottom: 18px; }
.soon__mascot {
  width: 150px;
  margin: 0 auto 10px;
  filter: drop-shadow(0 14px 24px rgba(6, 30, 80, 0.35));
  animation: bob 4.5s ease-in-out infinite;
}
.soon__appicon {
  width: 104px; height: 104px;
  border-radius: 26px;
  margin: 0 auto 28px;
  box-shadow: 0 18px 44px -12px rgba(6, 30, 80, 0.5);
  animation: bob 4.5s ease-in-out infinite;
}
.soon__sub { margin-inline: auto; margin-bottom: 36px; }

/* big mascot sliding out from the right screen edge */
.soon__peek {
  position: absolute; right: 0; top: 50%;
  width: min(480px, 38vw);
  pointer-events: none;
  animation: peek-in-right 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
@keyframes peek-in-right {
  from { transform: translate(85%, -50%); opacity: 0; }
  to   { transform: translate(20%, -50%); opacity: 1; }
}
.soon__peek img {
  width: 100%;
  filter: drop-shadow(0 24px 44px rgba(6, 30, 80, 0.35));
  transform-origin: 70% 80%;
  animation: writing 3.2s ease-in-out 1.2s infinite;
}
@keyframes writing {
  0%, 100% { transform: rotate(0deg); }
  30% { transform: rotate(-2.4deg); }
  60% { transform: rotate(1.6deg); }
}
@media (prefers-reduced-motion: reduce) {
  .soon__peek { animation: none; transform: translate(20%, -50%); }
  .soon__peek img { animation: none; }
}
@media (prefers-reduced-motion: reduce) and (max-width: 860px) {
  .soon__peek { transform: translate(20%, 0); }
}
/* keep the copy clear of the mascot on mid-size screens */
@media (min-width: 861px) {
  .soon__content--side { max-width: 560px; transform: translateX(min(0px, calc((100vw - 1240px) / 8))); }
}
@media (max-width: 860px) {
  .soon__peek {
    top: 120px;
    width: min(175px, 36vw);
    animation-name: peek-in-right-m;
  }
  .soon__content--side { padding-top: min(320px, 78vw); padding-bottom: 48px; }
}
@keyframes peek-in-right-m {
  from { transform: translate(88%, 0); opacity: 0; }
  to   { transform: translate(20%, 0); opacity: 1; }
}
/* compact type so the button stays above the fold on small phones */
@media (max-width: 600px) {
  .soon h1 { font-size: clamp(32px, 9vw, 42px); }
  .soon__sub { font-size: 16px; margin-bottom: 26px; }
  .soon__email { font-size: 15px; margin-bottom: 26px; }
  .soon__btn { font-size: 16px; padding: 13px 38px; }
}
.soon__email {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700; font-size: 17px;
  margin: -14px 0 32px;
}
.soon__email a { color: var(--yellow); font-weight: 800; }
.soon__email a:hover { text-decoration: underline; }
.soon__btn {
  display: inline-block;
  font-weight: 800; font-size: 17px;
  color: var(--ink); background: var(--yellow);
  border-radius: 999px;
  padding: 15px 44px;
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.15s ease, box-shadow 0.15s ease;
}
.soon__btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -8px rgba(0, 0, 0, 0.4); }
.soon .hero__clouds { margin-top: auto; }

/* ═══════════════ LEGAL PAGES ═══════════════ */
.legal { max-width: 760px; margin: 0 auto; padding: 120px 20px 90px; }
.legal h1 { font-size: clamp(32px, 4vw, 44px); font-weight: 900; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 8px; }
.legal .legal__updated { color: var(--muted); font-weight: 700; font-size: 14px; margin-bottom: 40px; }
.legal h2 { font-size: 22px; font-weight: 800; margin: 36px 0 12px; }
.legal p, .legal li { color: var(--muted); font-weight: 600; font-size: 15.5px; }
.legal ul { padding-left: 22px; margin: 10px 0; }
.legal a { color: var(--blue); font-weight: 700; }
.legal .nav::before { background: rgba(255,255,255,0.9); }
