:root {
  --ink: #0d1c31;
  --ink-soft: #536174;
  --paper: #fbfcff;
  --white: #ffffff;
  --blue: #1169ec;
  --blue-dark: #0b4fc2;
  --blue-soft: #edf3ff;
  --purple-soft: #f3ecff;
  --pink-soft: #fff0f5;
  --cream-soft: #fff5e8;
  --green-soft: #ecf8ef;
  --line: #dfe5ef;
  --shadow: 0 24px 70px rgba(22, 43, 75, 0.12);
  --shadow-soft: 0 14px 36px rgba(22, 43, 75, 0.08);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid #ffb444;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--ink);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.045em;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(3.25rem, 7vw, 6.65rem);
  font-weight: 790;
  line-height: 0.96;
}

h1 span {
  color: var(--blue);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  font-weight: 760;
  line-height: 1.02;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(251, 252, 255, 0.82);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(13, 28, 49, 0.08);
  box-shadow: 0 8px 32px rgba(13, 28, 49, 0.05);
}

.nav-wrap {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 0.99rem;
  font-weight: 780;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 33px;
  height: 33px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  background: linear-gradient(145deg, #1681ff, #0755d4);
  box-shadow: 0 8px 18px rgba(17, 105, 236, 0.28);
}

.brand-mark span {
  position: absolute;
  width: 15px;
  height: 4px;
  border: 1.5px solid rgba(255, 255, 255, 0.92);
  border-radius: 2px;
  transform: skewY(-28deg);
}

.brand-mark span:nth-child(1) {
  top: 9px;
}

.brand-mark span:nth-child(2) {
  top: 14px;
}

.brand-mark span:nth-child(3) {
  top: 19px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links > a:not(.button) {
  color: #3e4b5d;
  font-size: 0.91rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-links > a:not(.button):hover {
  color: var(--blue);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 4px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-small {
  min-height: 42px;
  padding: 0 21px;
  font-size: 0.86rem;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 8px 20px rgba(13, 28, 49, 0.17);
}

.button-dark:hover {
  background: #162a45;
  box-shadow: 0 12px 24px rgba(13, 28, 49, 0.23);
}

.button-light {
  min-height: 50px;
  padding: 0 24px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}

.hero {
  position: relative;
  min-height: 860px;
  padding: 172px 0 96px;
  background:
    linear-gradient(120deg, rgba(237, 243, 255, 0.9), rgba(251, 252, 255, 0) 46%),
    var(--paper);
  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.75fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.hero-copy {
  padding-bottom: 36px;
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 36px;
}

.play-button {
  display: inline-flex;
  min-height: 61px;
  align-items: center;
  gap: 13px;
  padding: 8px 22px 8px 18px;
  border-radius: 15px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 14px 30px rgba(13, 28, 49, 0.2);
  font-size: 1.17rem;
  font-weight: 680;
  line-height: 1.05;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.play-button:hover {
  background: #162a45;
  box-shadow: 0 18px 34px rgba(13, 28, 49, 0.26);
}

.play-button small {
  display: block;
  margin-bottom: 3px;
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.play-icon {
  position: relative;
  display: block;
  width: 27px;
  height: 30px;
  flex: 0 0 auto;
  background: linear-gradient(145deg, #49d67b 0 35%, #27a7f2 35% 65%, #ffce46 65% 82%, #ff5b55 82%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none;
}

.text-link span {
  color: var(--blue);
  font-size: 1.2rem;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 0;
  padding: 0;
  color: #59677a;
  font-size: 0.82rem;
  font-weight: 680;
  list-style: none;
}

.hero-notes li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-notes li > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(17, 105, 236, 0.1);
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
}

.visual-glow {
  position: absolute;
  width: 510px;
  height: 510px;
  border-radius: 44% 56% 63% 37% / 45% 42% 58% 55%;
  background: linear-gradient(145deg, #dae8ff, #efe5ff 62%, #ffedf4);
  transform: rotate(8deg);
}

.screenshot-shell {
  position: relative;
  z-index: 1;
  width: min(333px, 78vw);
  border: 11px solid var(--ink);
  border-radius: 37px;
  background: #eaf0ff;
  box-shadow: 0 40px 85px rgba(13, 28, 49, 0.23);
  overflow: hidden;
  transform: rotate(1.5deg);
}

.screenshot-shell img {
  width: 100%;
  height: auto;
}

.floating-note {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 185px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(13, 28, 49, 0.14);
  backdrop-filter: blur(12px);
}

.floating-note strong,
.floating-note small {
  display: block;
}

.floating-note strong {
  font-size: 0.78rem;
  line-height: 1.3;
}

.floating-note small {
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 0.65rem;
}

.floating-note-top {
  top: 92px;
  left: -10px;
}

.floating-note-bottom {
  right: -14px;
  bottom: 88px;
}

.mini-icon {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 10px;
  color: var(--white);
  background: var(--blue);
  font-size: 1.25rem;
  font-weight: 800;
}

.privacy-dot {
  position: relative;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #e8f8ee;
}

.privacy-dot::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2eaa62;
  box-shadow: 0 0 0 5px rgba(46, 170, 98, 0.13);
  content: "";
  transform: translate(-50%, -50%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-orb-one {
  top: 105px;
  right: 5%;
  width: 180px;
  height: 180px;
  background: rgba(181, 211, 255, 0.34);
}

.hero-orb-two {
  bottom: -110px;
  left: 38%;
  width: 260px;
  height: 260px;
  background: rgba(239, 214, 255, 0.3);
}

.toolkit {
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.7fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 62px;
}

.section-heading .eyebrow,
.section-heading h2 {
  grid-column: 1;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin-bottom: 5px;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 242px;
  padding: 30px;
  border: 1px solid rgba(13, 28, 49, 0.05);
  border-radius: var(--radius-md);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}

.feature-card p {
  max-width: 275px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.feature-purple { background: var(--purple-soft); }
.feature-pink { background: var(--pink-soft); }
.feature-red { background: #fff0ef; }
.feature-blue { background: var(--blue-soft); }
.feature-green { background: var(--green-soft); }
.feature-orange { background: var(--cream-soft); }

.feature-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 38px;
  place-items: center;
  border-radius: 15px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 10px 22px rgba(13, 28, 49, 0.16);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.feature-purple .feature-icon { background: #8a38de; }
.feature-pink .feature-icon { background: #d72e78; }
.feature-red .feature-icon { background: #ce2d28; }
.feature-blue .feature-icon { background: #176cea; font-size: 1.15rem; }
.feature-green .feature-icon { background: #2b8a53; font-size: 1rem; }
.feature-orange .feature-icon { background: #d77807; font-size: 1.1rem; }

.spotlights {
  padding-top: 72px;
  background: var(--white);
}

.spotlight-list {
  display: grid;
  gap: 32px;
}

.spotlight {
  display: grid;
  min-height: 650px;
  grid-template-columns: 1fr minmax(350px, 0.85fr);
  align-items: center;
  gap: 70px;
  padding: 64px clamp(42px, 6vw, 86px);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.spotlight:nth-child(even) .spotlight-copy {
  order: 2;
}

.spotlight:nth-child(even) .spotlight-image {
  order: 1;
}

.spotlight-purple { background: var(--purple-soft); }
.spotlight-pink { background: var(--pink-soft); }
.spotlight-blue { background: var(--blue-soft); }
.spotlight-cream { background: var(--cream-soft); }

.spotlight-copy {
  position: relative;
  z-index: 1;
}

.spotlight-copy h2 {
  max-width: 580px;
  margin-bottom: 25px;
  font-size: clamp(2.5rem, 4.5vw, 4.15rem);
}

.spotlight-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.number {
  position: absolute;
  z-index: -1;
  top: -100px;
  left: -22px;
  color: rgba(13, 28, 49, 0.045);
  font-size: 9rem;
  font-weight: 850;
  letter-spacing: -0.08em;
  line-height: 1;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.9rem;
  font-weight: 720;
}

.check-list li::before {
  display: grid;
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  content: "✓";
  font-size: 0.7rem;
}

.spotlight-image {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
}

.spotlight-image::before {
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.67);
  content: "";
}

.spotlight-image img {
  position: relative;
  z-index: 1;
  width: min(333px, 100%);
  border: 9px solid var(--ink);
  border-radius: 34px;
  box-shadow: 0 34px 70px rgba(13, 28, 49, 0.2);
}

.privacy {
  background: var(--white);
}

.privacy-panel {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
  padding: clamp(56px, 7vw, 92px);
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    radial-gradient(circle at 95% 10%, rgba(54, 126, 255, 0.28), transparent 34%),
    radial-gradient(circle at 10% 100%, rgba(156, 79, 232, 0.2), transparent 32%),
    var(--ink);
  box-shadow: 0 35px 80px rgba(13, 28, 49, 0.2);
}

.eyebrow-light {
  color: #7cb2ff;
}

.privacy-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.privacy-copy > p:not(.eyebrow) {
  max-width: 480px;
  margin-bottom: 30px;
  color: #b9c5d5;
  font-size: 1.03rem;
}

.privacy-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.flow-card {
  position: relative;
  display: flex;
  min-height: 210px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
}

.flow-card strong {
  margin-top: 22px;
  font-size: 0.89rem;
}

.flow-card small {
  margin-top: 3px;
  color: #9dacc0;
  font-size: 0.72rem;
}

.flow-step {
  position: absolute;
  top: 16px;
  right: 17px;
  color: #8290a4;
  font-size: 0.68rem;
  font-weight: 750;
}

.flow-icon {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 13px;
  color: var(--white);
  background: var(--blue);
  font-size: 1.15rem;
}

.flow-arrow {
  color: #607087;
  font-size: 1rem;
}

.screenshots {
  background: linear-gradient(180deg, var(--paper), #f7f9ff);
}

.screens-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 58px;
}

.screens-heading h2 {
  margin-bottom: 0;
}

.screens-heading > p {
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.carousel {
  position: relative;
}

.shots-controls {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 20px;
}

.js .shots-controls {
  display: flex;
}

.round-button {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  font-size: 1.15rem;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.round-button:hover {
  color: var(--white);
  background: var(--ink);
  transform: translateY(-2px);
}

.carousel-status {
  min-width: 52px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 760;
  text-align: center;
}

.shots-track {
  display: grid;
  grid-auto-columns: minmax(270px, 31%);
  grid-auto-flow: column;
  gap: 22px;
  padding: 6px 2px 30px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.shots-track::-webkit-scrollbar {
  display: none;
}

.shot-card {
  margin: 0;
  padding: 22px 22px 18px;
  border: 1px solid rgba(13, 28, 49, 0.06);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  scroll-snap-align: center;
}

.shot-blue { background: var(--blue-soft); }
.shot-purple { background: var(--purple-soft); }
.shot-pink { background: var(--pink-soft); }
.shot-cream { background: var(--cream-soft); }

.shot-card img {
  width: 100%;
  border: 5px solid var(--ink);
  border-radius: 25px;
}

.shot-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 2px 0;
  font-size: 0.87rem;
  font-weight: 750;
}

.shot-card figcaption span {
  color: var(--blue);
  font-size: 0.7rem;
}

.carousel-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.js .carousel-dots {
  display: flex;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #c6ceda;
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.carousel-dot.is-active {
  width: 26px;
  background: var(--blue);
}

.download {
  background: var(--white);
}

.download-card {
  position: relative;
  padding: clamp(64px, 9vw, 116px) 30px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 10% 20%, rgba(197, 218, 255, 0.55), transparent 24%),
    radial-gradient(circle at 90% 80%, rgba(238, 208, 255, 0.5), transparent 26%),
    #f3f6ff;
  text-align: center;
  overflow: hidden;
}

.download-card::before,
.download-card::after {
  position: absolute;
  border: 1px solid rgba(17, 105, 236, 0.13);
  border-radius: 50%;
  content: "";
}

.download-card::before {
  top: -150px;
  left: -100px;
  width: 380px;
  height: 380px;
}

.download-card::after {
  right: -170px;
  bottom: -220px;
  width: 500px;
  height: 500px;
}

.download-mark {
  width: 62px;
  height: 62px;
  margin: 0 auto 30px;
  border-radius: 17px;
}

.download-mark span {
  width: 28px;
  height: 7px;
}

.download-mark span:nth-child(1) { top: 17px; }
.download-mark span:nth-child(2) { top: 27px; }
.download-mark span:nth-child(3) { top: 37px; }

.download-card h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.download-card > p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin: 0 auto 30px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.download-card .play-button {
  position: relative;
  z-index: 1;
}

.site-footer {
  padding: 34px 0 44px;
  background: var(--white);
}

.footer-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.footer-row p {
  margin: 0;
  color: #738093;
  font-size: 0.78rem;
}

.footer-row p:last-child {
  justify-self: end;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero {
    padding-top: 150px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
    gap: 48px;
  }

  .floating-note-top {
    left: -24px;
  }

  .floating-note-bottom {
    right: -20px;
  }

  .spotlight {
    gap: 42px;
    padding-inline: 48px;
  }

  .privacy-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 86px 0;
  }

  .js .nav-toggle {
    display: block;
  }

  .nav-links {
    gap: 22px;
  }

  .js .nav-links {
    position: fixed;
    top: 73px;
    right: 20px;
    left: 20px;
    display: grid;
    gap: 5px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .js .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .js .nav-links > a:not(.button) {
    padding: 12px 14px;
    border-radius: 12px;
  }

  .js .nav-links > a:not(.button):hover {
    background: var(--blue-soft);
  }

  .js .nav-links .button {
    margin-top: 4px;
  }

  .hero {
    min-height: 0;
    padding: 136px 0 80px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-visual {
    min-height: 650px;
  }

  .section-heading,
  .screens-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-heading .eyebrow,
  .section-heading h2,
  .section-heading > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .spotlight {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 58px 36px 0;
  }

  .spotlight:nth-child(even) .spotlight-copy,
  .spotlight-copy {
    order: 1;
  }

  .spotlight:nth-child(even) .spotlight-image,
  .spotlight-image {
    order: 2;
  }

  .spotlight-image {
    min-height: 510px;
  }

  .privacy-flow {
    grid-template-columns: 1fr;
  }

  .flow-card {
    min-height: 150px;
  }

  .flow-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .shots-track {
    grid-auto-columns: minmax(260px, 47%);
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .nav-wrap {
    min-height: 68px;
  }

  .js .nav-links {
    top: 67px;
    right: 14px;
    left: 14px;
  }

  .hero {
    padding: 118px 0 65px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-notes {
    display: grid;
  }

  .hero-visual {
    min-height: 555px;
  }

  .visual-glow {
    width: 400px;
    height: 400px;
  }

  .screenshot-shell {
    width: 270px;
    border-width: 8px;
    border-radius: 30px;
  }

  .floating-note {
    min-width: 158px;
    padding: 10px 11px;
  }

  .floating-note-top {
    top: 65px;
    left: -2px;
  }

  .floating-note-bottom {
    right: -2px;
    bottom: 72px;
  }

  .floating-note small {
    font-size: 0.59rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

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

  .spotlight-list {
    gap: 18px;
  }

  .spotlight {
    padding: 50px 22px 0;
    border-radius: 28px;
  }

  .spotlight-copy h2 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
  }

  .number {
    top: -78px;
    font-size: 7rem;
  }

  .spotlight-image {
    min-height: 460px;
  }

  .spotlight-image::before {
    width: 300px;
    height: 300px;
  }

  .spotlight-image img {
    width: 275px;
    border-width: 7px;
    border-radius: 29px;
  }

  .privacy-panel {
    width: calc(100% - 28px);
    padding: 50px 22px;
    border-radius: 28px;
  }

  .flow-card {
    min-height: 142px;
  }

  .screens-heading {
    margin-bottom: 36px;
  }

  .shots-track {
    width: calc(100% + 14px);
    grid-auto-columns: 82%;
    gap: 14px;
  }

  .shot-card {
    padding: 16px 16px 14px;
    border-radius: 21px;
  }

  .shot-card img {
    border-width: 4px;
    border-radius: 21px;
  }

  .shots-controls {
    justify-content: space-between;
  }

  .carousel-status {
    order: 2;
  }

  .shots-controls [data-prev] { order: 1; }
  .shots-controls [data-next] { order: 3; }

  .download-card {
    border-radius: 28px;
  }

  .footer-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-row .brand {
    margin-bottom: 10px;
  }

  .footer-row p:last-child {
    align-self: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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