:root {
  color-scheme: light;
  --black: #000;
  --ink: #1d1d1f;
  --secondary: #6e6e73;
  --blue: #0071e3;
  --blue-hover: #0077ed;
  --line: #d2d2d7;
  --light: #fff;
  --neutral: #f5f5f7;
  --warm: #f4efe8;
  --cool: #eaf3fa;
  --green: #e8f3e8;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--light);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "PingFang SC", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body, button { font-family: inherit; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
figure, p, h1, h2, h3, ol, dl, dd { margin: 0; }

.global-nav {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 52px;
  color: rgba(0, 0, 0, .88);
  background: rgba(255, 255, 255, .82);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  backdrop-filter: saturate(180%) blur(20px);
}
.nav-inner {
  width: min(980px, calc(100% - 32px));
  height: 51px;
  margin: auto;
  display: flex;
  align-items: center;
}
.wordmark { font-size: 20px; font-weight: 700; letter-spacing: -.04em; }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 28px; }
.nav-links a { color: #333336; font-size: 12px; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--blue); }
.nav-download {
  margin-left: 28px;
  padding: 6px 14px;
  color: white;
  background: var(--blue);
  border-radius: 999px;
  font-size: 12px;
}
.nav-download:hover { background: var(--blue-hover); }
.scroll-progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: var(--blue);
}

.section-light { background: var(--light); }
.section-neutral { background: var(--neutral); }
.section-black { color: #f5f5f7; background: var(--black); }
.section-warm { background: var(--warm); }
.section-cool { background: var(--cool); }

.hero {
  padding: 120px 24px 108px;
  overflow: hidden;
  text-align: center;
}
.hero-copy { max-width: 1040px; margin: 0 auto; }
.release-line {
  margin-bottom: 18px;
  color: #bf4800;
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -.01em;
}
.hero h1 {
  font-size: clamp(58px, 7.4vw, 104px);
  line-height: .98;
  font-weight: 700;
  letter-spacing: -.065em;
}
.hero-summary {
  max-width: 820px;
  margin: 34px auto 0;
  color: var(--secondary);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -.025em;
}
.hero-actions { margin-top: 34px; display: flex; align-items: center; justify-content: center; gap: 30px; }
.button {
  min-height: 48px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
}
.button-primary { color: white; background: var(--blue); }
.button-primary:hover { background: var(--blue-hover); }
.text-link { color: var(--blue); font-size: 19px; }
.text-link:hover { text-decoration: underline; }
.text-link span { margin-left: 3px; font-size: 25px; line-height: 0; }
.release-meta { margin-top: 20px; color: #86868b; font-size: 12px; }
.hero-product { width: min(1440px, calc(100% + 90px)); margin: 90px auto 0; }
.hero-product figcaption { margin-top: 26px; color: var(--secondary); font-size: 14px; }

.app-frame {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .16);
  border-radius: 23px;
  background: white;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .16), 0 10px 30px rgba(0, 0, 0, .08);
}
.frame-bar {
  height: 38px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #86868b;
  background: #f7f7f8;
  border-bottom: 1px solid #e5e5e7;
  font-size: 10px;
}
.frame-bar span { width: 9px; height: 9px; border-radius: 50%; background: #ff5f57; }
.frame-bar span:nth-child(2) { background: #febc2e; }
.frame-bar span:nth-child(3) { background: #28c840; }
.frame-bar b { margin-left: 5px; font-weight: 500; }
.app-frame > img { width: 100%; }
.app-frame-wide > img { aspect-ratio: 2.34 / 1; object-fit: cover; }

.statement { padding: 150px 24px 138px; }
.statement-inner { max-width: 1040px; margin: auto; }
.section-kicker {
  margin-bottom: 18px;
  color: #bf4800;
  font-size: 17px;
  font-weight: 650;
}
.section-kicker.light { color: #f5a623; }
.statement h2,
.two-column-heading h2,
.section-heading h2,
.closing h2 {
  font-size: clamp(46px, 6vw, 80px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -.055em;
}
.statement > .statement-inner > p:not(.section-kicker) {
  max-width: 810px;
  margin-top: 35px;
  color: #a1a1a6;
  font-size: 23px;
  line-height: 1.5;
  font-weight: 500;
}
.statement-facts {
  margin-top: 80px;
  padding-top: 45px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #333336;
}
.statement-facts div { display: flex; flex-direction: column; }
.statement-facts strong { font-size: clamp(48px, 7vw, 80px); line-height: 1; letter-spacing: -.06em; }
.statement-facts span { margin-top: 12px; color: #86868b; font-size: 14px; }

.workflow,
.ecommerce-intro,
.parallel-section,
.shot-section,
.detail-story,
.results-section,
.canvas-section,
.release-grid { padding: 140px 24px; }
.section-heading,
.two-column-heading,
.feature-screen,
.wide-screen,
.canvas-figure,
.canvas-capabilities,
.spec-bento,
.checksum-row { width: min(var(--max), 100%); margin-left: auto; margin-right: auto; }
.section-heading { max-width: 880px; margin-bottom: 72px; }
.section-heading > p:last-child {
  max-width: 740px;
  margin-top: 24px;
  color: var(--secondary);
  font-size: 21px;
  line-height: 1.5;
  font-weight: 500;
}
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading.centered > p:last-child { margin-left: auto; margin-right: auto; }

.flow-steps {
  width: min(var(--max), 100%);
  margin: 0 auto 84px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
  border-top: 1px solid #c7c7cc;
}
.flow-steps li { min-height: 165px; padding: 23px 18px 20px 0; display: flex; flex-direction: column; border-bottom: 1px solid #c7c7cc; }
.flow-steps li + li { padding-left: 20px; border-left: 1px solid #c7c7cc; }
.flow-steps span { color: #86868b; font-size: 11px; font-weight: 650; }
.flow-steps strong { margin-top: auto; font-size: 18px; letter-spacing: -.02em; }
.flow-steps small { margin-top: 8px; color: var(--secondary); font-size: 12px; line-height: 1.5; }

.editorial-figure {
  width: min(1400px, 100%);
  margin: 0 auto 84px;
}
.editorial-figure > img {
  width: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: #ececec;
}
.editorial-figure figcaption {
  width: min(820px, calc(100% - 32px));
  margin: 25px auto 0;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.editorial-figure figcaption strong { font-size: 20px; }
.editorial-figure figcaption span { margin-top: 7px; color: var(--secondary); font-size: 14px; line-height: 1.55; }

.before-after { width: min(1400px, 100%); margin: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stage-card { padding: 30px; overflow: hidden; border-radius: 28px; background: white; }
.stage-card header { min-height: 72px; display: flex; flex-direction: column; }
.stage-card header span { color: #86868b; font-size: 12px; }
.stage-card header strong { margin-top: 8px; font-size: 22px; letter-spacing: -.025em; }
.stage-image { height: 420px; overflow: hidden; border-radius: 15px; background: #f0f0f2; border: 1px solid #e2e2e5; }
.stage-image img { width: 100%; height: 100%; object-fit: cover; }
.stage-image-config img { object-position: center top; }
.stage-image-progress img { object-position: center; }
.stage-card > p { margin-top: 22px; color: var(--secondary); font-size: 15px; line-height: 1.55; }
.stage-after { color: white; background: #1d1d1f; }
.stage-after .stage-image { border-color: #3a3a3c; }
.stage-after > p { color: #a1a1a6; }

.two-column-heading { display: grid; grid-template-columns: 1fr .72fr; gap: 80px; align-items: end; margin-bottom: 76px; }
.two-column-heading > p {
  padding-bottom: 8px;
  color: var(--secondary);
  font-size: 20px;
  line-height: 1.55;
  font-weight: 500;
}
.feature-screen { max-width: 1320px; }
.feature-screen .app-frame > img { aspect-ratio: 1.29 / 1; object-fit: cover; object-position: center top; }
.feature-screen figcaption {
  width: min(840px, calc(100% - 30px));
  margin: 28px auto 0;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.feature-screen figcaption strong { font-size: 20px; }
.feature-screen figcaption span { margin-top: 7px; color: var(--secondary); font-size: 14px; line-height: 1.55; }

.parallel-section .two-column-heading > p { color: #a1a1a6; }
.dark-frame { border-color: #3a3a3c; box-shadow: 0 40px 100px rgba(0, 0, 0, .55); }
.dark-frame .frame-bar { color: #a1a1a6; background: #1c1c1e; border-color: #38383a; }
.parallel-section .feature-screen .app-frame > img { aspect-ratio: 1.96 / 1; }
.parallel-section figcaption span { color: #a1a1a6; }

.shot-section .section-heading { margin-left: auto; margin-right: auto; text-align: center; }
.shot-section .section-heading > p:last-child { margin-left: auto; margin-right: auto; }
.wide-screen { overflow: hidden; max-width: 1500px; border: 1px solid rgba(0,0,0,.13); border-radius: 22px; background: white; box-shadow: 0 35px 80px rgba(45, 77, 99, .16); }
.wide-screen img { width: 100%; }

.result-viewer { width: min(1050px, 100%); margin: auto; }
.result-tabs {
  width: fit-content;
  margin: 0 auto 36px;
  padding: 4px;
  display: flex;
  gap: 3px;
  border-radius: 999px;
  background: #ececef;
}
.result-tabs button {
  padding: 9px 18px;
  cursor: pointer;
  color: #515154;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 13px;
}
.result-tabs button[aria-selected="true"] { color: var(--ink); background: white; box-shadow: 0 1px 4px rgba(0,0,0,.13); }
.result-stage {
  position: relative;
  height: min(72vw, 820px);
  min-height: 540px;
  overflow: hidden;
  border-radius: 32px;
  background: #f5f5f7;
}
.result-stage > img { width: 100%; height: 100%; object-fit: contain; transition: opacity .22s ease; }
.result-stage.is-changing > img { opacity: .16; }
.result-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px 21px;
  display: flex;
  align-items: center;
  gap: 17px;
  color: white;
  border-radius: 18px;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(18px);
}
.result-caption > span { color: #a1a1a6; font-size: 12px; }
.result-caption div { display: flex; flex-direction: column; gap: 3px; }
.result-caption strong { font-size: 16px; }
.result-caption small { color: #d2d2d7; font-size: 12px; line-height: 1.4; }

.canvas-figure { overflow: hidden; max-width: 1500px; border: 1px solid #d8d8dc; border-radius: 24px; background: white; box-shadow: 0 35px 80px rgba(0,0,0,.1); }
.canvas-figure img { width: 100%; }
.canvas-capabilities { margin-top: 22px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.canvas-capabilities article { padding: 32px; border-radius: 24px; background: white; }
.canvas-capabilities span { color: #bf4800; font-size: 12px; font-weight: 650; }
.canvas-capabilities h3 { margin: 48px 0 12px; font-size: 25px; letter-spacing: -.03em; }
.canvas-capabilities p { color: var(--secondary); font-size: 14px; line-height: 1.55; }

.spec-bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.spec-card { min-height: 285px; padding: 30px; display: flex; flex-direction: column; border-radius: 28px; }
.spec-card > span, .spec-wide span { font-size: 12px; font-weight: 650; }
.spec-card > strong { margin-top: auto; font-size: 35px; letter-spacing: -.045em; }
.spec-card > p { margin-top: 12px; font-size: 13px; line-height: 1.5; opacity: .7; }
.spec-dark { color: white; background: #1d1d1f; }
.spec-sand { background: #eee2d1; }
.spec-blue { color: #082c50; background: #cfe8ff; }
.spec-green { color: #183b22; background: #d7ead8; }
.spec-wide {
  min-height: 380px;
  padding: 40px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  grid-column: 1 / -1;
  border-radius: 28px;
  background: var(--neutral);
}
.spec-wide h3 { max-width: 420px; margin-top: 60px; font-size: 42px; line-height: 1.05; letter-spacing: -.045em; }
.spec-wide dl { display: flex; flex-direction: column; }
.spec-wide dl > div { padding: 17px 0; display: flex; justify-content: space-between; gap: 24px; border-bottom: 1px solid var(--line); }
.spec-wide dt { color: var(--secondary); font-size: 13px; }
.spec-wide dd { text-align: right; font-size: 14px; font-weight: 550; }
.checksum-row {
  margin-top: 18px;
  padding: 22px 25px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.checksum-row > div { min-width: 0; display: flex; align-items: center; gap: 20px; }
.checksum-row span { color: var(--secondary); font-size: 11px; font-weight: 650; }
.checksum-row code { overflow: hidden; color: #515154; font: 11px/1.5 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; text-overflow: ellipsis; }
.checksum-row button {
  flex: 0 0 auto;
  margin-left: auto;
  padding: 8px 14px;
  cursor: pointer;
  color: var(--blue);
  background: transparent;
  border: 1px solid var(--blue);
  border-radius: 999px;
  font-size: 12px;
}

.closing { padding: 155px 24px; text-align: center; }
.closing-inner { max-width: 1000px; margin: auto; }
.closing-inner > p { margin-bottom: 18px; color: #f5a623; font-size: 17px; font-weight: 650; }
.closing .button { margin-top: 42px; }
.button-light { color: black; background: white; }
.button-light:hover { background: #e8e8ed; }
.closing small { margin-top: 20px; display: block; color: #86868b; font-size: 11px; }

footer {
  min-height: 92px;
  padding: 25px max(24px, calc((100% - 980px) / 2));
  display: flex;
  align-items: center;
  gap: 28px;
  color: #6e6e73;
  background: #f5f5f7;
  border-top: 1px solid #d2d2d7;
  font-size: 11px;
}
footer strong { color: var(--ink); font-size: 13px; }
footer > span { margin-right: auto; }
footer a { color: #424245; }
.toast {
  position: fixed;
  z-index: 200;
  left: 50%;
  bottom: 24px;
  padding: 11px 16px;
  transform: translate(-50%, 12px);
  color: white;
  background: rgba(29,29,31,.92);
  border-radius: 999px;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
}
.toast.visible { opacity: 1; transform: translate(-50%, 0); }

.js .reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s cubic-bezier(.25,.46,.45,.94), transform .8s cubic-bezier(.25,.46,.45,.94); }
.js .reveal[data-delay="1"] { transition-delay: .08s; }
.js .reveal[data-delay="2"] { transition-delay: .16s; }
.js .reveal.is-visible { opacity: 1; transform: none; }
:focus-visible { outline: 3px solid rgba(0,113,227,.42); outline-offset: 3px; }

@media (max-width: 980px) {
  .hero { padding-top: 95px; }
  .hero-product { width: calc(100% + 20px); margin-left: -10px; }
  .statement-facts { gap: 24px; }
  .flow-steps { grid-template-columns: 1fr 1fr; }
  .flow-steps li + li { border-left: 0; }
  .flow-steps li:nth-child(even) { padding-left: 20px; border-left: 1px solid #c7c7cc; }
  .flow-steps li:last-child { grid-column: 1 / -1; }
  .before-after { grid-template-columns: 1fr; }
  .stage-image { height: 520px; }
  .two-column-heading { grid-template-columns: 1fr; gap: 30px; align-items: start; }
  .two-column-heading > p { max-width: 720px; }
  .canvas-capabilities { grid-template-columns: 1fr; }
  .canvas-capabilities h3 { margin-top: 32px; }
  .spec-bento { grid-template-columns: 1fr 1fr; }
  .spec-wide { grid-template-columns: 1fr; gap: 28px; }
  .spec-wide h3 { margin-top: 30px; }
}

@media (max-width: 640px) {
  .global-nav { height: 48px; }
  .nav-inner { height: 47px; }
  .wordmark { font-size: 17px; }
  .nav-links { display: none; }
  .nav-download { margin-left: auto; }
  .hero { padding: 78px 18px 82px; }
  .release-line, .section-kicker { font-size: 14px; }
  .hero h1 { font-size: 42px; line-height: 1.02; }
  .hero-summary { margin-top: 26px; font-size: 18px; }
  .desktop-only { display: none; }
  .hero-actions { flex-direction: column; gap: 19px; }
  .text-link { font-size: 16px; }
  .release-meta { line-height: 1.6; }
  .hero-product { width: calc(100% + 24px); margin: 60px -12px 0; }
  .app-frame { border-radius: 14px; }
  .frame-bar { height: 29px; }
  .frame-bar span { width: 6px; height: 6px; }
  .hero-product figcaption { padding: 0 16px; font-size: 12px; line-height: 1.5; }
  .statement,
  .workflow,
  .ecommerce-intro,
  .parallel-section,
  .shot-section,
  .detail-story,
  .results-section,
  .canvas-section,
  .release-grid,
  .closing { padding: 90px 18px; }
  .statement h2,
  .two-column-heading h2,
  .section-heading h2,
  .closing h2 { font-size: 42px; }
  .statement > .statement-inner > p:not(.section-kicker),
  .section-heading > p:last-child,
  .two-column-heading > p { font-size: 17px; }
  .statement-facts { margin-top: 54px; padding-top: 32px; grid-template-columns: 1fr; gap: 34px; }
  .statement-facts div { flex-direction: row; align-items: baseline; gap: 17px; }
  .statement-facts strong { font-size: 54px; }
  .section-heading, .two-column-heading { margin-bottom: 50px; }
  .flow-steps { grid-template-columns: 1fr; margin-bottom: 58px; }
  .flow-steps li, .flow-steps li:nth-child(even), .flow-steps li + li { min-height: 138px; padding: 18px 0; border-left: 0; }
  .flow-steps li:last-child { grid-column: auto; }
  .stage-card { padding: 18px; border-radius: 22px; }
  .stage-card header strong { font-size: 19px; }
  .stage-image { height: 300px; border-radius: 11px; }
  .feature-screen figcaption { width: 100%; }
  .feature-screen figcaption strong { font-size: 17px; }
  .wide-screen, .canvas-figure { margin-left: -8px; margin-right: -8px; width: calc(100% + 16px); border-radius: 15px; }
  .result-tabs { width: 100%; }
  .result-tabs button { flex: 1; padding-left: 10px; padding-right: 10px; }
  .result-stage { min-height: 430px; height: 118vw; border-radius: 23px; }
  .result-caption { left: 12px; right: 12px; bottom: 12px; padding: 14px; }
  .result-caption small { font-size: 10px; }
  .canvas-capabilities article { padding: 25px; border-radius: 20px; }
  .canvas-capabilities h3 { font-size: 22px; }
  .spec-bento { grid-template-columns: 1fr; }
  .spec-card { min-height: 235px; padding: 25px; border-radius: 22px; }
  .spec-wide { padding: 27px; border-radius: 22px; }
  .spec-wide h3 { font-size: 34px; }
  .spec-wide dl > div { align-items: flex-start; flex-direction: column; gap: 6px; }
  .spec-wide dd { text-align: left; }
  .checksum-row { align-items: stretch; flex-direction: column; }
  .checksum-row > div { align-items: flex-start; flex-direction: column; gap: 8px; }
  .checksum-row code { width: 100%; white-space: normal; overflow-wrap: anywhere; }
  .checksum-row button { margin-left: 0; align-self: flex-start; }
  footer { align-items: flex-start; flex-direction: column; gap: 10px; }
  footer a { margin-left: 0; }
}

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