:root {
  --paper: #f7f9fa;
  --white: #fff;
  --ink: #122c36;
  --muted: #576970;
  --line: #d8e0e4;
  --brand: #074452;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
summary {
  font: inherit;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #126d8c;
  outline-offset: 6px;
  border-radius: 6px;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.06;
  letter-spacing: -0.045em;
  font-weight: 600;
}
p {
  color: var(--muted);
}
.wrap {
  width: min(1224px, calc(100% - 96px));
  margin-inline: auto;
}
.eyebrow {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 650;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 249, 250, 0.94);
  border-bottom: 1px solid rgba(18, 44, 54, 0.08);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}
.nav-shell {
  width: min(1320px, calc(100% - 64px));
  height: 86px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  line-height: 1.1;
  font-size: 23px;
  letter-spacing: -0.055em;
  font-weight: 600;
}
.brand img {
  border-radius: 11px;
  flex: none;
}
.studio {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 5px;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 35px;
  font-size: 15px;
  font-weight: 550;
}
.site-header nav > a,
.apps-menu summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-header nav > a:hover,
.site-header nav > a[aria-current] {
  color: var(--brand);
}
.locale-link {
  margin-left: 8px;
  padding-left: 30px;
  border-left: 1px solid var(--line);
}
summary {
  list-style: none;
  cursor: pointer;
}
summary::-webkit-details-marker {
  display: none;
}
.apps-menu {
  position: relative;
}
.apps-menu summary span {
  font-size: 18px;
  transition: transform 0.2s;
}
.apps-menu[open] summary span {
  transform: rotate(180deg);
}
.app-menu-panel {
  position: absolute;
  width: 400px;
  top: calc(100% + 12px);
  left: -124px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 12px;
  border-radius: 22px;
  box-shadow: 0 22px 80px #072b3826;
}
.app-menu-panel > a {
  display: flex;
  gap: 15px;
  align-items: center;
  border-radius: 13px;
  padding: 12px;
}
.app-menu-panel > a:hover {
  background: var(--wash);
}
.app-menu-panel img {
  flex: none;
}
.app-menu-panel strong {
  display: block;
  font-size: 17px;
}
.app-menu-panel small {
  font-size: 12px;
  line-height: 1.5;
  display: block;
  color: var(--muted);
  font-weight: 400;
}
.app-menu-panel .menu-device {
  font-size: 12px;
  margin-top: 3px;
}
.app-menu-panel > a > span:last-child {
  margin-left: auto;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 12px;
  min-height: 48px;
  min-width: 48px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  margin: 6px 0;
  transition: transform 0.2s;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 550;
  transition:
    background 0.2s,
    transform 0.25s var(--ease),
    box-shadow 0.25s;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 20px #082b381a;
}
.button-dark {
  background: var(--ink);
  color: #fff;
}
.button-dark:hover {
  background: #214955;
}
.button-app {
  background: var(--app-ink);
  color: white;
}
.button-outline {
  border: 1px solid var(--line);
  background: transparent;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 550;
  line-height: 1.5;
  min-height: 44px;
}
.text-link > span {
  transition: transform 0.2s;
}
.text-link:hover > span {
  transform: translate(3px, -3px);
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.home-hero {
  text-align: center;
  padding-top: 78px;
  padding-bottom: 106px;
  position: relative;
}
.home-hero > .eyebrow {
  color: var(--brand);
  margin-bottom: 23px;
}
.home-hero h1 {
  font-size: clamp(56px, 6.8vw, 94px);
  letter-spacing: -0.06em;
  line-height: 1.02;
  font-weight: 550;
}
.hero-summary {
  font-size: 21px;
  line-height: 1.55;
  max-width: 650px;
  margin: 27px auto 29px;
  letter-spacing: -0.012em;
}
.hero-orbit {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 76px;
  margin: 70px auto 0;
  padding: 0 20px;
  position: relative;
}
.hero-orbit:before {
  content: "";
  position: absolute;
  inset: 28% 0 8%;
  background: radial-gradient(ellipse at center, #dcebf0 0, transparent 69%);
  z-index: -1;
}
.orbit-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  transition: transform 0.45s var(--ease);
}
.orbit-item:hover {
  transform: translateY(-10px);
}
.orbit-item img {
  width: 156px;
  filter: drop-shadow(0 22px 18px #092b3a18);
}
.orbit-item > span {
  font-size: 20px;
  letter-spacing: -0.035em;
  font-weight: 550;
  margin-top: 18px;
}
.orbit-item > small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}
.orbit-0,
.orbit-3 {
  transform: translateY(18px);
}
.orbit-0:hover,
.orbit-3:hover {
  transform: translateY(8px);
}
.section-heading {
  margin-bottom: 40px;
}
.section-heading .eyebrow {
  color: var(--muted);
  margin-bottom: 14px;
}
.section-heading h2 {
  font-size: clamp(34px, 3.5vw, 49px);
  margin-bottom: 18px;
}
.section-heading > p {
  max-width: 600px;
  font-size: 19px;
}
.collection {
  padding: 46px 0 120px;
}
.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.app-card {
  position: relative;
  isolation: isolate;
  background: var(--wash);
  border: 1px solid #ffffff;
  min-height: 410px;
  overflow: hidden;
  border-radius: 26px;
  display: flex;
  align-items: center;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s;
}
.app-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px #122c3610;
}
.card-content {
  padding: 35px 34px;
  position: relative;
  width: 76%;
  z-index: 2;
}
.card-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 64px;
}
.card-top img {
  width: 72px;
  height: 72px;
}
.devices {
  font-size: 12px;
  letter-spacing: 0.025em;
  color: var(--muted);
}
.app-card h3 {
  font-size: 35px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  max-width: 85%;
}
.app-card p {
  font-size: 16px;
  margin-top: 12px;
  max-width: 260px;
}
.app-card .text-link {
  margin-top: 19px;
  color: var(--app-ink);
}
.card-visual {
  position: absolute;
  right: -82px;
  bottom: 52px;
  transform: rotate(-12deg);
  z-index: 0;
  opacity: 0.9;
}
.card-visual img {
  width: 230px;
  filter: drop-shadow(0 22px 18px #122c361a);
}
.app-card-notepad .card-visual {
  transform: rotate(8deg);
  right: -76px;
}
.app-card-launch .card-visual {
  transform: rotate(-6deg);
}
.stretched-link:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
}
.card-content {
  position: static;
}
.philosophy {
  background: #073542;
  color: #f4f8f9;
  padding: 100px 0 105px;
  border-radius: 40px 40px 0 0;
}
.philosophy-heading {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 120px;
  align-items: end;
}
.philosophy-heading img {
  width: 80px;
  border-radius: 18px;
  margin-bottom: 35px;
}
.philosophy-heading .eyebrow {
  color: #97bec7;
  margin-bottom: 18px;
}
.philosophy h2 {
  font-size: clamp(40px, 4.1vw, 58px);
  letter-spacing: -0.045em;
}
.philosophy-heading > p {
  font-size: 22px;
  color: #c3d5da;
  line-height: 1.65;
  padding-bottom: 8px;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px;
  margin-top: 92px;
  border-top: 1px solid #b5d1d52e;
  padding-top: 34px;
}
.value-number {
  font-size: 13px;
  color: #9fc3cb;
}
.value-grid h3 {
  font-size: 23px;
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin: 28px 0 17px;
}
.value-grid p {
  font-size: 16px;
  color: #bdd0d6;
}
.support-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding-block: 90px;
}
.support-callout .eyebrow {
  color: var(--muted);
  margin-bottom: 18px;
}
.support-callout h2 {
  font-size: 46px;
}
.support-callout p {
  margin-top: 18px;
  font-size: 19px;
  max-width: 540px;
}
.support-callout .button {
  flex: none;
}
.site-footer {
  width: min(1320px, calc(100% - 64px));
  margin: auto;
  border-top: 1px solid var(--line);
  padding: 46px 0 28px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}
.footer-top > p {
  font-size: 14px;
}
.footer-top .text-link {
  font-size: 14px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  font-size: 12px;
  color: var(--muted);
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.footer-bottom nav {
  display: flex;
  gap: 25px;
}
.footer-bottom nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.footer-bottom nav a:hover {
  text-decoration: underline;
}
.product-hero {
  padding-top: 34px;
  text-align: center;
}
.back-link {
  display: flex;
  min-height: 44px;
  align-items: center;
  font-size: 14px;
  color: var(--muted);
  width: max-content;
}
.product-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
  font-size: 23px;
  letter-spacing: -0.035em;
  font-weight: 550;
}
.product-brand > .devices {
  border-left: 1px solid var(--line);
  padding-left: 16px;
  letter-spacing: 0;
}
.product-hero > .eyebrow {
  margin: 35px 0 18px;
  color: var(--app-ink);
}
.product-hero h1 {
  font-size: clamp(56px, 6.5vw, 89px);
  font-weight: 550;
  letter-spacing: -0.055em;
}
.product-hero .hero-summary {
  max-width: 700px;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.availability {
  font-size: 12px;
  margin-top: 15px;
}
.product-stage {
  margin-top: 64px;
  border-radius: 32px;
  background:
    radial-gradient(ellipse at 50% 30%, #ffffffc9, transparent 65%), var(--wash);
  padding: 46px 42px 22px;
  overflow: hidden;
  border: 1px solid #fff;
  box-shadow: inset 0 1px 0 #fff;
}
.product-capture {
  margin: auto;
  max-width: 1110px;
}
.capture-image {
  width: 100%;
  object-fit: contain;
  box-shadow: 0 22px 42px #122c3623;
  border-radius: 12px;
}
.product-capture figcaption {
  font-size: 12px;
  margin: 18px auto 0;
  color: var(--app-ink);
  max-width: 90%;
}
.product-icon-stage {
  min-height: 340px;
  display: grid;
  place-items: center;
}
.product-icon-stage img {
  width: 300px;
  filter: drop-shadow(0 20px 24px #122c3617);
}
.product-intro {
  text-align: center;
  max-width: 830px;
  padding: 106px 0 82px;
}
.product-intro .eyebrow {
  color: var(--app-ink);
  margin-bottom: 22px;
}
.product-intro h2 {
  font-size: 52px;
}
.product-intro p {
  font-size: 22px;
  margin-top: 24px;
  line-height: 1.65;
}
.features {
  padding-bottom: 74px;
}
.feature-row {
  display: grid;
  grid-template-columns: 70px 1fr 1fr;
  gap: 32px;
  padding: 44px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.feature-number {
  font-size: 14px;
  color: var(--app-ink);
  padding-top: 4px;
}
.feature-label {
  display: block;
  font-size: 12px;
  color: var(--app-ink);
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 0.045em;
}
.feature-row h3 {
  font-size: 31px;
  line-height: 1.14;
  max-width: 350px;
}
.feature-row > p {
  font-size: 18px;
  line-height: 1.7;
  padding-top: 3px;
}
.gallery-section {
  padding: 22px 0 65px;
}
.gallery {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
  padding: 4px 4px 24px;
  border-radius: 18px;
}
.gallery-slide {
  flex: 0 0 89%;
  scroll-snap-align: start;
  background: var(--wash);
  padding: 34px 34px 24px;
  border-radius: 22px;
}
.gallery-slide .capture-image {
  max-height: 650px;
  width: 100%;
  object-fit: contain;
  box-shadow: none;
  border-radius: 8px;
}
.gallery-slide figcaption {
  font-size: 14px;
  color: var(--app-ink);
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 23px;
}
.gallery-slide figcaption span {
  font-size: 12px;
  opacity: 0.7;
}
.gallery-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}
.gallery-controls p {
  font-size: 13px;
}
.gallery-controls > div {
  display: flex;
  gap: 10px;
}
.gallery-controls button {
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  background: white;
  font-size: 22px;
  color: var(--ink);
}
.gallery-controls button:hover {
  background: var(--wash);
}
.gallery-group + .gallery-group {
  margin-top: 44px;
}
.gallery-group > h3 {
  font-size: 24px;
  margin-bottom: 18px;
  color: var(--app-ink);
}
.gallery-slide[data-orientation="portrait"] {
  flex-basis: min(95%, calc(720px * var(--capture-ratio) + 48px));
  padding: 24px;
}
.gallery-group[data-platform="iPad"]
  .gallery-slide[data-orientation="portrait"] {
  flex-basis: min(95%, calc(1080px * var(--capture-ratio) + 48px));
}
.gallery-slide[data-orientation="portrait"] .capture-image {
  width: 100%;
  height: auto;
  max-height: none;
  border-radius: 0;
}
.gallery-controls button:disabled {
  opacity: 0.38;
  cursor: default;
}
.gallery-controls button:disabled:hover {
  background: white;
}
@media (max-width: 700px) {
  .gallery-slide[data-orientation="portrait"] {
    flex-basis: 95%;
    padding: 16px 12px;
  }
}

.platform-band {
  display: flex;
  align-items: center;
  gap: 26px;
  border-block: 1px solid var(--line);
  padding-block: 38px;
}
.platform-band > span {
  font-size: 14px;
  color: var(--muted);
}
.platform-band h2 {
  font-size: 30px;
  letter-spacing: -0.025em;
}
.platform-band p {
  font-size: 14px;
  margin-left: auto;
}
.plans-section {
  padding-block: 94px;
}
.plan-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
}
.plan-grid article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 34px;
}
.plan-grid .pro-plan {
  background: var(--wash);
  border-color: transparent;
}
.plan-label {
  display: block;
  font-size: 28px;
  font-weight: 550;
  letter-spacing: -0.025em;
  margin-bottom: 25px;
  color: var(--app-ink);
}
.plan-grid p {
  font-size: 18px;
}
.plan-grid .commercial-copy {
  font-size: 14px;
  line-height: 1.75;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid #122c3617;
}
.price-note {
  font-size: 13px;
  margin-top: 20px;
  max-width: 900px;
}
.product-privacy {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  border-block: 1px solid var(--line);
  padding-block: 54px;
}
.product-privacy h2 {
  font-size: 38px;
}
.product-privacy p {
  font-size: 18px;
  margin-bottom: 18px;
}
.product-end {
  text-align: center;
  padding-block: 100px;
}
.product-end img {
  margin: auto;
}
.product-end h2 {
  font-size: 49px;
  margin-top: 25px;
}
.product-end > p:not(.availability) {
  font-size: 20px;
  margin: 18px 0 26px;
}
.more-apps {
  padding-bottom: 84px;
}
.more-apps h2 {
  font-size: 30px;
  margin-bottom: 28px;
}
.more-apps > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.more-apps a {
  display: flex;
  align-items: center;
  gap: 17px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  font-weight: 550;
}
.more-apps a > span:last-child {
  margin-left: auto;
}
.text-page-hero {
  padding-top: 84px;
  max-width: 870px;
  margin-bottom: 80px;
}
.text-page-hero .eyebrow {
  color: var(--brand);
  margin-bottom: 20px;
}
.text-page-hero h1 {
  font-size: clamp(60px, 7vw, 96px);
  letter-spacing: -0.06em;
}
.text-page-hero > p {
  font-size: 23px;
  line-height: 1.6;
  margin-top: 28px;
  max-width: 780px;
}
.updated {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 25px;
}
.policy-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 88px;
  padding-bottom: 90px;
  align-items: start;
}
.policy-nav {
  position: sticky;
  top: 130px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  border-left: 1px solid var(--line);
}
.policy-nav a {
  display: block;
  padding: 10px 0 10px 20px;
  color: var(--muted);
  line-height: 1.5;
}
.policy-nav a:hover {
  color: var(--brand);
  background: #e8eff2;
}
.policy-body section {
  margin-bottom: 52px;
  scroll-margin-top: 128px;
}
.policy-body .eyebrow {
  color: #52656d;
  font-size: 12px;
  margin-bottom: 15px;
}
.policy-body h2 {
  font-size: 30px;
  line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.policy-body p {
  font-size: 17px;
  line-height: 1.85;
}
.external-list {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 35px;
  margin: 24px 0 40px;
  font-size: 16px;
}
.external-list a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.support-page .text-page-hero .button {
  margin-top: 32px;
}
.support-apps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.support-apps article {
  padding: 26px 22px;
  background: var(--wash);
  border: 1px solid #fff;
  border-radius: 20px;
}
.support-apps h2 {
  font-size: 24px;
  line-height: 1.15;
  margin-top: 23px;
  letter-spacing: -0.035em;
}
.support-apps p {
  font-size: 14px;
  margin-top: 16px;
}
.support-apps h2 + p {
  font-size: 12px;
  margin-top: 10px;
}
.support-apps .text-link {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-top: 20px;
}
.support-apps .secondary-link {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}
.support-guidance {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 95px;
  padding-block: 105px;
}
.support-guidance .eyebrow {
  color: var(--muted);
  margin-bottom: 20px;
}
.support-guidance h2 {
  font-size: 42px;
  margin-bottom: 26px;
}
.support-guidance > div > p {
  font-size: 17px;
  line-height: 1.75;
}
.faq-list details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.faq-list summary {
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: -0.02em;
  font-weight: 550;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  min-height: 44px;
  align-items: center;
}
.faq-list summary > span {
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.25s;
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
}
.faq-list details p {
  font-size: 16px;
  line-height: 1.8;
  margin: 18px 30px 10px 0;
}
.faq-list > .text-link {
  margin-top: 18px;
}
.privacy-link-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 36px 0 70px;
  border-top: 1px solid var(--line);
}
.privacy-link-band p {
  font-size: 25px;
  letter-spacing: -0.025em;
  font-weight: 500;
  color: var(--ink);
}
.not-found {
  padding: 140px 0 180px;
}
.not-found h1 {
  font-size: 65px;
  max-width: 800px;
  margin: 25px 0;
}
.not-found p {
  font-size: 22px;
  margin-bottom: 32px;
}
.locale-landing {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 35px;
}
.locale-landing img {
  border-radius: 23px;
}
.locale-landing h1 {
  font-size: 60px;
}
.locale-landing nav {
  display: flex;
  gap: 18px;
}
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.js-reveal .reveal.visible {
  opacity: 1;
  transform: none;
}
@media (min-width: 1500px) {
  .home-hero {
    padding-top: 94px;
  }
  .hero-orbit {
    gap: 100px;
  }
}
@media (max-width: 1050px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .hero-orbit {
    gap: 42px;
  }
  .orbit-item img {
    width: 135px;
  }
  .home-hero h1 {
    font-size: 72px;
  }
  .philosophy-heading {
    gap: 55px;
  }
  .card-content {
    padding: 28px;
  }
  .card-visual {
    right: -95px;
    opacity: 0.7;
  }
  .card-top {
    gap: 12px;
  }
  .card-top .devices {
    font-size: 12px;
  }
  .app-card h3 {
    font-size: 30px;
  }
  .value-grid {
    gap: 30px;
  }
  .footer-top {
    flex-wrap: wrap;
  }
  .support-apps {
    grid-template-columns: 1fr 1fr;
  }
  .support-guidance {
    gap: 50px;
  }
  .policy-layout {
    grid-template-columns: 210px 1fr;
    gap: 44px;
  }
  .feature-row {
    grid-template-columns: 40px 1fr 1fr;
    gap: 20px;
  }
  .product-privacy {
    gap: 45px;
  }
  .product-stage {
    padding: 32px 24px 20px;
  }
  .platform-band {
    gap: 18px;
  }
  .platform-band p {
    font-size: 12px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 90px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .nav-shell {
    width: calc(100% - 36px);
    height: 74px;
  }
  .brand {
    font-size: 21px;
    gap: 9px;
  }
  .brand img {
    width: 40px;
    height: 40px;
  }
  .studio {
    font-size: 12px;
  }
  .nav-toggle {
    display: block;
  }
  .site-header nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    font-size: 14px;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 15px 22px;
    border-bottom: 1px solid var(--line);
  }
  .site-header nav .locale-link {
    padding-left: 16px;
    margin-left: 0;
  }
  .js-nav .site-header nav {
    display: none;
  }
  .js-nav .site-header nav.nav-open {
    display: flex;
  }
  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }
  .app-menu-panel {
    left: 0;
    width: min(360px, calc(100vw - 44px));
    top: calc(100% + 8px);
  }
  .app-menu-panel > a {
    padding: 10px;
  }
  .app-menu-panel img {
    width: 48px;
  }
  .home-hero {
    padding-top: 53px;
    padding-bottom: 72px;
  }
  .home-hero h1 {
    font-size: clamp(43px, 9.7vw, 66px);
    letter-spacing: -0.055em;
  }
  .home-hero > .eyebrow {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .hero-summary {
    font-size: 18px;
    margin: 23px auto 26px;
    max-width: 520px;
  }
  .button {
    font-size: 14px;
    min-height: 52px;
    padding: 14px 22px;
  }
  .hero-orbit {
    margin-top: 44px;
    gap: 18px;
    padding: 0;
  }
  .orbit-item {
    width: 25%;
    min-width: 0;
  }
  .orbit-item img {
    width: 100%;
    max-width: 116px;
    filter: drop-shadow(0 12px 11px #092b3820);
  }
  .orbit-item > span {
    font-size: 15px;
    margin-top: 12px;
  }
  .orbit-item > small {
    font-size: 12px;
    letter-spacing: -0.015em;
    white-space: nowrap;
  }
  .orbit-0,
  .orbit-3 {
    transform: translateY(12px);
  }
  .section-heading h2 {
    font-size: 36px;
    letter-spacing: -0.04em;
  }
  .section-heading .eyebrow {
    font-size: 12px;
  }
  .section-heading > p {
    font-size: 17px;
  }
  .collection {
    padding: 34px 0 65px;
  }
  .app-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .app-card {
    min-height: 310px;
    border-radius: 22px;
  }
  .card-top {
    margin-bottom: 40px;
  }
  .card-content {
    padding: 28px;
    width: 80%;
  }
  .card-top img {
    width: 58px;
    height: 58px;
  }
  .card-top .devices {
    font-size: 12px;
  }
  .app-card h3 {
    font-size: 32px;
  }
  .app-card p {
    font-size: 15px;
    max-width: 240px;
  }
  .card-visual {
    right: -42px;
    bottom: 50px;
    opacity: 1;
  }
  .card-visual img {
    width: 180px;
  }
  .app-card-notepad .card-visual {
    right: -40px;
  }
  .philosophy {
    padding: 66px 0;
    border-radius: 26px 26px 0 0;
  }
  .philosophy-heading {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .philosophy-heading img {
    width: 64px;
    margin-bottom: 28px;
  }
  .philosophy-heading .eyebrow {
    font-size: 12px;
  }
  .philosophy h2 {
    font-size: 43px;
  }
  .philosophy-heading > p {
    font-size: 19px;
    line-height: 1.7;
  }
  .value-grid {
    grid-template-columns: 1fr;
    gap: 31px;
    margin-top: 36px;
    padding-top: 28px;
  }
  .value-grid article {
    display: grid;
    grid-template-columns: 32px 1fr;
    column-gap: 18px;
  }
  .value-grid .value-number {
    grid-row: 1 / 3;
    padding-top: 4px;
  }
  .value-grid h3 {
    margin: 0 0 12px;
    font-size: 21px;
  }
  .value-grid p {
    font-size: 15px;
    grid-column: 2;
  }
  .support-callout {
    padding-block: 60px;
    display: block;
  }
  .support-callout h2 {
    font-size: 39px;
  }
  .support-callout p {
    font-size: 18px;
    margin-bottom: 27px;
  }
  .site-footer {
    width: calc(100% - 40px);
    padding-top: 32px;
  }
  .footer-top {
    display: block;
  }
  .footer-top > p {
    font-size: 13px;
    margin: 24px 0 13px;
  }
  .footer-bottom {
    display: block;
    margin-top: 25px;
    padding-top: 24px;
    font-size: 12px;
  }
  .footer-bottom nav {
    gap: 20px;
    margin-top: 12px;
    flex-wrap: wrap;
    font-size: 12px;
  }
  .product-hero {
    padding-top: 19px;
  }
  .back-link {
    font-size: 12px;
  }
  .product-brand {
    gap: 11px;
    margin-top: 26px;
    font-size: 20px;
    flex-wrap: wrap;
  }
  .product-brand img {
    width: 62px;
    height: 62px;
  }
  .product-brand > .devices {
    font-size: 12px;
    padding-left: 11px;
  }
  .product-hero > .eyebrow {
    font-size: 12px;
    margin: 26px 0 16px;
  }
  .product-hero h1 {
    font-size: clamp(43px, 10.2vw, 68px);
    letter-spacing: -0.055em;
  }
  .product-hero .hero-summary {
    font-size: 18px;
  }
  .hero-actions {
    gap: 19px;
    flex-wrap: wrap;
  }
  .hero-actions .text-link {
    font-size: 13px;
  }
  .availability {
    font-size: 12px;
  }
  .product-stage {
    margin: 36px -10px 0;
    padding: 20px 10px 15px;
    border-radius: 20px;
  }
  .capture-image {
    border-radius: 7px;
    box-shadow: 0 13px 24px #122c361d;
  }
  .product-capture figcaption {
    font-size: 12px;
    margin-top: 14px;
  }
  .product-icon-stage {
    min-height: 220px;
  }
  .product-icon-stage img {
    width: 210px;
  }
  .product-intro {
    padding: 67px 0 48px;
    max-width: calc(100% - 52px);
  }
  .product-intro h2 {
    font-size: 37px;
  }
  .product-intro p {
    font-size: 19px;
    line-height: 1.65;
  }
  .product-intro .eyebrow {
    font-size: 12px;
    margin-bottom: 17px;
  }
  .features {
    padding-bottom: 35px;
  }
  .feature-row {
    grid-template-columns: 24px 1fr;
    padding: 28px 0;
    gap: 8px 16px;
  }
  .feature-number {
    font-size: 12px;
  }
  .feature-label {
    font-size: 12px;
    margin-bottom: 12px;
  }
  .feature-row h3 {
    font-size: 29px;
    max-width: none;
  }
  .feature-row > p {
    grid-column: 2;
    font-size: 16px;
    line-height: 1.75;
    margin-top: 12px;
  }
  .gallery-section {
    padding-bottom: 42px;
  }
  .gallery-slide {
    flex-basis: 95%;
    padding: 16px 12px;
    border-radius: 16px;
  }
  .gallery {
    gap: 14px;
  }
  .gallery-slide figcaption {
    font-size: 12px;
    gap: 10px;
    margin-top: 16px;
  }
  .gallery-controls p {
    font-size: 12px;
    max-width: 55%;
  }
  .gallery-controls button {
    width: 44px;
    height: 44px;
  }
  .platform-band {
    display: block;
    padding: 28px 0;
    text-align: center;
  }
  .platform-band > span {
    font-size: 12px;
  }
  .platform-band h2 {
    font-size: 31px;
    margin: 12px 0;
  }
  .platform-band p {
    font-size: 12px;
  }
  .plans-section {
    padding: 60px 0;
  }
  .plan-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .plan-grid article {
    padding: 27px 24px;
  }
  .plan-label {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .plan-grid p {
    font-size: 17px;
  }
  .plan-grid .commercial-copy {
    font-size: 13px;
  }
  .price-note {
    font-size: 12px;
  }
  .product-privacy {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-block: 35px;
  }
  .product-privacy h2 {
    font-size: 33px;
  }
  .product-privacy p {
    font-size: 17px;
  }
  .product-end {
    padding-block: 65px;
  }
  .product-end h2 {
    font-size: 41px;
  }
  .product-end > p:not(.availability) {
    font-size: 18px;
  }
  .more-apps {
    padding-bottom: 50px;
  }
  .more-apps h2 {
    font-size: 29px;
  }
  .more-apps > div {
    grid-template-columns: 1fr;
    gap: 11px;
  }
  .more-apps a {
    padding: 15px 18px;
    font-size: 17px;
  }
  .more-apps img {
    width: 48px;
    height: 48px;
  }
  .text-page-hero {
    padding-top: 55px;
    margin-bottom: 50px;
  }
  .text-page-hero h1 {
    font-size: 58px;
  }
  .text-page-hero > p {
    font-size: 20px;
  }
  .text-page-hero .eyebrow {
    font-size: 12px;
  }
  .updated {
    font-size: 12px;
  }
  .policy-layout {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-bottom: 45px;
  }
  .policy-nav {
    position: static;
    font-size: 12px;
    border: 1px solid var(--line);
    padding: 12px;
    border-radius: 15px;
  }
  .policy-nav a {
    padding: 8px;
    min-height: 40px;
  }
  .policy-body h2 {
    font-size: 29px;
  }
  .policy-body p {
    font-size: 17px;
    line-height: 1.8;
  }
  .policy-body section {
    margin-bottom: 40px;
  }
  .external-list {
    font-size: 14px;
    gap: 25px;
  }
  .support-apps {
    gap: 12px;
  }
  .support-apps article {
    padding: 22px 17px;
    border-radius: 16px;
  }
  .support-apps img {
    width: 60px;
    height: 60px;
  }
  .support-apps h2 {
    font-size: 23px;
  }
  .support-apps p {
    font-size: 13px;
  }
  .support-apps .text-link {
    font-size: 12px;
    gap: 8px;
  }
  .support-apps .secondary-link {
    font-size: 12px;
  }
  .support-guidance {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-block: 60px;
  }
  .support-guidance h2 {
    font-size: 37px;
  }
  .support-guidance > div > p {
    font-size: 16px;
  }
  .faq-list summary {
    font-size: 17px;
  }
  .faq-list details p {
    font-size: 16px;
    margin-right: 5px;
  }
  .privacy-link-band {
    display: block;
    padding-bottom: 45px;
  }
  .privacy-link-band p {
    font-size: 26px;
    margin-bottom: 17px;
  }
  .not-found {
    padding: 85px 0 110px;
  }
  .not-found h1 {
    font-size: 49px;
  }
  .not-found p {
    font-size: 20px;
  }
  .locale-landing h1 {
    font-size: 46px;
  }
  .locale-landing nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 380px) {
  .home-hero h1 {
    font-size: 41px;
  }
  .hero-orbit {
    gap: 10px;
  }
  .orbit-item > small {
    font-size: 12px;
  }
  .card-visual {
    right: -69px;
    opacity: 0.7;
  }
  .app-card-notepad .card-visual {
    right: -60px;
  }
  .support-apps {
    grid-template-columns: 1fr;
  }
  .support-apps article {
    display: grid;
    grid-template-columns: 60px 1fr;
    column-gap: 18px;
  }
  .support-apps img {
    grid-row: 1 / 4;
  }
  .support-apps h2 {
    margin-top: 0;
  }
  .support-apps .text-link {
    grid-column: 2;
  }
  .site-header nav {
    gap: 6px 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .js-reveal .reveal {
    opacity: 1;
    transform: none;
  }
  .orbit-item:hover,
  .app-card:hover,
  .button:hover {
    transform: none;
  }
}
@media print {
  .site-header,
  .site-footer,
  .button,
  .gallery-controls,
  .policy-nav {
    display: none;
  }
  .wrap {
    width: 100%;
  }
  .policy-layout {
    display: block;
  }
  body {
    background: white;
    color: black;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 760px) {
  .orbit-item > small {
    display: none;
  }
  .hero-orbit {
    margin-bottom: 4px;
  }
  .studio {
    font-size: 12px;
    letter-spacing: 0.05em;
  }
  .app-menu-panel .menu-device {
    font-size: 12px;
  }
  .product-capture figcaption {
    font-size: 12px;
  }
}
