/* ============================================================
   Meteoro landing — design tokens
   Derived from the app itself (web/src/theme/tokens.ts + palette.ts):
   dark theme base #161616, brand red #E40000 (favicon.svg), goal
   palette accents, SF/system font stack (same CSP-free stack as app).
   ============================================================ */
:root {
  --bg: #0e0e11;
  --bg-2: #131316;
  --surface: #19191d;
  --card: #1d1d22;
  --border: rgba(255, 255, 255, 0.08);
  --border-2: rgba(255, 255, 255, 0.16);
  --text: #f5f5f7;
  --text-2: #b6b6bf;
  --text-3: #8a8a93;
  --brand: #e40000;
  --brand-hot: #ff5147;
  /* goal palette (dark variants — same values the app renders) */
  --teal: #3dbfa8;
  --indigo: #7b8fe8;
  --amber: #f4a44a;
  --rose: #e87b9a;
  --sky: #5db8e8;
  --sage: #7ec86a;
  --violet: #d17be8;
  --mint: #7be8c8;
  --pending: #ff4466;

  --radius: 24px;
  --radius-sm: 14px;
  --font:
    -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, sans-serif;
  --mono: ui-monospace, 'SF Mono', SFMono-Regular, Menlo, monospace;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--brand-hot);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: rgba(228, 0, 0, 0.35);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(78, 84, 87, 0.72);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.nav.scrolled {
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo img {
  height: 30px;
  width: auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  padding: 8px;
  margin-left: -8px;
}

.nav-links {
  display: none;
  gap: 28px;
}

.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  padding: 10px 2px;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border-2);
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 999px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.nav-cta svg {
  width: 14px;
  height: 14px;
}

@media (min-width: 760px) {
  .nav-links {
    display: flex;
  }
}

/* ---------- night sky backdrop ---------- */
.sky {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.sky::before {
  /* starfield: two layers of tiny dots */
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 22%, rgba(255, 255, 255, 0.5), transparent 100%),
    radial-gradient(1px 1px at 28% 8%, rgba(255, 255, 255, 0.38), transparent 100%),
    radial-gradient(1px 1px at 44% 30%, rgba(255, 255, 255, 0.3), transparent 100%),
    radial-gradient(1.5px 1.5px at 61% 12%, rgba(255, 255, 255, 0.42), transparent 100%),
    radial-gradient(1px 1px at 73% 34%, rgba(255, 255, 255, 0.3), transparent 100%),
    radial-gradient(1.5px 1.5px at 86% 18%, rgba(255, 255, 255, 0.45), transparent 100%),
    radial-gradient(1px 1px at 94% 42%, rgba(255, 255, 255, 0.28), transparent 100%),
    radial-gradient(1px 1px at 8% 52%, rgba(255, 255, 255, 0.25), transparent 100%),
    radial-gradient(1px 1px at 52% 55%, rgba(255, 255, 255, 0.22), transparent 100%),
    radial-gradient(1.5px 1.5px at 37% 68%, rgba(255, 255, 255, 0.3), transparent 100%),
    radial-gradient(1px 1px at 80% 62%, rgba(255, 255, 255, 0.25), transparent 100%);
}

.sky::after {
  /* red meteor glow, upper right — echoes the falling logo */
  content: '';
  position: absolute;
  top: -220px;
  right: -160px;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(228, 0, 0, 0.16) 0%, transparent 62%);
}

.meteor {
  position: absolute;
  width: 140px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 120, 100, 0.7), #fff);
  transform: rotate(145deg);
  opacity: 0;
  animation: shoot 9s linear infinite;
}

.meteor.m2 {
  width: 90px;
  animation-delay: 4.5s;
  animation-duration: 11s;
}

@keyframes shoot {
  0%,
  86% {
    opacity: 0;
    transform: rotate(145deg) translateX(0);
  }
  88% {
    opacity: 1;
  }
  96%,
  100% {
    opacity: 0;
    transform: rotate(145deg) translateX(420px);
  }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 150px 0 60px;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, #17171d 0%, var(--bg) 70%);
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin: 0 0 22px;
}

.hero h1 .accent {
  color: var(--brand-hot);
}

.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--text-2);
  max-width: 34em;
  margin: 0 0 34px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.hero-fine {
  font-size: 13.5px;
  color: var(--text-3);
  margin: 0;
}

.hero-fine .dot {
  margin: 0 7px;
  opacity: 0.55;
}

/* App Store badge (href pending the real App Store URL) */
.badge-appstore {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 13px;
  padding: 9px 18px 9px 14px;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.badge-appstore:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
}

.badge-appstore svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.badge-appstore .lines {
  display: flex;
  flex-direction: column;
  line-height: 1.16;
}

.badge-appstore .small {
  font-size: 10.5px;
  color: #d5d5da;
  letter-spacing: 0.01em;
}

.badge-appstore .big {
  font-size: 17.5px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}

.link-web {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text);
  font-weight: 600;
  font-size: 15.5px;
  text-decoration: none;
  padding: 10px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: border-color 0.2s ease;
}

.link-web:hover {
  border-color: var(--brand-hot);
}

.link-web svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}

.link-web:hover svg {
  transform: translateX(3px);
}

/* pill-shaped web app CTA (final section) */
.pill-web {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  font-size: 15.5px;
  font-weight: 600;
  padding: 12px 24px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.pill-web:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.pill-web svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}

.pill-web:hover svg {
  transform: translateX(3px);
}

@media (min-width: 960px) {
  .hero {
    padding: 170px 0 90px;
  }
  .hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
  }
}

/* ---------- phone mock ---------- */
.phone-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-wrap::before {
  content: '';
  position: absolute;
  inset: 12% -8% -4% -8%;
  background: radial-gradient(ellipse at 50% 45%, rgba(228, 0, 0, 0.13), transparent 65%);
  filter: blur(6px);
}

.phone {
  position: relative;
  width: 302px;
  background: #050506;
  border-radius: 50px;
  padding: 11px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14),
    0 24px 70px rgba(0, 0, 0, 0.65),
    0 6px 22px rgba(0, 0, 0, 0.5);
}

.phone-screen {
  position: relative;
  background: #161616; /* app dark theme base */
  border-radius: 40px;
  padding: 12px 13px 14px;
  overflow: hidden;
}

.phone-island {
  width: 84px;
  height: 24px;
  background: #050506;
  border-radius: 999px;
  margin: 2px auto 10px;
}

.ps-status {
  position: absolute;
  top: 9px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 26px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}

.ps-status .batt {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.ps-status .batt i {
  display: block;
  width: 17px;
  height: 8.5px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 3px;
  position: relative;
}

.ps-status .batt i::after {
  content: '';
  position: absolute;
  inset: 1.5px;
  right: 5px;
  background: #fff;
  border-radius: 1px;
}

.ps-greet {
  font-size: 11px;
  color: #888;
  margin: 6px 2px 1px;
}

.ps-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 2px 10px;
}

.ps-date .d {
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ps-date svg {
  width: 14px;
  height: 14px;
  color: #888;
}

.ps-card {
  background: rgba(30, 30, 30, 0.98); /* app cardBg */
  border: 1px solid rgba(56, 56, 56, 0.7); /* app cardBorder */
  border-radius: 20px;
  padding: 10px 11px;
  margin-bottom: 9px;
}

.ps-card h4 {
  margin: 1px 2px 8px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #888;
}

.ps-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(44, 44, 44, 0.97); /* app itemBg */
  border-radius: 10px;
  padding: 7.5px 9px;
}

.ps-row + .ps-row {
  margin-top: 6px;
}

.ps-row .name {
  flex: 1;
  font-size: 12.5px;
  font-weight: 500;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ps-row .name small {
  display: block;
  margin-top: 3px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.09);
  position: relative;
  overflow: hidden;
}

.ps-row .name small i {
  position: absolute;
  inset: 0;
  right: auto;
  border-radius: 2px;
}

.ps-check {
  width: 22px;
  height: 22px;
  flex: none;
  border-radius: 999px;
  border: 1.5px solid;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ps-check svg {
  width: 11px;
  height: 11px;
}

.ps-chip {
  flex: none;
  font-family: var(--mono);
  font-size: 9.5px;
  color: #999;
  border: 1px solid rgba(56, 56, 56, 0.9);
  border-radius: 7px;
  padding: 2px 6px;
}

.ps-box {
  width: 15px;
  height: 15px;
  flex: none;
  border-radius: 4px;
  border: 2px solid #6f6f6f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ps-box svg {
  width: 9px;
  height: 9px;
}

.ps-row.done .name {
  color: #8b8b8b;
}

.ps-dock {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 11px 26px 0;
  padding: 8px 6px;
  border-radius: 999px;
  background: rgba(78, 84, 87, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.ps-dock svg {
  width: 16.5px;
  height: 16.5px;
  color: #7d7d7d;
}

.ps-dock svg.on {
  color: #fff;
}

/* ---------- phone screenshot carousel (real captures in /assets/screens) ---------- */
.phone-screen.shots {
  padding: 0;
}

.shots-track {
  display: flex;
  transition: transform 0.35s ease;
}

.shots-track img {
  flex: none;
  width: 100%;
  display: block;
}

.phone-screen.shots .phone-island {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}

.shot-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border-2);
  background: rgba(25, 25, 29, 0.82);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  padding: 0;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.shot-arrow:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
}

.shot-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.shot-arrow.prev {
  left: -20px;
}

.shot-arrow.next {
  right: -20px;
}

.shot-arrow svg {
  width: 17px;
  height: 17px;
}

.shot-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.shot-dots i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  transition: background 0.2s ease;
}

.shot-dots i.on {
  background: var(--brand-hot);
}

/* ---------- list section mocks (scaled-up ps-card components) ---------- */
.list-mock {
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
}

.list-mock .ps-card {
  border-radius: 24px;
  padding: 16px 17px;
  margin-bottom: 0;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
}

.list-mock .ps-card + .ps-card {
  margin-top: 14px;
}

.list-mock .ps-card h4 {
  font-size: 11px;
  margin: 2px 4px 12px;
}

.list-mock .ps-row {
  padding: 11px 13px;
  border-radius: 13px;
  gap: 11px;
}

.list-mock .ps-row + .ps-row {
  margin-top: 8px;
}

.list-mock .ps-row .name {
  font-size: 14.5px;
}

.list-mock .ps-row .name small {
  margin-top: 5px;
  height: 4px;
}

.list-mock .ps-check {
  width: 26px;
  height: 26px;
}

.list-mock .ps-check svg {
  width: 13px;
  height: 13px;
}

.list-mock .ps-box {
  width: 18px;
  height: 18px;
  border-radius: 5px;
}

.list-mock .ps-box svg {
  width: 11px;
  height: 11px;
}

.list-mock .ps-chip {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 8px;
}

/* streak badge (habits mock) */
.ps-streak {
  flex: none;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-hot);
  background: rgba(228, 0, 0, 0.13);
  border-radius: 8px;
  padding: 3px 8px;
}

/* "Scheduled for To-Do" pill floating between the two cards */
.mover-pill {
  position: relative;
  z-index: 2;
  width: max-content;
  margin: -12px auto;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #101013;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mover-pill svg {
  width: 13px;
  height: 13px;
  color: var(--indigo);
}

/* iOS notification banner (reminders mock) */
.notif {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(48, 48, 53, 0.94);
  border: 1px solid var(--border-2);
  border-radius: 20px;
  padding: 12px 16px;
  margin-bottom: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
}

.notif img {
  width: 32px;
  height: 32px;
  flex: none;
  border-radius: 9px;
  background: #050506;
  padding: 4px;
}

.notif .n-text {
  flex: 1;
  min-width: 0;
}

.notif .n-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
}

.notif .n-time {
  font-size: 11.5px;
  color: var(--text-3);
}

.notif .n-body {
  display: block;
  font-size: 13.5px;
  color: var(--text-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* notes mock: chips + open note */
.note-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.note-chip {
  font-size: 13px;
  color: var(--text-2);
  background: rgba(44, 44, 44, 0.97);
  border: 1px solid rgba(56, 56, 56, 0.9);
  border-radius: 999px;
  padding: 6px 13px;
  white-space: nowrap;
}

.note-chip.on {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.32);
}

.note-open {
  margin-top: 12px;
  background: rgba(44, 44, 44, 0.97);
  border-radius: 13px;
  padding: 13px 15px;
}

.note-open b {
  display: block;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.note-open p {
  margin: 0;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
}

/* ---------- sections ---------- */
.section {
  padding: 96px 0;
  position: relative;
}

.section.tint {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-hot);
  margin: 0 0 14px;
}

.section h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 16px;
  max-width: 18em;
}

.section .lead {
  font-size: 1.08rem;
  color: var(--text-2);
  max-width: 38em;
  margin: 0;
}

.center {
  text-align: center;
}

.center h2,
.center .lead {
  margin-left: auto;
  margin-right: auto;
}

/* features grid */
.features {
  display: grid;
  gap: 18px;
  margin-top: 54px;
}

@media (min-width: 640px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
  }
  .features.four {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px 24px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.feature:hover {
  transform: translateY(-3px);
  border-color: var(--border-2);
}

.feature .icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature .icon svg {
  width: 22px;
  height: 22px;
}

.feature h3 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}

.feature p {
  font-size: 14.5px;
  color: var(--text-2);
  margin: 0;
  line-height: 1.55;
}

/* split sections */
.split {
  display: grid;
  gap: 52px;
  align-items: center;
  margin-top: 8px;
}

@media (min-width: 960px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 72px;
  }
  .split.flip > .split-copy {
    order: 2;
  }
}

.split-copy .lead {
  margin-bottom: 26px;
}

.bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bullets li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-2);
  font-size: 15.5px;
}

.bullets b {
  color: var(--text);
  font-weight: 600;
}

.bullets .bi {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.bullets .bi svg {
  width: 13px;
  height: 13px;
}

.split-copy .link-web {
  margin-top: 26px;
}

/* browser mock */
.browser-wrap {
  position: relative;
}

.browser {
  background: #151518;
  border: 1px solid var(--border-2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.55);
}

.br-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #1c1c20;
  border-bottom: 1px solid var(--border);
}

.br-bar .dots {
  display: flex;
  gap: 6px;
}

.br-bar .dots i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #3a3a40;
}

.br-bar .url {
  flex: 1;
  max-width: 300px;
  margin: 0 auto;
  background: #131316;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 11.5px;
  color: var(--text-3);
  text-align: center;
  padding: 4px 12px;
  font-family: var(--mono);
}

.br-body {
  display: flex;
  min-height: 300px;
  background: #161616;
}

.br-side {
  width: 148px;
  flex: none;
  border-right: 1px solid rgba(56, 56, 56, 0.7);
  padding: 14px 10px;
  display: none;
}

@media (min-width: 480px) {
  .br-side {
    display: block;
  }
}

.br-side img {
  height: 20px;
  width: auto;
  margin: 2px 0 16px 6px;
}

.br-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  padding: 6px 9px;
  border-radius: 8px;
  color: #a5a5ad;
}

.br-nav.on {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.br-nav svg {
  width: 13px;
  height: 13px;
}

.br-side .lbl {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6e6e76;
  margin: 16px 9px 7px;
  font-weight: 700;
}

.br-list {
  font-size: 11.5px;
  color: #a5a5ad;
  padding: 5px 9px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.br-list i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  flex: none;
}

.br-main {
  flex: 1;
  padding: 16px 18px;
  min-width: 0;
}

.br-main .ps-date {
  margin-bottom: 12px;
}

.br-main .ps-card {
  max-width: 380px;
}

/* sync badge */
.sync-pill {
  position: absolute;
  bottom: -16px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #101013;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.sync-pill .pulse {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
  position: relative;
}

.sync-pill .pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 1.5px solid var(--teal);
  opacity: 0;
  animation: ping 2.4s ease-out infinite;
}

@keyframes ping {
  0% {
    transform: scale(0.5);
    opacity: 0.8;
  }
  70%,
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* privacy visual */
.priv-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  max-width: 430px;
  margin: 0 auto;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
}

.priv-hero {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}

.priv-hero .shield {
  width: 52px;
  height: 52px;
  flex: none;
  border-radius: 16px;
  background: rgba(126, 200, 106, 0.14);
  color: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
}

.priv-hero .shield svg {
  width: 26px;
  height: 26px;
}

.priv-hero b {
  display: block;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.priv-hero span {
  font-size: 13.5px;
  color: var(--text-3);
}

.priv-row {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 2px;
  font-size: 14.5px;
  color: var(--text-2);
}

.priv-row + .priv-row {
  border-top: 1px solid var(--border);
}

.priv-row svg {
  width: 17px;
  height: 17px;
  flex: none;
  color: var(--text-3);
}

.priv-row .ok {
  margin-left: auto;
  color: var(--teal);
}

/* ---------- final CTA ---------- */
.cta-final {
  position: relative;
  padding: 150px 0 130px;
  text-align: center;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -340px;
  transform: translateX(-50%);
  width: 900px;
  height: 620px;
  background: radial-gradient(ellipse, rgba(228, 0, 0, 0.2) 0%, transparent 62%);
  pointer-events: none;
}

.cta-final .logo-mark {
  height: 64px;
  width: auto;
  margin: 0 auto 28px;
}

.cta-final h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin: 0 auto 42px;
}

.cta-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

/* ---------- footer ---------- */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 48px;
  background: rgba(78, 84, 87, 0.72);
  position: relative;
}

.foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 26px;
}

.foot-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  padding: 12px 2px;
}

.foot-links a:hover {
  color: var(--text);
}

.foot-copy {
  margin: 0;
  font-size: 13px;
  color: var(--text-3);
}

.foot-copy a {
  color: var(--text-3);
}

/* ---------- legal / doc pages ---------- */
.doc {
  max-width: 720px;
  margin: 0 auto;
  padding: 130px 24px 90px;
}

.doc h1 {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
}

.doc .updated {
  color: var(--text-3);
  font-size: 14px;
  margin-bottom: 40px;
}

.doc h2 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 38px 0 12px;
}

.doc p,
.doc li {
  color: var(--text-2);
  font-size: 15.5px;
}

.doc a {
  color: var(--brand-hot);
  text-decoration-color: rgba(255, 81, 71, 0.4);
}

.doc ul {
  padding-left: 22px;
}

.doc li {
  margin: 6px 0;
}

/* ---------- reveal animation (html.js only — no-JS keeps content visible) ---------- */
html.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.55s ease-out,
    transform 0.55s ease-out;
  transition-delay: var(--d, 0s);
}

html.js .reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  html.js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .meteor,
  .sync-pill .pulse::after {
    animation: none;
  }
  .feature,
  .badge-appstore,
  .link-web svg,
  .pill-web,
  .pill-web svg,
  .shots-track {
    transition: none;
  }
}
