:root {
  color-scheme: light;
  --ink: #07111f;
  --ink-soft: #0d1b2e;
  --text: #101c2e;
  --muted: #5d6b7d;
  --muted-dark: #a8bad0;
  --line: #dbe5f1;
  --line-dark: rgba(180, 208, 240, 0.2);
  --blue: #156cf7;
  --cyan: #0aa7e8;
  --mint: #30d8b0;
  --white: #ffffff;
  --max: 1240px;
  --section-gutter: 24px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body, button, summary { font-family: inherit; }

a {
  color: inherit;
  text-decoration: none;
}

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

figure { margin: 0; }

/* Approved 2026-09-11 revision: full-bleed phone video, open desktop layout. */
.promo-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 318px;
  grid-template-areas: ". media" "copy media" "store media" ". media";
  grid-template-rows: 1fr auto auto 1.4fr;
  gap: 0 48px;
  margin: 28px 0 36px;
  padding: 20px 52px;
  background: #fff;
  scroll-margin-top: 24px;
}
.promo-copy { grid-area: copy; align-self: end; min-width: 0; max-width: 660px; }
.promo-copy h3 { margin: 16px 0 18px; font-size: 36px; line-height: 1.2; letter-spacing: -0.025em; font-weight: 650; }
.promo-copy p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.promo-copy p > span { display: block; }
.promo-copy .promo-eyebrow { color: var(--blue); font-size: 13px; font-weight: 650; line-height: 1.6; }
.promo-store { grid-area: store; align-self: start; justify-self: start; margin-top: 24px; }
.app-store-badge { display: inline-flex; align-items: center; width: max-content; max-width: 100%; min-height: 44px; line-height: 0; }
.app-store-badge img { display: block; width: auto; height: 44px; max-width: 100%; }
.promo-figure { grid-area: media; min-width: 0; }
.promo-figure video {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: #123c72;
}
@media (min-width: 621px) and (max-width: 960px) {
  .promo-band { grid-template-columns: minmax(0, 1fr) minmax(0, min(44%, 318px)); column-gap: 32px; padding-inline: 0; }
  .promo-copy h3 { font-size: 28px; }
}
@media (max-width: 620px) {
  .promo-band { grid-template-columns: minmax(0, 1fr); grid-template-areas: "copy" "media" "store"; grid-template-rows: auto; gap: 16px; padding: 24px 0; margin: 24px calc(-1 * var(--section-gutter)); }
  .promo-copy { padding-inline: 20px; max-width: none; }
  .promo-copy h3 { margin-block: 8px 12px; font-size: 26px; }
  .promo-copy p { font-size: 15px; line-height: 1.6; }
  .promo-copy .promo-eyebrow { font-size: 12px; }
  .promo-figure { justify-self: stretch; }
  .promo-store { margin: 8px 20px 0; }
}

button, a, summary { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid rgba(48, 216, 176, 0.9);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
}

.nav-shell {
  width: min(var(--max), calc(100% - 48px));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid rgba(180, 208, 240, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  font-size: 22px;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(19, 116, 244, 0.22);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.8vw, 38px);
  margin: 0 auto;
  font-size: 15px;
  font-weight: 560;
  color: #dce8f7;
}

.desktop-nav a,
.footer-links a,
.language-menu a { transition: color 180ms ease; }

.desktop-nav a:hover,
.footer-links a:hover,
.language-menu a:hover { color: var(--mint); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

details { position: relative; }

summary {
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker { display: none; }

.language-summary,
.mobile-summary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(220, 232, 247, 0.34);
  border-radius: 12px;
  color: #eef6ff;
  font-size: 14px;
  font-weight: 620;
}

.language-summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 172px;
  padding: 8px;
  border: 1px solid rgba(220, 232, 247, 0.16);
  border-radius: 14px;
  background: rgba(7, 17, 31, 0.98);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.language-menu a,
.language-menu span {
  display: block;
  padding: 9px 10px;
  border-radius: 9px;
  font-size: 14px;
}

.language-menu span {
  background: rgba(21, 108, 247, 0.16);
  color: #f4f9ff;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 15px;
  font-weight: 680;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  background: linear-gradient(135deg, #0f8df8, var(--blue));
  color: var(--white);
  box-shadow: 0 12px 30px rgba(21, 108, 247, 0.28);
}

.button-secondary {
  border-color: rgba(230, 241, 255, 0.68);
  background: rgba(8, 23, 41, 0.4);
  color: var(--white);
}

.button-light {
  border-color: #b9d5f6;
  background: rgba(255, 255, 255, 0.78);
  color: var(--blue);
}

.button-ghost {
  border-color: var(--line);
  background: var(--white);
  color: var(--text);
}

.header-download { min-height: 44px; padding-inline: 18px; }

.mobile-menu { display: none; }

.hero {
  min-height: 850px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 30%, rgba(19, 116, 244, 0.19), transparent 31%),
    radial-gradient(circle at 50% 53%, rgba(10, 167, 232, 0.11), transparent 24%),
    var(--ink);
  color: var(--white);
}

.hero-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 118px auto 56px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: 34px;
}

.hero-copy { position: relative; z-index: 3; }

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(52px, 5.3vw, 78px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-weight: 720;
}

.hero-lede {
  max-width: 610px;
  margin: 28px 0 0;
  color: #b7c8dc;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.72;
}

.hero-actions,
.section-actions,
.cta-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-note {
  margin: 24px 0 0;
  color: #8fa8c5;
  font-size: 13px;
}

.hero-art {
  position: relative;
  height: 650px;
}

.hero-mark {
  position: absolute;
  z-index: 4;
  top: 220px;
  left: 2%;
  width: clamp(130px, 12vw, 184px);
  border-radius: 25%;
  filter: drop-shadow(0 28px 50px rgba(17, 106, 239, 0.25));
}

.device {
  position: absolute;
  overflow: hidden;
  border: 9px solid #111820;
  border-radius: 54px;
  background: #f7f8fb;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.42);
}

.device::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 50%;
  width: 27%;
  height: 25px;
  border-radius: 18px;
  background: #07090b;
  transform: translateX(-50%);
}

.device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-device-primary {
  z-index: 3;
  top: 0;
  left: 31%;
  width: 355px;
  height: 770px;
  transform: rotate(-2deg);
}

.hero-device-secondary {
  z-index: 2;
  top: 92px;
  left: 72%;
  width: 310px;
  height: 670px;
  opacity: 0.86;
  transform: rotate(5deg);
}

.section {
  padding: 126px var(--section-gutter);
  background: var(--white);
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 4.8vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-weight: 720;
}

.section-heading .accent { color: var(--blue); }

.section-lede {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 22px);
}

.feature-index {
  margin: 54px 0 46px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-index span {
  position: relative;
  padding: 20px 12px;
  text-align: center;
  color: #26374d;
  font-size: 14px;
  font-weight: 650;
}

.feature-index span + span::before {
  content: "";
  position: absolute;
  top: 25%;
  bottom: 25%;
  left: 0;
  width: 1px;
  background: var(--line);
}

.screen-stage {
  position: relative;
  height: 650px;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(135deg, #0d2945, #145f98 58%, #22b997);
}

.screen-slide,
.hostbox-carousel,
.hostbox-slide {
  display: contents;
}

.media-pagination,
.hostbox-media-tabs {
  display: none;
}

.screen-device {
  position: absolute;
  width: 300px;
  height: 650px;
  bottom: -66px;
  border-width: 8px;
  border-radius: 48px;
}

.screen-slide:nth-child(1) .screen-device { left: 8%; transform: rotate(-5deg); }
.screen-slide:nth-child(2) .screen-device { left: 31%; bottom: -26px; z-index: 2; }
.screen-slide:nth-child(3) .screen-device { right: 30%; bottom: -34px; z-index: 2; }
.screen-slide:nth-child(4) .screen-device { right: 7%; transform: rotate(5deg); }

.ecosystem {
  padding-top: 150px;
  background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.flow-rail {
  margin-top: 58px;
  padding: 27px 34px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  border: 1px solid #bad8fb;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
}

.flow-node {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-weight: 680;
}

.flow-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid #bdd7f7;
  border-radius: 14px;
  color: var(--blue);
  font-size: 20px;
  font-weight: 800;
}

.flow-line {
  width: 80px;
  height: 1px;
  background: repeating-linear-gradient(90deg, #6eb2ff 0 5px, transparent 5px 9px);
}

.hostbox-band {
  margin-top: 30px;
  min-height: 570px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  overflow: hidden;
  border: 1px solid #c8e4f6;
  border-radius: 34px;
  background: linear-gradient(112deg, #e9f5ff 0%, #f7fbff 52%, #e9fff8 100%);
}

.hostbox-media {
  position: relative;
  height: 570px;
}

.hostbox-media .device {
  width: 280px;
  height: 606px;
  top: 30px;
  border-width: 8px;
  border-radius: 46px;
}

.hostbox-slide:first-child .device { left: 8%; transform: rotate(-3deg); }
.hostbox-slide:last-child .device { left: 48%; transform: rotate(2deg); }

.hostbox-copy { padding: 66px 70px 66px 24px; }

.product-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
}

.product-lockup img {
  width: 78px;
  height: 78px;
  border-radius: 19px;
}

.product-lockup h3 {
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.product-subtitle {
  margin: 8px 0 0;
  color: var(--blue);
  font-size: 20px;
  font-weight: 680;
}

.product-body {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.companion-band {
  margin-top: 22px;
  padding: 52px 58px;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 52px;
  border: 1px solid #1c3553;
  border-radius: 30px;
  background: var(--ink);
  color: var(--white);
}

.companion-brand {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(10, 167, 232, 0.28), rgba(48, 216, 176, 0.25));
  color: var(--mint);
  font-size: 29px;
  font-weight: 800;
}

.companion-copy h3 {
  margin: 0;
  font-size: 34px;
  letter-spacing: -0.03em;
}

.companion-copy .product-subtitle { color: var(--mint); }
.companion-copy .product-body { color: var(--muted-dark); }

.architecture {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 10px;
}

.architecture-node {
  min-height: 102px;
  display: grid;
  place-items: center;
  padding: 12px 8px;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  color: #dcecff;
  text-align: center;
  font-size: 13px;
}

.architecture-arrow { color: var(--mint); text-align: center; }

.privacy {
  padding-block: 150px;
}

.privacy-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 90px;
}

.privacy-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid #acd0fb;
  border-radius: 17px;
  color: var(--blue);
  font-size: 24px;
  font-weight: 800;
}

.trust-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.trust-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 20px;
  min-height: 112px;
  border-bottom: 1px solid var(--line);
  font-size: 19px;
  font-weight: 650;
}

.trust-number {
  color: var(--blue);
  font-size: 14px;
  font-weight: 760;
}

.final-cta {
  padding: 118px 24px;
  background:
    linear-gradient(90deg, rgba(21, 108, 247, 0.16), transparent 35%),
    var(--ink);
  color: var(--white);
  border-top: 3px solid var(--cyan);
}

.cta-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}

.final-cta .section-heading { max-width: 850px; }
.final-cta .section-lede { color: var(--muted-dark); }
.cta-actions { margin: 0; justify-content: flex-end; }

.site-footer {
  padding: 60px 24px 44px;
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(180, 208, 240, 0.14);
}

.footer-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  color: #b8c9dd;
  font-size: 14px;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  border-top: 1px solid rgba(180, 208, 240, 0.14);
  color: #8197b1;
  font-size: 12px;
  line-height: 1.65;
}

.footer-bottom p { max-width: 850px; margin: 0; }

.legal-links { display: flex; gap: 18px; }

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .nav-shell { gap: 18px; }
  .nav-actions { margin-left: auto; }
  .mobile-menu { display: block; }
  .mobile-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(300px, calc(100vw - 40px));
    padding: 10px;
    border: 1px solid rgba(220, 232, 247, 0.16);
    border-radius: 16px;
    background: rgba(7, 17, 31, 0.98);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  }
  .mobile-panel a { display: block; padding: 11px 12px; border-radius: 10px; }
  .hero-inner { grid-template-columns: 0.9fr 1.1fr; }
  .hero-device-secondary { display: none; }
  .hero-device-primary { left: 28%; }
  .hero-mark { left: 0; }
  .hostbox-copy { padding-right: 42px; }
  .companion-band { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  body { font-size: 16px; }
  .nav-shell { width: min(100% - 28px, var(--max)); min-height: 74px; }
  .brand img { width: 40px; height: 40px; }
  .brand span { font-size: 20px; }
  .header-download { display: none; }
  .language-summary { padding-inline: 11px; }
  .language-summary .language-name { display: none; }
  .hero { min-height: auto; }
  .hero-inner {
    width: min(100% - 36px, var(--max));
    margin-top: 110px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero h1 { font-size: clamp(46px, 13vw, 64px); }
  .hero-lede { font-size: 18px; }
  .hero-art { height: 620px; margin-top: 12px; }
  .hero-mark { top: 172px; left: 4%; width: 120px; }
  .hero-device-primary { left: 27%; width: 335px; height: 725px; }
  .section { --section-gutter: 18px; padding: 92px var(--section-gutter); }
  .section-heading { font-size: clamp(38px, 10vw, 56px); }
  .feature-index { grid-template-columns: repeat(3, 1fr); }
  .feature-index span:nth-child(4)::before { display: none; }
  .feature-index span:nth-child(-n + 3) { border-bottom: 1px solid var(--line); }
  .screen-stage { height: 540px; }
  .screen-device { width: 252px; height: 546px; }
  .screen-slide:nth-child(1) .screen-device { left: -9%; }
  .screen-slide:nth-child(2) .screen-device { left: 25%; }
  .screen-slide:nth-child(3) .screen-device { right: 23%; }
  .screen-slide:nth-child(4) .screen-device { right: -10%; }
  .flow-rail { grid-template-columns: 1fr; justify-items: stretch; }
  .flow-node { justify-content: flex-start; }
  .flow-line { width: 1px; height: 26px; margin-left: 23px; background: repeating-linear-gradient(0deg, #6eb2ff 0 5px, transparent 5px 9px); }
  .hostbox-band { grid-template-columns: 1fr; }
  .hostbox-media { height: 500px; }
  .hostbox-media .device { width: 235px; height: 510px; }
  .hostbox-copy { padding: 52px 30px; }
  .architecture { grid-template-columns: 1fr; }
  .architecture-arrow { transform: rotate(90deg); }
  .privacy-grid { grid-template-columns: 1fr; gap: 50px; }
  .cta-grid { grid-template-columns: 1fr; align-items: start; }
  .cta-actions { justify-content: flex-start; }
  .footer-top { align-items: flex-start; flex-direction: column; }
  .footer-bottom { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .nav-shell { min-height: 64px; }
  .brand { gap: 9px; }
  .brand img { width: 34px; height: 34px; border-radius: 10px; }
  .brand span { font-size: 18px; }
  .nav-actions { gap: 6px; }
  .language-summary,
  .mobile-summary { min-height: 38px; padding-inline: 9px; font-size: 13px; }
  .hero-inner {
    width: calc(100% - 28px);
    margin-top: 92px;
    gap: 12px;
  }
  .hero h1 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -0.04em;
  }
  .hero-lede {
    margin-top: 16px;
    font-size: 15.5px;
    line-height: 1.65;
  }
  .hero-actions,
  .section-actions,
  .cta-actions { align-items: stretch; flex-direction: column; }
  .hero-actions { gap: 10px; margin-top: 26px; }
  .button {
    width: 100%;
    min-height: 44px;
    padding-inline: 18px;
    border-radius: 12px;
    font-size: 14px;
  }
  .hero-note { margin-top: 16px; font-size: 11.5px; line-height: 1.55; }
  .hero-art {
    height: auto;
    margin-top: 24px;
    display: grid;
    place-items: start center;
  }
  .hero-mark { display: none; }
  .hero-device-primary {
    position: relative;
    inset: auto;
    width: min(228px, 64vw);
    height: auto;
    aspect-ratio: 828 / 1800;
    border-width: 7px;
    border-radius: 38px;
    transform: none;
  }
  .section { padding-block: 76px; }
  .section-heading { font-size: 38px; }
  .section-lede { font-size: 17px; }
  .feature-index { margin-top: 38px; }
  .feature-index span { padding: 16px 6px; font-size: 13px; }
  .device::before { display: none; }
  .device img { object-fit: contain; }
  .screen-stage {
    height: auto;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 24px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overscroll-behavior-inline: contain;
    touch-action: pan-x pan-y pinch-zoom;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .screen-stage::-webkit-scrollbar,
  .hostbox-carousel::-webkit-scrollbar { display: none; }
  .screen-slide {
    min-width: 100%;
    padding: 22px 0;
    display: grid;
    flex: 0 0 100%;
    place-items: center;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
  .screen-device,
  .screen-slide:nth-child(n) .screen-device {
    position: relative;
    inset: auto;
    width: min(224px, 63vw);
    height: auto;
    aspect-ratio: 828 / 1800;
    display: block;
    border-width: 7px;
    border-radius: 38px;
    transform: none;
  }
  .media-pagination {
    margin: 16px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
  }
  .media-tab {
    min-width: 64px;
    min-height: 44px;
    padding: 5px 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #77869a;
    font-size: 12px;
    font-weight: 650;
    cursor: pointer;
  }
  .media-tab[aria-pressed="true"] {
    color: var(--blue);
    background: #edf5ff;
  }
  .media-dot {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: #aab7c7;
    transition: width 180ms ease, background 180ms ease;
  }
  .media-tab[aria-pressed="true"] .media-dot {
    width: 20px;
    background: var(--blue);
  }
  .flow-rail { padding: 22px; }
  .hostbox-band { border-radius: 24px; }
  .hostbox-media {
    height: auto;
    padding-top: 18px;
  }
  .hostbox-media-tabs {
    width: min(250px, calc(100% - 44px));
    margin: 0 auto 8px;
    padding: 4px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    border: 1px solid #c9dcef;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.66);
  }
  .hostbox-media-tab {
    min-height: 36px;
    padding: 0 12px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: #5a6c82;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
  }
  .hostbox-media-tab[aria-pressed="true"] {
    background: var(--white);
    color: var(--blue);
    box-shadow: 0 5px 15px rgba(40, 83, 130, 0.12);
  }
  .hostbox-carousel {
    position: relative;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overscroll-behavior-inline: contain;
    touch-action: pan-x pan-y pinch-zoom;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .hostbox-slide {
    min-width: 100%;
    padding: 12px 0 22px;
    display: grid;
    flex: 0 0 100%;
    place-items: center;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
  .hostbox-media .device,
  .hostbox-slide:nth-child(n) .device {
    position: relative;
    inset: auto;
    width: min(224px, 63vw);
    height: auto;
    aspect-ratio: 828 / 1800;
    border-width: 7px;
    border-radius: 38px;
    transform: none;
  }
  .hostbox-copy { padding: 42px 22px; }
  .product-lockup img { width: 64px; height: 64px; }
  .product-lockup h3 { font-size: 40px; }
  .product-subtitle { font-size: 18px; }
  .product-body { font-size: 16px; }
  .companion-band { padding: 40px 22px; border-radius: 24px; }
  .trust-list li { min-height: 96px; font-size: 17px; }
  .final-cta { padding-block: 84px; }
  .footer-links { display: grid; grid-template-columns: repeat(2, 1fr); width: 100%; }
  .legal-links { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
