/* Landing foundations: Brclio Design System, CC BY-NC-SA 4.0.
   Neutral palette and system type honor the requested Apple art direction. */
:root {
  --ink:#1d1d1f;
  --muted:#78787f;
  --blue:#0071e3;
  --red:#f04455;
  --surface:#f5f5f7;
  --line:#e6e6eb;
  --page-width:1160px;
  --header-height:64px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}
body {
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Display",
    "SF Pro Text",
    "Helvetica Neue",
    "PingFang SC",
    "Microsoft YaHei",
    sans-serif;
  color: var(--ink);
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}
svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
ul,
ol {
  list-style: none;
}
button:focus-visible,
a:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #0071e3;
  outline-offset: 5px;
}
::selection {
  background: #cce5ff;
  color: #152b45;
}
[hidden] {
  display: none !important;
}
.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.container {
  width: min(var(--page-width), calc(100% - 96px));
  margin-inline: auto;
}
.section {
  padding: clamp(84px, 9vw, 140px) 0;
}
.eyebrow {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .035em;
  margin-bottom: 22px;
}
.muted {
  color: var(--muted);
}
.section h2 {
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 650;
  letter-spacing: -.045em;
  line-height: 1.15;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 16px;
  padding: 10px 18px;
  background: white;
  z-index: 100;
  border-radius: 10px;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}
.sr-only {
  position: fixed;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.site-header {
  height: var(--header-height);
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, .93);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 20;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}
.nav-inner {
  max-width: 1280px;
  height: 100%;
  padding: 0 40px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 17px;
  font-weight: 650;
  white-space: nowrap;
  letter-spacing: -.025em;
}
.brand-detail {
  font-size: 14px;
  font-weight: 500;
  margin-left: 5px;
}
.app-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(
      145deg,
      #ff6570,
      #ec344a);
  color: #fff;
  box-shadow: 0 6px 15px #ef36481a;
  flex-shrink: 0;
}
.app-icon-small {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}
.app-icon-small svg {
  width: 19px;
  height: 19px;
  stroke-width: 2;
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 12px;
  color: #57575b;
  white-space: nowrap;
}
.nav-links a:hover,
.site-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.presentation-toggle {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.presentation-toggle svg {
  width: 14px;
  height: 14px;
}
.nav-cta {
  font-size: 12px;
  color: white;
  background: var(--blue);
  padding: 5px 17px;
  border-radius: 30px;
}
.reading-progress {
  position: absolute;
  bottom: -1px;
  height: 2px;
  background: var(--blue);
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
}
.hero {
  overflow: hidden;
  background: var(--surface);
  text-align: center;
  padding: 64px 0 22px;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero .eyebrow {
  font-size: 20px;
  letter-spacing: 0;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(56px, 6.1vw, 88px);
  font-weight: 650;
  letter-spacing: -.055em;
  line-height: 1.08;
}
.hero h1 span {
  color: var(--red);
}
.hero-description {
  font-size: 19px;
  line-height: 1.6;
  color: #727277;
  margin-top: 25px;
  letter-spacing: .005em;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: 27px;
}
.button {
  padding: 12px 25px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  transition: background .2s, transform .2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
}
.button-blue {
  color: white;
  background: var(--blue);
}
.button-blue:hover,
.nav-cta:hover {
  background: #007af5;
}
.button-light {
  background: #eaf2fc;
  color: #0067cc;
}
.button-light:hover {
  background: #dceafb;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--blue);
  font-size: 15px;
  line-height: 1.5;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.availability {
  font-size: 11px;
  color: #86868b;
  margin-top: 17px;
  letter-spacing: .02em;
}
.availability span {
  padding: 0 8px;
}
.hero-stage {
  position: relative;
  max-width: 1200px;
  margin: 52px auto 0;
  padding: 0 140px 28px;
  perspective: 1600px;
}
.product-window {
  position: relative;
  background: #fff;
  border: 1px solid #dadade;
  border-radius: 13px;
  box-shadow: 0 35px 60px -22px #25253433, 0 4px 10px #00000006;
  overflow: hidden;
  text-align: left;
  transform: rotateX(3deg);
  z-index: 1;
}
.window-toolbar {
  height: 37px;
  padding: 0 13px;
  background: #fafafa;
  border-bottom: 1px solid #e9e9ec;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  color: #7d7d84;
}
.traffic-lights {
  display: flex;
  gap: 5px;
}
.traffic-lights i {
  width: 8px;
  height: 8px;
  background: #ff6258;
  border: 1px solid #0000000d;
  border-radius: 50%;
}
.traffic-lights i:nth-child(2) {
  background: #ffbf2f;
}
.traffic-lights i:nth-child(3) {
  background: #28cb42;
}
.window-tag {
  font-size: 8px;
  color: #919197;
}
.window-body {
  display: grid;
  grid-template-columns: 164px 1fr;
  min-height: 339px;
}
.mock-sidebar {
  position: relative;
  padding: 22px 10px;
  background: #f8f8fa;
  border-right: 1px solid #ececef;
  font-size: 10px;
  color: #717178;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.mock-sidebar > span {
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.mock-sidebar svg {
  width: 14px;
  height: 14px;
}
.mock-sidebar .sidebar-label {
  font-size: 8px;
  color: #9a9aa0;
  padding-top: 0;
}
.mock-sidebar .sidebar-active {
  background: #e9eef6;
  border-radius: 6px;
  color: #3163a2;
  font-weight: 600;
}
.sidebar-bottom {
  position: absolute;
  bottom: 16px;
  left: 17px;
  font-size: 7px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #9999a0;
}
.mini-avatar {
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  background: #e9e9ee;
  border-radius: 50%;
  color: #777;
}
.mock-main {
  padding: 25px 27px 17px;
  min-width: 0;
}
.mock-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.mock-heading small {
  font-size: 8px;
  color: #8e8e93;
}
.mock-heading h2 {
  font-size: 19px;
  letter-spacing: -.035em;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 3px;
}
.mock-ready {
  font-size: 8px;
  color: #7c7c85;
  white-space: nowrap;
}
.mock-ready i {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #40aa77;
  border-radius: 50%;
  margin-right: 4px;
}
.mock-input {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f5f5f7;
  padding: 7px 7px 7px 12px;
  border: 1px solid #eaeaee;
  border-radius: 7px;
  color: #93939b;
  font-size: 9px;
  margin-top: 15px;
}
.mock-input > svg {
  width: 12px;
  height: 12px;
}
.mock-parse {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #262628;
  color: #fff;
  padding: 6px 9px;
  border-radius: 5px;
  white-space: nowrap;
  margin-left: auto;
}
.mock-parse svg {
  width: 11px;
  height: 11px;
}
.mock-result-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  margin: 17px 0 10px;
}
.mock-result-heading span {
  color: #93939b;
  font-size: 8px;
}
.mock-result-heading i,
.mock-bottom i {
  font-style: normal;
  margin: 0 5px;
}
.mock-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.mock-gallery img {
  width: 100%;
  height: 125px;
  border-radius: 5px;
  object-position: center 60%;
}
.mock-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 8px;
  margin-top: 13px;
  color: #87878d;
}
.mock-bottom > span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.mock-bottom svg {
  width: 10px;
  height: 10px;
}
.mock-bottom > span:last-child {
  background: #eaf2fc;
  color: #2f6eb7;
  border-radius: 4px;
  padding: 6px 9px;
}
.floating-photo {
  position: absolute;
  background: white;
  padding: 7px 7px 0;
  border-radius: 11px;
  width: 162px;
  box-shadow: 0 22px 38px #24243422;
  z-index: 2;
}
.floating-photo img {
  border-radius: 6px;
  height: 172px;
  width: 100%;
}
.floating-photo > span {
  font-size: 8px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #66666e;
}
.floating-photo svg {
  width: 12px;
  height: 12px;
}
.photo-left {
  left: 19px;
  top: 79px;
  transform: rotate(-10deg);
}
.photo-right {
  right: 16px;
  top: 111px;
  transform: rotate(10deg);
}
.stage-caption {
  display: block;
  font-size: 7px;
  letter-spacing: .2em;
  color: #b0b0b7;
  margin-top: 18px;
}
.scroll-cue {
  font-size: 10px;
  color: #8a8a92;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 7px;
}
.scroll-cue span {
  font-size: 16px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 52px;
}
.section-heading > p {
  font-size: 18px;
  color: var(--muted);
  padding-bottom: 6px;
  line-height: 1.65;
}
.media-showcase {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border-radius: 28px;
  overflow: hidden;
  background: var(--surface);
  min-height: 540px;
}
.media-art {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: #173c47;
}
.media-art > img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-position: center 60%;
  transition: opacity .4s;
}
.art-top,
.art-bottom {
  position: absolute;
  z-index: 2;
  left: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}
.art-top {
  top: 26px;
  font-size: 10px;
  letter-spacing: .1em;
}
.art-top > span:first-child {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #001f3433;
  padding: 7px 11px;
  border-radius: 20px;
  letter-spacing: 0;
  backdrop-filter: blur(10px);
}
.art-top svg {
  width: 16px;
  height: 16px;
}
.art-top > span:last-child {
  font-size: 8px;
  opacity: .65;
}
.art-bottom {
  bottom: 30px;
  align-items: flex-end;
  text-shadow: 0 1px 15px #0005;
}
.art-bottom > span:first-child {
  font-size: 25px;
  font-weight: 600;
  max-width: 200px;
  line-height: 1.4;
  letter-spacing: -.02em;
}
.art-bottom > span:last-child {
  font-size: 10px;
  letter-spacing: .12em;
}
.media-details {
  padding: 38px 42px;
  display: flex;
  flex-direction: column;
}
.media-tabs {
  display: flex;
  background: #e7e7eb;
  border-radius: 30px;
  padding: 4px;
  gap: 2px;
  width: 100%;
  margin-bottom: 47px;
}
.media-tabs button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex: 1;
  white-space: nowrap;
  font-size: 12px;
  padding: 8px 6px;
  border-radius: 25px;
  color: #6e6e73;
}
.media-tabs svg {
  width: 15px;
  height: 15px;
}
.media-tabs button[aria-selected=true] {
  background: white;
  box-shadow: 0 2px 5px #00000009;
  color: var(--ink);
}
.feature-index {
  font-size: 9px;
  letter-spacing: .12em;
  color: #929299;
  font-weight: 600;
}
#media-panel h3 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -.045em;
  margin: 20px 0;
}
#feature-description {
  font-size: 16px;
  line-height: 1.85;
  color: #77777e;
  max-width: 345px;
}
.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}
.feature-chips span {
  font-size: 10px;
  background: #e7e7ed;
  padding: 6px 10px;
  border-radius: 6px;
  color: #66666f;
}
.feature-footnote {
  font-size: 11px;
  line-height: 1.75;
  color: #878790;
  margin-top: auto;
  padding-top: 30px;
  max-width: 355px;
}
.media-play {
  display: none;
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ffffff36;
  backdrop-filter: blur(12px);
  border: 1px solid #ffffff50;
  color: white;
  place-items: center;
}
.media-play svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
  stroke: none;
  transform: translateX(-2px);
}
.media-art[data-media-art=video] .media-play,
.media-art[data-media-art=live] .media-play {
  display: grid;
}
.media-art[data-media-art=live] .media-play svg {
  fill: none;
  stroke: currentColor;
  transform: none;
}
.text-preview {
  display: none;
  position: absolute;
  inset: 80px 45px 100px;
  background: #fffdf6;
  border-radius: 3px;
  padding: 35px;
  color: #414139;
  box-shadow: 0 18px 40px #1e37233b;
  transform: rotate(-4deg);
}
.text-preview > span {
  font-size: 11px;
  color: #9a998d;
}
.text-preview h3 {
  font-size: 25px;
  font-weight: 600;
  margin: 20px 0;
}
.text-preview p {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 15px;
}
.text-preview small {
  font-size: 11px;
  color: #838777;
}
.media-art[data-media-art=text] {
  background: #c7ccbe;
}
.media-art[data-media-art=text] > img {
  opacity: 0;
}
.media-art[data-media-art=text] .text-preview {
  display: block;
}
.media-art[data-media-art=text] .art-top,
.media-art[data-media-art=text] .art-bottom {
  color: #394438;
  text-shadow: none;
}
.workflow {
  background: var(--surface);
}
.workflow-title {
  text-align: center;
}
.workflow-title > p:last-child {
  margin-top: 24px;
  color: var(--muted);
  font-size: 20px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.step-visual {
  height: 220px;
  display: grid;
  place-items: center;
  margin-bottom: 35px;
  border-bottom: 1px solid #dddddf;
}
.step-number {
  font-size: 12px;
  color: #a5a5ac;
  font-weight: 600;
  letter-spacing: .08em;
}
.steps h3 {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -.02em;
  margin-top: 10px;
}
.steps p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.9;
}
.share-sheet {
  position: relative;
  width: 100%;
  max-width: 310px;
  background: white;
  border-radius: 15px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 13px;
  box-shadow: 0 12px 35px #00000006;
  transform: rotate(-5deg) translateY(-10px);
  min-height: 101px;
}
.share-thumb {
  width: 54px;
  height: 70px;
  border-radius: 7px;
  overflow: hidden;
  flex-shrink: 0;
}
.share-thumb img {
  height: 100%;
  width: 100%;
}
.share-sheet strong {
  font-size: 12px;
}
.share-sheet div > span {
  display: block;
  font-size: 9px;
  color: #96969e;
  margin-top: 5px;
}
.copy-bubble {
  position: absolute;
  right: 6px;
  bottom: -26px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  background: #fff;
  padding: 13px 24px;
  border-radius: 25px;
  box-shadow: 0 8px 20px #0000000d;
  transform: rotate(5deg);
}
.copy-bubble svg {
  width: 15px;
  height: 15px;
  color: var(--blue);
}
.paste-demo {
  width: 100%;
  max-width: 285px;
}
.paste-demo > span:first-child {
  display: block;
  font-size: 10px;
  color: #99999f;
  margin-bottom: 9px;
}
.paste-demo > div {
  display: flex;
  align-items: center;
  gap: 9px;
  background: white;
  border: 1px solid #cddeee;
  box-shadow: 0 0 0 3px #0071e30a;
  border-radius: 10px;
  font-size: 13px;
  padding: 15px;
  color: #72727a;
}
.paste-demo > div svg {
  width: 15px;
  height: 15px;
  color: #a1a1a8;
}
.paste-caret {
  width: 1px;
  height: 16px;
  background: var(--blue);
}
.parse-demo-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  border-radius: 8px;
  margin: 12px auto 0;
  width: 112px;
  padding: 9px 11px;
  font-size: 10px;
  background: var(--ink);
  color: white;
}
.parse-demo-button svg {
  width: 13px;
  height: 13px;
}
.saved-demo {
  text-align: center;
}
.saved-check {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e3efdf;
  color: #62a15a;
  margin: 0 auto 13px;
}
.saved-check svg {
  width: 29px;
  height: 29px;
  stroke-width: 1.8;
}
.saved-demo > strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
}
.saved-demo > span:not(.saved-check) {
  font-size: 9px;
  color: #99999f;
}
.saved-demo > div {
  display: flex;
  align-items: center;
  gap: 7px;
  background: white;
  padding: 7px 18px;
  border-radius: 5px;
  margin-top: 16px;
  color: #83838b;
  font-size: 9px;
}
.saved-demo > div svg {
  width: 14px;
  height: 14px;
  color: #73b7e8;
}
.workflow-link {
  display: flex;
  width: max-content;
  margin: 48px auto 0;
}
.batch {
  background: #151517;
  color: #f5f5f7;
  overflow: hidden;
}
.batch-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.batch .eyebrow {
  font-size: 13px;
  color: #b6b6bf;
}
.batch h2 {
  font-size: clamp(39px, 3.8vw, 54px);
  line-height: 1.25;
  letter-spacing: -.05em;
}
.batch h2 span {
  color: #a4b6d3;
}
.batch-copy > p:not(.eyebrow):not(.batch-note) {
  font-size: 15px;
  color: #9b9ba5;
  line-height: 1.9;
  margin-top: 26px;
}
.batch-features {
  display: grid;
  gap: 20px;
  margin-top: 33px;
}
.batch-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: #9898a3;
}
.batch-features svg {
  width: 19px;
  height: 19px;
  color: #b2b7c4;
}
.batch-features strong {
  font-weight: 500;
  color: #e3e3eb;
  margin-right: 10px;
}
.batch-note {
  font-size: 10px;
  color: #91919c;
  margin-top: 34px;
  line-height: 1.9;
}
.archive-visual {
  position: relative;
  padding: 30px 0 45px;
}
.archive-window {
  background: #252528;
  border: 1px solid #ffffff12;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 30px 80px #0004;
  transform: perspective(1200px) rotateY(-5deg);
}
.archive-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 20px;
  border-bottom: 1px solid #ffffff09;
  font-size: 11px;
  color: #b8b8c4;
  background: #2b2b2f;
}
.archive-toolbar svg {
  width: 15px;
  height: 15px;
  color: #7d7d89;
}
.archive-toolbar .traffic-lights {
  opacity: .8;
}
.archive-path {
  padding: 20px 22px;
  font-size: 10px;
  color: #8e8e9b;
}
.archive-path span {
  margin: 0 10px;
  color: #595964;
}
.archive-header {
  padding: 0 50px 11px 25px;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: #838391;
}
.archive-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-top: 1px solid #ffffff06;
}
.folder-shape {
  display: block;
  position: relative;
  width: 30px;
  height: 23px;
  background: #6ca7d4;
  border-radius: 2px;
  flex-shrink: 0;
  box-shadow: inset 0 2px 0 #8bbcdf;
}
.folder-shape::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 14px;
  height: 6px;
  background: #6298c1;
  border-radius: 3px 3px 0 0;
}
.archive-row > div {
  flex: 1;
}
.archive-row strong {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #d7d7df;
}
.archive-row div > span {
  display: block;
  font-size: 9px;
  color: #858592;
  margin-top: 4px;
}
.file-pill {
  font-size: 8px;
  border: 1px solid #ffffff0d;
  padding: 2px 5px;
  border-radius: 3px;
  color: #868698;
  letter-spacing: .02em;
}
.archive-check {
  width: 13px;
  height: 13px;
  color: #7dbe93;
}
.expanded-files {
  display: flex;
  gap: 18px;
  padding: 2px 20px 28px 70px;
  font-size: 9px;
  color: #b2b2bf;
}
.expanded-files span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.expanded-files svg {
  width: 12px;
  height: 12px;
  color: #868697;
}
.archive-status {
  padding: 13px 23px;
  font-size: 9px;
  color: #9595a1;
  background: #212124;
  display: flex;
  justify-content: space-between;
}
.archive-status i {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #67ae7f;
  margin-right: 6px;
}
.archive-toast {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  margin: -2px -20px 0 auto;
  transform: translateY(20px);
  width: 300px;
  background: #353539;
  border: 1px solid #ffffff17;
  border-radius: 13px;
  padding: 17px 19px;
  box-shadow: 0 10px 30px #0004;
}
.toast-icon {
  display: grid;
  place-items: center;
  background: #ffffff09;
  color: #91b8a4;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.toast-icon svg {
  width: 19px;
  height: 19px;
}
.archive-toast strong {
  font-size: 12px;
  font-weight: 500;
}
.archive-toast p {
  font-size: 9px;
  color: #9595a2;
  margin-top: 3px;
}
.archive-caption {
  position: absolute;
  bottom: -14px;
  left: 0;
  color: #82828d;
  font-size: 9px;
  letter-spacing: .02em;
}
.edition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.edition-card {
  position: relative;
  border-radius: 26px;
  background: var(--surface);
  padding: 43px 46px 40px;
}
.edition-symbol {
  height: 60px;
  width: 65px;
  margin-bottom: 33px;
}
.browser-symbol {
  height: 49px;
  border: 2px solid #9999a3;
  border-radius: 7px;
  position: relative;
  padding: 4px 6px;
  display: flex;
  gap: 3px;
  margin-top: 11px;
}
.browser-symbol i {
  width: 3px;
  height: 3px;
  background: #a1a1ac;
  border-radius: 50%;
}
.browser-symbol::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  right: 0;
  height: 1px;
  background: #aaaab5;
}
.browser-symbol svg {
  position: absolute;
  width: 22px;
  height: 22px;
  top: 18px;
  left: 19px;
  color: #9494a2;
}
.desktop-symbol svg {
  width: 65px;
  height: 60px;
  color: #7e9fc0;
  stroke-width: 1;
}
.edition-eyebrow {
  font-size: 12px;
  color: #81818b;
}
.edition-card h3 {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -.02em;
  margin-top: 8px;
}
.edition-card > p {
  font-size: 16px;
  color: #76767f;
  line-height: 1.75;
  margin-top: 16px;
}
.edition-card ul {
  margin: 30px 0;
  display: grid;
  gap: 15px;
}
.edition-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #686875;
}
.edition-card li svg {
  width: 15px;
  height: 15px;
  color: #858591;
}
.edition-card .button {
  font-size: 13px;
  padding: 11px 22px;
}
.desktop-edition {
  background: #f0f4f9;
}
.edition-note {
  display: block;
  font-size: 10px;
  color: #8b8b96;
  margin-top: 12px;
}
.edition-disclaimer {
  font-size: 11px;
  line-height: 1.85;
  color: #82828b;
  margin-top: 30px;
}
.edition-disclaimer a {
  color: var(--blue);
  margin-left: 8px;
}
.edition-disclaimer a:hover {
  text-decoration: underline;
}
.closing {
  background: var(--surface);
  text-align: center;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 90px;
}
.closing-art {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  gap: 34px;
  margin-bottom: 48px;
}
.closing-art img {
  width: 88px;
  height: 117px;
  border-radius: 8px;
  box-shadow: 0 10px 25px #0000000d;
}
.closing-art img:first-child {
  transform: rotate(-13deg) translateY(10px);
}
.closing-art img:last-child {
  transform: rotate(13deg) translateY(10px);
}
.app-icon-large {
  width: 124px;
  height: 124px;
  border-radius: 29px;
  box-shadow: 0 20px 45px #ef36482b;
}
.app-icon-large svg {
  width: 62px;
  height: 62px;
  stroke-width: 1.5;
}
.closing h2 {
  font-size: clamp(47px, 5.5vw, 76px);
  line-height: 1.14;
}
.closing .eyebrow {
  font-size: 16px;
  margin-bottom: 23px;
}
.closing-copy > p:not(.eyebrow) {
  font-size: 20px;
  color: var(--muted);
  margin-top: 26px;
}
.closing .hero-actions {
  margin-top: 30px;
}
.closing-signature {
  display: block;
  font-size: 10px;
  letter-spacing: .11em;
  color: #a1a1aa;
  margin-top: 48px;
}
.site-footer {
  background: var(--surface);
  padding: 0 0 30px;
  color: #8b8b93;
  font-size: 10px;
}
.footer-top {
  border-top: 1px solid #dedee4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 33px 0 28px;
}
.footer-brand {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.03em;
  color: #55555d;
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-brand span {
  font-size: 10px;
  letter-spacing: 0;
  font-weight: 400;
  color: #92929b;
}
.footer-top > div {
  display: flex;
  gap: 25px;
}
.site-footer p {
  font-size: 9px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 9px;
  margin-top: 15px;
}
.footer-bottom a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.js-ready .reveal {
  transition: opacity .75s ease, transform .75s cubic-bezier(.2, .65, .2, 1);
}
.js-ready .reveal.is-pending {
  opacity: 0;
  transform: translateY(26px);
}
.steps .reveal:nth-child(2),
.edition-grid .reveal:nth-child(2) {
  transition-delay: .08s;
}
.steps .reveal:nth-child(3) {
  transition-delay: .16s;
}
.presentation-controls {
  position: fixed;
  bottom: 23px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 50;
  border: 1px solid #ffffff20;
  background: #27272cf2;
  color: #e3e3eb;
  border-radius: 40px;
  padding: 8px 13px;
  box-shadow: 0 8px 30px #0002;
  white-space: nowrap;
  backdrop-filter: blur(14px);
}
.presentation-controls button {
  height: 32px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  font-size: 11px;
  gap: 5px;
}
.presentation-controls button:hover {
  background: #ffffff15;
}
.presentation-controls button:disabled {
  opacity: .3;
  cursor: default;
}
.presentation-controls svg {
  width: 15px;
  height: 15px;
}
.presentation-controls #scene-prev svg {
  transform: rotate(180deg);
}
.scene-counter {
  display: flex;
  gap: 5px;
  font-size: 11px;
  letter-spacing: .04em;
}
.scene-counter > span:last-child {
  color: #9999a6;
}
.scene-label {
  font-size: 11px;
  width: 92px;
  color: #ccccd5;
  text-align: center;
}
.control-divider {
  width: 1px;
  height: 18px;
  background: #ffffff20;
}
.presentation-controls #presentation-exit {
  padding: 0 8px;
}
.presentation-controls kbd {
  font-family: inherit;
  font-size: 9px;
  opacity: .5;
  border: 1px solid #ffffff40;
  border-radius: 3px;
  padding: 0 3px;
}
.presentation-hint {
  position: fixed;
  bottom: 3px;
  text-align: center;
  left: 0;
  right: 0;
  font-size: 8px;
  color: #9b9ba6;
  z-index: 45;
  pointer-events: none;
}
.is-presenting .nav-links,
.is-presenting .nav-cta,
.is-presenting .reading-progress,
.is-presenting .site-footer,
.is-presenting .scroll-cue {
  display: none;
}
.is-presenting .nav-actions {
  margin-left: auto;
}
.is-presenting .story-scene:not(.is-current-scene) {
  display: none;
}
.is-presenting .story-scene {
  min-height: calc(100svh - var(--header-height));
  padding-bottom: 105px;
}
.is-presenting .reveal {
  opacity: 1 !important;
  transform: none !important;
}
.is-presenting .section {
  display: flex;
  align-items: center;
  padding-top: 60px;
}
.is-presenting .closing {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.is-presenting .hero {
  padding-top: 35px;
}
.is-presenting .hero h1 {
  font-size: clamp(52px, 8vh, 80px);
}
.is-presenting .hero .eyebrow {
  margin-bottom: 12px;
}
.is-presenting .hero-description {
  margin-top: 16px;
  font-size: 17px;
}
.is-presenting .hero-actions {
  margin-top: 20px;
}
.is-presenting .hero-stage {
  margin-top: 30px;
  max-width: 1060px;
  padding-inline: 115px;
}
.is-presenting .photo-left {
  left: 2px;
}
.is-presenting .photo-right {
  right: 2px;
}
.is-presenting .hero .availability {
  margin-top: 10px;
}
@media (min-width: 1500px) {
  .hero-stage {
    max-width: 1280px;
    padding-inline: 150px;
  }
  .mock-gallery img {
    height: 150px;
  }
  .mock-main {
    padding: 28px 33px 20px;
  }
  .window-body {
    min-height: 372px;
  }
  .hero {
    padding-top: 70px;
  }
  .hero-stage {
    margin-top: 58px;
  }
}
@media (max-width: 1050px) {
  .nav-inner {
    padding-inline: 28px;
    gap: 22px;
  }
  .nav-links {
    gap: 20px;
  }
  .nav-actions {
    gap: 16px;
  }
  .hero-stage {
    padding-inline: 110px;
  }
  .floating-photo {
    width: 135px;
  }
  .floating-photo img {
    height: 145px;
  }
  .photo-left {
    left: 15px;
  }
  .photo-right {
    right: 15px;
  }
  .window-body {
    grid-template-columns: 130px 1fr;
  }
  .mock-main {
    padding: 20px;
  }
  .mock-heading h2 {
    font-size: 16px;
  }
  .sidebar-bottom {
    font-size: 6px;
    left: 12px;
  }
  .media-details {
    padding: 30px;
  }
  .media-tabs {
    margin-bottom: 35px;
  }
  .media-tabs button {
    font-size: 11px;
    gap: 4px;
  }
  .media-tabs svg {
    width: 13px;
    height: 13px;
  }
  .batch-layout {
    gap: 40px;
  }
  .archive-row {
    gap: 11px;
    padding-inline: 18px;
  }
  .archive-toast {
    margin-right: 0;
  }
  .edition-card {
    padding: 35px;
  }
  .steps {
    gap: 25px;
  }
  .steps h3 {
    font-size: 18px;
  }
  .steps p {
    font-size: 12px;
  }
}
@media (max-width: 900px) {
  .container {
    width: calc(100% - 56px);
  }
  .nav-inner {
    padding: 0 24px;
  }
  .brand-detail {
    display: none;
  }
  .nav-links {
    gap: 18px;
  }
  .section-heading {
    gap: 20px;
  }
  .section-heading > p {
    font-size: 15px;
  }
  .hero {
    padding-top: 52px;
  }
  .hero-stage {
    padding-inline: 70px;
  }
  .floating-photo {
    width: 106px;
    padding: 5px 5px 0;
  }
  .floating-photo img {
    height: 124px;
  }
  .floating-photo > span {
    font-size: 6px;
    height: 28px;
    gap: 3px;
  }
  .floating-photo svg {
    width: 9px;
    height: 9px;
  }
  .photo-left {
    left: 5px;
    top: 87px;
  }
  .photo-right {
    right: 5px;
    top: 132px;
  }
  .mock-sidebar {
    padding-inline: 6px;
    font-size: 9px;
  }
  .window-body {
    grid-template-columns: 112px 1fr;
    min-height: 300px;
  }
  .mock-main {
    padding: 20px 18px 14px;
  }
  .mock-ready {
    display: none;
  }
  .mock-gallery img {
    height: 107px;
  }
  .sidebar-bottom {
    display: none;
  }
  .media-showcase {
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
  }
  .media-art {
    min-height: 500px;
  }
  .media-details {
    padding: 25px;
  }
  .media-tabs button {
    font-size: 10px;
  }
  .media-tabs svg {
    display: none;
  }
  #media-panel h3 {
    font-size: 32px;
  }
  #feature-description {
    font-size: 14px;
  }
  .art-bottom > span:first-child {
    font-size: 21px;
  }
  .art-bottom > span:last-child {
    font-size: 8px;
  }
  .art-top,
  .art-bottom {
    left: 22px;
    right: 22px;
  }
  .text-preview {
    inset: 80px 25px 105px;
    padding: 25px;
  }
  .text-preview h3 {
    font-size: 22px;
  }
  .batch-layout {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .batch h2 {
    font-size: 37px;
  }
  .batch-copy > p:not(.eyebrow):not(.batch-note) {
    font-size: 13px;
  }
  .batch-features li {
    font-size: 10px;
    gap: 9px;
  }
  .batch-features strong {
    margin-right: 5px;
  }
  .batch-note {
    font-size: 9px;
  }
  .archive-row strong {
    font-size: 10px;
  }
  .archive-row div > span {
    font-size: 8px;
  }
  .file-pill {
    display: none;
  }
  .expanded-files {
    padding-left: 56px;
    gap: 12px;
    font-size: 8px;
  }
  .archive-toast {
    width: 280px;
  }
  .edition-card {
    padding: 30px;
  }
  .edition-card li {
    font-size: 11px;
  }
  .edition-card > p {
    font-size: 14px;
  }
  .footer-brand {
    gap: 13px;
  }
  .footer-top > div {
    gap: 18px;
  }
  .is-presenting .hero-stage {
    padding-inline: 75px;
  }
}
@media (max-width: 700px) {
  :root {
    --header-height:58px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .nav-inner {
    padding: 0 18px;
    gap: 12px;
  }
  .brand {
    font-size: 16px;
    gap: 8px;
  }
  .nav-links {
    display: none;
  }
  .nav-actions {
    margin-left: auto;
    gap: 16px;
  }
  .presentation-toggle {
    font-size: 11px;
  }
  .hero {
    padding-top: 48px;
  }
  .hero .eyebrow {
    font-size: 16px;
  }
  .hero h1 {
    font-size: 64px;
  }
  .hero-description {
    font-size: 16px;
    margin-top: 22px;
  }
  .hero-actions {
    gap: 20px;
  }
  .button {
    font-size: 13px;
    padding: 11px 21px;
  }
  .text-link {
    font-size: 13px;
  }
  .availability {
    font-size: 10px;
  }
  .hero-stage {
    margin-top: 42px;
    padding: 0 30px 22px;
  }
  .window-body {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .mock-sidebar {
    display: none;
  }
  .mock-main {
    padding: 19px 20px 14px;
  }
  .mock-heading small {
    font-size: 8px;
  }
  .mock-heading h2 {
    font-size: 17px;
  }
  .window-toolbar {
    height: 32px;
    font-size: 8px;
  }
  .mock-input {
    font-size: 8px;
    margin-top: 14px;
  }
  .mock-input > span:first-of-type {
    white-space: nowrap;
    overflow: hidden;
  }
  .mock-gallery img {
    height: 120px;
  }
  .floating-photo {
    width: 81px;
  }
  .floating-photo img {
    height: 89px;
  }
  .floating-photo > span {
    font-size: 5px;
    height: 22px;
    gap: 2px;
  }
  .floating-photo svg {
    width: 7px;
    height: 7px;
  }
  .photo-left {
    left: -15px;
    top: 147px;
    transform: rotate(-10deg);
  }
  .photo-right {
    right: -17px;
    top: 87px;
  }
  .stage-caption {
    font-size: 6px;
    margin-top: 16px;
  }
  .section {
    padding: 75px 0;
  }
  .section .eyebrow {
    font-size: 13px;
    margin-bottom: 18px;
  }
  .section h2 {
    font-size: 39px;
  }
  .section-heading {
    display: block;
    margin-bottom: 34px;
  }
  .section-heading > p {
    font-size: 14px;
    margin-top: 21px;
  }
  .media-showcase {
    grid-template-columns: 1fr;
    border-radius: 20px;
    min-height: 0;
  }
  .media-art {
    height: 365px;
    min-height: 0;
  }
  .media-art > img {
    object-position: center 62%;
  }
  .art-bottom > span:first-child {
    max-width: none;
    font-size: 23px;
  }
  .media-details {
    padding: 25px 26px 29px;
  }
  .media-tabs {
    margin-bottom: 28px;
    width: 100%;
    max-width: 360px;
  }
  .media-tabs svg {
    display: block;
  }
  .media-tabs button {
    font-size: 11px;
    padding-block: 9px;
  }
  #media-panel h3 {
    font-size: 34px;
    margin: 14px 0;
  }
  #feature-description {
    max-width: none;
    font-size: 14px;
  }
  .feature-chips {
    margin-top: 19px;
  }
  .feature-footnote {
    font-size: 10px;
    padding-top: 25px;
    max-width: none;
  }
  .text-preview {
    inset: 45px 48px 65px;
    padding: 18px 25px;
  }
  .text-preview h3 {
    margin: 9px 0;
    font-size: 20px;
  }
  .text-preview p {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .text-preview small {
    font-size: 9px;
  }
  .text-preview > span {
    font-size: 9px;
  }
  .media-art[data-media-art=text] .art-bottom > span:first-child {
    font-size: 17px;
  }
  .workflow-title {
    text-align: left;
  }
  .workflow-title > p:last-child {
    font-size: 17px;
    margin-top: 20px;
  }
  .steps {
    display: block;
    margin-top: 35px;
  }
  .steps li {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 0 5px;
    margin-top: 42px;
  }
  .step-visual {
    grid-column: 1/-1;
    height: 200px;
    margin-bottom: 22px;
  }
  .steps .step-number {
    grid-column: 1;
    grid-row: 2;
    padding-top: 2px;
  }
  .steps h3 {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0;
    font-size: 20px;
  }
  .steps p {
    grid-column: 2;
    font-size: 13px;
    margin-top: 11px;
  }
  .share-sheet {
    max-width: 290px;
  }
  .paste-demo {
    max-width: 275px;
  }
  .workflow-link {
    margin: 36px 0 0 35px;
  }
  .batch-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .batch h2 {
    font-size: 44px;
    line-height: 1.2;
  }
  .batch-copy > p:not(.eyebrow):not(.batch-note) {
    font-size: 15px;
  }
  .batch-features li {
    font-size: 12px;
    gap: 13px;
  }
  .batch-features strong {
    margin-right: 8px;
  }
  .batch-note {
    font-size: 10px;
  }
  .archive-visual {
    padding-top: 5px;
    padding-bottom: 35px;
  }
  .archive-window {
    transform: none;
  }
  .archive-toolbar {
    padding: 16px 18px;
  }
  .archive-row {
    padding: 17px 20px;
    gap: 14px;
  }
  .archive-row strong {
    font-size: 12px;
  }
  .archive-row div > span {
    font-size: 9px;
  }
  .file-pill {
    display: block;
  }
  .expanded-files {
    padding-left: 65px;
    font-size: 9px;
  }
  .archive-toast {
    width: 275px;
    margin-right: 0;
  }
  .archive-caption {
    font-size: 8px;
    bottom: -6px;
  }
  .edition-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .edition-card {
    padding: 34px;
  }
  .edition-symbol {
    margin-bottom: 25px;
  }
  .edition-card h3 {
    font-size: 32px;
  }
  .edition-card > p {
    font-size: 16px;
  }
  .edition-card li {
    font-size: 12px;
  }
  .edition-card .button {
    width: 100%;
  }
  .edition-note {
    text-align: center;
  }
  .edition-disclaimer {
    font-size: 10px;
  }
  .edition-disclaimer a {
    display: inline-block;
    margin: 5px 0 0;
  }
  .closing-art {
    gap: 28px;
    height: 145px;
    margin-bottom: 35px;
  }
  .app-icon-large {
    width: 104px;
    height: 104px;
    border-radius: 25px;
  }
  .app-icon-large svg {
    width: 53px;
    height: 53px;
  }
  .closing-art img {
    width: 70px;
    height: 94px;
  }
  .closing h2 {
    font-size: 47px;
  }
  .closing-copy > p:not(.eyebrow) {
    font-size: 16px;
  }
  .closing .eyebrow {
    font-size: 14px;
  }
  .footer-top {
    align-items: flex-start;
    gap: 20px;
  }
  .footer-brand {
    display: block;
    font-size: 20px;
  }
  .footer-brand span {
    display: block;
    margin-top: 5px;
    font-size: 9px;
  }
  .footer-top > div {
    gap: 9px;
    flex-direction: column;
    font-size: 10px;
  }
  .site-footer p {
    line-height: 1.9;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 7px;
  }
  .presentation-controls {
    gap: 6px;
    padding: 7px 9px;
    bottom: 24px;
  }
  .scene-label {
    width: 84px;
    font-size: 10px;
  }
  .presentation-controls kbd {
    display: none;
  }
  .presentation-hint {
    font-size: 7px;
    bottom: 7px;
  }
  .is-presenting .hero-stage {
    padding-inline: 30px;
  }
  .is-presenting .photo-left {
    left: -15px;
  }
  .is-presenting .photo-right {
    right: -17px;
  }
  .is-presenting .section {
    padding-top: 45px;
    align-items: flex-start;
  }
  .is-presenting .hero {
    padding-top: 40px;
  }
  .is-presenting .hero h1 {
    font-size: 58px;
  }
  .is-presenting .hero-description {
    font-size: 15px;
  }
  .is-presenting .closing {
    align-items: center;
  }
  .is-presenting .closing-art {
    margin-top: 10px;
  }
}
@media (max-width: 374px) {
  .brand {
    font-size: 14px;
  }
  .nav-actions {
    gap: 10px;
  }
  .nav-cta {
    padding-inline: 13px;
  }
  .presentation-toggle {
    font-size: 10px;
  }
  .mock-input {
    gap: 5px;
  }
  .mock-main {
    padding-inline: 15px;
  }
  .mock-parse {
    gap: 4px;
    padding-inline: 6px;
  }
  .mock-gallery {
    gap: 6px;
  }
  .mock-gallery img {
    height: 99px;
  }
  .mock-bottom {
    font-size: 7px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .container {
    width: calc(100% - 32px);
  }
  .section h2 {
    font-size: 36px;
  }
  .edition-card {
    padding: 29px;
  }
  .archive-row {
    padding-inline: 15px;
    gap: 10px;
  }
  .archive-row strong {
    font-size: 11px;
  }
  .presentation-controls {
    gap: 3px;
  }
  .scene-label {
    width: 76px;
  }
  .closing-art {
    gap: 20px;
  }
  .closing h2 {
    font-size: 42px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .js-ready .reveal.is-pending {
    opacity: 1;
    transform: none;
  }
  .button:hover {
    transform: none;
  }
}
.story-scene h1[tabindex="-1"]:focus,
.story-scene h2[tabindex="-1"]:focus {
  outline: none;
}
@media (min-width: 701px) {
  .art-bottom > span:first-child {
    max-width: 320px;
  }
  .is-presenting .section {
    padding-top: 38px;
    padding-bottom: 94px;
  }
  .is-presenting .section h2 {
    font-size: clamp(37px, 5.2vh, 54px);
  }
  .is-presenting .section .eyebrow {
    font-size: 13px;
    margin-bottom: 16px;
  }
  .is-presenting .section-heading {
    margin-bottom: 30px;
  }
  .is-presenting .media-showcase,
  .is-presenting .media-art {
    min-height: 460px;
  }
  .is-presenting .media-details {
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .is-presenting .media-tabs {
    margin-bottom: 26px;
  }
  .is-presenting .feature-footnote {
    padding-top: 20px;
  }
  .is-presenting .steps {
    margin-top: 30px;
  }
  .is-presenting .step-visual {
    height: 180px;
    margin-bottom: 24px;
  }
  .is-presenting .workflow-link {
    margin-top: 32px;
  }
  .is-presenting .edition-card {
    padding-top: 30px;
    padding-bottom: 28px;
  }
  .is-presenting .edition-symbol {
    margin-bottom: 18px;
  }
  .is-presenting .edition-card ul {
    margin-block: 22px;
    gap: 12px;
  }
  .is-presenting .edition-card > p {
    margin-top: 12px;
  }
  .is-presenting .edition-disclaimer {
    margin-top: 21px;
  }
  .is-presenting .hero {
    padding-top: 26px;
    padding-bottom: 85px;
  }
  .is-presenting .hero h1 {
    font-size: clamp(50px, 7vh, 72px);
  }
  .is-presenting .hero .eyebrow {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .is-presenting .hero-description {
    font-size: 15px;
    margin-top: 14px;
  }
  .is-presenting .hero-actions {
    margin-top: 18px;
  }
  .is-presenting .hero-stage {
    margin-top: 25px;
    padding-bottom: 10px;
  }
  .is-presenting .window-body {
    min-height: 308px;
  }
  .is-presenting .mock-main {
    padding-top: 19px;
    padding-bottom: 15px;
  }
  .is-presenting .mock-gallery img {
    height: 115px;
  }
  .is-presenting .closing h2 {
    font-size: clamp(50px, 7vh, 72px);
  }
}
