:root {
  font-family: "Inter", Arial, sans-serif;
  font-synthesis: none;
  --page-pad: clamp(14px, 2vw, 30px);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  padding: var(--page-pad);
  overflow-x: clip;
  color: var(--ink);
  background: var(--page-bg);
}

a { color: inherit; }

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ── Themes ─────────────────────────────────────────────── */

body.theme-sleep {
  --page-bg: #050b1c;
  --ink: #f4f7ff;
  --muted: rgba(214, 228, 255, 0.78);
  --accent: #b8d4ff;
  --accent-deep: #7ea8ff;
  --glow: rgba(130, 175, 255, 0.42);
  --card-line: rgba(176, 208, 255, 0.16);
  --nav-bg: rgba(8, 14, 32, 0.78);
  --nav-line: rgba(200, 220, 255, 0.18);
  --nav-ink: #f4f7ff;
  --chip-bg: rgba(255, 255, 255, 0.08);
  --hero-sky: url("/images/apps/sleep/night-sky.webp");
  --footer-hover: #b8d4ff;
}

body.theme-pedometer {
  --page-bg: #14081f;
  --ink: #fff7ff;
  --muted: rgba(255, 236, 255, 0.82);
  --accent: #e2c8ff;
  --accent-deep: #c9a0ff;
  --glow: rgba(176, 110, 255, 0.46);
  --card-line: rgba(226, 190, 255, 0.18);
  --nav-bg: rgba(28, 12, 48, 0.78);
  --nav-line: rgba(255, 220, 255, 0.16);
  --nav-ink: #fff7ff;
  --chip-bg: rgba(255, 255, 255, 0.1);
  --hero-sky: url("/images/apps/pedometer/dusk-purple.webp");
  --footer-hover: #e2c8ff;
}

/* ── Nav ────────────────────────────────────────────────── */

.companion-nav {
  position: fixed;
  top: clamp(16px, 2vw, 26px);
  left: 50%;
  z-index: 30;
  width: min(calc(100% - 44px), 1180px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  pointer-events: none;
}

.wordmark,
.nav-actions {
  min-height: 58px;
  border: 1px solid var(--nav-line);
  border-radius: 17px;
  background: var(--nav-bg);
  box-shadow: 0 14px 38px rgba(4, 8, 24, 0.35);
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
  pointer-events: auto;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0 1rem;
  color: var(--nav-ink);
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.wordmark img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.wordmark small {
  display: block;
  margin-top: 1px;
  font-size: 0.58rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.16em;
  opacity: 0.62;
}

.wordmark-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  padding: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-actions a {
  display: grid;
  min-width: 82px;
  min-height: 46px;
  place-items: center;
  padding: 0.1rem 0.95rem 0;
  border-radius: 13px;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-actions a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: translateY(-1px);
}

.nav-actions a.is-current {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.nav-actions .get-app {
  background: #fff;
  color: #0b1020;
}

.nav-actions .get-app:hover {
  background: #fff;
  color: #0b1020;
  transform: translateY(-1px);
}

body.theme-pedometer .nav-actions .get-app {
  color: #2a1048;
}

main,
.site-foot {
  width: min(100%, 1500px);
  margin-inline: auto;
}

/* ── Hero ───────────────────────────────────────────────── */

.companion-hero {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1fr);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(96px, 7vw, 112px) clamp(24px, 5vw, 80px) 0;
  border-radius: clamp(20px, 2vw, 30px);
  color: #fff;
  box-shadow: 0 24px 70px rgba(2, 6, 20, 0.45);
}

@media (min-width: 981px) {
  .companion-hero {
    min-height: clamp(780px, 82vh, 960px);
  }
}

.companion-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-sky);
  background-size: cover;
  background-position: center top;
}

.companion-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.theme-sleep .companion-hero::after {
  background: linear-gradient(180deg, rgba(4, 8, 24, 0.46) 0%, rgba(4, 10, 28, 0.12) 34%, transparent 56%);
}

.theme-pedometer .companion-hero::after {
  background:
    linear-gradient(180deg, rgba(18, 8, 40, 0.32) 0%, rgba(18, 8, 40, 0.08) 30%, transparent 52%),
    radial-gradient(circle at 80% 16%, rgba(180, 90, 255, 0.28), transparent 34%);
}

.starfield,
.dusk-orb,
.phone-halo {
  position: absolute;
  pointer-events: none;
}

.starfield {
  inset: 0;
  z-index: 1;
  background-image:
    radial-gradient(1.4px 1.4px at 8% 16%, rgba(255, 255, 255, 0.95), transparent),
    radial-gradient(1px 1px at 18% 38%, rgba(220, 235, 255, 0.75), transparent),
    radial-gradient(1.6px 1.6px at 27% 12%, #fff, transparent),
    radial-gradient(1px 1px at 41% 22%, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1.2px 1.2px at 58% 9%, rgba(200, 220, 255, 0.9), transparent),
    radial-gradient(1px 1px at 71% 28%, rgba(255, 255, 255, 0.55), transparent),
    radial-gradient(1.8px 1.8px at 86% 18%, #fff, transparent),
    radial-gradient(1px 1px at 93% 36%, rgba(180, 210, 255, 0.8), transparent),
    radial-gradient(1.3px 1.3px at 14% 68%, rgba(255, 255, 255, 0.55), transparent),
    radial-gradient(1px 1px at 48% 74%, rgba(210, 225, 255, 0.45), transparent),
    radial-gradient(1.5px 1.5px at 77% 62%, rgba(255, 255, 255, 0.5), transparent);
  animation: twinkle 7s ease-in-out infinite;
}

.dusk-orb {
  z-index: 1;
  top: -8%;
  right: -6%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 170, 110, 0.42), rgba(180, 80, 255, 0.18) 42%, transparent 70%);
  filter: blur(8px);
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 620px;
}

.companion-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.45rem, 4.1vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.012em;
  line-height: 0.9;
  text-transform: uppercase;
}

.companion-hero h1 span,
.companion-hero h1 strong {
  display: block;
}

.companion-hero h1 span {
  font-size: 0.52em;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.companion-hero h1 strong {
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.018em;
  margin-left: clamp(1.7rem, 4vw, 4.2rem);
  color: var(--accent);
}

.hero-word {
  display: inline-block;
  font: inherit;
  font-style: inherit;
  opacity: 0;
  animation: hero-word-in 420ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(120ms + var(--word-order) * 150ms);
  will-change: opacity, transform, filter;
}

.hero-intro {
  max-width: 460px;
  margin: 1.25rem 0 1.5rem;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.2vw, 1.2rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.45;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.store-links img {
  display: block;
  height: 48px;
  width: auto;
}

.ios-note,
.android-soon {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 650;
}

.android-soon {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  z-index: 3;
  align-self: stretch;
  min-height: 380px;
}

.phone-halo {
  z-index: 1;
  left: 50%;
  bottom: -22%;
  width: min(92%, 620px);
  height: 78%;
  border-radius: 50%;
  filter: blur(18px);
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--glow), transparent 72%);
}

.hero-phone {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: -24%;
  width: min(72%, 380px);
  height: auto;
  transform: translateX(-50%);
  animation: float-phone 7s ease-in-out infinite;
}

@keyframes float-phone {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}

@keyframes hero-word-in {
  from {
    opacity: 0;
    filter: blur(7px);
    transform: translateY(0.48em) rotate(2deg);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) rotate(0);
  }
}

@keyframes feature-snake-bounce {
  0%, 42%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-7px) scale(1.07);
    opacity: 1;
  }
  58% {
    transform: translateY(0) scale(1);
    opacity: 0.9;
  }
}

/* ── Ticker ─────────────────────────────────────────────── */

.feature-ticker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.65rem, 2vw, 2.1rem);
  min-height: 88px;
  margin-top: 14px;
  overflow: hidden;
  padding: 0 1.4rem;
  border: 1px solid var(--card-line);
  border-radius: 22px;
  background: color-mix(in srgb, var(--page-bg) 72%, #000);
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.68rem, 1.2vw, 0.84rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.feature-ticker > * {
  display: inline-block;
  transform-origin: 50% 80%;
  animation: feature-snake-bounce 4.2s cubic-bezier(0.34, 1.4, 0.64, 1) infinite;
}

.feature-ticker > :nth-child(1) { animation-delay: 0s; }
.feature-ticker > :nth-child(2) { animation-delay: 0.12s; }
.feature-ticker > :nth-child(3) { animation-delay: 0.24s; }
.feature-ticker > :nth-child(4) { animation-delay: 0.36s; }
.feature-ticker > :nth-child(5) { animation-delay: 0.48s; }
.feature-ticker > :nth-child(6) { animation-delay: 0.6s; }
.feature-ticker > :nth-child(7) { animation-delay: 0.72s; }
.feature-ticker > :nth-child(8) { animation-delay: 0.84s; }
.feature-ticker > :nth-child(9) { animation-delay: 0.96s; }

.feature-ticker i {
  font-style: normal;
  color: var(--accent);
  font-size: 1.15em;
}

/* ── Features ───────────────────────────────────────────── */

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 18px;
  padding-top: clamp(48px, 6vw, 88px);
}

.feature-heading {
  grid-column: 1 / -1;
  max-width: 760px;
  padding: 0 8px 8px;
}

.feature-heading h2,
.final-cta h2,
.faq-heading h2,
.sister-block h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.96;
  text-transform: uppercase;
}

.final-cta h2 strong,
.faq-heading h2 strong {
  color: var(--accent);
  font-style: italic;
  font-weight: 900;
}

.feature-card h3 {
  max-width: 340px;
  margin: 0.5rem 0 0.7rem;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 620px;
  overflow: hidden;
  padding: 32px 32px 0;
  border: 1px solid var(--card-line);
  border-radius: clamp(20px, 2vw, 28px);
  color: #fff;
  box-shadow: 0 18px 48px rgba(4, 8, 24, 0.28);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center top;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.feature-card > div {
  position: relative;
  z-index: 3;
}

.feature-card p {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
}

.card-number {
  display: block;
  font-size: clamp(1.85rem, 2.8vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--accent);
}

.feature-card img {
  position: relative;
  z-index: 2;
  display: block;
  width: min(48%, 220px);
  height: auto;
  margin: 36px auto -18%;
  filter: drop-shadow(0 28px 36px rgba(4, 8, 24, 0.45));
  pointer-events: none;
}

.sleep-activity::before,
.sleep-stages::before,
.sleep-nights::before,
.sleep-friends::before {
  background-image: url("/images/apps/sleep/night-sky.webp");
}

.sleep-activity::before { background-position: center 8%; }
.sleep-stages::before { background-position: center 28%; }
.sleep-nights::before { background-position: center 52%; filter: brightness(0.78); }
.sleep-friends::before { background-position: center 76%; }

.sleep-activity::after {
  background: linear-gradient(180deg, rgba(4, 10, 28, 0.46) 0%, transparent 52%);
}
.sleep-stages::after {
  background: linear-gradient(180deg, rgba(4, 10, 28, 0.38) 0%, transparent 50%);
}
.sleep-nights::after {
  background: linear-gradient(180deg, rgba(4, 8, 22, 0.5) 0%, transparent 48%);
}
.sleep-friends::after {
  background: linear-gradient(180deg, rgba(4, 10, 28, 0.42) 0%, transparent 50%);
}

.pedo-activity::before { background-image: url("/images/apps/pedometer/twilight-lavender.webp"); }
.pedo-live::before { background-image: url("/images/apps/pedometer/night-lilac.webp"); }
.pedo-friends::before { background-image: url("/images/apps/pedometer/dusk-purple.webp"); }
.pedo-streak::before { background-image: url("/images/apps/pedometer/night-lilac.webp"); }

.pedo-activity::after {
  background:
    linear-gradient(180deg, rgba(40, 16, 70, 0.42) 0%, transparent 50%),
    radial-gradient(circle at 16% 70%, rgba(120, 70, 220, 0.28), transparent 36%);
}
.pedo-live::after {
  background:
    linear-gradient(180deg, rgba(8, 10, 32, 0.38) 0%, transparent 50%),
    radial-gradient(circle at 86% 16%, rgba(140, 170, 255, 0.24), transparent 32%);
}
.pedo-friends::after {
  background:
    linear-gradient(180deg, rgba(22, 8, 40, 0.38) 0%, transparent 48%),
    radial-gradient(circle at 18% 78%, rgba(255, 120, 80, 0.16), transparent 34%);
}
.pedo-streak::after {
  background:
    linear-gradient(180deg, rgba(10, 12, 36, 0.3) 0%, transparent 46%),
    radial-gradient(circle at 78% 14%, rgba(255, 180, 90, 0.22), transparent 32%);
}

.sleep-activity img,
.pedo-activity img { transform: rotate(-2deg); }
.sleep-stages img,
.pedo-live img { transform: rotate(2deg); }
.pedo-streak img { transform: rotate(2deg); }

/* ── Sister apps ────────────────────────────────────────── */

.sister-block {
  margin-top: clamp(56px, 7vw, 96px);
}

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

.sister-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  min-height: 280px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--card-line);
  border-radius: 26px;
  text-decoration: none;
  background-size: cover;
  background-position: center;
  transition: transform 180ms ease, border-color 180ms ease;
}

.sister-arrow {
  position: absolute;
  top: 18px;
  right: 16px;
  z-index: 2;
  display: grid;
  place-items: center;
  color: #fff;
  background: none;
  box-shadow: none;
}

.sister-arrow svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sister-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.28);
}

.sister-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.sister-fitcoin h3 {
  font-size: 2.15rem;
}

.sister-card p {
  max-width: 280px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
}

.sister-sleep { background-image: linear-gradient(180deg, rgba(4, 8, 24, 0.2), rgba(4, 8, 24, 0.45)), url("/images/apps/sleep/night-sky.webp"); }
.sister-pedo { background-image: linear-gradient(180deg, rgba(20, 8, 40, 0.15), rgba(20, 8, 40, 0.42)), url("/images/apps/pedometer/dusk-purple.webp"); }
.sister-fitcoin {
  background:
    radial-gradient(circle at 80% 30%, rgba(29, 204, 230, 0.5), transparent 32%),
    linear-gradient(122deg, #18d5c2 0%, #15c2d0 40%, #2789ff 100%);
}

.sister-card > div {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  z-index: 2;
}

.sister-card img {
  grid-column: 2;
  grid-row: 1;
  width: 150px;
  height: auto;
  margin-bottom: -48px;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.35));
}

/* ── FAQ ────────────────────────────────────────────────── */

.faq-block {
  margin-top: clamp(48px, 6vw, 88px);
  padding: clamp(2.2rem, 4vw, 3.6rem) clamp(1.2rem, 3vw, 2.4rem);
  border-radius: clamp(20px, 2vw, 30px);
  background:
    radial-gradient(circle at 12% 12%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 32%),
    color-mix(in srgb, var(--page-bg) 82%, #000);
  border: 1px solid var(--card-line);
}

.faq-heading h2 {
  margin-bottom: 1.4rem;
}

.faq-shell {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(280px, 1.18fr);
  gap: 1.1rem;
  min-height: 420px;
}

.faq-question-list {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq-question-list button {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 0.7rem;
  align-items: center;
  width: 100%;
  padding: 1rem 0.8rem;
  border: 0;
  border-bottom: 1px solid var(--card-line);
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  text-align: left;
  cursor: pointer;
  transition: color 200ms ease, padding-left 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-question-list button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 0;
  border-radius: 99px;
  background: var(--accent);
  transform: translateY(-50%);
  transition: height 220ms ease;
}

.faq-question-list button:hover,
.faq-question-list button.is-active {
  padding-left: 1.1rem;
  color: #fff;
}

.faq-question-list button.is-active::before {
  height: 58%;
}

.faq-question-list button > span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.faq-question-list button.is-active > span {
  color: var(--accent);
}

.faq-question-list button strong {
  font-size: clamp(0.78rem, 1vw, 0.95rem);
  font-weight: 750;
  line-height: 1.25;
}

.faq-answer-panel {
  --faq-accent-a: #3d6dff;
  --faq-accent-b: #7ea8ff;
  position: relative;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3.2rem);
  border-radius: 28px;
  outline: none;
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 255, 255, 0.22), transparent 24%),
    linear-gradient(145deg, var(--faq-accent-a), var(--faq-accent-b));
  color: #fff;
  box-shadow: 0 28px 65px rgba(20, 30, 80, 0.28);
  transition: background 320ms ease, transform 320ms ease;
}

body.theme-pedometer .faq-answer-panel {
  --faq-accent-a: #7c3aed;
  --faq-accent-b: #db2777;
}

.faq-answer-panel.is-changing {
  transform: scale(0.985);
}

.faq-answer-count {
  position: absolute;
  top: 1.4rem;
  left: 1.5rem;
  z-index: 3;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.faq-answer-mark {
  position: absolute;
  top: 8%;
  right: 8%;
  z-index: 1;
  color: rgba(255, 255, 255, 0.16);
  font-size: clamp(7rem, 12vw, 12rem);
  font-weight: 900;
  line-height: 1;
  rotate: 8deg;
}

.faq-answer-panel h3,
.faq-answer-panel > p {
  position: relative;
  z-index: 3;
  transition: opacity 140ms ease, translate 240ms ease;
}

.faq-answer-panel.is-changing h3,
.faq-answer-panel.is-changing > p {
  opacity: 0;
  translate: 0 8px;
}

.faq-answer-panel h3 {
  max-width: 460px;
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 1.95rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-transform: uppercase;
}

.faq-answer-panel > p {
  max-width: 520px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.82rem, 1vw, 0.98rem);
  line-height: 1.55;
}

/* ── Final CTA ──────────────────────────────────────────── */

.final-cta {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  margin-top: clamp(64px, 8vw, 110px);
  padding: clamp(42px, 6vw, 88px);
  border-radius: clamp(20px, 2vw, 30px);
  color: #fff;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--hero-sky);
  background-size: cover;
  background-position: center;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(4, 8, 24, 0.55), rgba(4, 8, 24, 0.12) 70%);
}

.theme-pedometer .final-cta::after {
  background: linear-gradient(90deg, rgba(20, 8, 40, 0.5), rgba(20, 8, 40, 0.1) 70%);
}

.final-cta > * { position: relative; z-index: 2; }

.final-cta h2 span,
.final-cta h2 strong {
  display: block;
}

.final-cta h2 strong {
  font-size: 1.18em;
}

.final-cta p.lede {
  max-width: 460px;
  margin: 0.9rem 0 1.4rem;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 500;
  line-height: 1.45;
}

.cta-phones {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.cta-phones img {
  width: 190px;
  height: auto;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.4));
}

.cta-phones img:first-child { transform: rotate(-6deg) translateY(18px); }
.cta-phones img:last-child { transform: rotate(7deg); }

/* ── Footer ─────────────────────────────────────────────── */

.site-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 28px 10px 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  font-weight: 600;
}

.site-foot a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.site-foot a:hover { color: var(--footer-hover); }

.site-foot nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.footer-brand img {
  width: 26px;
  height: 26px;
}

/* ── Responsive ─────────────────────────────────────────── */

@media (max-width: 980px) {
  .companion-hero {
    display: block;
    min-height: 780px;
    max-height: none;
    padding: 108px 22px 0;
  }

  .hero-copy {
    position: relative;
    z-index: 4;
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
  }

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

  .store-links {
    justify-content: center;
  }

  .hero-visual {
    position: absolute;
    inset: 52% 0 -16% 0;
    min-height: 0;
    z-index: 3;
  }

  .hero-phone {
    top: 0;
    bottom: auto;
    width: 210px;
  }

  .phone-halo {
    width: 280px;
    height: 72%;
    bottom: 8%;
  }

  .feature-grid,
  .sister-grid,
  .final-cta,
  .faq-shell {
    grid-template-columns: 1fr;
  }

  .companion-hero h1 strong {
    margin-left: 0;
  }

  .faq-question-list {
    flex-direction: row;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .faq-question-list::-webkit-scrollbar { display: none; }

  .faq-question-list button {
    flex: 0 0 200px;
  }

  .faq-answer-panel {
    min-height: 280px;
  }

  .feature-card { min-height: 560px; }

  .feature-card img {
    width: min(52%, 200px);
    margin-top: 28px;
    margin-bottom: -14%;
  }

  .cta-phones { justify-content: center; }
  .cta-phones img { width: 150px; }

  .nav-actions a:not(.get-app) { display: none; }
}

@media (max-width: 640px) {
  body { padding: 10px; }

  .companion-nav {
    top: 12px;
    width: calc(100% - 20px);
  }

  .wordmark {
    padding: 0 0.75rem;
    font-size: 0.92rem;
  }

  .wordmark img { width: 28px; height: 28px; }

  .companion-hero h1 { font-size: clamp(2.05rem, 10vw, 3.15rem); }

  .hero-phone { width: 190px; }

  .feature-ticker {
    justify-content: flex-start;
    min-height: 76px;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    gap: 0.55rem;
  }

  .site-foot {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-phone {
    animation: none;
    transform: translateX(-50%);
  }
  .starfield,
  .hero-word,
  .feature-ticker > * { animation: none; opacity: 1; filter: none; transform: none; }
}
