@font-face {
  font-family: Hoedex Rounded;
  src: local("SF Pro Rounded"), local("SFProRounded-Regular");
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --paper: #f7fafb;
  --white: #fff;
  --ink: #203e4c;
  --muted: #5b717c;
  --blue: #0878b5;
  --sky: #1aa6ef;
  --line: #dce6eb;
  --green: #59cc0d;
  --rounded:
    "Hoedex Rounded", ui-rounded, "SF Pro Rounded", -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 6px;
}
::selection {
  background: #bce7fc;
  color: #153849;
}
.wrap {
  width: min(1184px, calc(100% - 80px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  background: white;
  padding: 12px 18px;
  border-radius: 12px;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 250, 251, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: var(--rounded);
  font-size: 32px;
  font-weight: 850;
  letter-spacing: -1.6px;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.brand img {
  border-radius: 11px;
}
.nav-links {
  display: flex;
  gap: 36px;
  margin-left: 44px;
  font-size: 14px;
  font-weight: 500;
  color: #526b77;
}
.nav-links a {
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--blue);
}
.nav-cta {
  font-size: 14px;
  font-weight: 650;
  padding: 13px 20px;
  border: 1px solid #cddde5;
  border-radius: 100px;
  display: flex;
  gap: 18px;
  align-items: center;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.nav-cta:hover {
  background: white;
  border-color: var(--blue);
}
.hero {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  align-items: center;
  min-height: 742px;
  padding-bottom: 48px;
  gap: 16px;
}
.hero-copy {
  padding-block: 46px;
  position: relative;
  z-index: 2;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 2.3px;
  font-weight: 650;
  line-height: 1.6;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
}
.tiny-globe {
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: var(--rounded);
}
h1 {
  font-size: clamp(56px, 5.8vw, 82px);
  line-height: 1.03;
  letter-spacing: -4px;
  font-weight: 760;
  margin-bottom: 28px;
}
h1 span {
  color: var(--blue);
}
.hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  letter-spacing: -0.2px;
  margin-bottom: 30px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.button {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 54px;
  padding: 16px 25px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 650;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    background 0.25s;
  cursor: pointer;
}
.button-primary {
  color: white;
  background: var(--blue);
  box-shadow: 0 6px 15px #0878b512;
}
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px #0878b526;
}
.button span {
  font-size: 20px;
  line-height: 1;
}
.coming-soon {
  font-size: 12px;
  color: var(--muted);
}
.hero-note {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: #69808a;
  margin-top: 22px;
}
.hero-note svg {
  width: 15px;
  height: 15px;
}
.hero-visual {
  position: relative;
  height: 678px;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual:before {
  content: "";
  position: absolute;
  z-index: -2;
  width: 560px;
  height: 580px;
  max-width: 120%;
  background: radial-gradient(
    ellipse,
    #d6eeff 0%,
    #e6f3fa 35%,
    transparent 69%
  );
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid #d2e5ef;
  border-radius: 50%;
  width: 480px;
  height: 480px;
  transform: rotate(-22deg) scaleX(1.17);
}
.orbit-two {
  width: 590px;
  height: 590px;
  opacity: 0.5;
}
.phone {
  padding: 6px;
  border: 1px solid #bdc9d0;
  border-radius: 43px;
  background: linear-gradient(
    130deg,
    #fafbfc,
    #9cabb4 42%,
    #ecf3f5 70%,
    #d4dce0
  );
  box-shadow:
    0 28px 42px -19px #193a5460,
    0 2px 7px #254f6520;
  overflow: hidden;
  position: absolute;
  will-change: transform;
}
.phone img {
  border-radius: 37px;
  width: 100%;
  height: auto;
  border: 3px solid #132c39;
}
.phone-front {
  width: 272px;
  transform: rotate(7deg) translate(56px, 10px);
  z-index: 2;
}
.phone-back {
  width: 249px;
  transform: rotate(-10deg) translate(-90px, -9px);
  z-index: 1;
  filter: brightness(0.98);
}
.visual-caption {
  position: absolute;
  bottom: 3px;
  left: 28px;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: #69808a;
  letter-spacing: 0.2px;
}
.caption-line {
  width: 22px;
  height: 1px;
  background: #96b8c8;
}
.intro-strip {
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-block: 1px solid var(--line);
  padding-block: 26px;
  gap: 16px;
}
.intro-strip p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #536c78;
}
.intro-strip p > span {
  font-size: 25px;
  line-height: 1;
  color: var(--blue);
}
.intro-strip svg {
  width: 23px;
  height: 23px;
  color: var(--blue);
}
.preview-intro {
  padding-block: 104px 56px;
  text-align: center;
}
.preview-intro .eyebrow {
  justify-content: center;
  margin-bottom: 22px;
}
h2 {
  font-size: clamp(36px, 4.7vw, 60px);
  letter-spacing: -2.3px;
  font-weight: 730;
  line-height: 1.08;
  margin-bottom: 22px;
}
.preview-intro > p:last-child {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.footer {
  border-top: 1px solid var(--line);
  padding-block: 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.footer .brand {
  font-size: 26px;
}
.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.footer > span {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
}
@media (min-width: 1500px) {
  .hero {
    min-height: 810px;
  }
  .hero-visual {
    height: 720px;
  }
  .phone-front {
    width: 294px;
  }
  .phone-back {
    width: 268px;
  }
}
@media (max-width: 1000px) {
  .wrap {
    width: calc(100% - 56px);
  }
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 670px;
  }
  .hero-visual {
    height: 610px;
  }
  .phone-front {
    width: 238px;
    transform: rotate(7deg) translate(36px, 8px);
  }
  .phone-back {
    width: 217px;
    transform: rotate(-10deg) translate(-52px, -5px);
  }
  h1 {
    font-size: 63px;
    letter-spacing: -3px;
  }
  .orbit {
    width: 370px;
    height: 420px;
  }
  .orbit-two {
    width: 420px;
    height: 520px;
  }
  .hero-description {
    font-size: 16px;
  }
  .desktop-break {
    display: none;
  }
  .visual-caption {
    font-size: 10px;
    left: 0;
  }
  .hero-actions {
    gap: 14px;
  }
  .coming-soon {
    width: 100%;
    padding-left: 2px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 90px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .nav {
    height: 78px;
    gap: 12px;
  }
  .brand {
    font-size: 28px;
    gap: 8px;
  }
  .brand img {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }
  .nav-links {
    gap: 20px;
    margin-left: auto;
    margin-right: 8px;
    font-size: 13px;
  }
  .nav-cta {
    padding: 10px 14px;
    font-size: 12px;
    gap: 10px;
  }
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 44px;
    min-height: 0;
  }
  .hero-copy {
    padding: 45px 0 12px;
  }
  .eyebrow {
    justify-content: center;
    font-size: 10px;
    letter-spacing: 1.8px;
    margin-bottom: 22px;
  }
  h1 {
    font-size: clamp(49px, 9.5vw, 70px);
    letter-spacing: -2.7px;
    line-height: 1.04;
    margin-bottom: 23px;
  }
  .hero-description {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 25px;
  }
  .hero-actions {
    justify-content: center;
    gap: 15px;
  }
  .coming-soon {
    width: auto;
    font-size: 11px;
  }
  .hero-note {
    justify-content: center;
    margin-top: 18px;
  }
  .hero-visual {
    height: 585px;
    max-width: 460px;
    width: 100%;
    margin: 14px auto 0;
  }
  .phone-front {
    width: 236px;
    transform: rotate(7deg) translate(51px, 3px);
  }
  .phone-back {
    width: 216px;
    transform: rotate(-10deg) translate(-73px, -13px);
  }
  .orbit {
    width: 330px;
    height: 360px;
  }
  .orbit-two {
    width: 390px;
    height: 480px;
  }
  .visual-caption {
    bottom: 0;
  }
  .intro-strip {
    gap: 12px;
    justify-content: space-between;
    padding-block: 21px;
  }
  .intro-strip p {
    font-size: 11px;
    gap: 6px;
    max-width: 110px;
    line-height: 1.5;
  }
  .intro-strip p > span {
    font-size: 23px;
  }
  .intro-strip svg {
    flex: none;
    width: 20px;
  }
  .preview-intro {
    padding-block: 76px 34px;
  }
  h2 {
    font-size: 44px;
    letter-spacing: -1.8px;
  }
  .preview-intro > p:last-child {
    font-size: 16px;
  }
  .footer {
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer p {
    font-size: 12px;
  }
  .footer > span {
    font-size: 11px;
  }
}
@media (max-width: 400px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .nav-links {
    gap: 14px;
    margin-right: 0;
  }
  .nav-cta {
    display: none;
  }
  h1 {
    font-size: 49px;
  }
  .hero-visual {
    height: 529px;
    transform: scale(0.94);
    margin-top: 2px;
  }
  .phone-front {
    width: 218px;
    transform: rotate(7deg) translate(44px, 0);
  }
  .phone-back {
    width: 199px;
    transform: rotate(-10deg) translate(-60px, -8px);
  }
  .orbit-two {
    width: 330px;
  }
  .hero-actions {
    gap: 12px;
  }
  .button {
    font-size: 14px;
    padding: 15px 20px;
    gap: 18px;
  }
  .coming-soon {
    font-size: 10px;
  }
  .intro-strip p {
    font-size: 10px;
  }
  .footer p {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .phone {
    will-change: auto;
  }
}

/* The product tour uses real app screens, with a stable frame during transitions. */
[hidden] {
  display: none !important;
}
.app-section {
  padding-bottom: 112px;
}
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 650px;
  border-radius: 36px;
  background: #e8f3f9;
  overflow: hidden;
  transition: background 0.5s ease;
}
.showcase[data-view="passport"] {
  background: #f2f0e4;
}
.showcase[data-view="achievements"] {
  background: #edf5e8;
}
.showcase-copy {
  padding: 56px 0 48px 64px;
  align-self: center;
  position: relative;
  z-index: 2;
}
.view-tabs {
  display: inline-flex;
  background: #ffffff75;
  border: 1px solid #ffffff85;
  border-radius: 100px;
  padding: 5px;
  gap: 3px;
  margin-bottom: 37px;
}
.view-tabs button {
  min-height: 40px;
  border: 0;
  border-radius: 100px;
  background: transparent;
  padding: 10px 18px;
  color: #516b78;
  font-size: 14px;
  font-weight: 550;
  cursor: pointer;
  transition:
    background 0.25s,
    color 0.25s,
    box-shadow 0.25s;
}
.view-tabs button:hover {
  background: #ffffff65;
}
.view-tabs button[aria-selected="true"] {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 2px 7px #1a435410;
}
.section-index {
  display: block;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  color: #647d89;
  letter-spacing: 2px;
  margin-bottom: 19px;
}
.panel {
  min-height: 304px;
}
.panel:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 10px;
  border-radius: 4px;
}
.panel h3 {
  font-size: 44px;
  line-height: 1.09;
  font-weight: 730;
  letter-spacing: -1.6px;
  margin-bottom: 22px;
}
.panel > p {
  font-size: 16px;
  line-height: 1.75;
  color: #536d7a;
  max-width: 330px;
  margin-bottom: 25px;
}
.feature-list {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
  margin: 0;
  color: #3f5e6d;
  font-size: 14px;
  line-height: 1.5;
}
.feature-list li {
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.feature-list li:before {
  content: "✓";
  color: #0878b5;
  font-size: 13px;
}
.demo-note {
  font-size: 12px;
  color: #627a87;
  line-height: 1.5;
  margin: 34px 0 0;
}
.showcase-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px;
  position: relative;
}
.showcase-visual:before {
  content: "";
  position: absolute;
  inset: 14% 0;
  background: radial-gradient(ellipse, #fff9, transparent 67%);
}
.screen-stage {
  position: relative;
  width: 254px;
  aspect-ratio: 720/1565;
  border-radius: 33px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 25px 40px -15px #234d6330,
    0 0 0 1px #152f4410;
  transform: rotate(3deg);
  transition: transform 0.5s ease;
}
.showcase[data-view="passport"] .screen-stage {
  transform: rotate(-3deg);
}
.showcase[data-view="achievements"] .screen-stage {
  transform: rotate(2deg);
}
.showcase-screen {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.32s ease;
  pointer-events: none;
}
.showcase-screen.is-active {
  opacity: 1;
}
.noscript-note {
  text-align: center;
  font-size: 14px;
  padding: 20px;
}
.noscript-note a {
  text-decoration: underline;
}
.privacy-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  padding: 22px 44px 112px;
}
.privacy-symbol {
  color: var(--blue);
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
}
.privacy-symbol svg {
  width: 100%;
  height: 100%;
}
.privacy-heading .eyebrow {
  font-size: 10px;
  letter-spacing: 1.7px;
  margin-bottom: 20px;
}
.privacy-heading h2 {
  font-size: 52px;
  letter-spacing: -2px;
}
.privacy-heading h2 span {
  color: var(--blue);
}
.privacy-heading > p:last-child {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
}
.privacy-points {
  padding-top: 29px;
}
.privacy-points article {
  display: flex;
  gap: 22px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.privacy-points article:first-child {
  padding-top: 0;
}
.privacy-points article:last-child {
  border: 0;
}
.privacy-number {
  font-size: 12px;
  color: var(--blue);
  padding-top: 5px;
  font-variant-numeric: tabular-nums;
}
.privacy-points h3 {
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.4px;
  margin-bottom: 10px;
}
.privacy-points p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
  max-width: 350px;
}
.faq-section {
  border-top: 1px solid var(--line);
  padding: 76px 44px 94px;
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 60px;
}
.faq-section .eyebrow {
  font-size: 10px;
  letter-spacing: 1.7px;
  margin-bottom: 20px;
}
.faq-section h2 {
  font-size: 44px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  margin-top: -20px;
}
.faq-list summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 550;
  line-height: 1.6;
  padding-block: 20px;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  font-size: 22px;
  font-weight: 300;
  color: var(--blue);
  transition: transform 0.2s;
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
}
.faq-answer p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 22px 24px 0;
}
.closing-section {
  background: #e3f2fb;
  border: 1px solid #d8eaf4;
  border-radius: 36px;
  text-align: center;
  padding: 60px 24px 64px;
  margin-bottom: 72px;
  position: relative;
  overflow: hidden;
}
.closing-icon {
  border-radius: 22px;
  margin: 0 auto 24px;
  box-shadow: 0 10px 30px #0878b524;
  transform: rotate(-7deg);
}
.closing-section h2 {
  font-size: 60px;
  margin-bottom: 18px;
  line-height: 1.04;
}
.closing-section > p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 24px;
}
.availability {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  border-radius: 100px;
  background: #fff9;
  color: #2c5266;
  font-size: 14px;
  font-weight: 550;
  border: 1px solid #cce2ef;
}
.availability svg {
  width: 19px;
  height: 22px;
  flex: none;
}
.system-requirement {
  display: block;
  font-size: 12px;
  color: #667d89;
  margin-top: 14px;
}
.footer-privacy {
  font-size: 13px;
  color: var(--muted);
  margin-left: auto;
}
.footer > span {
  margin-left: 0;
}
.will-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.2, 0.75, 0.25, 1);
}
.will-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 761px) and (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: enter-copy 0.8s both;
  }
  .hero-visual {
    animation: enter-product 1.05s both;
  }
  .phone-front {
    animation: float-front 8s ease-in-out 1.05s 2;
  }
  .phone-back {
    animation: float-back 8s ease-in-out 1.05s 2;
  }
  @keyframes enter-copy {
    from {
      opacity: 0;
      transform: translateY(16px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes enter-product {
    from {
      opacity: 0;
      transform: translateY(24px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes float-front {
    0%,
    100% {
      translate: 0 0;
    }
    50% {
      translate: 0 -9px;
    }
  }
  @keyframes float-back {
    0%,
    100% {
      translate: 0 0;
    }
    50% {
      translate: 0 7px;
    }
  }
}
@media (max-width: 1100px) {
  .showcase-copy {
    padding-left: 42px;
  }
  .showcase-visual {
    padding: 36px;
  }
  .privacy-section {
    gap: 64px;
    padding-inline: 24px;
  }
  .faq-section {
    padding-inline: 24px;
  }
  .privacy-heading h2 {
    font-size: 46px;
  }
  .panel h3 {
    font-size: 40px;
  }
  .panel > p {
    padding-right: 10px;
  }
  .view-tabs button {
    padding-inline: 15px;
  }
}
@media (max-width: 850px) {
  .showcase-copy {
    padding: 38px 0 38px 32px;
  }
  .showcase-visual {
    padding: 30px;
  }
  .showcase {
    min-height: 610px;
  }
  .screen-stage {
    width: 228px;
  }
  .view-tabs button {
    padding-inline: 11px;
    font-size: 13px;
  }
  .panel h3 {
    font-size: 36px;
  }
  .panel > p {
    font-size: 15px;
  }
  .feature-list {
    font-size: 13px;
  }
  .privacy-section {
    gap: 45px;
  }
  .privacy-heading h2 {
    font-size: 42px;
  }
  .faq-section {
    gap: 34px;
  }
  .faq-section h2 {
    font-size: 40px;
  }
  .faq-list summary {
    font-size: 14px;
  }
}
@media (max-width: 760px) {
  .app-section {
    padding-bottom: 66px;
  }
  .showcase {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }
  .showcase-copy {
    padding: 30px 28px 0;
    text-align: center;
  }
  .view-tabs {
    margin-bottom: 26px;
  }
  .view-tabs button {
    padding: 10px 18px;
    font-size: 14px;
  }
  .section-index {
    margin-bottom: 15px;
  }
  .panel {
    min-height: 280px;
  }
  .panel h3 {
    font-size: 38px;
    letter-spacing: -1.4px;
    margin-bottom: 16px;
  }
  .panel > p {
    font-size: 16px;
    max-width: 360px;
    margin: 0 auto 23px;
    padding: 0;
  }
  .feature-list {
    font-size: 14px;
    gap: 9px;
    display: inline-grid;
    text-align: left;
  }
  .demo-note {
    font-size: 12px;
    margin-top: 22px;
  }
  .showcase-visual {
    padding: 32px 20px 40px;
  }
  .screen-stage {
    width: 242px;
    border-radius: 31px;
  }
  .privacy-section {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0 16px 62px;
  }
  .privacy-heading {
    text-align: center;
  }
  .privacy-heading .eyebrow {
    font-size: 10px;
  }
  .privacy-symbol {
    margin: 0 auto 24px;
  }
  .privacy-heading h2 {
    font-size: 45px;
  }
  .privacy-heading > p:last-child {
    font-size: 16px;
  }
  .privacy-points {
    padding: 0;
    max-width: 430px;
    width: 100%;
    margin: auto;
  }
  .privacy-points article {
    padding-block: 23px;
    gap: 18px;
  }
  .privacy-points article:first-child {
    padding-top: 9px;
  }
  .privacy-points h3 {
    font-size: 22px;
  }
  .privacy-points p {
    font-size: 15px;
    max-width: none;
  }
  .faq-section {
    grid-template-columns: 1fr;
    padding: 48px 4px 58px;
    gap: 24px;
  }
  .faq-section > .faq-list {
    text-align: left;
  }
  .faq-section > div:first-child {
    text-align: center;
  }
  .faq-section .eyebrow {
    margin-bottom: 16px;
  }
  .faq-section h2 {
    font-size: 42px;
    margin-bottom: 10px;
  }
  .faq-list summary {
    font-size: 15px;
  }
  .faq-answer p {
    font-size: 14px;
    margin-right: 5px;
  }
  .closing-section {
    border-radius: 28px;
    padding: 46px 18px 48px;
    margin-bottom: 42px;
  }
  .closing-section h2 {
    font-size: 46px;
  }
  .closing-section > p {
    font-size: 15px;
    max-width: 260px;
    margin-inline: auto;
  }
  .closing-icon {
    width: 65px;
    height: 65px;
    border-radius: 19px;
  }
  .availability {
    font-size: 12px;
    padding: 14px 17px;
  }
  .footer {
    gap: 16px;
  }
  .footer-privacy {
    font-size: 12px;
  }
  .footer p {
    display: none;
  }
  .footer > span {
    font-size: 12px;
  }
}
@media (max-width: 380px) {
  .showcase-copy {
    padding-inline: 17px;
  }
  .view-tabs button {
    padding-inline: 14px;
  }
  .view-tabs {
    gap: 0;
  }
  .panel > p {
    font-size: 15px;
  }
  .feature-list {
    font-size: 13px;
  }
  .privacy-section {
    padding-inline: 4px;
  }
  .privacy-heading h2 {
    font-size: 41px;
  }
  .closing-section h2 {
    font-size: 42px;
  }
  .availability {
    font-size: 12px;
    padding-inline: 13px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .will-reveal {
    opacity: 1;
    transform: none;
  }
}

/* Keep atmospheric geometry inside its own visual area. */
.hero-visual {
  overflow: clip;
}
.hero-note,
.visual-caption,
.section-index,
.demo-note,
.system-requirement {
  color: #506976;
}
/* Secondary text stays legible on compact screens. */
.eyebrow {
  font-size: 12px;
}
.coming-soon,
.hero-note,
.visual-caption {
  font-size: 12px;
}
.privacy-heading .eyebrow,
.faq-section .eyebrow {
  font-size: 12px;
}
@media (max-width: 760px) {
  .intro-strip p {
    font-size: 12px;
  }
  .hero-actions {
    gap: 16px;
  }
  .hero-description {
    max-width: 380px;
    margin-inline: auto;
  }
  .nav-links,
  .nav-cta {
    font-size: 14px;
  }
  .visual-caption {
    font-size: 12px;
  }
  .availability {
    font-size: 14px;
  }
  .system-requirement {
    font-size: 12px;
  }
}
@media (max-width: 400px) {
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  .hero-note {
    margin-top: 18px;
  }
  .intro-strip p {
    font-size: 12px;
    max-width: 96px;
  }
  .intro-strip p > span,
  .intro-strip svg {
    display: none;
  }
  .visual-caption {
    font-size: 12px;
    letter-spacing: 0;
  }
  .availability {
    font-size: 12px;
  }
  .nav-links {
    font-size: 14px;
  }
  .hero-visual {
    height: 539px;
  }
}
@media (max-width: 360px) {
  h1 {
    font-size: 41px;
    letter-spacing: -2.1px;
  }
  .hero-copy {
    padding-top: 32px;
  }
  .hero-visual {
    height: 480px;
  }
  .phone-front {
    width: 192px;
    transform: rotate(7deg) translate(40px, 0);
  }
  .phone-back {
    width: 178px;
    transform: rotate(-10deg) translate(-52px, -8px);
  }
}
