@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 120deg;
  inherits: false;
}
:root {
  --blue: #007aff;
  --ink: #17253b;
  --muted: #647186;
  --line: #dfe6ef;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC",
    "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: #fff;
  font-synthesis: none;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
button,
input,
a {
  -webkit-tap-highlight-color: transparent;
}
button,
input {
  font: inherit;
}
button,
a {
  touch-action: manipulation;
}
button {
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 3px solid #006fe8;
  outline-offset: 6px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
img {
  max-width: 100%;
  display: block;
}
.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 20px;
  padding: 12px 18px;
  background: white;
  z-index: 200;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
.section-shell {
  width: min(1120px, calc(100% - 96px));
  margin-inline: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fcfdffca;
  backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid #e5edf480;
}
.nav-wrap {
  height: 76px;
  width: min(1280px, calc(100% - 80px));
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  gap: 10px;
  align-items: center;
}
.brand strong {
  font-size: 21px;
  letter-spacing: -0.8px;
}
.brand > span {
  font-size: 14px;
  color: #758197;
  letter-spacing: -0.2px;
  margin-left: 1px;
}
.brand img {
  filter: drop-shadow(0 3px 4px #005cbd13);
}
.desktop-nav {
  display: flex;
  gap: 35px;
  font-size: 13px;
  color: #526177;
  margin-left: 70px;
}
.desktop-nav a {
  transition: color 0.2s;
}
.desktop-nav a:hover {
  color: var(--blue);
}
.nav-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 13px;
  font-weight: 550;
  background: #087df6;
  color: #fff;
  padding: 10px 17px;
  border-radius: 9px;
  box-shadow: 0 3px 8px #007aff12;
}
.nav-cta .icon {
  width: 15px;
  height: 15px;
}
.motion-toggle {
  border: 0;
  background: transparent;
  color: #6b7b90;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.motion-toggle:hover {
  background: #e9f2ff;
}
.motion-toggle .icon {
  width: 15px;
  height: 15px;
}
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(#fcfdff 0%, #f9fcff 40%, #e7f2ff 100%);
  padding-top: 66px;
}
.hero-glow {
  position: absolute;
  z-index: -1;
  inset: -30% -10% 0;
  background: radial-gradient(ellipse at 62% 32%, #d8e9ff55, transparent 46%);
  animation: glow-shift 14s ease-in-out infinite alternate;
}
.hero-copy {
  text-align: center;
  position: relative;
  z-index: 2;
}
.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 12px;
  letter-spacing: 2px;
  color: #507298;
  font-weight: 500;
}
.status-dot {
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #0083ff;
  box-shadow: 0 0 0 4px #0083ff0b;
}
.eyebrow-line {
  width: 28px;
  height: 1px;
  background: #aac9e6;
  margin-left: 4px;
}
h1 {
  font-size: clamp(56px, 6.5vw, 94px);
  font-weight: 650;
  letter-spacing: -5px;
  line-height: 1.15;
  margin-top: 25px;
}
.gradient-text {
  color: var(--blue);
  background: linear-gradient(
    var(--gradient-angle),
    #0264ed 10%,
    #0395ff 40%,
    #52b8fa 65%,
    #006bfb 95%
  );
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-turn 12s linear infinite;
}
.hero-description {
  font-size: 18px;
  line-height: 1.9;
  color: #66758a;
  margin-top: 24px;
  letter-spacing: 0.5px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-top: 27px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 48px;
  padding: 0 25px;
  font-size: 14px;
  font-weight: 550;
  border-radius: 11px;
  transition:
    box-shadow 0.3s,
    background 0.3s,
    transform 0.3s var(--ease);
}
.button-primary {
  color: white;
  background: linear-gradient(135deg, #078dff, #0070ee);
  box-shadow:
    0 5px 13px #007aff24,
    inset 0 1px #ffffff3d;
}
.button-primary:hover {
  box-shadow: 0 9px 28px #007aff37;
}
.button-text {
  color: #3d5978;
  padding: 0 14px;
}
.button .icon {
  height: 16px;
  width: 16px;
}
.system-note {
  display: flex;
  gap: 9px;
  justify-content: center;
  align-items: center;
  color: #6c7c92;
  font-size: 11px;
  margin-top: 17px;
  letter-spacing: 0.3px;
}
.system-note .icon {
  width: 12px;
  height: 12px;
}
.system-note > span {
  padding-inline: 3px;
  color: #a2b4c8;
}
.hero-landscape {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 710px;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  mask-image: linear-gradient(transparent, black 25%);
}
.hero-landscape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 59%;
  opacity: 0.71;
  transform: scale(1.13);
  animation: landscape-drift 12s ease-in-out infinite alternate;
}
.flow-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.78;
}
.flow-ready img {
  opacity: 0;
  animation: none;
}
@keyframes landscape-drift {
  from {
    transform: scale(1.13) translate(-3%, 1.8%) rotate(-1deg);
  }
  to {
    transform: scale(1.13) translate(3%, -1.8%) rotate(1deg);
  }
}
.playground {
  position: relative;
  height: 494px;
  width: min(1120px, calc(100% - 80px));
  margin: 38px auto 0;
  scroll-margin-top: 92px;
  perspective: 1000px;
}
.demo-topline {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 9px;
  gap: 15px;
}
.demo-topline > span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #5a7190;
  letter-spacing: 1px;
}
.demo-topline i {
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: #50a2ed;
}
.demo-hint .icon {
  width: 13px;
  height: 13px;
}
.media-switch {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 3px;
  background: #d8e7f270;
  border: 1px solid #fff9;
  padding: 4px;
  border-radius: 30px;
  box-shadow: 0 2px 9px #6799c509;
  backdrop-filter: blur(10px);
}
.media-switch button {
  padding: 6px 20px;
  background: none;
  border: 0;
  border-radius: 30px;
  font-size: 12px;
  color: #5b7390;
  transition: 0.3s;
}
.media-switch button[aria-pressed="true"] {
  background: white;
  color: #0075ed;
  box-shadow: 0 2px 8px #366a9a16;
}
.wheel-wrap {
  position: absolute;
  top: 81px;
  left: calc(50% - 156px);
  width: 312px;
  z-index: 3;
  will-change: transform;
}
.wheel {
  width: 312px;
  height: 312px;
  border-radius: 50%;
  background: linear-gradient(140deg, #ffffffc4, #f5faff9c 50%, #dfedffb3);
  border: 1px solid #ffffffeb;
  box-shadow:
    0 22px 50px #3469a724,
    0 2px 5px #fff,
    inset 0 0 0 6px #ffffff40;
  backdrop-filter: blur(24px);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.4s;
}
.wheel:has(button:hover) {
  box-shadow:
    0 22px 64px #2379d72e,
    0 2px 5px #fff,
    inset 0 0 0 6px #ffffff40;
}
.wheel-highlight {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: conic-gradient(
    from -30deg,
    #3aa9ff35 0deg,
    #61b9ff21 60deg,
    transparent 60deg
  );
  transform: rotate(var(--selected-angle, 0deg));
  transition: transform 0.65s var(--ease);
  pointer-events: none;
}
.wheel-divider {
  position: absolute;
  width: 1px;
  height: 298px;
  background: linear-gradient(
    transparent,
    #91afca33 5%,
    #91afca33 95%,
    transparent
  );
  top: 6px;
  left: 50%;
  transform: rotate(calc(var(--angle) + 30deg));
  pointer-events: none;
}
.wheel-core {
  position: absolute;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  left: calc(50% - 57.5px);
  top: calc(50% - 57.5px);
  background: linear-gradient(145deg, #fff, #e9f5ff);
  border: 1px solid #ffffff;
  box-shadow:
    0 5px 20px #426b9618,
    0 0 0 5px #ffffff52;
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.wheel-core span {
  font-size: 10px;
  letter-spacing: 2px;
  color: #6183a9;
}
.format-button {
  position: absolute;
  left: calc(50% - 34px);
  top: calc(50% - 30px);
  width: 68px;
  height: 60px;
  transform: translate(var(--x), var(--y));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  background: none;
  color: #526e8c;
  z-index: 2;
  border-radius: 14px;
  transition:
    color 0.3s,
    background 0.3s;
}
.format-button .icon {
  width: 23px;
  height: 23px;
  stroke-width: 1.7;
}
.format-button span {
  font-size: 11px;
  letter-spacing: 0.4px;
  font-weight: 550;
}
.format-button:hover {
  color: #0074ed;
  background: #ffffff60;
}
.format-button.active {
  color: #0079f4;
}
.format-button:focus-visible {
  outline-offset: 0;
}
.shortcut-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  font-size: 11px;
  color: #405f83;
  letter-spacing: 0.3px;
}
.shortcut-badge kbd {
  width: 29px;
  height: 27px;
  display: grid;
  place-items: center;
  background: #ffffffe0;
  border: 1px solid #d5e3f4;
  border-bottom-width: 3px;
  border-radius: 7px;
  font: 17px/1 inherit;
  box-shadow: 0 3px 7px #27659d10;
}
.file-card {
  position: absolute;
  z-index: 3;
  left: 8%;
  top: 106px;
  width: 188px;
  background: linear-gradient(130deg, #fffc, #fffffff2);
  border: 1px solid #fff;
  border-radius: 15px;
  box-shadow:
    0 18px 36px #224b811c,
    0 2px 4px #4969a40b;
  padding: 9px;
  --base-rotate: -10deg;
  transform: rotate(var(--base-rotate));
  will-change: transform;
}
.file-thumbnail {
  height: 138px;
  position: relative;
  border-radius: 9px;
  overflow: hidden;
  background: #dfebf9;
}
.file-thumbnail > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.file-type {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #18384d45;
  backdrop-filter: blur(10px);
  padding: 3px 6px;
  border: 1px solid #ffffff50;
  color: white;
  border-radius: 4px;
  font-size: 8px;
  letter-spacing: 1px;
}
.play-symbol {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: white;
  text-shadow: 0 1px 20px #0007;
  font-size: 23px;
}
.file-meta {
  padding: 12px 5px 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.file-meta strong {
  font-size: 11px;
  font-weight: 550;
}
.file-meta span {
  font-size: 9px;
  color: #7b8b9d;
}
.file-grip {
  position: absolute;
  bottom: 24px;
  right: 13px;
  color: #a4b6c7;
}
.file-grip .icon {
  height: 12px;
  width: 12px;
}
.result-card {
  position: absolute;
  right: 3.5%;
  top: 157px;
  width: 239px;
  padding: 17px 16px 13px;
  border: 1px solid #fffffff2;
  border-radius: 15px;
  background: #ffffffdb;
  backdrop-filter: blur(15px);
  box-shadow: 0 18px 45px #1645731c;
  z-index: 3;
  --base-rotate: 7deg;
  transform: rotate(var(--base-rotate));
  will-change: transform;
}
.result-heading {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 550;
  color: #437a73;
}
.success-icon {
  background: #e1f6ed;
  border-radius: 50%;
  width: 19px;
  height: 19px;
  color: #25a478;
  display: grid;
  place-items: center;
}
.success-icon .icon {
  width: 12px;
  height: 12px;
}
.result-file {
  display: flex;
  gap: 11px;
  align-items: center;
  margin-top: 18px;
}
.output-icon {
  position: relative;
  width: 39px;
  height: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #d7e7fc;
  background: #edf5ff;
  border-radius: 6px;
  color: #0780ee;
}
.output-icon .icon {
  width: 19px;
  height: 19px;
}
.output-icon b {
  font-size: 7px;
  letter-spacing: 0.5px;
  margin-top: 2px;
}
.result-file > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.result-file strong {
  font-size: 11px;
  font-weight: 550;
}
.result-file > div > span {
  font-size: 9px;
  color: #738299;
}
.result-progress {
  height: 3px;
  background: #deebf7;
  border-radius: 3px;
  margin-top: 18px;
  overflow: hidden;
}
.result-progress > span {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: left;
  background: #21ab8f;
  transition: background 0.2s;
}
.result-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #618174;
  font-size: 9px;
  margin-top: 8px;
}
.result-foot > span:last-child {
  color: #8091a5;
}
.result-foot .icon {
  height: 10px;
  width: 10px;
  margin-right: 3px;
}
.playground.processing .result-progress > span {
  background: #007aff;
  animation: processing 0.8s var(--ease) both;
}
.playground.processing .success-icon {
  color: #007aff;
  background: #e5f2ff;
}
.flow-line {
  position: absolute;
  top: 218px;
  width: 90px;
  color: #7db6ee;
  display: flex;
  align-items: center;
  z-index: 2;
  opacity: 0.7;
}
.flow-line-left {
  left: 27%;
}
.flow-line-right {
  right: 25%;
}
.flow-line > span {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, #7db6ee);
}
.flow-line .icon {
  height: 13px;
  width: 13px;
  margin-left: -6px;
}
.orbit {
  position: absolute;
  left: 50%;
  top: 72px;
  width: 660px;
  height: 316px;
  border: 1px solid #508bc514;
  border-radius: 50%;
  transform: translateX(-50%) rotate(-12deg);
  pointer-events: none;
}
.orbit-two {
  width: 990px;
  height: 410px;
  top: 36px;
  border-color: #508bc511;
  transform: translateX(-50%) rotate(-12deg);
}
.floating-tag {
  position: absolute;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  border: 1px solid #fff9;
  background: #ffffff70;
  backdrop-filter: blur(8px);
  border-radius: 10px;
  color: #5692c7;
  box-shadow: 0 9px 22px #16558909;
  pointer-events: none;
}
.floating-tag .icon {
  width: 15px;
  height: 15px;
}
.tag-a {
  left: 25%;
  top: 367px;
  --base-rotate: 9deg;
  transform: rotate(var(--base-rotate));
}
.tag-b {
  right: 18%;
  top: 69px;
  --base-rotate: 12deg;
  transform: rotate(var(--base-rotate));
}
.demo-caption {
  position: absolute;
  bottom: 11px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 10px;
  color: #526f90;
  letter-spacing: 0.5px;
}
.hero-benefits {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 83px;
  background: #edf6ff7d;
  border-top: 1px solid #ffffff80;
  backdrop-filter: blur(20px);
  position: relative;
  z-index: 3;
  font-size: 11px;
  color: #416488;
  letter-spacing: 0.7px;
}
.hero-benefits > span {
  display: flex;
  align-items: center;
  gap: 9px;
}
.hero-benefits .icon {
  width: 16px;
  height: 16px;
  color: #5690c6;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.section-kicker {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #6b8aab;
  margin-bottom: 23px;
}
h2 {
  font-size: 51px;
  font-weight: 600;
  line-height: 1.27;
  letter-spacing: -2px;
}
.section-description {
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
  padding-bottom: 7px;
}
.workflow {
  padding-top: 114px;
  padding-bottom: 98px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  margin-top: 46px;
}
.step {
  position: relative;
}
.step:not(:last-child):after {
  content: "";
  position: absolute;
  top: 68px;
  right: -29px;
  height: 62px;
  width: 1px;
  background: #e8edf3;
}
.step-visual {
  height: 155px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-left: 18px;
}
.mini-file {
  display: flex;
  align-items: center;
  padding: 17px 19px;
  background: linear-gradient(145deg, #fff, #f8fafc);
  border: 1px solid #e1e8f0;
  border-radius: 11px;
  box-shadow: 0 8px 20px #1e467d0c;
  transform: rotate(-6deg);
  gap: 11px;
  font-size: 11px;
  position: relative;
}
.mini-file > .icon {
  height: 28px;
  width: 28px;
  color: #579be5;
}
.small-cursor {
  position: absolute;
  font-size: 35px;
  right: 12px;
  bottom: -18px;
  color: #1a344e;
  text-shadow:
    1px 1px #fff,
    -1px -1px #fff;
  animation: cursor-nudge 5s var(--ease) infinite;
}
.big-key {
  height: 70px;
  width: 77px;
  padding: 10px 12px;
  background: linear-gradient(140deg, #fff, #edf4fc);
  border: 1px solid #cfddeb;
  border-bottom: 5px solid #cddcea;
  border-radius: 13px;
  font-size: 25px;
  box-shadow: 0 8px 15px #30598b0b;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  transform: rotate(-7deg);
  animation: key-press 5s var(--ease) infinite;
}
.big-key small {
  font-size: 10px;
  margin-top: 7px;
}
.key-caption {
  font-size: 10px;
  color: #7290ad;
}
.mini-done {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 15px 20px;
  border: 1px solid #dce8f3;
  border-radius: 12px;
  transform: rotate(3deg);
  box-shadow: 0 6px 17px #215d8d09;
  background: #fcfeff;
}
.mini-done > span {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #298b76;
  background: #e3f5ef;
}
.mini-done > span .icon {
  width: 17px;
  height: 17px;
}
.mini-done > div {
  font-size: 11px;
}
.mini-done small {
  display: block;
  font-size: 9px;
  color: #7d93a6;
  margin-top: 5px;
}
.step-label {
  display: flex;
  align-items: center;
  gap: 12px;
}
.step-label > span {
  font-size: 10px;
  color: #007aff;
  border: 1px solid #dfeafb;
  border-radius: 50%;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
}
.step-label h3 {
  font-size: 18px;
  font-weight: 550;
  letter-spacing: -0.5px;
}
.step p {
  font-size: 12px;
  color: #758196;
  line-height: 1.9;
  padding-left: 39px;
  margin-top: 13px;
}
.workflow-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #7d8b9d;
  font-size: 10px;
  margin-top: 48px;
}
.workflow-note .icon {
  height: 13px;
  width: 13px;
}
.features-section {
  background: #f5f8fc;
  padding-block: 95px 49px;
  border-top: 1px solid #eff3f8;
  border-bottom: 1px solid #eff3f8;
}
.muted-heading {
  color: #8595aa;
}
.feature-workbench {
  display: grid;
  grid-template-columns: 0.85fr 1.45fr;
  gap: 58px;
  margin-top: 56px;
  align-items: center;
}
.feature-tabs {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.feature-tab {
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid transparent;
  background: none;
  text-align: left;
  border-radius: 15px;
  padding: 23px 20px;
  transition:
    background 0.4s,
    box-shadow 0.4s,
    border-color 0.4s;
}
.feature-tab.active {
  background: #fff;
  border-color: #e7edf6;
  box-shadow: 0 9px 35px #2d528709;
}
.feature-tab-icon {
  height: 35px;
  width: 35px;
  border-radius: 10px;
  background: #e9eef6;
  display: grid;
  place-items: center;
  color: #8192a9;
}
.feature-tab-icon .icon {
  width: 19px;
  height: 19px;
}
.feature-tab.active .feature-tab-icon {
  color: #007aff;
  background: #eaf4ff;
}
.feature-tab strong {
  font-size: 15px;
  font-weight: 550;
  display: block;
  line-height: 1.5;
}
.feature-tab small {
  font-size: 10px;
  color: #7b8ba0;
  display: block;
  margin-top: 6px;
  line-height: 1.6;
}
.tab-arrow {
  width: 14px;
  height: 14px;
  margin-left: auto;
  color: #007aff;
  opacity: 0;
}
.feature-tab.active .tab-arrow {
  opacity: 1;
}
.app-window {
  border-radius: 15px;
  border: 1px solid #d9e2ed;
  background: #fff;
  box-shadow:
    0 19px 40px #27477210,
    0 2px 5px #3145650b;
  overflow: hidden;
  transition: transform 0.5s var(--ease);
}
.window-bar {
  height: 42px;
  background: linear-gradient(#fcfdfe, #f7f9fc);
  border-bottom: 1px solid #e7edf4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 11px;
  color: #627187;
}
.traffic-lights {
  position: absolute;
  left: 15px;
  display: flex;
  gap: 6px;
}
.traffic-lights i {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: #ff635b;
  box-shadow: inset 0 0 0 1px #00000008;
}
.traffic-lights i:nth-child(2) {
  background: #ffbd44;
}
.traffic-lights i:nth-child(3) {
  background: #00c94b;
}
.window-badge {
  position: absolute;
  right: 12px;
  font-size: 8px;
  border: 1px solid #dce5f0;
  padding: 2px 5px;
  border-radius: 4px;
  color: #7d8da3;
}
.window-body {
  padding: 19px;
}
.editor-preview {
  position: relative;
  aspect-ratio: 2.1;
  border-radius: 8px;
  overflow: hidden;
  background: #a4b9cf;
  isolation: isolate;
}
.editor-preview > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
  transition: filter 0.6s;
}
.preview-label,
.preview-time {
  position: absolute;
  bottom: 10px;
  font-size: 9px;
  color: #fff;
  text-shadow: 0 1px 3px #0009;
}
.preview-label {
  left: 12px;
}
.preview-time {
  right: 12px;
}
.editor-controls {
  margin: 20px 5px 3px;
}
.control-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #526176;
}
.control-label > span {
  color: #0077ec;
  font-size: 10px;
}
.editor-controls input[type="range"] {
  width: 100%;
  height: 4px;
  appearance: none;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(90deg, #007aff 50%, #e4ebf4 50%);
  margin: 20px 0 10px;
  cursor: ew-resize;
  display: block;
}
.editor-controls input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 17px;
  height: 17px;
  background: #fff;
  border-radius: 50%;
  box-shadow:
    0 1px 4px #163b7450,
    0 0 0 1px #d8e3f0;
}
.editor-controls input[type="range"]::-moz-range-thumb {
  width: 17px;
  height: 17px;
  background: #fff;
  border: 1px solid #d8e3f0;
  border-radius: 50%;
}
.range-labels {
  display: flex;
  justify-content: space-between;
  color: #7c8da4;
  font-size: 9px;
}
.editor-summary {
  border-top: 1px solid #edf1f6;
  margin-top: 20px;
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: #7b8b9e;
  font-size: 9px;
}
.local-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.local-badge i {
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background: #32ae8b;
}
.crop-grid {
  position: absolute;
  width: 72%;
  aspect-ratio: 16/9;
  max-height: 88%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #fff;
  box-shadow: 0 0 0 200px #13294765;
  display: none;
  background:
    linear-gradient(
      90deg,
      transparent 33.1%,
      #ffffff70 33.1%,
      #ffffff70 33.4%,
      transparent 33.4%,
      transparent 66.5%,
      #ffffff70 66.5%,
      #ffffff70 66.8%,
      transparent 66.8%
    ),
    linear-gradient(
      transparent 33.1%,
      #ffffff70 33.1%,
      #ffffff70 33.4%,
      transparent 33.4%,
      transparent 66.5%,
      #ffffff70 66.5%,
      #ffffff70 66.8%,
      transparent 66.8%
    );
  transition:
    width 0.5s var(--ease),
    height 0.5s var(--ease);
}
.crop-grid:before,
.crop-grid:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-color: #fff;
}
.crop-grid:before {
  left: -2px;
  top: -2px;
  border-left: 3px solid;
  border-top: 3px solid;
}
.crop-grid:after {
  right: -2px;
  bottom: -2px;
  border-right: 3px solid;
  border-bottom: 3px solid;
}
.crop-options,
.audio-options {
  display: none;
  gap: 8px;
  margin: 15px 0 14px;
}
.crop-options button,
.audio-options button {
  font-size: 10px;
  min-width: 60px;
  border: 1px solid #dce6f4;
  border-radius: 6px;
  background: #fff;
  padding: 7px 13px;
}
.crop-options button[aria-pressed="true"],
.audio-options button[aria-pressed="true"] {
  background: #edf6ff;
  border-color: #9dccff;
  color: #007aff;
}
.app-window[data-tool="crop"] .crop-grid {
  display: block;
}
.app-window[data-tool="crop"] .crop-options,
.app-window[data-tool="audio"] .audio-options {
  display: flex;
}
.app-window[data-tool="crop"] input,
.app-window[data-tool="audio"] input,
.app-window[data-tool="crop"] .range-labels,
.app-window[data-tool="audio"] .range-labels {
  display: none;
}
.wave-preview {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: #0627467d;
  backdrop-filter: blur(8px);
}
.wave-preview i,
.audio-lines i {
  display: block;
  width: 3px;
  background: linear-gradient(#cff3ff, #4bb2ff);
  height: var(--bar-height);
  border-radius: 3px;
  animation: wave 1.6s ease-in-out infinite alternate;
  animation-delay: var(--delay);
}
.app-window[data-tool="audio"] .wave-preview {
  display: flex;
}
.audio-lines {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, #b6dcff, #467bda);
  display: none;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.playground[data-kind="audio"] .audio-lines {
  display: flex;
}
.playground[data-kind="audio"] .play-symbol,
.playground[data-kind="image"] .play-symbol {
  display: none;
}
.more-tools {
  text-align: center;
  border-top: 1px solid #e3e9f2;
  padding-top: 30px;
  margin-top: 60px;
}
.more-tools > span {
  font-size: 10px;
  color: #8a98aa;
  letter-spacing: 0.5px;
}
.more-tools p {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-top: 19px;
  font-size: 11px;
  color: #6b7f98;
}
.more-tools p > span {
  display: flex;
  gap: 7px;
  align-items: center;
}
.more-tools .icon {
  width: 14px;
  height: 14px;
  color: #7f96b3;
}
.native-section {
  padding-top: 70px;
  padding-bottom: 84px;
}
.native-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}
.native-top h2 {
  font-size: 47px;
}
.native-top p:not(.section-kicker) {
  font-size: 13px;
  color: #78889c;
  line-height: 1.9;
  margin-top: 24px;
}
.text-link {
  font-size: 12px;
  color: #0073e8;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}
.text-link .icon {
  width: 15px;
  height: 15px;
}
.privacy-art {
  position: relative;
  min-width: 0;
}
.privacy-art > img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 24px;
  mask-image: radial-gradient(ellipse at center, black 45%, transparent 73%);
}
.privacy-caption {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  font-size: 9px;
  font-weight: 550;
  letter-spacing: 2px;
  color: #6a91b8;
}
.privacy-caption .icon {
  width: 12px;
  height: 12px;
}
.native-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid #e6edf5;
  padding-top: 42px;
  margin-top: 30px;
}
.native-facts article > .icon {
  color: #408adc;
  width: 23px;
  height: 23px;
  margin-bottom: 17px;
}
.native-facts h3 {
  font-size: 16px;
  font-weight: 550;
}
.native-facts p {
  font-size: 12px;
  color: #78889c;
  line-height: 1.9;
  margin-top: 11px;
}
.format-section {
  padding-block: 78px;
  background: #f8faff;
  text-align: center;
  border-block: 1px solid #eef3f9;
}
.format-section h2 {
  font-size: 39px;
}
.format-section p:not(.section-kicker) {
  font-size: 13px;
  color: #788a9f;
  margin-top: 19px;
}
.format-rows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 35px;
}
.format-rows > div {
  display: flex;
  gap: 9px;
  justify-content: center;
}
.format-rows > div > span {
  border: 1px solid #dfe8f4;
  border-radius: 9px;
  background: #fff;
  padding: 9px 19px;
  font-size: 12px;
  font-weight: 500;
  color: #6583a5;
  box-shadow: 0 2px 3px #31598803;
  transition:
    transform 0.4s var(--ease),
    border-color 0.4s,
    color 0.4s;
}
.format-rows > div > span:not(.format-row-label):hover {
  transform: translateY(-5px);
  border-color: #8dc4ff;
  color: #007aff;
}
.format-rows > div > .format-row-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  font-weight: 400;
  padding-left: 0;
}
.format-row-label .icon {
  height: 14px;
  width: 14px;
}
.format-section small {
  display: block;
  color: #8190a4;
  font-size: 10px;
  margin-top: 27px;
}
.faq-section {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 65px;
  padding-block: 100px;
}
.faq-section h2 {
  font-size: 34px;
}
.faq-list details {
  border-bottom: 1px solid #e3eaf3;
}
.faq-list summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}
.faq-list details:first-child summary {
  padding-top: 5px;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary .icon {
  width: 16px;
  height: 16px;
  color: #8297af;
  transition: transform 0.4s;
}
.faq-list details[open] summary .icon {
  transform: rotate(45deg);
}
.faq-list details p {
  font-size: 12px;
  color: #6f8096;
  line-height: 1.9;
  padding: 0 22px 23px 0;
}
.get-section {
  position: relative;
  text-align: center;
  overflow: hidden;
  background: #086feb;
  color: white;
  isolation: isolate;
  padding-block: 66px 62px;
}
.get-glow {
  position: absolute;
  inset: -70% -10%;
  background:
    radial-gradient(ellipse at 50% 30%, #b3e5ff55, transparent 38%),
    radial-gradient(ellipse at 70% 70%, #0084ff, transparent 35%),
    linear-gradient(125deg, #168dff, #0061df 75%);
  z-index: -1;
  animation: glow-shift 12s ease-in-out infinite alternate;
}
.get-glow:after {
  content: "";
  position: absolute;
  inset: 20% 0;
  border: 1px solid #ffffff20;
  border-radius: 50%;
  transform: rotate(-15deg);
  box-shadow:
    0 0 0 80px #ffffff05,
    0 0 0 160px #ffffff04;
}
.get-content {
  position: relative;
}
.get-icon {
  margin: 0 auto 22px;
  filter: drop-shadow(0 15px 19px #004a9b50);
  transform: rotate(-7deg);
}
.get-content .section-kicker {
  color: #c2e2ff;
  font-size: 9px;
  margin-bottom: 17px;
}
.get-content h2 {
  font-size: 53px;
  line-height: 1.25;
  letter-spacing: -2px;
}
.get-content > p:not(.section-kicker) {
  font-size: 13px;
  margin-top: 20px;
  color: #c5e2ff;
}
.release-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 23px;
  border: 1px solid #ffffff4d;
  background: #ffffff16;
  backdrop-filter: blur(15px);
  border-radius: 12px;
  margin-top: 28px;
  text-align: left;
}
.release-badge .icon {
  width: 25px;
  height: 25px;
}
.release-badge > span {
  font-size: 15px;
  line-height: 1.2;
}
.release-badge small {
  display: block;
  font-size: 10px;
  letter-spacing: 1px;
  color: #d9ecff;
  margin-top: 5px;
}
.get-support {
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 18px;
  color: #d7eaff;
}
.get-support .icon {
  width: 12px;
  height: 12px;
}
.site-footer {
  padding-top: 35px;
  padding-bottom: 22px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 30px;
}
.footer-top > .brand strong {
  font-size: 18px;
}
.footer-top > .brand > span {
  font-size: 12px;
}
.footer-top > span {
  font-size: 11px;
  color: #99a5b5;
}
.footer-top nav {
  display: flex;
  gap: 26px;
  font-size: 11px;
  color: #6c7d94;
  margin-left: auto;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: #96a2b2;
  border-top: 1px solid #edf1f6;
  padding-top: 22px;
  margin-top: 27px;
  letter-spacing: 0.1px;
}
.pointer-halo {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  border: 1px solid #1484ff52;
  background: #91c8ff0e;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition:
    width 0.2s,
    height 0.2s,
    opacity 0.3s;
  will-change: transform;
}
.motion-ready .reveal {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
}
.motion-ready .reveal.visible {
  opacity: 1;
  transform: none;
}
.motion-ready .steps .step:nth-child(2) {
  transition-delay: 0.08s;
}
.motion-ready .steps .step:nth-child(3) {
  transition-delay: 0.16s;
}
.motion-paused *,
.motion-paused *:before,
.motion-paused *:after {
  animation-play-state: paused !important;
}
.motion-paused .pointer-halo {
  display: none;
}
.motion-paused .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}
.motion-paused {
  scroll-behavior: auto;
}
.motion-paused .file-card,
.motion-paused .result-card,
.motion-paused .floating-tag,
.motion-paused .magnetic {
  transform: rotate(var(--base-rotate, 0deg)) !important;
}
.motion-paused .wheel-highlight,
.motion-paused .crop-grid {
  transition: none;
}
.playground[data-kind="image"] .file-thumbnail img {
  object-position: 70% 50%;
}
@keyframes gradient-turn {
  to {
    --gradient-angle: 480deg;
  }
}
@keyframes glow-shift {
  from {
    transform: translate(-2%, 0) rotate(-3deg);
  }
  to {
    transform: translate(2%, 3%) rotate(3deg);
  }
}
@keyframes cursor-nudge {
  0%,
  80%,
  100% {
    transform: translate(0, 0);
  }
  35%,
  55% {
    transform: translate(8px, -6px);
  }
}
@keyframes key-press {
  0%,
  25%,
  75%,
  100% {
    transform: rotate(-7deg) translateY(0);
  }
  40%,
  60% {
    transform: rotate(-7deg) translateY(3px);
    border-bottom-width: 2px;
  }
}
@keyframes processing {
  from {
    transform: scaleX(0.02);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes wave {
  from {
    transform: scaleY(0.45);
  }
  to {
    transform: scaleY(1);
  }
}
@media (min-width: 1600px) {
  .hero {
    padding-top: 82px;
  }
  .playground {
    margin-top: 55px;
  }
  .hero-landscape {
    height: 800px;
  }
  .hero-copy h1 {
    font-size: 102px;
  }
}
@media (max-width: 1100px) {
  .section-shell {
    width: calc(100% - 72px);
  }
  .playground {
    width: calc(100% - 48px);
  }
  .source-card {
    left: 3%;
    width: 167px;
  }
  .file-thumbnail {
    height: 120px;
  }
  .result-card {
    right: 0;
    width: 211px;
    padding: 14px;
  }
  .flow-line {
    width: 60px;
  }
  .flow-line-left {
    left: 23%;
  }
  .flow-line-right {
    right: 23%;
  }
  .tag-b {
    right: 10%;
  }
  .tag-a {
    left: 18%;
  }
  .feature-workbench {
    gap: 24px;
    grid-template-columns: 0.9fr 1.4fr;
  }
  .feature-tab {
    padding: 20px 13px;
    gap: 10px;
  }
  .feature-tab strong {
    font-size: 13px;
  }
  .feature-tab small {
    font-size: 9px;
  }
  .section-description {
    font-size: 13px;
  }
  .steps {
    gap: 32px;
  }
  .desktop-nav {
    margin-left: 0;
  }
  .native-top h2 {
    font-size: 43px;
  }
  .more-tools p {
    gap: 23px;
  }
  .footer-top > span {
    display: none;
  }
}
@media (max-width: 800px) {
  .nav-wrap {
    width: calc(100% - 40px);
    height: 66px;
  }
  .desktop-nav {
    gap: 20px;
    font-size: 11px;
  }
  .brand > span {
    display: none;
  }
  .brand strong {
    font-size: 19px;
  }
  .nav-actions {
    gap: 6px;
  }
  .nav-cta {
    font-size: 11px;
    padding: 9px 12px;
    gap: 9px;
  }
  .hero {
    padding-top: 50px;
  }
  h1 {
    font-size: 65px;
    letter-spacing: -4px;
  }
  .hero-description {
    font-size: 16px;
  }
  .playground {
    height: 480px;
    margin-top: 36px;
  }
  .wheel-wrap {
    transform: scale(0.86);
    transform-origin: top center;
    top: 94px;
  }
  .source-card {
    width: 145px;
    left: 1%;
    top: 150px;
  }
  .file-thumbnail {
    height: 97px;
  }
  .file-meta {
    padding: 9px 3px 4px;
  }
  .file-meta strong {
    font-size: 10px;
  }
  .file-meta span {
    font-size: 8px;
  }
  .result-card {
    width: 168px;
    right: 0;
    top: 200px;
    padding: 12px;
  }
  .result-heading {
    font-size: 8px;
    gap: 4px;
  }
  .result-file {
    gap: 6px;
    margin-top: 13px;
  }
  .result-file strong {
    font-size: 9px;
  }
  .result-file > div > span {
    font-size: 8px;
  }
  .output-icon {
    width: 30px;
    height: 38px;
  }
  .result-foot {
    font-size: 7px;
  }
  .flow-line {
    display: none;
  }
  .demo-hint {
    display: none !important;
  }
  .demo-topline > span {
    font-size: 10px;
  }
  .floating-tag {
    font-size: 9px;
    padding: 9px 11px;
  }
  .tag-a {
    top: 367px;
    left: 15%;
  }
  .tag-b {
    right: 8%;
    top: 85px;
  }
  .hero-benefits {
    gap: 36px;
    font-size: 10px;
    height: 66px;
  }
  .hero-benefits .icon {
    height: 14px;
    width: 14px;
  }
  .section-shell {
    width: calc(100% - 56px);
  }
  .workflow {
    padding-block: 80px 65px;
  }
  .section-heading {
    gap: 20px;
  }
  h2 {
    font-size: 42px;
  }
  .section-kicker {
    font-size: 9px;
    letter-spacing: 1.6px;
  }
  .section-description {
    font-size: 11px;
  }
  .steps {
    gap: 20px;
    margin-top: 24px;
  }
  .step-visual {
    height: 127px;
    padding-left: 5px;
    gap: 7px;
  }
  .mini-file {
    padding: 13px 9px;
    font-size: 9px;
    gap: 5px;
  }
  .mini-file > .icon {
    height: 23px;
    width: 23px;
  }
  .key-caption {
    display: none;
  }
  .mini-done {
    padding: 13px 10px;
    gap: 6px;
  }
  .mini-done > div {
    font-size: 9px;
  }
  .mini-done small {
    font-size: 7px;
  }
  .mini-done > span {
    width: 24px;
    height: 24px;
  }
  .step-label h3 {
    font-size: 16px;
  }
  .step p {
    font-size: 10px;
    padding-left: 0;
  }
  .step-label > span {
    width: 23px;
    height: 23px;
    font-size: 9px;
  }
  .step:not(:last-child):after {
    right: -11px;
    top: 39px;
  }
  .workflow-note {
    font-size: 9px;
    margin-top: 34px;
  }
  .features-section {
    padding-top: 65px;
  }
  .feature-workbench {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 36px;
  }
  .feature-tabs {
    flex-direction: row;
    gap: 7px;
  }
  .feature-tab {
    flex: 1;
    padding: 16px 11px;
    gap: 9px;
  }
  .feature-tab small {
    display: none;
  }
  .feature-tab strong {
    font-size: 11px;
  }
  .feature-tab .tab-arrow {
    display: none;
  }
  .feature-tab-icon {
    height: 28px;
    width: 28px;
  }
  .feature-tab-icon .icon {
    height: 15px;
    width: 15px;
  }
  .window-body {
    padding: 21px;
  }
  .editor-preview {
    aspect-ratio: 2.25;
  }
  .more-tools {
    margin-top: 35px;
  }
  .more-tools p {
    gap: 18px;
    flex-wrap: wrap;
    font-size: 10px;
  }
  .native-top {
    gap: 15px;
  }
  .native-top h2 {
    font-size: 36px;
  }
  .native-top p:not(.section-kicker) {
    font-size: 11px;
  }
  .privacy-art > img {
    height: 330px;
  }
  .native-facts {
    gap: 25px;
  }
  .native-facts h3 {
    font-size: 14px;
  }
  .native-facts p {
    font-size: 10px;
  }
  .faq-section {
    padding-block: 75px;
    gap: 30px;
  }
  .faq-section h2 {
    font-size: 28px;
  }
  .faq-list summary {
    font-size: 11px;
  }
  .get-content h2 {
    font-size: 48px;
  }
  .footer-top nav {
    gap: 17px;
    font-size: 10px;
  }
}
@media (max-width: 600px) {
  :root {
    scroll-padding-top: 80px;
  }
  .section-shell {
    width: calc(100% - 44px);
  }
  .nav-wrap {
    width: calc(100% - 32px);
    height: 63px;
  }
  .brand {
    gap: 7px;
  }
  .brand img {
    width: 30px;
    height: 30px;
  }
  .brand strong {
    font-size: 18px;
  }
  .desktop-nav {
    display: none;
  }
  .nav-actions {
    gap: 6px;
  }
  .nav-cta {
    font-size: 11px;
    padding: 9px 12px;
    border-radius: 8px;
  }
  .hero {
    padding-top: 45px;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 1.2px;
    gap: 7px;
  }
  .eyebrow-line {
    width: 20px;
  }
  h1 {
    font-size: 51px;
    letter-spacing: -3.5px;
    margin-top: 25px;
    line-height: 1.24;
    padding-inline: 15px;
  }
  .hero-description {
    font-size: 14px;
    line-height: 1.9;
    margin-top: 20px;
  }
  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }
  .button {
    font-size: 12px;
    padding: 0 20px;
    min-height: 45px;
    gap: 12px;
  }
  .button-text {
    padding: 0 11px;
  }
  .system-note {
    font-size: 9px;
    gap: 6px;
    margin-top: 17px;
  }
  .system-note .icon {
    width: 10px;
    height: 10px;
  }
  .playground {
    width: calc(100% - 28px);
    height: 583px;
    margin-top: 35px;
    scroll-margin-top: 83px;
  }
  .demo-topline {
    padding: 0 9px;
    justify-content: center;
    height: 33px;
  }
  .demo-topline > span:first-child {
    position: absolute;
    left: 9px;
    font-size: 8px;
    letter-spacing: 0;
  }
  .media-switch {
    left: auto;
    right: 9px;
    transform: none;
    padding: 3px;
    gap: 1px;
  }
  .media-switch button {
    padding: 5px 13px;
    font-size: 10px;
  }
  .wheel-wrap {
    left: calc(50% - 156px);
    top: 119px;
    transform: scale(0.83);
    transform-origin: top center;
  }
  .source-card {
    top: 65px;
    left: 6%;
    width: 100px;
    padding: 5px;
    border-radius: 10px;
    z-index: 4;
  }
  .file-thumbnail {
    height: 64px;
    border-radius: 6px;
  }
  .file-type {
    font-size: 6px;
    padding: 2px 3px;
    top: 5px;
    left: 5px;
  }
  .file-meta {
    padding: 7px 3px 3px;
    gap: 3px;
  }
  .file-meta strong {
    font-size: 8px;
  }
  .file-meta span {
    font-size: 6px;
  }
  .file-grip {
    display: none;
  }
  .play-symbol {
    font-size: 15px;
  }
  .result-card {
    top: 407px;
    right: 8%;
    width: 190px;
    padding: 12px;
    --base-rotate: 5deg;
    border-radius: 12px;
  }
  .result-heading {
    font-size: 9px;
  }
  .result-file {
    gap: 10px;
    margin-top: 12px;
  }
  .result-file strong {
    font-size: 10px;
  }
  .result-file > div > span {
    font-size: 8px;
  }
  .result-progress {
    margin-top: 13px;
  }
  .result-foot {
    font-size: 8px;
  }
  .output-icon {
    width: 32px;
    height: 37px;
  }
  .shortcut-badge {
    margin-top: 19px;
    font-size: 11px;
  }
  .tag-b {
    right: 8%;
    top: 72px;
    font-size: 8px;
    padding: 8px 10px;
  }
  .tag-a {
    left: 7%;
    top: 441px;
    font-size: 8px;
    padding: 8px 10px;
  }
  .floating-tag .icon {
    width: 12px;
    height: 12px;
  }
  .orbit-one {
    width: 410px;
    height: 390px;
    top: 93px;
    transform: translateX(-50%) rotate(-25deg);
  }
  .orbit-two {
    width: 520px;
    height: 550px;
    top: 60px;
    transform: translateX(-50%) rotate(-25deg);
  }
  .demo-caption {
    bottom: 0;
    font-size: 8px;
    line-height: 1.7;
    padding-inline: 10px;
  }
  .hero-landscape {
    height: 650px;
  }
  .hero-landscape img {
    object-position: 42% 55%;
    opacity: 0.58;
  }
  .hero-benefits {
    gap: 17px;
    height: 64px;
    padding: 0 14px;
    font-size: 8px;
    letter-spacing: 0;
  }
  .hero-benefits > span {
    gap: 5px;
  }
  .hero-benefits .icon {
    width: 12px;
    height: 12px;
  }
  .section-heading {
    display: block;
  }
  .section-kicker {
    font-size: 8px;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
  }
  h2 {
    font-size: 35px;
    letter-spacing: -1.5px;
  }
  .section-description {
    font-size: 12px;
    margin-top: 22px;
    line-height: 1.9;
  }
  .workflow {
    padding-block: 62px 55px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 24px;
  }
  .step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 12px;
    padding-block: 22px;
    border-bottom: 1px solid #edf2f7;
  }
  .step:last-child {
    border: 0;
  }
  .step:not(:last-child):after {
    display: none;
  }
  .step-visual {
    grid-column: 2;
    grid-row: 1/3;
    height: 110px;
    padding-left: 0;
    justify-content: center;
  }
  .step-label {
    align-self: end;
    gap: 9px;
  }
  .step-label h3 {
    font-size: 16px;
  }
  .step p {
    align-self: start;
    font-size: 10px;
    margin-top: 10px;
    line-height: 1.9;
  }
  .mini-file {
    font-size: 9px;
    padding: 15px 10px;
  }
  .mini-done {
    padding: 14px 9px;
  }
  .mini-done > div {
    font-size: 8px;
  }
  .big-key {
    width: 66px;
    height: 66px;
  }
  .workflow-note {
    text-align: left;
    align-items: flex-start;
    font-size: 9px;
    line-height: 1.8;
    margin-top: 19px;
    padding-top: 20px;
    border-top: 1px solid #edf2f7;
  }
  .workflow-note .icon {
    margin-top: 3px;
    flex-shrink: 0;
  }
  .features-section {
    padding-block: 56px 34px;
  }
  .feature-workbench {
    margin-top: 29px;
    gap: 21px;
  }
  .feature-tabs {
    gap: 5px;
  }
  .feature-tab {
    flex-direction: column;
    text-align: center;
    padding: 13px 4px;
    gap: 9px;
    border-radius: 11px;
  }
  .feature-tab strong {
    font-size: 9px;
    letter-spacing: -0.25px;
  }
  .feature-tab-icon {
    height: 30px;
    width: 30px;
  }
  .feature-tab-icon .icon {
    height: 16px;
    width: 16px;
  }
  .app-window {
    border-radius: 12px;
  }
  .window-bar {
    height: 36px;
    font-size: 9px;
  }
  .traffic-lights {
    left: 11px;
    gap: 4px;
  }
  .traffic-lights i {
    width: 6px;
    height: 6px;
  }
  .window-badge {
    font-size: 6px;
    right: 8px;
  }
  .window-body {
    padding: 11px;
  }
  .editor-preview {
    aspect-ratio: 1.72;
  }
  .editor-controls {
    margin: 16px 4px 3px;
  }
  .control-label {
    font-size: 10px;
  }
  .control-label > span {
    font-size: 9px;
  }
  .editor-summary {
    font-size: 8px;
    gap: 5px;
    padding-top: 12px;
    margin-top: 16px;
  }
  .preview-label,
  .preview-time {
    font-size: 8px;
  }
  .more-tools {
    margin-top: 30px;
    padding-top: 23px;
  }
  .more-tools > span {
    font-size: 9px;
  }
  .more-tools p {
    gap: 14px 20px;
    font-size: 9px;
    margin-top: 17px;
  }
  .more-tools p > span {
    gap: 5px;
  }
  .more-tools .icon {
    width: 12px;
    height: 12px;
  }
  .native-section {
    padding-block: 58px 52px;
  }
  .native-top {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .native-top h2 {
    font-size: 35px;
  }
  .native-top p:not(.section-kicker) {
    font-size: 12px;
    margin-top: 20px;
  }
  .text-link {
    font-size: 11px;
    margin-top: 20px;
  }
  .privacy-art {
    margin-top: 9px;
  }
  .privacy-art > img {
    height: 310px;
    object-fit: contain;
  }
  .privacy-caption {
    bottom: 22px;
    font-size: 8px;
  }
  .native-facts {
    gap: 25px;
    grid-template-columns: 1fr;
    margin-top: 0;
    padding-top: 30px;
  }
  .native-facts article {
    display: grid;
    grid-template-columns: 28px 1fr;
    column-gap: 14px;
    align-items: start;
  }
  .native-facts article > .icon {
    grid-row: 1/3;
    height: 21px;
    width: 21px;
    margin-top: 1px;
    margin-bottom: 0;
  }
  .native-facts h3 {
    font-size: 15px;
  }
  .native-facts p {
    font-size: 11px;
    margin-top: 7px;
    line-height: 1.8;
  }
  .native-facts p br {
    display: none;
  }
  .format-section {
    padding-block: 52px;
  }
  .format-section h2 {
    font-size: 30px;
  }
  .format-section p:not(.section-kicker) {
    font-size: 11px;
    margin-top: 16px;
  }
  .format-rows {
    margin-top: 27px;
    gap: 10px;
    align-items: stretch;
  }
  .format-rows > div {
    gap: 5px;
  }
  .format-rows > div > span {
    font-size: 10px;
    padding: 8px 11px;
    border-radius: 7px;
  }
  .format-rows > div > .format-row-label {
    font-size: 8px;
    gap: 5px;
    padding-right: 5px;
  }
  .format-row-label .icon {
    height: 11px;
    width: 11px;
  }
  .format-section small {
    font-size: 8px;
    line-height: 1.7;
    margin-top: 22px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    padding-block: 57px;
    gap: 32px;
  }
  .faq-section h2 {
    font-size: 30px;
  }
  .faq-list summary {
    font-size: 12px;
    padding: 20px 0;
  }
  .faq-list details p {
    font-size: 11px;
  }
  .get-section {
    padding-block: 52px 44px;
  }
  .get-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
  }
  .get-content h2 {
    font-size: 43px;
  }
  .get-content > p:not(.section-kicker) {
    font-size: 12px;
  }
  .release-badge {
    margin-top: 25px;
    padding: 11px 20px;
  }
  .release-badge > span {
    font-size: 14px;
  }
  .release-badge small {
    font-size: 9px;
  }
  .site-footer {
    padding-top: 27px;
    padding-bottom: 22px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 24px;
  }
  .footer-top > .brand > span {
    display: block;
    font-size: 11px;
  }
  .footer-top nav {
    width: 100%;
    margin-left: 0;
    gap: 25px;
    font-size: 10px;
  }
  .footer-bottom {
    font-size: 8px;
    line-height: 1.8;
    align-items: flex-start;
    gap: 20px;
    margin-top: 23px;
    padding-top: 18px;
  }
  .footer-bottom > span:last-child {
    max-width: 95px;
    text-align: right;
  }
  .pointer-halo {
    display: none;
  }
}
@media (max-width: 374px) {
  h1 {
    font-size: 45px;
  }
  .hero-benefits {
    gap: 10px;
    font-size: 7px;
  }
  .media-switch button {
    padding-inline: 11px;
  }
  .wheel-wrap {
    transform: scale(0.76);
  }
  .source-card {
    left: 3%;
  }
  .result-card {
    right: 3%;
  }
  .format-rows > div > span {
    padding-inline: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
  .pointer-halo {
    display: none;
  }
}
@media (hover: none) {
  .pointer-halo {
    display: none;
  }
}
[hidden] {
  display: none !important;
}
.source-card {
  cursor: grab;
  touch-action: none;
  user-select: none;
}
.source-card img {
  -webkit-user-drag: none;
  pointer-events: none;
}
.source-card.dragging {
  z-index: 10;
  cursor: grabbing;
  box-shadow: 0 25px 55px #1d4b8650;
}
.source-card:focus-visible {
  outline-offset: 6px;
}
.motion-paused .source-card.dragging {
  transform: var(--drag-transform) !important;
}
.section-description {
  font-size: 15px;
  color: #63738a;
}
.step p {
  font-size: 14px;
  color: #63738a;
}
.workflow-note {
  font-size: 11px;
  color: #64748a;
}
.feature-tab strong {
  font-size: 16px;
}
.feature-tab small {
  font-size: 12px;
  color: #65768b;
}
.more-tools > span {
  color: #64748b;
}
.more-tools p {
  font-size: 12px;
  color: #586e88;
}
.native-top p:not(.section-kicker) {
  font-size: 14px;
  color: #63738a;
}
.native-facts p {
  font-size: 14px;
  color: #63738a;
}
.faq-list summary {
  font-size: 15px;
}
.faq-list details p {
  font-size: 14px;
  color: #607187;
}
.format-section p:not(.section-kicker) {
  font-size: 14px;
  color: #63738a;
}
.format-section small {
  font-size: 11px;
  color: #65748a;
}
.format-rows > div > span {
  color: #526e8f;
}
.section-kicker {
  color: #5d7b9a;
}
.muted-heading {
  color: #74859c;
}
.footer-top > span {
  color: #6b7b8f;
}
.footer-bottom {
  color: #6b7b8f;
}
.system-note {
  color: #5f718a;
}
.demo-caption {
  bottom: 9px;
  left: 50%;
  width: max-content;
  max-width: 94%;
  transform: translateX(-50%);
  border: 1px solid #ffffff9c;
  background: #ffffffc9;
  backdrop-filter: blur(12px);
  padding: 7px 16px;
  border-radius: 30px;
  color: #365e87;
  font-size: 10px;
}
.shortcut-badge > span {
  background: #f5faffb8;
  border: 1px solid #ffffff60;
  border-radius: 7px;
  padding: 6px 9px;
  color: #305c8b;
}
.demo-topline > span {
  color: #506b8c;
}
.hero-benefits {
  color: #31597f;
}
.tag-a,
.tag-b {
  color: #387bb4;
}
.file-meta span {
  color: #677b90;
}
.result-heading {
  color: #246e61;
}
.result-file > div > span {
  color: #61758e;
}
.result-foot {
  color: #437769;
}
.result-foot > span:last-child {
  color: #65768c;
}
.wheel-core span {
  color: #526f92;
}
.window-badge {
  color: #607087;
}
.range-labels,
.editor-summary {
  color: #60748d;
}
.feature-tab-icon {
  color: #687d99;
}
.key-caption {
  color: #617d9b;
}
.mini-done small {
  color: #5f788e;
}
.format-section .section-shell > small {
  line-height: 1.8;
}
@media (min-width: 1101px) {
  .hero {
    padding-top: 58px;
  }
  .hero-description {
    margin-top: 20px;
  }
  .playground {
    margin-top: 31px;
    height: 479px;
  }
  .wheel-wrap {
    top: 73px;
  }
  .source-card {
    top: 99px;
  }
  .result-card {
    top: 148px;
  }
  .tag-a {
    top: 350px;
  }
  .tag-b {
    top: 60px;
  }
  .hero-benefits {
    height: 72px;
  }
  .hero-actions {
    margin-top: 24px;
  }
  .hero-copy h1 {
    margin-top: 23px;
  }
  .feature-workbench {
    grid-template-columns: 0.95fr 1.45fr;
    gap: 38px;
  }
}
@media (max-width: 1100px) and (min-width: 801px) {
  .feature-tab strong {
    font-size: 14px;
  }
  .feature-tab small {
    font-size: 11px;
  }
  .step p {
    font-size: 12px;
  }
  .section-description {
    font-size: 13px;
  }
}
@media (max-width: 800px) {
  .section-description {
    font-size: 13px;
  }
  .step p {
    font-size: 11px;
  }
  .feature-tab strong {
    font-size: 11px;
  }
  .feature-tab small {
    display: none;
  }
  .native-top p:not(.section-kicker) {
    font-size: 12px;
  }
  .native-facts p {
    font-size: 12px;
  }
  .workflow-note {
    font-size: 10px;
  }
  .faq-list summary {
    font-size: 12px;
  }
  .faq-list details p {
    font-size: 12px;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 55px;
    line-height: 1.14;
    letter-spacing: -3px;
    margin-top: 24px;
  }
  h1 .gradient-text {
    display: block;
    margin-top: 5px;
  }
  .hero-description {
    margin-top: 18px;
  }
  .hero {
    padding-top: 40px;
  }
  .hero-benefits {
    height: 64px;
  }
  .demo-caption {
    font-size: 9px;
    padding: 6px 11px;
    max-width: 95%;
    width: 95%;
    border-radius: 12px;
    bottom: 1px;
    line-height: 1.65;
  }
  .playground {
    height: 604px;
  }
  .section-description {
    font-size: 14px;
  }
  .step p {
    font-size: 11px;
  }
  .feature-tab strong {
    font-size: 10px;
  }
  .feature-tab {
    padding-inline: 3px;
  }
  .native-top p:not(.section-kicker) {
    font-size: 14px;
  }
  .native-facts p {
    font-size: 13px;
  }
  .faq-list summary {
    font-size: 14px;
    line-height: 1.6;
  }
  .faq-list details p {
    font-size: 13px;
  }
  .format-section p:not(.section-kicker) {
    font-size: 13px;
  }
  .format-section small {
    font-size: 10px;
  }
  .more-tools p {
    font-size: 10px;
  }
  .workflow-note {
    font-size: 10px;
  }
  .footer-bottom {
    font-size: 9px;
  }
  .privacy-art > img {
    height: 300px;
  }
  .native-top h2 {
    font-size: 35px;
  }
  .format-section h2 {
    font-size: 30px;
  }
}
@media (max-width: 374px) {
  h1 {
    font-size: 50px;
  }
  .feature-tab strong {
    font-size: 9px;
  }
}
.nav-cta {
  background: #006de6;
}
.button-primary {
  background: linear-gradient(135deg, #0071e8, #0065d8);
}
.media-switch button[aria-pressed="true"] {
  color: #006bdc;
}
.output-icon {
  color: #0062ce;
}
.section-kicker {
  color: #506e8c;
}
.step-label > span {
  color: #006bdc;
}
.control-label > span {
  color: #006bdc;
}
.more-tools > span {
  color: #596e88;
}
.format-button.active,
.format-button:hover {
  color: #0066d7;
}
.crop-options button[aria-pressed="true"],
.audio-options button[aria-pressed="true"] {
  color: #0062ce;
}

.brand > span {
  color: #617189;
}
.key-caption {
  color: #56718e;
}
.feature-tab small {
  color: #5d6f86;
}
.footer-top > span,
.footer-top nav,
.footer-bottom {
  color: #5d6f86;
}
.gradient-text {
  background-image: linear-gradient(
    var(--gradient-angle),
    #0264ed 10%,
    #0084e8 40%,
    #2b95e5 65%,
    #006bfb 95%
  );
}
.privacy-caption {
  color: #456b94;
}
.file-meta span {
  color: #596b80;
}
.format-button {
  color: #455f7d;
}
.format-button.active,
.format-button:hover {
  color: #005cbf;
}
.hero-benefits {
  color: #254565;
}
.get-glow {
  background:
    radial-gradient(ellipse at 50% 30%, #60bfff10, transparent 38%),
    radial-gradient(ellipse at 70% 70%, #0066d6, transparent 35%),
    linear-gradient(125deg, #0066d6, #0046ac 75%);
}
.get-content .section-kicker,
.get-content > p:not(.section-kicker),
.get-support {
  color: #f1f7ff;
}
.release-badge small {
  color: #f1f7ff;
}
@media (max-width: 600px) {
  .playground {
    height: 646px;
  }
  .result-card {
    top: 449px;
  }
  .tag-a {
    top: 478px;
  }
}
.hero-glow {
  animation: ambient-flow 9s ease-in-out infinite alternate;
}
.get-glow {
  animation: ambient-flow 11s ease-in-out infinite alternate;
}
.get-glow:after {
  animation: glass-current 16s ease-in-out infinite alternate;
}
@keyframes ambient-flow {
  from {
    transform: translate(-6%, -2%) rotate(-4deg);
  }
  to {
    transform: translate(6%, 4%) rotate(4deg);
  }
}
@keyframes glass-current {
  from {
    transform: translate(-3%, 2%) rotate(-18deg);
  }
  to {
    transform: translate(3%, -2%) rotate(-8deg);
  }
}
@media (max-width: 600px) {
  .hero-landscape.flow-ready img {
    opacity: 0;
  }
  .flow-canvas {
    opacity: 0.68;
  }
}

.language-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 36px;
  padding: 4px 7px;
  border: 1px solid #cfdef1;
  border-radius: 9px;
  color: #245b92;
  font-size: 12px;
  font-weight: 600;
}
.language-switch:hover { background: #eaf3ff; }
html[lang="en"] .brand > span { display: none; }
html[lang="en"] h1 { letter-spacing: -3.5px; font-size: clamp(48px, 5.6vw, 81px); }
html[lang="en"] .section-heading h2,
html[lang="en"] .native-top h2 { letter-spacing: -1.8px; }
html[lang="en"] .editor-summary { gap: 12px; }
html[lang="en"] .local-badge { flex-shrink: 0; }
html[lang="en"] .desktop-nav { margin-left: 20px; }
@media (max-width: 800px) {
  html[lang="en"] .feature-tab strong { font-size: 11px; line-height: 1.45; }
  html[lang="en"] .feature-tab { white-space: normal; }
}
@media (max-width: 600px) {
  .nav-actions { gap: 5px; }
  html[lang="en"] .brand strong { font-size: 16px; }
  html[lang="en"] .nav-cta { gap: 5px; font-size: 10px; padding-inline: 9px; }
  html[lang="en"] h1 { font-size: clamp(37px, 10.4vw, 59px); letter-spacing: -2px; }
  html[lang="en"] .hero-description { font-size: 13px; letter-spacing: 0; }
  html[lang="en"] .hero-benefits { gap: 12px; font-size: 9px; }
  html[lang="en"] .section-heading h2,
  html[lang="en"] .native-top h2 { font-size: 34px; }
  html[lang="en"] .step p br,
  html[lang="en"] .native-top p br,
  html[lang="en"] .native-facts p br { display: none; }
  html[lang="en"] .editor-summary { align-items: flex-start; }
  html[lang="en"] .format-row-label { min-width: 88px; }
  html[lang="en"] .format-section h2 { font-size: 27px; }
  html[lang="en"] .more-tools p { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 374px) {
  html[lang="en"] .brand { gap: 4px; }
  html[lang="en"] .nav-cta .icon { display: none; }
}

.pricing-card {
  width: min(720px, calc(100% - 44px));
  margin: 32px auto 0;
  padding: 32px 36px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 36px;
  text-align: left;
  color: #183857;
  background: linear-gradient(140deg, #fffffffa, #eff7fff2);
  border: 1px solid #fff;
  border-radius: 24px;
  box-shadow: 0 20px 60px #003b9529;
}
.pricing-label { color: #45668a; font-size: 13px; font-weight: 600; }
.price { display: flex; align-items: baseline; gap: 5px; line-height: 1; margin: 14px 0; }
.price > span:first-child { font-size: 30px; font-weight: 500; }
.price strong { font-size: 78px; letter-spacing: -4px; font-weight: 650; color: #0866d5; }
.price .price-unit { margin-left: 10px; font-size: 12px; color: #536c87; }
.pricing-entitlement { font-size: 13px; }
.pricing-actions { display: flex; flex-direction: column; gap: 10px; justify-content: center; }
.pricing-actions .button { width: 100%; justify-content: center; font-size: 13px; min-height: 46px; padding: 12px; }
.purchase-button { color: white; background: #0065d6; box-shadow: 0 5px 14px #0664cd22; }
.purchase-button:hover { background: #0058bf; }
.download-button { color: #125eaa; border: 1px solid #c3d7ef; background: #fff; }
.download-button:hover { background: #eaf3ff; }
.pricing-actions > p { font-size: 11px; text-align: center; color: #526b86; }
.pricing-details { grid-column: 1 / -1; padding-top: 16px; border-top: 1px solid #d8e5f3; display: flex; justify-content: space-between; gap: 10px; font-size: 10px; color: #496480; }
.get-content > .channel-note { max-width: 620px; margin: 20px auto 0; padding-inline: 22px; font-size: 11px; line-height: 1.8; color: #e1efff; }
@media (max-width: 600px) {
  .pricing-card { grid-template-columns: 1fr; gap: 22px; padding: 28px 24px 20px; max-width: 400px; border-radius: 20px; }
  .pricing-summary { text-align: center; }
  .price { justify-content: center; }
  .price strong { font-size: 72px; }
  .pricing-actions .button { font-size: 14px; }
  .pricing-details { flex-direction: column; align-items: center; gap: 6px; }
}
