:root {
  color-scheme: light;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --blue: #0071e3;
  --paper: #f5f5f7;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
    sans-serif;
  color: var(--ink);
  background: #fff;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #0071e3;
  outline-offset: 5px;
}
img,
svg {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin: 0;
}
button {
  cursor: pointer;
}
.container {
  width: min(1120px, calc(100% - 64px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  z-index: 99;
  top: 8px;
  left: 8px;
  padding: 12px;
  background: white;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffffdc;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #0000000d;
}
.nav {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.brand img {
  border-radius: 8px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  font-size: 14px;
  color: #515154;
}
.nav-links a:hover {
  color: var(--blue);
}
.nav-cta {
  font-size: 13px;
  color: white;
  background: var(--blue);
  padding: 10px 16px;
  border-radius: 30px;
  white-space: nowrap;
}
.nav-cta span {
  margin-left: 5px;
}
.hero {
  overflow: hidden;
  text-align: center;
  background: var(--paper);
  padding: 88px 0 55px;
}
.eyebrow {
  font-size: 17px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(54px, 5.6vw, 84px);
  font-weight: 600;
  line-height: 1.13;
  letter-spacing: -0.035em;
}
.hero h1 span {
  color: #85858b;
}
.hero-description {
  font-size: 22px;
  line-height: 1.65;
  color: #636368;
  margin-top: 27px;
  font-weight: 400;
}
.mobile-break {
  display: none;
}
.hero-benefits {
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: center;
  margin: 25px 0;
  font-size: 15px;
  color: #515154;
}
.hero-benefits i {
  height: 3px;
  width: 3px;
  background: #a1a1a6;
  border-radius: 50%;
}
.text-link {
  font-size: 17px;
  color: var(--blue);
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.hero-devices {
  position: relative;
  width: min(1040px, 88%);
  margin: 66px auto 0;
  padding-right: 90px;
  padding-bottom: 32px;
}
.hero-ipad {
  width: 100%;
  transform: rotate(-1.5deg);
}
.hero-phone {
  position: absolute;
  width: 23%;
  bottom: 0;
  right: 0;
  transform: rotate(5deg);
}
.device-image {
  width: 100%;
  height: auto;
  overflow: visible;
}
.device-shadow {
  filter: drop-shadow(0 22px 23px #10102520);
}
.hero-caption {
  font-size: 14px;
  color: #86868b;
  margin-top: 36px;
}
.section {
  padding: 115px 0;
}
.section h2 {
  font-size: clamp(38px, 4.3vw, 60px);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.section-lead {
  font-size: 20px;
  line-height: 1.75;
  color: var(--muted);
  margin-top: 26px;
}
.simple-section {
  text-align: center;
}
.library-stage {
  width: min(940px, 100%);
  margin: 60px auto 0;
}
.simple-notes {
  display: flex;
  justify-content: center;
  gap: 72px;
  margin-top: 46px;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
}
.simple-notes strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
}
.footer {
  background: var(--paper);
  padding: 34px 0;
  font-size: 14px;
  color: var(--muted);
}
.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .brand {
  font-size: 16px;
  color: var(--ink);
}
@media (min-width: 1500px) {
  .hero {
    padding-top: 110px;
  }
}
@media (max-width: 760px) {
  .container {
    width: calc(100% - 40px);
  }
  .nav {
    height: 64px;
    gap: 10px;
    justify-content: space-between;
  }
  .brand {
    font-size: 16px;
    gap: 8px;
  }
  .nav-links {
    display: none;
  }
  .nav-cta {
    font-size: 12px;
    padding: 9px 13px;
  }
  .hero {
    padding-top: 64px;
  }
  .eyebrow {
    font-size: 14px;
    margin-bottom: 22px;
  }
  .hero h1 {
    font-size: 58px;
    letter-spacing: -0.035em;
  }
  .hero-description {
    font-size: 18px;
    margin-top: 24px;
  }
  .mobile-break {
    display: block;
  }
  .hero-benefits {
    font-size: 13px;
    gap: 12px;
    margin: 23px 0;
  }
  .text-link {
    font-size: 16px;
  }
  .hero-devices {
    width: 91%;
    margin-top: 50px;
    padding-right: 28px;
    padding-bottom: 10px;
  }
  .hero-phone {
    width: 24%;
    right: 0;
  }
  .hero-caption {
    margin-top: 30px;
    font-size: 13px;
  }
  .section {
    padding: 76px 0;
  }
  .section h2 {
    font-size: 40px;
  }
  .section-lead {
    font-size: 17px;
    line-height: 1.8;
    margin-top: 23px;
  }
  .desktop-break {
    display: none;
  }
  .library-stage {
    margin-top: 40px;
  }
  .simple-notes {
    gap: 20px;
    margin-top: 34px;
    font-size: 14px;
  }
  .simple-notes strong {
    font-size: 18px;
  }
  .footer .container {
    gap: 25px;
    flex-wrap: wrap;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
/* Large product images set the rhythm; explanatory text stays deliberately brief. */
.modes-section {
  background: #0b0b0d;
  color: #f5f5f7;
  overflow: hidden;
}
.modes-section .eyebrow {
  color: #a1a1a6;
}
.modes-section h2 span {
  color: #929296;
}
.modes-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(250px, 1fr);
  gap: 65px;
  align-items: center;
  margin-top: 65px;
}
.modes-device {
  margin-left: -36px;
  transform: rotate(-2deg);
  filter: drop-shadow(0 25px 20px #0008);
}
.mode-list article {
  padding: 27px 0;
  border-top: 1px solid #ffffff21;
}
.mode-list article:first-child {
  border-top: 0;
  padding-top: 0;
}
.mode-list article:last-child {
  padding-bottom: 0;
}
.mode-heading {
  display: flex;
  align-items: baseline;
  gap: 17px;
  flex-wrap: wrap;
}
.mode-heading h3 {
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.mode-heading span {
  font-size: 14px;
  color: #dedee3;
}
.mode-list p {
  margin-top: 13px;
  font-size: 16px;
  color: #a1a1a6;
  line-height: 1.7;
}
.mode-footnote {
  font-size: 15px;
  color: #a1a1a6;
  margin-top: 46px;
  text-align: center;
}
.remote-section {
  background: #f5f5f7;
  overflow: hidden;
}
.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 35px;
}
.section-heading-row .section-lead {
  font-size: 19px;
  margin: 0 0 5px;
}
.remote-tabs {
  display: flex;
  width: max-content;
  max-width: 100%;
  gap: 5px;
  padding: 5px;
  border-radius: 35px;
  background: #e7e7eb;
  margin-top: 42px;
}
.remote-tabs button {
  border: 0;
  background: transparent;
  padding: 14px 29px;
  border-radius: 30px;
  font-size: 16px;
  color: #5a5a60;
  transition:
    background 0.2s,
    color 0.2s;
}
.remote-tabs button[aria-selected="true"] {
  background: white;
  color: var(--ink);
  box-shadow: 0 2px 7px #0000000b;
}
.remote-panel {
  margin-top: 35px;
  min-height: 780px;
}
.remote-panel[hidden] {
  display: none;
}
.remote-copy h3 {
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.remote-copy p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 15px;
}
.remote-devices {
  width: 94%;
  margin: 55px auto 0;
  position: relative;
  padding-right: 14%;
  padding-bottom: 5%;
}
.remote-ipad {
  transform: rotate(-2deg);
}
.remote-phone {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 24%;
  transform: rotate(5deg);
}
.bluetooth-device {
  max-width: 940px;
  margin: 52px auto 0;
}
.feature-note {
  color: #86868b;
  font-size: 13px;
  line-height: 1.8;
  margin-top: 35px;
  max-width: 720px;
}
.cloud-section {
  overflow: hidden;
}
.cloud-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.45fr);
  gap: 60px;
  align-items: center;
}
.cloud-copy .section-lead {
  font-size: 18px;
  max-width: 410px;
}
.cloud-copy h2 {
  font-size: clamp(36px, 3.5vw, 50px);
}
.editor-device {
  width: 116%;
  max-width: 810px;
  transform: rotate(2deg);
}
.cloud-detail {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}
.cloud-detail strong {
  color: var(--ink);
  font-weight: 550;
}
.line-icon {
  color: var(--blue);
  width: 38px;
  flex: 0 0 38px;
}
.overview-section {
  text-align: center;
  background: var(--paper);
  border-bottom: 1px solid #00000009;
}
.overview-icon {
  margin: 0 auto 26px;
  border-radius: 19px;
  box-shadow: 0 12px 24px #0071e322;
}
.overview-section .eyebrow {
  color: var(--ink);
  font-size: 19px;
  margin-bottom: 20px;
}
.overview-features {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin: 36px auto 30px;
  font-size: 15px;
  color: #515154;
}
.overview-features span {
  padding: 0 24px;
  border-right: 1px solid #d2d2d7;
}
.overview-features span:last-child {
  border: 0;
}
.download-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: min(760px, 100%);
  margin: 48px auto 36px;
}
.download-card {
  padding: 36px 24px 32px;
  background: #fff;
  border-radius: 28px;
}
.download-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 22px;
}
.download-card h3 {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.download-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.download-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  min-width: 172px;
  margin-top: 26px;
  padding: 12px 22px;
  border-radius: 30px;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
  transition:
    background 0.2s,
    transform 0.3s var(--ease);
}
.download-button svg {
  width: 18px;
  height: 18px;
}
.download-button[href]:hover {
  background: #0077ed;
  transform: translateY(-2px);
}
.download-button[aria-disabled="true"] {
  background: #f0f0f2;
  color: #6e6e73;
  cursor: default;
}
@media (max-width: 600px) {
  .download-options {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 34px;
  }
  .download-card {
    padding: 30px 20px;
    border-radius: 24px;
  }
}
@media (max-width: 1000px) {
  .modes-layout {
    gap: 32px;
    grid-template-columns: 1.3fr 1fr;
  }
  .remote-panel {
    min-height: 660px;
  }
  .cloud-layout {
    gap: 30px;
  }
  .section-heading-row .section-lead {
    font-size: 17px;
  }
  .mode-heading {
    gap: 8px;
  }
  .mode-heading span {
    display: block;
  }
}
@media (max-width: 760px) {
  .modes-layout {
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin-top: 40px;
  }
  .modes-device {
    width: 100%;
    margin: 0;
    transform: none;
  }
  .mode-list {
    display: grid;
    gap: 0;
    width: 100%;
  }
  .mode-list article {
    padding: 24px 0;
  }
  .mode-list article:first-child {
    padding-top: 24px;
  }
  .mode-heading {
    gap: 16px;
  }
  .mode-heading h3 {
    font-size: 24px;
  }
  .mode-list p {
    font-size: 16px;
    margin-top: 10px;
  }
  .mode-footnote {
    font-size: 13px;
    margin-top: 35px;
  }
  .section-heading-row {
    display: block;
  }
  .section-heading-row .section-lead {
    margin-top: 25px;
  }
  .remote-tabs {
    margin-top: 30px;
  }
  .remote-tabs button {
    font-size: 15px;
    padding: 12px 25px;
  }
  .remote-panel {
    min-height: 0;
    margin-top: 30px;
  }
  .remote-copy h3 {
    font-size: 24px;
  }
  .remote-copy p {
    font-size: 16px;
  }
  .remote-devices {
    width: 100%;
    padding-right: 13%;
    margin-top: 36px;
  }
  .bluetooth-device {
    margin-top: 36px;
  }
  .feature-note {
    font-size: 12px;
    margin-top: 30px;
  }
  .cloud-layout {
    display: flex;
    flex-direction: column;
    gap: 42px;
    align-items: stretch;
  }
  .cloud-copy h2 {
    font-size: 40px;
  }
  .cloud-copy .section-lead {
    font-size: 17px;
    max-width: none;
  }
  .editor-device {
    width: 100%;
    transform: none;
  }
  .cloud-detail {
    margin-top: 24px;
  }
  .overview-section h2 {
    font-size: 36px;
  }
  .overview-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 0;
    font-size: 13px;
  }
  .overview-features span {
    padding: 0 12px;
  }
  .overview-features span:nth-child(even) {
    border: 0;
  }
}
@media (min-width: 761px) {
  .hero {
    padding-top: 64px;
  }
  .hero-devices {
    margin-top: 46px;
  }
  .hero h1 {
    font-size: clamp(58px, 5.25vw, 78px);
  }
}
/* An embeddable product page: the parent website owns global navigation. */
.hero {
  padding-top: 78px;
}
.hero-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #1d1d1f;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 32px;
}
.hero-brand img {
  border-radius: 8px;
}
.hero-brand span {
  border-left: 1px solid #c8c8cd;
  padding-left: 14px;
  margin-left: 4px;
  color: #86868b;
  font-size: 15px;
  font-weight: 400;
}
.hero h1 {
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.035em;
}
.hero h1 span {
  color: #86868b;
}
.hero-description {
  font-weight: 400;
  color: #6e6e73;
}
.section h2 {
  font-weight: 600;
  line-height: 1.22;
}
.eyebrow:not(.hero-brand) {
  font-weight: 500;
  letter-spacing: 0.025em;
}
.mode-heading h3,
.remote-copy h3 {
  font-weight: 550;
}
.overview-section .eyebrow {
  font-weight: 500;
}
.platform-note {
  display: block;
  font-size: 12px;
  margin-top: 7px;
  color: #86868b;
}
.hero-devices {
  perspective: 1600px;
}
.hero-ipad {
  transform: translate3d(0, var(--ipad-drift, 0px), 0) rotate(-1.5deg);
}
.hero-phone {
  transform: translate3d(0, var(--phone-drift, 0px), 0) rotate(5deg);
}
@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * {
    animation: hero-copy-in 0.9s var(--ease) both;
  }
  .hero-copy > *:nth-child(2) {
    animation-delay: 0.08s;
  }
  .hero-copy > *:nth-child(3) {
    animation-delay: 0.16s;
  }
  .hero-copy > *:nth-child(4) {
    animation-delay: 0.24s;
  }
  .hero-copy > *:nth-child(5) {
    animation-delay: 0.32s;
  }
  .hero-devices {
    animation: device-entrance 1.25s var(--ease) 0.2s both;
  }
  .motion-ready [data-reveal] {
    opacity: 0;
    translate: 0 32px;
    transition:
      opacity 0.85s var(--ease),
      translate 0.85s var(--ease);
  }
  .motion-ready [data-reveal].is-visible {
    opacity: 1;
    translate: 0 0;
  }
  .remote-panel:not([hidden]) {
    animation: panel-in 0.5s var(--ease) both;
  }
  .remote-tabs button {
    transition:
      background 0.25s,
      color 0.25s,
      box-shadow 0.25s,
      transform 0.25s var(--ease);
  }
  .remote-tabs button:hover {
    transform: translateY(-1px);
  }
  .remote-tabs button:active {
    transform: scale(0.97);
  }
  .text-link span {
    transition: transform 0.35s var(--ease);
  }
  .text-link:hover span {
    transform: translateY(3px);
  }
}
@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes device-entrance {
  from {
    opacity: 0;
    transform: translateY(70px) scale(0.95) rotateX(4deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes panel-in {
  from {
    opacity: 0.3;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 760px) {
  .hero {
    padding-top: 50px;
  }
  .hero-brand {
    font-size: 15px;
    gap: 8px;
    margin-bottom: 28px;
  }
  .hero-brand img {
    width: 28px;
    height: 28px;
  }
  .hero-brand span {
    font-size: 12px;
    padding-left: 9px;
    margin-left: 0;
  }
  .hero h1 {
    font-size: 54px;
    line-height: 1.18;
  }
  .hero-devices {
    margin-top: 42px;
  }
  .remote-devices {
    padding-bottom: 16%;
  }
  .remote-phone {
    width: 31%;
  }
  .remote-ipad {
    width: 95%;
  }
  .footer p {
    line-height: 1.6;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-ipad {
    transform: rotate(-1.5deg);
  }
  .hero-phone {
    transform: rotate(5deg);
  }
  [data-reveal] {
    opacity: 1 !important;
    translate: none !important;
  }
}
