:root {
  --ink: #111111;
  --muted: #676c73;
  --line: #e8e8e8;
  --soft-line: #f3f3f3;
  --accent: #0f0f10;
  --accent-2: #0b5f73;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(232, 232, 232, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

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

.brand strong {
  display: block;
  font-size: 1rem;
}

.brand small {
  display: block;
  max-width: 340px;
  color: var(--muted);
  font-size: 0.76rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

nav {
  display: flex;
  gap: 4px;
}

nav a {
  color: #36383c;
  text-decoration: none;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 0.92rem;
}

nav a:hover {
  background: #f7f7f7;
}

main {
  overflow: hidden;
}

.hero {
  width: min(1680px, 100%);
  margin: 0 auto;
  padding: 0;
}

.hero-art {
  position: relative;
  width: 100%;
  background: #fff;
}

.hero-art picture {
  display: block;
  width: 100%;
}

.mobile-hero-copy {
  display: none;
}

.hero-poster {
  width: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.poster-hotspots {
  position: absolute;
  inset: 0;
}

.poster-hotspot {
  position: absolute;
  z-index: 5;
  border: 0;
  border-radius: 12px;
  padding: 0;
  color: transparent;
  background: transparent;
  cursor: pointer;
}

.poster-hotspot:focus-visible {
  outline: 3px solid rgba(11, 95, 115, 0.45);
  outline-offset: 4px;
}

.windows-hotspot {
  left: 3.7%;
  bottom: 13.2%;
  width: 16.9%;
  height: 8.3%;
}

.android-hotspot {
  left: 22%;
  bottom: 13.2%;
  width: 16.7%;
  height: 8.3%;
}

.mobile-actions {
  display: none;
  width: min(540px, calc(100% - 36px));
  margin: 22px auto 0;
  gap: 12px;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  padding: 0 22px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.18;
  text-align: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.1);
}

.btn.primary {
  color: #fff;
  border-color: var(--accent);
  background: var(--accent);
}

.btn.secondary {
  background: #fff;
}

.btn.full {
  width: 100%;
}

.windows-icon {
  width: 20px;
  height: 20px;
  background:
    linear-gradient(currentColor 0 0) 0 0 / 9px 9px no-repeat,
    linear-gradient(currentColor 0 0) 11px 0 / 9px 9px no-repeat,
    linear-gradient(currentColor 0 0) 0 11px / 9px 9px no-repeat,
    linear-gradient(currentColor 0 0) 11px 11px / 9px 9px no-repeat;
}

.android-icon {
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 8px 8px 6px 6px;
  position: relative;
}

.android-icon::before,
.android-icon::after {
  content: "";
  position: absolute;
  top: 5px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.android-icon::before {
  left: 5px;
}

.android-icon::after {
  right: 5px;
}

.statement,
.product-section,
.download-section,
.editorial-section,
.insight-section,
.validation-section,
.faq-section,
.app-showcase,
.team-note {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 112px 0;
}

.statement {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
  border-top: 1px solid var(--soft-line);
}

.statement-copy {
  display: grid;
  gap: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-2);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1,
h2 {
  margin: 0;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3rem, 6.6vw, 6.4rem);
  max-width: 780px;
}

h2 {
  font-size: clamp(2.35rem, 4.7vw, 4.8rem);
  max-width: 760px;
}

p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.04rem;
}

.statement p {
  max-width: 560px;
}

.statement strong {
  display: block;
  margin-top: 26px;
  font-size: clamp(1.55rem, 2.8vw, 3rem);
  line-height: 1.12;
}

.statement-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid #ececec;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.statement-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
}

.editorial-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
  border-top: 1px solid var(--soft-line);
}

.quiet-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.quiet-list article {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.quiet-list span {
  color: var(--accent-2);
  font-size: 0.84rem;
  font-weight: 800;
}

.quiet-list p {
  margin: 0;
  color: #222;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.35;
}

.product-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: center;
  border-top: 1px solid var(--soft-line);
}

.section-copy {
  max-width: 540px;
}

.section-copy p {
  margin-top: 22px;
}

.flow-section {
  grid-template-columns: 0.72fr 1.28fr;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.flow-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid #ececec;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.045);
}

.flow-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 46px;
  border-radius: 50%;
  color: #fff;
  background: #111;
  font-weight: 800;
  font-size: 0.86rem;
}

.flow-grid h3,
.faq-grid h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
}

.flow-grid p,
.faq-grid p {
  margin: 0;
  font-size: 0.96rem;
}

.product-visual {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.product-visual img {
  width: 100%;
  object-fit: cover;
}

.desktop-visual img,
.session-section .product-visual img {
  aspect-ratio: 16 / 9;
  object-position: top;
}

.app-section {
  grid-template-columns: 1fr 0.88fr;
}

.phone-visual {
  position: relative;
  min-height: 680px;
  margin: 0;
  display: grid;
  place-items: center;
}

.phone-device {
  position: relative;
  z-index: 2;
  width: min(360px, 70vw);
  padding: 12px;
  background: #101010;
  border-radius: 42px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.phone-device img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top;
  border-radius: 31px;
}

.config-app-visual {
  min-height: 620px;
  margin: 0;
  display: grid;
  place-items: center;
}

.compact-phone {
  width: min(330px, 68vw);
}

.quiet-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.quiet-icons img {
  position: absolute;
  width: clamp(48px, 6vw, 74px);
  filter: drop-shadow(0 16px 18px rgba(0, 0, 0, 0.1));
  animation: calmFloat 9s ease-in-out infinite;
}

.quiet-icons img:nth-child(1) {
  left: 8%;
  top: 14%;
}

.quiet-icons img:nth-child(2) {
  right: 9%;
  top: 17%;
  animation: orbitFloat 11s ease-in-out infinite;
  animation-delay: -2s;
}

.quiet-icons img:nth-child(3) {
  left: 12%;
  bottom: 16%;
  animation-delay: -5s;
}

.quiet-icons img:nth-child(4) {
  right: 14%;
  bottom: 17%;
  animation: orbitFloat 10s ease-in-out infinite reverse;
  animation-delay: -4s;
}

.quiet-icons img:nth-child(5) {
  left: 1%;
  top: 46%;
  width: clamp(42px, 5vw, 62px);
  animation-delay: -6s;
}

.quiet-icons img:nth-child(6) {
  right: 2%;
  top: 48%;
  width: clamp(42px, 5vw, 62px);
  animation: orbitFloat 12s ease-in-out infinite;
  animation-delay: -7s;
}

.quiet-icons img:nth-child(7) {
  left: 42%;
  bottom: 1%;
  width: clamp(44px, 5.2vw, 66px);
  animation-delay: -3.6s;
}

.quiet-icons img:nth-child(8) {
  left: 37%;
  top: 2%;
  width: clamp(40px, 4.8vw, 60px);
  animation: orbitFloat 13s ease-in-out infinite;
  animation-delay: -8s;
}

.quiet-icons img:nth-child(9) {
  right: 34%;
  bottom: 3%;
  width: clamp(40px, 4.8vw, 60px);
  animation-delay: -9.5s;
}

.quiet-icons img:nth-child(10) {
  right: 38%;
  top: 4%;
  width: clamp(38px, 4.4vw, 56px);
  animation: orbitFloat 9s ease-in-out infinite reverse;
  animation-delay: -1.2s;
}

.app-showcase {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 56px;
  align-items: start;
  border-top: 1px solid var(--soft-line);
}

.app-screen-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(132px, 1fr));
  gap: 18px;
  align-items: start;
}

.app-screen-grid figure {
  margin: 0;
  animation: screenDrift 8s ease-in-out infinite;
}

.app-screen-grid figure:nth-child(2) {
  margin-top: 56px;
  animation-delay: -1.5s;
}

.app-screen-grid figure:nth-child(3) {
  margin-top: 12px;
  animation-delay: -3s;
}

.app-screen-grid figure:nth-child(4) {
  margin-top: 76px;
  animation-delay: -4.5s;
}

.app-screen-grid figure:nth-child(5) {
  margin-top: 28px;
  animation-delay: -6s;
}

.app-screen-grid img {
  width: 100%;
  border: 8px solid #111;
  border-radius: 28px;
  background: #111;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.14);
}

.app-screen-grid figcaption {
  margin-top: 12px;
  color: #333;
  font-size: 0.92rem;
  font-weight: 740;
  text-align: center;
}

.module-section {
  grid-template-columns: 1.05fr 0.95fr;
}

.module-photo img {
  aspect-ratio: 4 / 3;
  object-position: center;
}

.insight-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  border-top: 1px solid var(--soft-line);
}

.insight-card {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 38px;
  border: 1px solid #ececec;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.45), #fff 58%),
    #fbfbfb;
}

.insight-card h2 {
  font-size: clamp(2rem, 3.4vw, 3.6rem);
}

.validation-section {
  text-align: center;
  border-top: 1px solid var(--soft-line);
}

.validation-section h2,
.validation-section p {
  margin-left: auto;
  margin-right: auto;
}

.validation-section p {
  max-width: 760px;
}

.validation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.validation-grid span {
  padding: 18px 14px;
  border: 1px solid #ececec;
  border-radius: 999px;
  color: #222;
  background: #fff;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.04);
  font-weight: 700;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
  border-top: 1px solid var(--soft-line);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.faq-grid article {
  min-height: 160px;
  padding: 24px;
  border: 1px solid #ececec;
  border-radius: 20px;
  background: #fff;
}

.download-section {
  margin-bottom: 84px;
  text-align: center;
  border-top: 1px solid var(--soft-line);
}

.team-note {
  max-width: 920px;
  text-align: center;
  border-top: 1px solid var(--soft-line);
}

.team-note img {
  width: 54px;
  margin: 0 auto 18px;
}

.team-note h2,
.team-note p {
  margin-left: auto;
  margin-right: auto;
}

.team-note p:not(.eyebrow) {
  max-width: 680px;
}

.download-section h2,
.download-section p {
  margin-left: auto;
  margin-right: auto;
}

.download-section p:not(.eyebrow) {
  max-width: 520px;
}

.download-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 860px;
  padding: 0;
  margin: 34px auto 0;
  list-style: none;
  counter-reset: steps;
}

.download-steps li {
  counter-increment: steps;
  padding: 20px;
  border: 1px solid #ececec;
  border-radius: 18px;
  color: #333;
  background: #fff;
  text-align: left;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.04);
}

.download-steps li::before {
  content: counter(steps);
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  border-radius: 50%;
  color: #fff;
  background: #111;
  font-size: 0.78rem;
  font-weight: 800;
}

.cta-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px);
}

.modal.is-open {
  display: grid;
}

.modal-panel {
  position: relative;
  width: min(780px, 100%);
  max-height: min(840px, calc(100vh - 42px));
  overflow: auto;
  padding: 34px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 24px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.16);
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #f6f6f6;
  cursor: pointer;
  font-size: 1.65rem;
  line-height: 1;
}

.modal form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}

label {
  display: grid;
  gap: 7px;
  color: #2d3035;
  font-size: 0.9rem;
  font-weight: 730;
  text-align: left;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #dedede;
  border-radius: 12px;
  background: #fff;
  padding: 13px 14px;
  color: var(--ink);
  outline: none;
}

.botcheck {
  display: none;
}

textarea {
  min-height: 96px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(11, 95, 115, 0.1);
}

.privacy,
.modal .full,
label:has(textarea),
.form-status {
  grid-column: 1 / -1;
}

.privacy {
  margin: 0;
  padding: 13px 14px;
  color: #666;
  background: #fafafa;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  font-size: 0.88rem;
}

.form-status {
  display: none;
  padding: 13px 14px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 720;
}

.form-status.is-success,
.form-status.is-error {
  display: block;
}

.form-status.is-success {
  color: #0a5c2c;
  background: #eefaf2;
  border: 1px solid #cbeed6;
}

.form-status.is-error {
  color: #8a1f1f;
  background: #fff2f2;
  border: 1px solid #f2caca;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 850ms cubic-bezier(.2,.8,.2,1), transform 850ms cubic-bezier(.2,.8,.2,1);
}

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

@keyframes calmFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }
  50% {
    transform: translate3d(0, -14px, 0) rotate(3deg);
  }
}

@keyframes orbitFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(3deg) scale(1);
  }
  35% {
    transform: translate3d(18px, -18px, 0) rotate(-7deg) scale(1.05);
  }
  70% {
    transform: translate3d(-12px, 12px, 0) rotate(6deg) scale(0.98);
  }
}

@keyframes screenDrift {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

@media (max-width: 980px) {
  .brand small,
  nav {
    display: none;
  }

  .statement,
  .product-section,
  .app-section,
  .module-section,
  .editorial-section,
  .flow-section,
  .insight-section,
  .faq-section,
  .app-showcase {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .app-section .section-copy {
    order: -1;
  }

  .product-section,
  .editorial-section,
  .app-showcase,
  .faq-section {
    align-items: start;
  }

  .phone-visual {
    min-height: 620px;
  }

  .flow-grid,
  .validation-grid,
  .faq-grid,
  .download-steps {
    grid-template-columns: 1fr 1fr;
  }

  .app-screen-grid {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
  }

  .app-screen-grid figure:nth-child(n) {
    margin-top: 0;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 74px;
  }

  body {
    overflow-x: hidden;
  }

  .site-header {
    width: min(100% - 24px, 560px);
    padding: 12px 0;
  }

  .brand {
    gap: 10px;
  }

  .hero {
    padding: 0 0 10px;
  }

  .hero-art {
    width: 100%;
    overflow: hidden;
    padding: 24px 0 2px;
  }

  .hero-art picture {
    display: grid;
    place-items: center;
  }

  .mobile-hero-copy {
    display: grid;
    gap: 8px;
    width: min(100% - 36px, 420px);
    margin: 0 auto 20px;
    text-align: center;
  }

  .mobile-hero-copy .eyebrow {
    margin: 0;
  }

  .mobile-hero-copy strong {
    display: block;
    color: #111;
    font-size: clamp(2.25rem, 11vw, 3.45rem);
    font-weight: 820;
    line-height: 1.03;
    letter-spacing: 0;
  }

  .hero-poster {
    width: min(292px, 73vw);
    max-width: 292px;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    object-position: top;
    transform: none;
    border: 10px solid #101010;
    border-radius: 36px;
    background: #101010;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.16);
  }

  .poster-hotspots {
    display: none;
  }

  .mobile-actions {
    display: grid;
    margin-top: 20px;
    width: min(100% - 32px, 390px);
  }

  .statement,
  .product-section,
  .download-section,
  .editorial-section,
  .insight-section,
  .validation-section,
  .faq-section,
  .app-showcase,
  .team-note {
    width: min(100% - 28px, 560px);
    padding: 62px 0;
  }

  .statement {
    border-top: 0;
    padding-top: 56px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.6rem);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(2rem, 10.4vw, 3.1rem);
    line-height: 1.06;
  }

  p {
    font-size: 1rem;
    line-height: 1.62;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.72rem;
  }

  .statement {
    gap: 28px;
  }

  .statement strong {
    font-size: clamp(1.45rem, 7vw, 2.15rem);
  }

  .statement-visual,
  .product-visual {
    border-radius: 16px;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.07);
  }

  .statement-visual img,
  .desktop-visual img,
  .session-section .product-visual img {
    aspect-ratio: 4 / 3;
  }

  .module-photo img {
    max-height: 460px;
    object-fit: cover;
  }

  .section-copy {
    max-width: none;
  }

  .product-section {
    gap: 28px;
  }

  .quiet-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .flow-grid,
  .validation-grid,
  .faq-grid,
  .download-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .flow-grid article,
  .faq-grid article {
    min-height: auto;
    padding: 22px;
  }

  .insight-card {
    min-height: auto;
    padding: 28px;
    border-radius: 20px;
  }

  .insight-card h2 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  .phone-visual {
    min-height: 430px;
    overflow: hidden;
  }

  .phone-device {
    width: min(282px, 74vw);
    border-radius: 34px;
    padding: 9px;
  }

  .phone-device img {
    border-radius: 26px;
  }

  .quiet-icons img {
    width: 44px;
  }

  .quiet-icons img:nth-child(n + 5) {
    display: none;
  }

  .quiet-icons img:nth-child(1) {
    left: 3%;
    top: 12%;
  }

  .quiet-icons img:nth-child(2) {
    right: 2%;
    top: 16%;
  }

  .quiet-icons img:nth-child(3) {
    left: 6%;
    bottom: 14%;
  }

  .quiet-icons img:nth-child(4) {
    right: 6%;
    bottom: 16%;
  }

  .app-screen-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 14px 18px;
    margin-inline: -14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .app-screen-grid::-webkit-scrollbar {
    display: none;
  }

  .app-screen-grid figure {
    flex: 0 0 min(66vw, 248px);
    scroll-snap-align: center;
    animation: none;
  }

  .app-screen-grid img {
    border-width: 6px;
    border-radius: 22px;
  }

  .app-screen-grid figcaption {
    font-size: 0.88rem;
  }

  .config-app-visual {
    min-height: 390px;
  }

  .compact-phone {
    width: min(252px, 70vw);
  }

  .validation-grid span,
  .download-steps li,
  .faq-grid article,
  .flow-grid article {
    border-radius: 16px;
  }

  .validation-grid span {
    padding: 16px 14px;
  }

  .download-section {
    margin-bottom: 42px;
  }

  .cta-row,
  .btn {
    width: 100%;
  }

  .btn {
    min-height: 52px;
    padding-inline: 16px;
    white-space: normal;
  }

  .modal {
    padding: 10px;
    align-items: end;
  }

  .modal-panel {
    width: 100%;
    max-height: calc(100vh - 20px);
    padding: 32px 18px 20px;
    border-radius: 22px 22px 16px 16px;
  }

  .modal-panel h2 {
    font-size: clamp(1.85rem, 8.5vw, 2.55rem);
  }

  .modal form {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 420px) {
  .brand img {
    width: 30px;
    height: 30px;
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .hero-poster {
    width: min(264px, 72vw);
    max-width: 264px;
    transform: none;
    border-width: 8px;
    border-radius: 32px;
  }

  .mobile-actions {
    width: min(100% - 24px, 360px);
  }

  .statement,
  .product-section,
  .download-section,
  .editorial-section,
  .insight-section,
  .validation-section,
  .faq-section,
  .app-showcase,
  .team-note {
    width: min(100% - 24px, 380px);
    padding: 56px 0;
  }

  h1 {
    font-size: clamp(2.25rem, 12.4vw, 3.15rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10.8vw, 2.85rem);
  }

  .phone-device {
    width: min(246px, 72vw);
  }

  .phone-visual {
    min-height: 396px;
  }

  .quiet-icons img {
    width: 38px;
  }

  .app-screen-grid figure {
    flex-basis: min(72vw, 226px);
  }

  .flow-grid article {
    min-height: auto;
  }

  .flow-grid span {
    margin-bottom: 28px;
  }

  .download-steps li {
    padding: 17px;
  }
}
