:root {
  color-scheme: light;
  --ink: #14202d;
  --muted: #647386;
  --line: #dce7eb;
  --paper: #f9fcfc;
  --white: #ffffff;
  --wash: #eaf9f8;
  --wash-blue: #eef4ff;
  --teal: #11bfc2;
  --teal-deep: #087a80;
  --teal-dark: #07545a;
  --coral: #ff6a73;
  --orange: #f4a026;
  --violet: #7657e8;
  --blue: #318bf4;
  --navy: #0b1d2b;
  --shadow: 0 28px 80px rgba(20, 32, 45, 0.14);
  --soft-shadow: 0 14px 42px rgba(20, 32, 45, 0.08);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
  text-decoration-color: rgba(17, 191, 194, 0.55);
  text-underline-offset: 0.2em;
}

a:focus-visible {
  outline: 3px solid rgba(17, 191, 194, 0.5);
  outline-offset: 4px;
  border-radius: 6px;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3.7rem, 7.4vw, 7.1rem);
}

h2 {
  font-size: clamp(2.45rem, 5vw, 4.9rem);
}

h3 {
  font-size: clamp(1.55rem, 2.5vw, 2.45rem);
}

p {
  margin: 0;
}

.section-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.section-kicker,
.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(249, 252, 252, 0.9);
  border-bottom: 1px solid rgba(220, 231, 235, 0.82);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  width: max-content;
  font-weight: 850;
  text-decoration: none;
}

.brand img,
.hero-icon,
.support-hero img,
.final-cta > .section-inner > img {
  border-radius: 23%;
  box-shadow: 0 10px 28px rgba(8, 122, 128, 0.2);
}

.site-header nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 28px);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.site-header nav a,
.site-footer nav a,
.header-store-badge {
  text-decoration: none;
}

.header-store-badge {
  display: inline-flex;
  align-items: center;
  justify-self: end;
}

.header-store-badge img {
  width: auto;
  height: 40px;
}

.hero {
  position: relative;
  min-height: 860px;
  padding: 148px 0 84px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 88% 15%, rgba(17, 191, 194, 0.22), transparent 34%),
    linear-gradient(150deg, #f9fdfd 10%, #eaf9f8 58%, #f4f1ff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.22;
  background-image: radial-gradient(rgba(8, 122, 128, 0.32) 0.8px, transparent 0.8px);
  background-size: 24px 24px;
  mask-image: linear-gradient(90deg, #000, transparent 63%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  top: 22%;
  right: -9%;
  width: 58vw;
  height: 58vw;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  filter: blur(4px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(480px, 1.06fr);
  align-items: center;
  gap: clamp(44px, 5vw, 90px);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 650px;
}

.version-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  padding: 7px 13px 7px 8px;
  border: 1px solid rgba(8, 122, 128, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: var(--soft-shadow);
}

.version-pill span {
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--teal);
  color: #062e32;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-icon {
  width: 88px;
  height: 88px;
  margin-bottom: 28px;
}

.hero h1 {
  max-width: 730px;
}

.hero-copy {
  max-width: 600px;
  margin-top: 24px;
  color: #4d6071;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.price-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(100%, 620px);
  margin-top: 26px;
  padding: 18px 21px;
  border: 2px solid rgba(244, 160, 38, 0.72);
  border-radius: 18px;
  background: linear-gradient(135deg, #fffdf7, #fff0cc);
  box-shadow: 0 18px 42px rgba(166, 91, 0, 0.14);
}

.price-highlight strong {
  flex: 0 0 auto;
  color: #b55300;
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.price-highlight span {
  color: #5c3a13;
  font-size: 0.96rem;
  font-weight: 850;
  line-height: 1.25;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.app-store-badge {
  display: inline-flex;
  padding: 6px 0;
  text-decoration: none;
}

.app-store-badge img {
  width: auto;
  height: 56px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 21px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.button.secondary {
  border: 1px solid rgba(20, 32, 45, 0.16);
  background: rgba(255, 255, 255, 0.7);
}

.hero-note {
  margin-top: 18px;
  color: #718091;
  font-size: 0.84rem;
}

.hero-devices {
  position: relative;
  min-height: 660px;
  perspective: 1400px;
}

.device-card {
  position: absolute;
  top: 50%;
  width: min(305px, 44%);
  margin: 0;
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, 0.95);
  border-radius: 48px;
  background: #fff;
  box-shadow: 0 36px 90px rgba(13, 45, 57, 0.2);
  transform-origin: 50% 50%;
}

.device-card img {
  width: 100%;
}

.device-main {
  z-index: 3;
  left: 26%;
  transform: translateY(-50%) rotate(-1deg);
}

.device-back {
  z-index: 1;
  left: 2%;
  transform: translateY(-48%) rotate(-8deg) scale(0.88);
  opacity: 0.9;
}

.device-front {
  z-index: 4;
  right: -2%;
  transform: translateY(-45%) rotate(8deg) scale(0.86);
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 28px 30px;
  text-align: center;
}

.trust-grid > div + div {
  border-left: 1px solid var(--line);
}

.trust-grid strong {
  font-size: 1rem;
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.84rem;
}

.release-section,
.reports,
.everywhere,
.essentials,
.screenshots,
.privacy-band,
.support-content {
  padding: clamp(78px, 10vw, 132px) 0;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 48px;
}

.section-heading > p:last-child,
.centered-heading > p:last-child {
  max-width: 710px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.08rem;
}

.release-heading {
  max-width: 940px;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.release-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.release-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: stretch;
  min-height: 545px;
  background: linear-gradient(135deg, #fff 20%, #e8fbfa 100%);
}

.release-card-featured.reverse {
  grid-template-columns: minmax(360px, 1.1fr) minmax(0, 0.9fr);
  background: linear-gradient(135deg, #fff9ed 0%, #fff 65%);
}

.release-card-featured.reverse .release-copy {
  grid-column: 2;
}

.release-card-featured.reverse .release-shot {
  grid-column: 1;
  grid-row: 1;
}

.release-copy {
  align-self: center;
  padding: clamp(34px, 5vw, 70px);
}

.release-copy h3 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4vw, 4rem);
}

.release-copy > p:last-child,
.compact-card > p:last-child,
.surface-card p,
.essentials-grid > div > p:last-child,
.privacy-grid p {
  color: var(--muted);
  font-size: 1.03rem;
}

.number-badge {
  display: inline-grid;
  place-items: center;
  width: 39px;
  height: 39px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 850;
}

.release-shot {
  align-self: end;
  justify-self: center;
  width: min(360px, 76%);
  height: 500px;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.96);
  border-bottom: 0;
  border-radius: 44px 44px 0 0;
  box-shadow: 0 30px 70px rgba(20, 32, 45, 0.17);
}

.release-shot img {
  width: 100%;
}

.compact-card {
  min-height: 590px;
  padding: 34px;
}

.compact-card h3 {
  margin-bottom: 16px;
}

.gesture-pair {
  position: relative;
  height: 265px;
  margin: -12px -8px 34px;
}

.gesture-pair img {
  position: absolute;
  bottom: 0;
  width: 165px;
  border: 4px solid #fff;
  border-radius: 24px;
  box-shadow: 0 20px 48px rgba(20, 32, 45, 0.15);
}

.gesture-pair img:first-child {
  left: calc(50% - 145px);
  transform: rotate(-6deg);
}

.gesture-pair img:last-child {
  right: calc(50% - 145px);
  transform: rotate(6deg);
}

.color-card {
  background: linear-gradient(145deg, #171e38, #34255f 70%, #5440a2);
  color: #fff;
}

.color-card .section-kicker {
  color: #9ff5f2;
}

.color-card > p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.color-card .number-badge {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.range-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: min(100%, 390px);
  height: 265px;
  margin: -12px auto 34px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17, 191, 194, 0.32), transparent 62%);
}

.range-mark strong {
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.9;
}

.range-mark span {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.release-more {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.release-more > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.66);
}

.release-more span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--wash);
  color: var(--teal-deep);
  font-size: 1.2rem;
  font-weight: 900;
}

.release-more p {
  color: var(--muted);
  font-size: 0.9rem;
}

.release-more strong,
.feature-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
}

.reports {
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.report-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(540px, 1.2fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.report-copy .section-kicker {
  color: #87eeea;
}

.report-copy > p:not(.section-kicker) {
  margin-top: 23px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: inherit;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--teal);
  color: #052c31;
  font-size: 0.7rem;
  font-weight: 950;
}

.report-stack {
  position: relative;
  min-height: 660px;
}

.report-stack figure {
  position: absolute;
  top: 50%;
  width: 265px;
  margin: 0;
  border: 5px solid rgba(255, 255, 255, 0.96);
  border-radius: 38px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.33);
}

.report-stack figure:nth-child(1) {
  z-index: 1;
  left: 0;
  transform: translateY(-50%) rotate(-7deg) scale(0.86);
  opacity: 0.78;
}

.report-stack figure:nth-child(2) {
  z-index: 2;
  left: 50%;
  transform: translate(-50%, -50%);
}

.report-stack figure:nth-child(3) {
  z-index: 3;
  right: 0;
  transform: translateY(-50%) rotate(7deg) scale(0.86);
  opacity: 0.78;
}

.report-stack img {
  width: 100%;
  border-radius: 32px;
}

.report-stack figcaption {
  position: absolute;
  left: 50%;
  bottom: -46px;
  width: max-content;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.centered-heading {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered-heading > p:last-child {
  margin-right: auto;
  margin-left: auto;
}

.everywhere-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.surface-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.72fr);
  min-height: 540px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.surface-card > div:first-child {
  align-self: center;
  padding: 38px;
}

.surface-card h3 {
  margin-bottom: 16px;
}

.surface-card > img {
  align-self: end;
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: top;
  border: 5px solid white;
  border-bottom: 0;
  border-radius: 34px 34px 0 0;
  box-shadow: 0 26px 60px rgba(20, 32, 45, 0.16);
}

.phone-surface {
  background: linear-gradient(140deg, #fff, #e8f9f8);
}

.widget-surface {
  background: linear-gradient(140deg, #fff, #f1efff);
}

.watch-surface {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.75fr) minmax(380px, 1.25fr);
  align-items: center;
  min-height: 480px;
  background: linear-gradient(135deg, #14202d, #0a4d52 75%, #087a80);
  color: #fff;
}

.watch-surface .section-kicker {
  color: #90f1ed;
}

.watch-surface p {
  color: rgba(255, 255, 255, 0.7);
}

.watch-surface .text-link {
  color: #fff;
}

.watch-frame {
  position: relative;
  justify-self: center;
  width: min(400px, 78%);
  padding: 26px;
  border-radius: 42%;
  background: #070a0c;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.42);
}

.watch-frame::before {
  content: "";
  position: absolute;
  top: 34%;
  right: -15px;
  width: 15px;
  height: 74px;
  border-radius: 0 12px 12px 0;
  background: #0b0e10;
}

.watch-frame img {
  width: 100%;
  border-radius: 38%;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--teal-deep);
  font-weight: 800;
}

.essentials {
  background: #fff;
}

.essentials-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: clamp(48px, 9vw, 120px);
  align-items: center;
}

.essentials-grid > div > p:last-child {
  margin-top: 24px;
}

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

.feature-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.feature-list span {
  color: var(--teal-deep);
  font-size: 0.8rem;
  font-weight: 850;
}

.feature-list p {
  color: var(--muted);
}

.screenshots {
  overflow: hidden;
  background: #f1f5f7;
}

.screenshot-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(235px, 25%);
  gap: 24px;
  padding: 10px 4px 30px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--teal) transparent;
}

.screenshot-rail figure {
  scroll-snap-align: start;
  margin: 0;
}

.screenshot-rail img {
  width: 100%;
  border: 5px solid #fff;
  border-radius: 38px;
  box-shadow: 0 20px 52px rgba(20, 32, 45, 0.15);
}

.screenshot-rail figcaption {
  margin-top: 16px;
  color: #465668;
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
}

.privacy-band {
  background: #dbf4f2;
}

.privacy-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  align-items: center;
  gap: clamp(40px, 8vw, 100px);
}

.final-cta {
  padding: clamp(82px, 11vw, 150px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(17, 191, 194, 0.24), transparent 42%),
    var(--navy);
  color: #fff;
  text-align: center;
}

.final-cta .section-inner {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.final-cta > .section-inner > img {
  margin-bottom: 26px;
}

.final-cta .section-kicker {
  color: #8af0ec;
}

.final-cta .app-store-badge {
  margin-top: 28px;
}

.final-cta .price-highlight {
  justify-content: center;
  margin-top: 20px;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  padding: 46px clamp(22px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer strong {
  font-size: 1.08rem;
}

.site-footer p {
  margin: 7px 0 0;
  color: var(--muted);
}

.site-footer .legal {
  max-width: 620px;
  font-size: 0.75rem;
}

.site-footer nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Support and privacy pages */

.support-page {
  background: var(--paper);
}

.support-hero {
  padding: 154px 0 92px;
  background:
    radial-gradient(circle at 82% 20%, rgba(17, 191, 194, 0.2), transparent 27%),
    linear-gradient(145deg, #effaf9, #f7f4ff);
}

.support-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 70px;
}

.support-hero h1 {
  max-width: 880px;
  font-size: clamp(2.8rem, 6vw, 5.7rem);
}

.support-hero p:not(.section-kicker) {
  max-width: 740px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.1rem;
}

.support-hero > .section-inner > img,
.support-hero-grid > img {
  width: 180px;
  height: 180px;
}

.support-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.support-panel {
  padding: clamp(25px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.support-panel.wide {
  grid-column: 1 / -1;
}

.support-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(1.45rem, 2.7vw, 2.2rem);
}

.support-panel p,
.support-panel li {
  color: var(--muted);
}

.support-panel p + p {
  margin-top: 14px;
}

.support-panel ul,
.support-panel ol {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 1.25rem;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

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

  .hero-content {
    max-width: 760px;
    text-align: center;
    margin: 0 auto;
  }

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

  .hero-actions {
    justify-content: center;
  }

  .hero-devices {
    width: min(760px, 100%);
    min-height: 690px;
    margin: 0 auto;
  }

  .device-main {
    left: 28%;
  }

  .device-front {
    right: 3%;
  }

  .release-more {
    grid-template-columns: 1fr;
  }

  .report-layout {
    grid-template-columns: 1fr;
  }

  .report-copy {
    max-width: 760px;
  }

  .report-stack {
    width: min(700px, 100%);
    margin: 0 auto;
  }

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

  .watch-surface {
    grid-column: auto;
  }

  .screenshot-rail {
    grid-auto-columns: minmax(235px, 34%);
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: clamp(3.15rem, 16vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.2rem, 11vw, 3.5rem);
  }

  .section-inner {
    width: min(100% - 34px, 1200px);
  }

  .site-header {
    min-height: 64px;
    padding: 10px 17px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .header-store-badge img {
    height: 36px;
  }

  .hero {
    padding: 112px 0 50px;
  }

  .hero::before {
    mask-image: linear-gradient(#000, transparent 60%);
  }

  .version-pill {
    margin-bottom: 22px;
  }

  .hero-icon {
    width: 76px;
    height: 76px;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .price-highlight {
    align-items: center;
    flex-direction: column;
    gap: 8px;
    padding: 17px 18px;
    text-align: center;
  }

  .hero-devices {
    min-height: 490px;
  }

  .device-card {
    width: min(235px, 52%);
    border-width: 4px;
    border-radius: 34px;
  }

  .device-main {
    left: 24%;
  }

  .device-back {
    left: -7%;
  }

  .device-front {
    right: -7%;
  }

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

  .trust-grid > div {
    padding: 17px 20px;
  }

  .trust-grid > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .release-section,
  .reports,
  .everywhere,
  .essentials,
  .screenshots,
  .privacy-band,
  .support-content {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

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

  .release-card-featured,
  .release-card-featured.reverse {
    grid-column: auto;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .release-card-featured.reverse .release-copy,
  .release-card-featured.reverse .release-shot {
    grid-column: 1;
  }

  .release-card-featured.reverse .release-copy {
    grid-row: 1;
  }

  .release-card-featured.reverse .release-shot {
    grid-row: 2;
  }

  .release-copy {
    padding: 34px 28px;
  }

  .release-shot {
    width: min(300px, 75%);
    height: 390px;
    border-radius: 35px 35px 0 0;
  }

  .compact-card {
    min-height: 0;
    padding: 28px;
  }

  .gesture-pair,
  .range-mark {
    height: 230px;
  }

  .release-more > div {
    padding: 19px;
  }

  .report-stack {
    min-height: 500px;
  }

  .report-stack figure {
    width: 200px;
    border-width: 3px;
    border-radius: 28px;
  }

  .report-stack img {
    border-radius: 24px;
  }

  .report-stack figure:nth-child(1) {
    left: -6%;
  }

  .report-stack figure:nth-child(3) {
    right: -6%;
  }

  .surface-card,
  .watch-surface {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .surface-card > div:first-child {
    padding: 30px;
  }

  .surface-card > img {
    justify-self: center;
    width: min(300px, 72%);
    max-height: 410px;
  }

  .watch-frame {
    width: min(310px, 72%);
    margin: 20px 0 48px;
  }

  .essentials-grid,
  .privacy-grid,
  .support-hero-grid {
    grid-template-columns: 1fr;
  }

  .screenshot-rail {
    grid-auto-columns: minmax(225px, 70%);
    gap: 18px;
  }

  .screenshot-rail img {
    border-width: 4px;
    border-radius: 32px;
  }

  .site-footer {
    flex-direction: column;
    padding: 38px 22px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .support-hero {
    padding: 116px 0 66px;
  }

  .support-hero-grid {
    gap: 35px;
  }

  .support-hero-grid > img {
    width: 125px;
    height: 125px;
  }

  .support-layout {
    grid-template-columns: 1fr;
  }

  .support-panel.wide {
    grid-column: auto;
  }
}

@media (max-width: 420px) {
  .brand span {
    font-size: 0.92rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .device-card {
    width: 58%;
  }

  .report-stack figure {
    width: 176px;
  }

  .gesture-pair img {
    width: 145px;
  }

  .gesture-pair img:first-child {
    left: calc(50% - 128px);
  }

  .gesture-pair img:last-child {
    right: calc(50% - 128px);
  }
}

/* Version 1.5 marketing components */

.sort-mode-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.sort-mode-list span {
  padding: 8px 12px;
  border: 1px solid rgba(118, 87, 232, 0.2);
  border-radius: 999px;
  background: rgba(118, 87, 232, 0.09);
  color: #49349b;
  font-size: 0.78rem;
  font-weight: 850;
}

.sorting-feature {
  background: linear-gradient(135deg, #f4f1ff, #fff 62%);
}

.sorting-feature .release-wide-shot {
  grid-column: 1;
  grid-row: 1;
}

.release-wide-shot {
  align-self: center;
  padding: clamp(24px, 4vw, 48px) 0 clamp(24px, 4vw, 48px) clamp(24px, 4vw, 48px);
}

.release-wide-shot img {
  width: 100%;
  border: 6px solid rgba(255, 255, 255, 0.96);
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(20, 32, 45, 0.16);
}

.crop-trackpacks img {
  transform: translateY(-2%);
}

.warning-card {
  background: linear-gradient(150deg, #fff, #fff5e6);
}

.feature-phone-pair {
  position: relative;
  height: 280px;
  margin: -12px -8px 34px;
}

.feature-phone-pair img {
  position: absolute;
  bottom: 0;
  width: 170px;
  border: 4px solid #fff;
  border-radius: 26px;
  box-shadow: 0 20px 48px rgba(20, 32, 45, 0.16);
}

.feature-phone-pair img:first-child {
  left: calc(50% - 150px);
  transform: rotate(-6deg);
}

.feature-phone-pair img:last-child {
  right: calc(50% - 150px);
  transform: rotate(6deg);
}

.note-card-visual {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 280px;
  margin: -12px -8px 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: radial-gradient(circle at 50% 20%, rgba(17, 191, 194, 0.28), transparent 62%);
}

.note-card-visual img {
  width: 210px;
  border: 4px solid #fff;
  border-radius: 28px;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.3);
}

.ipad-surface {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.62fr) minmax(520px, 1.38fr);
  align-items: center;
  min-height: 590px;
  background: linear-gradient(140deg, #f4f1ff, #fff 58%, #e9fbfa);
}

.ipad-surface > img {
  align-self: center;
  justify-self: end;
  width: 94%;
  max-height: 540px;
  margin: 38px 0 38px 38px;
  object-fit: contain;
  border: 6px solid #fff;
  border-right: 0;
  border-bottom: 6px solid #fff;
  border-radius: 34px 0 0 34px;
}

.upgrade-section {
  padding: clamp(78px, 10vw, 132px) 0;
  overflow: hidden;
  background: linear-gradient(145deg, #fff9ed, #fff 52%, #e9f9f8);
}

.upgrade-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(50px, 9vw, 120px);
}

.upgrade-visual {
  justify-self: center;
  width: min(360px, 82%);
  max-height: 570px;
  overflow: hidden;
  border: 6px solid #fff;
  border-bottom: 0;
  border-radius: 44px 44px 0 0;
  box-shadow: 0 34px 80px rgba(20, 32, 45, 0.18);
}

.upgrade-visual img {
  width: 100%;
}

.upgrade-copy > p:not(.section-kicker) {
  max-width: 680px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.08rem;
}

.light-check-list li {
  color: var(--ink);
}

.screenshot-ipad {
  grid-column: span 2;
}

.screenshot-ipad img {
  aspect-ratio: 1200 / 1741;
  object-fit: cover;
  object-position: top;
}

@media (max-width: 1040px) {
  .ipad-surface {
    grid-column: auto;
    grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.28fr);
  }

  .screenshot-ipad {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .sorting-feature .release-copy,
  .sorting-feature .release-wide-shot {
    grid-column: 1;
  }

  .sorting-feature .release-copy {
    grid-row: 1;
  }

  .sorting-feature .release-wide-shot {
    grid-row: 2;
    padding: 0 22px 28px;
  }

  .feature-phone-pair,
  .note-card-visual {
    height: 235px;
  }

  .feature-phone-pair img {
    width: 145px;
  }

  .feature-phone-pair img:first-child {
    left: calc(50% - 128px);
  }

  .feature-phone-pair img:last-child {
    right: calc(50% - 128px);
  }

  .note-card-visual img {
    width: 175px;
  }

  .ipad-surface {
    grid-template-columns: 1fr;
  }

  .ipad-surface > img {
    justify-self: end;
    width: calc(100% - 26px);
    max-height: none;
    margin: 0 0 34px 26px;
  }

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

  .upgrade-copy {
    grid-row: 1;
  }

  .upgrade-visual {
    grid-row: 2;
    width: min(310px, 75%);
    max-height: 470px;
  }
}

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