:root {
  color-scheme: dark;
  --bg: #070b0a;
  --bg-soft: #0a100e;
  --surface: #0e1512;
  --surface-raised: #121b17;
  --surface-bright: #16211c;
  --text: #f2eee5;
  --text-soft: #c8cec9;
  --muted: #8f9c96;
  --muted-deep: #64716b;
  --jade: #63ddb0;
  --jade-strong: #36c88f;
  --jade-dim: #1d7e5d;
  --copper: #c69763;
  --copper-bright: #ddb27d;
  --border: rgba(213, 231, 221, 0.12);
  --border-strong: rgba(213, 231, 221, 0.22);
  --jade-border: rgba(99, 221, 176, 0.35);
  --copper-border: rgba(198, 151, 99, 0.42);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --container: 1200px;
  --header-height: 76px;
  --radius-large: 24px;
  --radius-medium: 16px;
  --radius-small: 10px;
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", system-ui, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 72% 1%, rgba(45, 142, 105, 0.08), transparent 28%),
    linear-gradient(180deg, #070b0a 0%, #080c0b 54%, #070b0a 100%);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  content: "";
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.19'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

svg {
  display: block;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: 124px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  color: #03110c;
  background: var(--jade);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 90;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 11, 10, 0.82);
  border-color: var(--border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(20px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
}

.brand-mark {
  display: inline-flex;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: #07110f;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(99, 221, 176, 0.15);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  font-family: "STKaiti", "KaiTi", "PingFang SC", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.desktop-nav {
  display: flex;
  gap: clamp(24px, 2.8vw, 42px);
  align-items: center;
}

.desktop-nav a,
.site-footer nav a {
  color: var(--muted);
  font-size: 14px;
  line-height: 1;
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: var(--text);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.menu-toggle:focus-visible,
.workbench-tabs button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--jade);
  outline-offset: 3px;
}

.button-primary {
  color: #04120d;
  background: var(--jade);
  box-shadow: 0 12px 30px rgba(54, 200, 143, 0.14);
}

.button-primary:hover {
  background: #78e7bd;
  box-shadow: 0 16px 38px rgba(54, 200, 143, 0.22);
}

.button-copper {
  color: #150d06;
  background: var(--copper-bright);
  box-shadow: 0 12px 30px rgba(198, 151, 99, 0.14);
}

.button-copper:hover {
  background: #e8bf8c;
  box-shadow: 0 16px 38px rgba(198, 151, 99, 0.2);
}

.button-quiet,
.button-outline {
  color: var(--text-soft);
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.025);
}

.button-quiet:hover,
.button-outline:hover {
  color: var(--text);
  border-color: rgba(99, 221, 176, 0.36);
  background: rgba(99, 221, 176, 0.055);
}

.button-small {
  min-height: 39px;
  padding-inline: 16px;
  font-size: 13px;
  border-radius: 9px;
}

.button-small svg {
  width: 16px;
  height: 16px;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 850px;
  align-items: center;
  padding: calc(var(--header-height) + 66px) 0 80px;
  overflow: hidden;
  border-bottom: 1px solid rgba(213, 231, 221, 0.06);
}

.hero::before {
  position: absolute;
  top: 0;
  right: -18%;
  width: 68%;
  height: 100%;
  content: "";
  pointer-events: none;
  background: radial-gradient(ellipse at 38% 44%, rgba(49, 144, 108, 0.13), transparent 60%);
}

.hero-signal {
  position: absolute;
  top: 43%;
  left: 0;
  width: 100%;
  height: 1px;
  opacity: 0.68;
  background: linear-gradient(90deg, transparent 2%, rgba(99, 221, 176, 0.08) 32%, rgba(99, 221, 176, 0.82) 66%, transparent 100%);
  box-shadow: 0 0 24px rgba(99, 221, 176, 0.28);
  transform: rotate(-4deg);
}

.hero-signal::after {
  position: absolute;
  top: -3px;
  left: 66%;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--jade);
  box-shadow: 0 0 22px var(--jade);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(640px, 1.25fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
}

.hero-copy {
  min-width: 0;
  padding-bottom: 22px;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  color: var(--text);
  font-size: clamp(48px, 4.3vw, 72px);
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero-copy > p:not(.hero-note) {
  max-width: 590px;
  margin: 30px 0 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 38px;
}

.hero-note {
  margin: 20px 0 0;
  color: var(--muted-deep);
  font-size: 13px;
}

.hero-studio {
  position: relative;
  width: 720px;
  max-width: none;
  min-width: 0;
}

.hero-studio::before {
  position: absolute;
  inset: 9% 12% -8%;
  z-index: -1;
  content: "";
  opacity: 0.44;
  background: radial-gradient(ellipse, rgba(51, 192, 139, 0.22), transparent 68%);
  filter: blur(28px);
}

.studio-shell {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(220, 236, 228, 0.18);
  border-radius: 17px;
  background: #0b100e;
  box-shadow: 0 46px 110px rgba(0, 0, 0, 0.62), 0 0 0 1px rgba(99, 221, 176, 0.035);
  transform: perspective(1500px) rotateY(-3deg) rotateX(1.5deg);
  transform-origin: center left;
}

.studio-topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 44px;
  align-items: center;
  padding: 0 14px;
  border-bottom: 1px solid rgba(217, 235, 226, 0.08);
  background: #101512;
  color: var(--muted);
  font-size: 10px;
}

.studio-window-dots {
  display: flex;
  gap: 6px;
}

.studio-window-dots span {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: #28302c;
}

.studio-project-title {
  display: flex;
  gap: 7px;
  align-items: center;
  color: #c8d0cc;
}

.project-status {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--jade);
  box-shadow: 0 0 8px rgba(99, 221, 176, 0.55);
}

.studio-export {
  justify-self: end;
  padding: 5px 9px;
  color: #07120e;
  border-radius: 5px;
  background: var(--jade);
  font-weight: 700;
}

.studio-body {
  display: flex;
  min-height: 425px;
}

.studio-sidebar {
  display: flex;
  width: 42px;
  flex: 0 0 42px;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  padding: 12px 0;
  border-right: 1px solid rgba(217, 235, 226, 0.065);
  background: #0c110f;
}

.sidebar-logo {
  display: grid;
  width: 22px;
  height: 22px;
  margin-bottom: 6px;
  place-items: center;
  color: var(--jade);
  border: 1px solid rgba(99, 221, 176, 0.28);
  border-radius: 6px;
  font-family: serif;
  font-size: 10px;
}

.sidebar-icon {
  width: 14px;
  height: 14px;
  border: 1px solid #58615d;
  border-radius: 4px;
  opacity: 0.6;
}

.sidebar-icon.active {
  border-color: var(--jade);
  background: rgba(99, 221, 176, 0.12);
  box-shadow: 0 0 0 5px rgba(99, 221, 176, 0.05);
  opacity: 1;
}

.sidebar-icon.small {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.sidebar-spacer {
  flex: 1;
}

.studio-main {
  display: grid;
  min-width: 0;
  flex: 1;
  grid-template-columns: 1fr 1.35fr 0.88fr;
}

.studio-column {
  min-width: 0;
  border-right: 1px solid rgba(217, 235, 226, 0.065);
}

.studio-column:last-child {
  border-right: 0;
}

.panel-heading {
  display: flex;
  height: 36px;
  align-items: center;
  justify-content: space-between;
  padding: 0 11px;
  color: #abb5b0;
  border-bottom: 1px solid rgba(217, 235, 226, 0.065);
  background: #0e1411;
  font-size: 9px;
}

.panel-count,
.preview-mode,
.task-live {
  color: #68736e;
  font-size: 8px;
}

.task-live {
  color: var(--jade);
}

.studio-script {
  padding-bottom: 10px;
  background: #0b100e;
}

.script-block {
  display: flex;
  gap: 8px;
  margin: 8px 7px 0;
  padding: 9px 8px;
  color: #7f8a85;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 8px;
  line-height: 1.45;
}

.script-block strong {
  display: block;
  margin-bottom: 4px;
  color: #c4cbc7;
  font-size: 9px;
  font-weight: 550;
}

.script-block p {
  margin: 0;
}

.script-block.selected {
  color: #9eaaa4;
  border-color: rgba(99, 221, 176, 0.22);
  background: rgba(99, 221, 176, 0.055);
}

.script-block.muted {
  opacity: 0.62;
}

.script-index {
  display: grid;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  place-items: center;
  color: var(--jade);
  border: 1px solid rgba(99, 221, 176, 0.18);
  border-radius: 4px;
  font-size: 7px;
}

.studio-preview {
  background: #080d0b;
}

.preview-stage {
  padding: 15px 14px 12px;
}

.cinema-frame,
.demo-scene,
.frame-image,
.finish-image {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 65% 38%, rgba(217, 151, 76, 0.3), transparent 7%),
    linear-gradient(180deg, #142521 0%, #0d1d1a 58%, #15211d 100%);
}

.cinema-frame {
  height: 185px;
  border: 1px solid rgba(218, 229, 223, 0.12);
  border-radius: 8px;
  box-shadow: inset 0 -28px 40px rgba(0, 0, 0, 0.24);
}

.moon {
  position: absolute;
  top: 20px;
  right: 33px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(236, 222, 183, 0.85);
  box-shadow: 0 0 18px rgba(236, 222, 183, 0.28);
}

.roof {
  position: absolute;
  display: block;
  height: 50px;
  border-top: 5px solid #283a34;
  transform: skewX(-32deg);
}

.roof-one {
  top: 51px;
  left: -10px;
  width: 112px;
}

.roof-two {
  top: 68px;
  right: -26px;
  width: 112px;
  transform: skewX(30deg);
}

.lantern {
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 14px;
  border-radius: 4px;
  background: #c78249;
  box-shadow: 0 0 14px rgba(210, 132, 67, 0.72);
}

.lantern::before {
  position: absolute;
  top: -23px;
  left: 4px;
  width: 1px;
  height: 23px;
  content: "";
  background: #53645e;
}

.lantern-one {
  top: 73px;
  right: 80px;
}

.lantern-two {
  top: 90px;
  left: 59px;
  width: 8px;
  height: 11px;
  opacity: 0.6;
}

.figure,
.frame-person {
  position: absolute;
  z-index: 3;
  border-radius: 50% 50% 22% 22%;
  background: #111512;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.32);
}

.figure {
  right: 43%;
  bottom: 24px;
  width: 17px;
  height: 54px;
}

.figure::before,
.frame-person::before {
  position: absolute;
  top: -8px;
  left: 4px;
  width: 10px;
  height: 10px;
  content: "";
  border-radius: 50%;
  background: #171b18;
}

.figure::after {
  position: absolute;
  top: -10px;
  left: -19px;
  width: 55px;
  height: 6px;
  content: "";
  border-top: 2px solid #252d29;
  border-radius: 50%;
}

.ground-glow {
  position: absolute;
  right: 11%;
  bottom: -12px;
  width: 85%;
  height: 55px;
  background: radial-gradient(ellipse, rgba(181, 130, 75, 0.22), transparent 62%);
  transform: rotate(-4deg);
}

.rain {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background: repeating-linear-gradient(105deg, transparent 0 17px, rgba(208, 226, 216, 0.22) 18px, transparent 19px 31px);
}

.rain-two {
  opacity: 0.15;
  transform: translateX(12px);
}

.frame-markers {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 9px;
}

.frame-marker {
  padding: 4px 6px;
  border: 1px solid;
  border-radius: 4px;
  font-size: 7px;
  line-height: 1;
}

.frame-marker.first {
  color: var(--jade);
  border-color: rgba(99, 221, 176, 0.3);
  background: rgba(99, 221, 176, 0.06);
}

.frame-marker.last {
  color: var(--copper-bright);
  border-color: rgba(198, 151, 99, 0.3);
  background: rgba(198, 151, 99, 0.06);
}

.frame-line {
  position: relative;
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, var(--jade-dim), rgba(198, 151, 99, 0.55));
}

.frame-line::before,
.frame-line::after {
  position: absolute;
  top: -2px;
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
}

.frame-line::before {
  left: 0;
  background: var(--jade);
}

.frame-line::after {
  right: 0;
  background: var(--copper);
}

.studio-tasks {
  background: #0b100e;
}

.task-item {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr) auto;
  gap: 7px;
  align-items: center;
  margin: 8px 7px 0;
  padding: 8px 5px;
  color: #67736d;
  border-bottom: 1px solid rgba(217, 235, 226, 0.055);
  font-size: 7px;
}

.task-item strong,
.task-item small {
  display: block;
}

.task-item strong {
  color: #afb8b4;
  font-size: 8px;
  font-weight: 500;
}

.task-item small {
  margin-top: 2px;
  color: #606b66;
  font-size: 7px;
}

.task-dot {
  width: 5px;
  height: 5px;
  border: 1px solid #56605b;
  border-radius: 50%;
}

.task-item.complete .task-dot,
.task-item.running .task-dot {
  border-color: var(--jade);
  background: var(--jade);
}

.task-item.running {
  color: var(--jade);
}

.task-item.running .task-dot {
  box-shadow: 0 0 7px rgba(99, 221, 176, 0.54);
}

.task-progress {
  height: 2px;
  margin: 4px 13px 1px 22px;
  overflow: hidden;
  border-radius: 3px;
  background: #202824;
}

.task-progress span {
  display: block;
  width: 68%;
  height: 100%;
  background: var(--jade);
}

.studio-timeline {
  display: grid;
  grid-template-columns: 74px 1fr;
  height: 132px;
  border-top: 1px solid rgba(217, 235, 226, 0.07);
  background: #090e0c;
}

.timeline-tools {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 11px;
  color: var(--jade);
  border-right: 1px solid rgba(217, 235, 226, 0.065);
  font-size: 7px;
}

.timeline-tools i {
  width: 31px;
  height: 3px;
  border-radius: 2px;
  background: #28312d;
}

.timeline-tools i:nth-child(3) {
  width: 23px;
}

.timeline-track-labels {
  display: flex;
  flex-direction: column;
  gap: 11px;
  width: 46px;
  padding: 29px 0 0 8px;
  color: #5e6a64;
  border-right: 1px solid rgba(217, 235, 226, 0.05);
  font-size: 7px;
}

.timeline-tracks {
  position: relative;
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  gap: 6px;
  padding: 25px 8px 8px;
}

.time-ruler {
  position: absolute;
  top: 4px;
  right: 8px;
  left: 8px;
  display: flex;
  justify-content: space-between;
  color: #47514d;
  border-top: 1px solid rgba(217, 235, 226, 0.08);
  font-size: 6px;
}

.track {
  display: flex;
  gap: 2px;
  height: 22px;
}

.video-track span {
  flex: 1;
  border: 1px solid rgba(99, 221, 176, 0.2);
  border-radius: 3px;
  background: linear-gradient(135deg, #173029, #1f2824);
}

.video-track span:nth-child(2) {
  border-color: rgba(99, 221, 176, 0.55);
  box-shadow: inset 0 0 8px rgba(99, 221, 176, 0.08);
}

.subtitle-track span {
  padding: 4px 6px;
  color: #8f9a95;
  border: 1px solid rgba(159, 178, 168, 0.12);
  border-radius: 3px;
  background: #18201c;
  font-size: 6px;
  white-space: nowrap;
}

.audio-track span {
  width: 77%;
  border: 1px solid rgba(198, 151, 99, 0.18);
  border-radius: 3px;
  background: repeating-linear-gradient(90deg, rgba(198, 151, 99, 0.2) 0 1px, transparent 1px 5px), #171915;
}

.playhead {
  position: absolute;
  top: 15px;
  bottom: 3px;
  left: 43%;
  width: 1px;
  background: var(--jade);
  box-shadow: 0 0 6px rgba(99, 221, 176, 0.4);
}

.playhead::before {
  position: absolute;
  top: -2px;
  left: -3px;
  width: 7px;
  height: 5px;
  content: "";
  border-radius: 1px 1px 4px 4px;
  background: var(--jade);
}

.section-intro {
  max-width: 660px;
  margin-bottom: 64px;
}

.section-intro.wide {
  max-width: 820px;
}

.section-intro h2,
.workbench-heading h2,
.pricing-heading h2,
.download-copy h2,
.faq-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(34px, 3.2vw, 52px);
  font-weight: 650;
  line-height: 1.22;
  letter-spacing: -0.035em;
}

.section-intro p,
.workbench-heading p,
.pricing-heading p,
.download-copy > p,
.faq-heading > p {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.workflow {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(13, 20, 17, 0.7), rgba(7, 11, 10, 0));
}

.workflow::after {
  position: absolute;
  top: 62%;
  left: 50%;
  width: min(84vw, 1200px);
  height: 1px;
  content: "";
  opacity: 0.22;
  background: linear-gradient(90deg, transparent, var(--jade), transparent);
  transform: translateX(-50%);
}

.workflow-rail {
  position: relative;
  z-index: 1;
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(6, 1fr);
}

.workflow-rail::before {
  position: absolute;
  top: 30px;
  right: calc(100% / 12);
  left: calc(100% / 12);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(99, 221, 176, 0.5), rgba(99, 221, 176, 0.12) 78%, rgba(198, 151, 99, 0.5));
}

.workflow-rail li {
  position: relative;
  min-width: 0;
  padding-right: 22px;
}

.step-number {
  position: relative;
  z-index: 2;
  display: grid;
  width: 61px;
  height: 61px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--jade);
  border: 1px solid var(--jade-border);
  border-radius: 50%;
  background: #09100d;
  box-shadow: 0 0 0 7px #080d0b;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
}

.workflow-rail li:last-child .step-number {
  color: var(--copper-bright);
  border-color: var(--copper-border);
}

.workflow-rail strong {
  display: block;
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 600;
}

.workflow-rail p {
  max-width: 142px;
  margin: 8px 0 0;
  color: var(--muted-deep);
  font-size: 12px;
  line-height: 1.65;
}

.capabilities {
  padding-top: 142px;
}

.feature-story {
  display: grid;
  min-height: 540px;
  align-items: center;
  gap: clamp(56px, 8vw, 112px);
  padding: 68px 0;
  border-top: 1px solid var(--border);
  grid-template-columns: 0.78fr 1.22fr;
}

.feature-story:nth-of-type(odd) {
  grid-template-columns: 1.22fr 0.78fr;
}

.feature-story:nth-of-type(odd) .feature-copy {
  order: 2;
}

.feature-story:last-child {
  border-bottom: 1px solid var(--border);
}

.feature-index {
  display: block;
  margin-bottom: 24px;
  color: var(--jade);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.feature-story-frames .feature-index,
.feature-story-finish .finish-options button {
  color: var(--copper-bright);
}

.feature-copy h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(28px, 2.4vw, 42px);
  font-weight: 620;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.feature-copy > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.feature-points {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-points li {
  position: relative;
  padding-left: 22px;
  color: var(--text-soft);
  font-size: 14px;
}

.feature-points li::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 8px;
  height: 1px;
  content: "";
  background: var(--jade);
  box-shadow: 0 0 7px rgba(99, 221, 176, 0.45);
}

.feature-story-frames .feature-points li::before {
  background: var(--copper);
  box-shadow: 0 0 7px rgba(198, 151, 99, 0.35);
}

.feature-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-medium);
  background: #0c1210;
  box-shadow: var(--shadow);
}

.script-visual {
  display: grid;
  min-height: 430px;
  padding: 48px 20px 20px;
  grid-template-columns: 1.4fr 0.85fr;
}

.visual-toolbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: 43px;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  color: var(--text-soft);
  border-bottom: 1px solid var(--border);
  background: #111814;
  font-size: 11px;
}

.visual-toolbar span:last-child {
  color: var(--muted-deep);
  font-size: 10px;
}

.script-sheet {
  padding: 22px;
  border-right: 1px solid var(--border);
}

.script-line {
  width: 70%;
  height: 5px;
  margin-bottom: 10px;
  border-radius: 3px;
  background: #28332e;
}

.script-line.title-line {
  width: 36%;
  height: 8px;
  margin-bottom: 16px;
  background: #53625b;
}

.script-line.long {
  width: 91%;
}

.script-line.medium {
  width: 76%;
  margin-bottom: 24px;
}

.script-scene {
  margin-top: 10px;
  padding: 13px 14px;
  color: var(--muted);
  border: 1px solid rgba(213, 231, 221, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.012);
}

.script-scene.active {
  border-color: rgba(99, 221, 176, 0.27);
  background: rgba(99, 221, 176, 0.045);
}

.script-scene > div:first-child {
  display: flex;
  gap: 10px;
  align-items: center;
}

.script-scene > div:first-child span {
  color: var(--jade);
  font-family: ui-monospace, monospace;
  font-size: 10px;
}

.script-scene strong {
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 600;
}

.script-scene p {
  margin: 9px 0 0;
  font-size: 10px;
}

.scene-tags {
  display: flex;
  gap: 5px;
  margin-top: 11px;
}

.scene-tags span {
  padding: 3px 6px;
  color: #86958e;
  border: 1px solid rgba(213, 231, 221, 0.1);
  border-radius: 4px;
  font-size: 8px;
}

.scene-tags span:last-child {
  color: var(--jade);
  border-color: rgba(99, 221, 176, 0.2);
}

.storyboard-strip {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 17px;
}

.board-thumb {
  position: relative;
  height: 78px;
  overflow: hidden;
  border: 1px solid rgba(213, 231, 221, 0.1);
  border-radius: 7px;
  background:
    linear-gradient(150deg, transparent 42%, rgba(19, 40, 33, 0.94) 43% 62%, transparent 63%),
    radial-gradient(circle at 70% 38%, rgba(207, 140, 73, 0.42), transparent 8%),
    linear-gradient(180deg, #152a24, #0b1713);
}

.board-thumb.active {
  border-color: rgba(99, 221, 176, 0.52);
  box-shadow: 0 0 0 2px rgba(99, 221, 176, 0.08);
}

.board-thumb span {
  position: absolute;
  top: 6px;
  left: 6px;
  padding: 2px 5px;
  color: var(--text-soft);
  border-radius: 3px;
  background: rgba(3, 8, 6, 0.68);
  font-size: 8px;
}

.thumb-two {
  background:
    radial-gradient(circle at 72% 43%, rgba(207, 140, 73, 0.46), transparent 8%),
    linear-gradient(110deg, transparent 54%, rgba(31, 49, 42, 0.95) 55% 75%, transparent 76%),
    linear-gradient(180deg, #1a2d28, #0c1714);
}

.thumb-three {
  background:
    radial-gradient(circle at 42% 45%, rgba(207, 140, 73, 0.55), transparent 11%),
    linear-gradient(180deg, #162a24, #0b1512);
}

.board-add {
  display: grid;
  height: 38px;
  place-items: center;
  color: #56635d;
  border: 1px dashed rgba(213, 231, 221, 0.12);
  border-radius: 6px;
}

.frames-visual {
  display: grid;
  min-height: 420px;
  align-items: center;
  padding: 36px 30px 112px;
  grid-template-columns: 1fr 94px 1fr;
}

.frame-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #101713;
}

.frame-card-first {
  border-color: rgba(99, 221, 176, 0.3);
}

.frame-card-last {
  border-color: rgba(198, 151, 99, 0.33);
}

.frame-image {
  height: 210px;
  border-bottom: 1px solid var(--border);
}

.frame-image-first {
  background:
    linear-gradient(145deg, transparent 35%, rgba(26, 48, 40, 0.9) 36% 48%, transparent 49%),
    radial-gradient(circle at 75% 41%, rgba(199, 139, 76, 0.48), transparent 8%),
    linear-gradient(180deg, #18312a 0%, #0b1814 100%);
}

.frame-image-last {
  background:
    linear-gradient(30deg, transparent 31%, rgba(23, 41, 35, 0.9) 32% 45%, transparent 46%),
    radial-gradient(circle at 35% 39%, rgba(199, 139, 76, 0.5), transparent 9%),
    linear-gradient(180deg, #1a2d28 0%, #0a1512 100%);
}

.frame-person {
  bottom: 30px;
  width: 24px;
  height: 78px;
}

.frame-person.start {
  left: 24%;
}

.frame-person.end {
  right: 26%;
}

.frame-person::before {
  top: -11px;
  left: 6px;
  width: 13px;
  height: 13px;
}

.frame-lantern {
  position: absolute;
  top: 62px;
  right: 26%;
  width: 17px;
  height: 22px;
  border-radius: 6px;
  background: #c28146;
  box-shadow: 0 0 24px rgba(210, 132, 67, 0.64);
}

.frame-image-last .frame-lantern {
  right: auto;
  left: 30%;
}

.frame-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 13px;
  color: var(--muted);
  font-size: 11px;
}

.frame-card-meta strong {
  color: var(--jade);
  font-size: 10px;
  font-weight: 550;
}

.frame-card-last .frame-card-meta strong {
  color: var(--copper-bright);
}

.motion-route {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.motion-route span {
  width: 4px;
  height: 4px;
  margin-bottom: 7px;
  border-radius: 50%;
  background: #4e5b55;
}

.motion-route svg {
  width: 54px;
  margin-top: 7px;
  fill: none;
  stroke: url(#route-gradient);
  stroke: #65736c;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.prompt-panel {
  position: absolute;
  right: 30px;
  bottom: 22px;
  left: 30px;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #111814;
}

.prompt-panel > span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted-deep);
  font-size: 9px;
}

.prompt-panel p {
  margin: 0;
  color: #9da8a3;
  font-size: 10px;
  line-height: 1.65;
}

.prompt-panel mark {
  padding: 1px 3px;
  color: var(--jade);
  background: rgba(99, 221, 176, 0.09);
}

.prompt-panel mark.copper {
  color: var(--copper-bright);
  background: rgba(198, 151, 99, 0.09);
}

.finish-visual {
  min-height: 430px;
  padding: 20px;
}

.finish-preview {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 9px;
}

.finish-image {
  display: grid;
  height: 220px;
  place-items: center;
  background:
    linear-gradient(150deg, transparent 40%, rgba(21, 43, 36, 0.95) 41% 59%, transparent 60%),
    radial-gradient(circle at 70% 39%, rgba(202, 139, 71, 0.53), transparent 7%),
    linear-gradient(180deg, #183029, #0b1713);
}

.play-button {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(242, 238, 229, 0.45);
  border-radius: 50%;
  background: rgba(5, 10, 8, 0.58);
  backdrop-filter: blur(8px);
}

.play-button::after {
  position: absolute;
  top: 13px;
  left: 16px;
  content: "";
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--text);
}

.finish-time {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  color: var(--muted-deep);
  background: #111714;
  font-family: ui-monospace, monospace;
  font-size: 9px;
}

.finish-timeline {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 7px 8px;
  margin-top: 15px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #090f0c;
}

.finish-track-label {
  color: var(--muted-deep);
  font-size: 9px;
}

.finish-clips,
.finish-subtitles {
  display: flex;
  gap: 3px;
  min-width: 0;
}

.finish-clips span {
  height: 32px;
  flex: 1;
  border: 1px solid rgba(99, 221, 176, 0.22);
  border-radius: 3px;
  background: linear-gradient(135deg, #19332b, #17221e);
}

.finish-subtitles span {
  flex: 1;
  padding: 4px 7px;
  color: #89958f;
  border: 1px solid rgba(213, 231, 221, 0.1);
  border-radius: 3px;
  background: #17201c;
  font-size: 8px;
  white-space: nowrap;
}

.finish-playhead {
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: 53%;
  width: 1px;
  background: var(--jade);
}

.finish-playhead::before {
  position: absolute;
  top: 0;
  left: -3px;
  width: 7px;
  height: 5px;
  content: "";
  background: var(--jade);
}

.finish-options {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 10px;
}

.finish-options span {
  display: flex;
  gap: 6px;
  align-items: center;
}

.check {
  position: relative;
  width: 14px;
  height: 14px;
  border: 1px solid var(--jade-border);
  border-radius: 4px;
  background: rgba(99, 221, 176, 0.08);
}

.check::after {
  position: absolute;
  top: 2px;
  left: 4px;
  width: 3px;
  height: 6px;
  content: "";
  border-right: 1px solid var(--jade);
  border-bottom: 1px solid var(--jade);
  transform: rotate(42deg);
}

.finish-options button {
  min-height: 30px;
  margin-left: auto;
  padding: 0 11px;
  color: #0d0a06;
  border: 0;
  border-radius: 6px;
  background: var(--copper-bright);
  font-size: 9px;
  font-weight: 650;
}

.workbench {
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 52%, rgba(35, 111, 83, 0.09), transparent 61%),
    #080d0b;
}

.workbench::before {
  position: absolute;
  top: 185px;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  opacity: 0.26;
  background: linear-gradient(90deg, transparent, var(--jade), transparent);
}

.workbench-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 48px;
}

.workbench-tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(13, 20, 17, 0.88);
}

.workbench-tabs button {
  min-height: 36px;
  padding: 0 14px;
  color: var(--muted);
  border: 0;
  border-radius: 7px;
  background: transparent;
  font-size: 12px;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease;
}

.workbench-tabs button[aria-selected="true"] {
  color: #05120d;
  background: var(--jade);
}

.workbench-demo {
  display: grid;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid rgba(213, 231, 221, 0.18);
  border-radius: var(--radius-large);
  background: #0b100e;
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.48);
  grid-template-columns: 54px 220px minmax(0, 1fr);
}

.demo-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  border-right: 1px solid var(--border);
  background: #0a0f0d;
}

.demo-brand {
  display: grid;
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
  place-items: center;
  color: var(--jade);
  border: 1px solid var(--jade-border);
  border-radius: 8px;
  font-family: serif;
  font-size: 13px;
}

.demo-sidebar i {
  width: 17px;
  height: 17px;
  border: 1px solid #46524c;
  border-radius: 5px;
  opacity: 0.62;
}

.demo-sidebar i.active {
  border-color: var(--jade);
  background: rgba(99, 221, 176, 0.09);
  box-shadow: 0 0 0 6px rgba(99, 221, 176, 0.04);
  opacity: 1;
}

.demo-projects {
  border-right: 1px solid var(--border);
  background: #0d1310;
}

.demo-panel-heading,
.demo-topline {
  display: flex;
  height: 54px;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  color: var(--text-soft);
  border-bottom: 1px solid var(--border);
  font-size: 12px;
}

.demo-panel-heading span {
  color: var(--jade);
  font-size: 18px;
}

.project-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 8px;
  padding: 12px 10px;
  color: var(--muted);
  border: 1px solid transparent;
  border-radius: 8px;
}

.project-row.active {
  border-color: rgba(99, 221, 176, 0.22);
  background: rgba(99, 221, 176, 0.045);
}

.project-row > span {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  place-items: center;
  color: var(--jade);
  border: 1px solid rgba(99, 221, 176, 0.17);
  border-radius: 6px;
  font-family: ui-monospace, monospace;
  font-size: 9px;
}

.project-row strong,
.project-row small {
  display: block;
}

.project-row strong {
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 550;
}

.project-row small {
  margin-top: 3px;
  color: var(--muted-deep);
  font-size: 9px;
}

.project-summary {
  display: flex;
  justify-content: space-between;
  margin: 15px 14px 0;
  padding-top: 13px;
  color: var(--muted-deep);
  border-top: 1px solid var(--border);
  font-size: 9px;
}

.demo-content {
  min-width: 0;
}

.demo-topline {
  color: var(--muted);
}

.demo-topline > div {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 10px;
}

.saved-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--jade);
}

.demo-topline button {
  min-height: 30px;
  margin-left: 10px;
  padding: 0 13px;
  color: #07120e;
  border: 0;
  border-radius: 6px;
  background: var(--jade);
  font-size: 10px;
  font-weight: 650;
}

.demo-panel {
  min-height: 556px;
  padding: 24px;
  animation: panel-in 260ms ease both;
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.storyboard-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.storyboard-grid article {
  min-width: 0;
  padding: 9px 9px 13px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #0e1512;
}

.storyboard-grid article.active {
  border-color: rgba(99, 221, 176, 0.43);
  box-shadow: 0 0 0 2px rgba(99, 221, 176, 0.055);
}

.demo-scene {
  height: 165px;
  margin-bottom: 12px;
  border-radius: 6px;
}

.demo-scene::after {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  content: "";
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.35));
}

.scene-a {
  background:
    linear-gradient(145deg, transparent 32%, rgba(20, 43, 35, 0.92) 33% 49%, transparent 50%),
    radial-gradient(circle at 75% 37%, rgba(206, 142, 74, 0.44), transparent 7%),
    linear-gradient(180deg, #163029, #0b1814);
}

.scene-b {
  background:
    radial-gradient(circle at 65% 36%, rgba(206, 142, 74, 0.56), transparent 8%),
    linear-gradient(110deg, transparent 51%, rgba(21, 42, 35, 0.96) 52% 72%, transparent 73%),
    linear-gradient(180deg, #1a302a, #0c1714);
}

.scene-c {
  background:
    radial-gradient(circle at 48% 45%, rgba(206, 142, 74, 0.7), transparent 14%),
    linear-gradient(180deg, #192b26, #0b1713);
}

.scene-d {
  background:
    linear-gradient(32deg, transparent 34%, rgba(21, 42, 35, 0.95) 35% 53%, transparent 54%),
    radial-gradient(circle at 30% 38%, rgba(206, 142, 74, 0.48), transparent 8%),
    linear-gradient(180deg, #192e28, #0a1512);
}

.demo-frame-tag {
  position: absolute;
  z-index: 2;
  top: 8px;
  padding: 3px 6px;
  border: 1px solid;
  border-radius: 4px;
  background: rgba(5, 10, 8, 0.72);
  font-size: 8px;
}

.demo-frame-tag.first {
  left: 8px;
  color: var(--jade);
  border-color: var(--jade-border);
}

.demo-frame-tag.last {
  right: 8px;
  color: var(--copper-bright);
  border-color: var(--copper-border);
}

.storyboard-grid strong {
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 550;
}

.storyboard-grid p {
  margin: 5px 0 0;
  color: var(--muted-deep);
  font-size: 10px;
}

.task-table {
  border: 1px solid var(--border);
  border-radius: 10px;
}

.task-table > div {
  display: grid;
  min-height: 66px;
  align-items: center;
  padding: 0 18px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  grid-template-columns: 1.35fr 0.8fr 1fr 0.8fr;
}

.task-table > div:last-child {
  border-bottom: 0;
}

.task-table .task-table-head {
  min-height: 43px;
  color: var(--muted-deep);
  background: #111814;
  font-size: 9px;
}

.task-table div > span:nth-child(3) {
  display: block;
  width: 84%;
  height: 4px;
  overflow: hidden;
  border-radius: 3px;
  background: #252e2a;
}

.task-table .task-table-head > span:nth-child(3) {
  height: auto;
  overflow: visible;
  background: transparent;
}

.task-table i {
  display: block;
  width: var(--progress);
  height: 100%;
  background: var(--jade);
}

.task-table strong {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

.task-table strong.status-complete,
.task-table strong.status-running {
  color: var(--jade);
}

.refund-note {
  margin-top: 16px;
  padding: 14px 16px;
  color: var(--muted);
  border: 1px solid rgba(99, 221, 176, 0.14);
  border-radius: 8px;
  background: rgba(99, 221, 176, 0.035);
  font-size: 11px;
}

.refund-note span {
  margin-right: 8px;
  color: var(--jade);
}

.caption-editor {
  display: grid;
  min-height: 485px;
  gap: 15px;
  grid-template-columns: 1.15fr 0.88fr;
  grid-template-rows: 1fr auto;
}

.caption-preview {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 322px;
  padding: 0 20px 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
  background:
    linear-gradient(145deg, transparent 37%, rgba(21, 43, 36, 0.94) 38% 57%, transparent 58%),
    radial-gradient(circle at 70% 38%, rgba(206, 142, 74, 0.56), transparent 8%),
    linear-gradient(180deg, #192f29, #0a1512);
}

.caption-preview span {
  position: relative;
  z-index: 1;
  padding: 5px 11px;
  color: white;
  background: rgba(0, 0, 0, 0.7);
  font-size: 12px;
}

.caption-list {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #0e1512;
}

.caption-list > div {
  padding: 14px 15px;
  border-bottom: 1px solid var(--border);
}

.caption-list > div.active {
  border-left: 2px solid var(--jade);
  background: rgba(99, 221, 176, 0.045);
}

.caption-list time {
  color: var(--muted-deep);
  font-family: ui-monospace, monospace;
  font-size: 9px;
}

.caption-list p {
  margin: 5px 0 0;
  color: var(--text-soft);
  font-size: 11px;
}

.caption-settings {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 25px;
  min-height: 75px;
  padding: 0 17px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: #0e1512;
}

.caption-settings strong {
  margin-right: auto;
  color: var(--text-soft);
  font-size: 11px;
}

.caption-settings label {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 10px;
}

.toggle {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 13px;
  border-radius: 8px;
  background: #303a35;
}

.toggle::after {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 50%;
  background: #8b9791;
}

.toggle.active {
  background: rgba(99, 221, 176, 0.35);
}

.toggle.active::after {
  left: 13px;
  background: var(--jade);
}

.caption-settings button {
  min-height: 34px;
  padding: 0 14px;
  color: #07120e;
  border: 0;
  border-radius: 6px;
  background: var(--jade);
  font-size: 10px;
  font-weight: 650;
}

.points {
  padding-top: 140px;
}

.api-compare {
  position: relative;
  display: grid;
  overflow: hidden;
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  grid-template-columns: 1fr 1px 1fr;
}

.api-mode {
  padding: 44px 50px 38px;
}

.api-mode-title {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.api-mode-title h3 {
  margin: 0;
  color: var(--text);
  font-size: 25px;
  font-weight: 600;
}

.api-mode-title p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.mode-symbol {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border: 1px solid var(--jade-border);
  border-radius: 10px;
  background: rgba(99, 221, 176, 0.055);
}

.key-symbol::before {
  position: absolute;
  top: 11px;
  left: 10px;
  width: 10px;
  height: 10px;
  content: "";
  border: 1.5px solid var(--jade);
  border-radius: 50%;
}

.key-symbol::after {
  position: absolute;
  top: 21px;
  left: 20px;
  width: 12px;
  height: 1.5px;
  content: "";
  background: var(--jade);
  box-shadow: 4px 3px 0 -0.2px var(--jade);
  transform: rotate(42deg);
  transform-origin: left center;
}

.platform-mode .mode-symbol {
  border-color: var(--copper-border);
  background: rgba(198, 151, 99, 0.055);
}

.cloud-symbol::before {
  position: absolute;
  top: 16px;
  left: 9px;
  width: 21px;
  height: 11px;
  content: "";
  border: 1.5px solid var(--copper-bright);
  border-radius: 9px;
}

.cloud-symbol::after {
  position: absolute;
  top: 10px;
  left: 15px;
  width: 12px;
  height: 12px;
  content: "";
  border: 1.5px solid var(--copper-bright);
  border-bottom-color: transparent;
  border-radius: 50%;
  background: #080d0b;
}

.compare-divider {
  position: relative;
  width: 1px;
  background: var(--border-strong);
}

.compare-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  color: var(--muted-deep);
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg);
  font-size: 10px;
  transform: translate(-50%, -50%);
}

.rate-list {
  margin: 32px 0 0;
}

.rate-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid rgba(213, 231, 221, 0.08);
}

.rate-list dt {
  color: var(--muted);
  font-size: 13px;
}

.rate-list dd {
  margin: 0;
  color: var(--text-soft);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
}

.api-footnote {
  margin: 22px 0 0;
  color: var(--muted-deep);
  font-size: 11px;
}

.api-footnote.refund {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--jade);
}

.api-footnote.refund span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--jade);
  box-shadow: 0 0 9px rgba(99, 221, 176, 0.54);
}

.pricing-disclaimer {
  margin: 16px 0 0;
  color: var(--muted-deep);
  font-size: 11px;
  text-align: right;
}

.pricing-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-top: 128px;
  margin-bottom: 48px;
}

.pricing-heading p {
  margin: 0;
  text-align: right;
}

.pricing-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.price-card {
  position: relative;
  display: flex;
  min-height: 370px;
  flex-direction: column;
  padding: 28px 24px 24px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: linear-gradient(180deg, rgba(19, 28, 24, 0.76), rgba(12, 18, 15, 0.68));
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.price-card:hover {
  border-color: rgba(99, 221, 176, 0.25);
  transform: translateY(-4px);
}

.price-card.recommended {
  border-color: var(--copper-border);
  background: linear-gradient(180deg, rgba(50, 37, 25, 0.27), rgba(16, 19, 15, 0.78));
  box-shadow: inset 0 1px rgba(235, 190, 139, 0.08), 0 18px 52px rgba(0, 0, 0, 0.18);
}

.recommended-label {
  position: absolute;
  top: 0;
  right: 20px;
  padding: 5px 9px;
  color: #130d07;
  border-radius: 0 0 6px 6px;
  background: var(--copper-bright);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.package-name {
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
}

.price-card > div:first-of-type p,
.recommended > div:nth-of-type(2) p {
  margin: 7px 0 0;
  color: var(--muted-deep);
  font-size: 12px;
}

.package-price {
  display: flex;
  align-items: flex-start;
  margin-top: 42px;
}

.package-price span {
  margin: 7px 5px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.package-price strong {
  color: var(--text);
  font-size: 46px;
  font-weight: 620;
  line-height: 1;
  letter-spacing: -0.04em;
}

.recommended .package-price strong {
  color: var(--copper-bright);
}

.package-points {
  display: flex;
  gap: 6px;
  align-items: baseline;
  margin-top: 17px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.package-points strong {
  color: var(--text-soft);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 17px;
}

.package-points span {
  color: var(--muted-deep);
  font-size: 11px;
}

.price-card .button {
  width: 100%;
  min-height: 43px;
  margin-top: auto;
}

.invite-note {
  display: flex;
  max-width: 620px;
  gap: 17px;
  align-items: center;
  margin: 40px auto 0;
  padding: 19px 22px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.invite-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  color: var(--jade);
  border: 1px solid var(--jade-border);
  border-radius: 50%;
}

.invite-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.invite-note strong {
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
}

.invite-note p {
  margin: 4px 0 0;
  color: var(--muted-deep);
  font-size: 11px;
}

.downloads {
  overflow: hidden;
  padding-block: 130px;
}

.downloads::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 440px;
  content: "";
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(42, 130, 97, 0.12), transparent 66%);
  transform: translate(-50%, -50%);
}

.download-shell {
  position: relative;
  display: grid;
  min-height: 450px;
  align-items: center;
  gap: 70px;
  padding: 66px 70px;
  overflow: hidden;
  border: 1px solid rgba(213, 231, 221, 0.17);
  border-radius: var(--radius-large);
  background:
    linear-gradient(115deg, rgba(99, 221, 176, 0.045), transparent 32%),
    #0d1411;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
  grid-template-columns: 0.8fr 1.2fr;
}

.download-shell::after {
  position: absolute;
  right: -15%;
  bottom: -42%;
  width: 70%;
  height: 72%;
  content: "";
  opacity: 0.22;
  border-top: 1px solid var(--jade);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.download-copy,
.download-options {
  position: relative;
  z-index: 1;
}

.system-note {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-top: 30px;
  color: var(--muted-deep);
  font-size: 12px;
}

.system-note span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--jade);
  box-shadow: 0 0 9px rgba(99, 221, 176, 0.55);
}

.download-options {
  display: grid;
  gap: 12px;
}

.download-platform {
  display: grid;
  gap: 20px;
  align-items: center;
  padding: 23px 25px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: rgba(7, 11, 10, 0.48);
  grid-template-columns: 1fr auto;
}

.platform-heading {
  display: flex;
  gap: 16px;
  align-items: center;
}

.platform-heading h3 {
  margin: 0;
  color: var(--text);
  font-size: 17px;
  font-weight: 600;
}

.platform-heading p {
  margin: 4px 0 0;
  color: var(--muted-deep);
  font-size: 10px;
}

.platform-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  color: var(--jade);
  border: 1px solid var(--jade-border);
  border-radius: 10px;
  background: rgba(99, 221, 176, 0.045);
}

.windows-icon {
  grid-template-columns: repeat(2, 9px);
  grid-template-rows: repeat(2, 9px);
  gap: 2px;
}

.windows-icon i {
  width: 9px;
  height: 9px;
  background: currentColor;
}

.mac-icon {
  color: var(--copper-bright);
  border-color: var(--copper-border);
  background: rgba(198, 151, 99, 0.045);
}

.mac-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.download-buttons {
  display: flex;
  gap: 8px;
}

.download-buttons .button {
  min-height: 42px;
  padding-inline: 15px;
  font-size: 11px;
}

.faq {
  padding-top: 118px;
  background: linear-gradient(180deg, rgba(12, 18, 15, 0), rgba(12, 18, 15, 0.52));
}

.faq-layout {
  display: grid;
  gap: 90px;
  grid-template-columns: 0.65fr 1.35fr;
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 44px);
  align-self: start;
}

.faq-list {
  border-top: 1px solid var(--border-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--border-strong);
}

.faq-list summary {
  display: flex;
  min-height: 83px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--text-soft);
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 550;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border: 1px solid var(--border);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 11px;
  left: 6px;
  width: 10px;
  height: 1px;
  content: "";
  background: var(--muted);
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary {
  color: var(--jade);
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 760px;
  margin: -7px 0 28px;
  padding-right: 62px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.site-footer {
  padding: 70px 0 28px;
  border-top: 1px solid var(--border);
  background: #070a09;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: clamp(56px, 8vw, 120px);
  padding-bottom: 60px;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-main > div > p {
  margin: 0;
  color: var(--muted-deep);
  font-size: 12px;
}

.site-footer nav {
  display: flex;
  min-width: 110px;
  flex-direction: column;
  gap: 17px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  color: #4d5953;
  border-top: 1px solid rgba(213, 231, 221, 0.07);
  font-size: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.reveal-delay {
  transition-delay: 100ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1260px) {
  .hero-grid {
    grid-template-columns: minmax(330px, 0.85fr) minmax(560px, 1.15fr);
    gap: 42px;
  }

  .hero-studio {
    width: 660px;
  }

  .studio-body {
    min-height: 390px;
  }

  .cinema-frame {
    height: 165px;
  }

  .download-shell {
    gap: 44px;
    padding-inline: 52px;
  }

  .download-platform {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  :root {
    --container: 940px;
  }

  .desktop-nav {
    gap: 22px;
  }

  .hero {
    min-height: auto;
    padding-top: 150px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-studio {
    width: 100%;
  }

  .studio-shell {
    transform: none;
  }

  .workflow-rail {
    gap: 30px 16px;
    grid-template-columns: repeat(3, 1fr);
  }

  .workflow-rail::before {
    display: none;
  }

  .workflow-rail li {
    padding-left: 77px;
    padding-right: 14px;
  }

  .step-number {
    position: absolute;
    top: 0;
    left: 0;
  }

  .workflow-rail strong {
    padding-top: 5px;
  }

  .workflow-rail p {
    max-width: 180px;
  }

  .feature-story,
  .feature-story:nth-of-type(odd) {
    gap: 44px;
    grid-template-columns: 0.8fr 1.2fr;
  }

  .feature-story:nth-of-type(odd) .feature-copy {
    order: 0;
  }

  .feature-copy h3 {
    font-size: 31px;
  }

  .frames-visual {
    padding-inline: 20px;
    grid-template-columns: 1fr 62px 1fr;
  }

  .workbench-demo {
    grid-template-columns: 50px 190px minmax(0, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .download-shell {
    grid-template-columns: 1fr;
  }

  .download-copy {
    max-width: 680px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .section {
    padding-block: 94px;
  }

  .desktop-nav,
  .header-download {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: rgba(13, 20, 17, 0.7);
  }

  .menu-toggle span {
    width: 18px;
    height: 1px;
    background: var(--text-soft);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 28px 22px;
    border-top: 1px solid var(--border);
    background: rgba(7, 11, 10, 0.97);
    backdrop-filter: blur(22px);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    padding: 18px 3px;
    color: var(--text-soft);
    border-bottom: 1px solid var(--border);
    font-size: 17px;
  }

  .hero {
    padding: 130px 0 72px;
  }

  .hero h1 {
    font-size: clamp(42px, 8vw, 60px);
  }

  .hero-copy > p:not(.hero-note) {
    font-size: 16px;
  }

  .studio-main {
    grid-template-columns: 1fr 1.4fr;
  }

  .studio-tasks {
    display: none;
  }

  .workflow-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-story,
  .feature-story:nth-of-type(odd) {
    min-height: auto;
    gap: 38px;
    padding: 58px 0;
    grid-template-columns: 1fr;
  }

  .feature-copy {
    max-width: 640px;
  }

  .feature-visual {
    width: 100%;
  }

  .workbench-heading,
  .pricing-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .pricing-heading p {
    text-align: left;
  }

  .workbench-demo {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .demo-projects {
    display: none;
  }

  .api-compare {
    grid-template-columns: 1fr;
  }

  .compare-divider {
    width: 100%;
    height: 1px;
  }

  .compare-divider span {
    top: 50%;
  }

  .api-mode {
    padding-inline: 32px;
  }

  .pricing-disclaimer {
    text-align: left;
  }

  .faq-layout {
    gap: 50px;
    grid-template-columns: 1fr;
  }

  .faq-heading {
    position: static;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main > div {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding-block: 76px;
  }

  .hero {
    padding-top: 112px;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.19;
  }

  .desktop-break {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-studio {
    margin-top: 12px;
  }

  .studio-topbar {
    grid-template-columns: 1fr auto;
  }

  .studio-project-title {
    display: none;
  }

  .studio-main {
    grid-template-columns: 1fr;
  }

  .studio-sidebar,
  .studio-script {
    display: none;
  }

  .studio-body {
    min-height: auto;
  }

  .cinema-frame {
    height: 220px;
  }

  .studio-timeline {
    grid-template-columns: 58px 1fr;
    height: 116px;
  }

  .timeline-track-labels {
    display: none;
  }

  .timeline-tracks {
    padding-left: 7px;
  }

  .section-intro {
    margin-bottom: 46px;
  }

  .section-intro h2,
  .workbench-heading h2,
  .pricing-heading h2,
  .download-copy h2,
  .faq-heading h2 {
    font-size: 34px;
  }

  .workflow-rail {
    gap: 32px;
    grid-template-columns: 1fr;
  }

  .workflow-rail li {
    min-height: 62px;
  }

  .script-visual {
    min-height: 400px;
    grid-template-columns: 1fr;
  }

  .script-sheet {
    border-right: 0;
  }

  .storyboard-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .board-add {
    display: none;
  }

  .frames-visual {
    min-height: 560px;
    gap: 18px;
    padding: 24px 18px 130px;
    grid-template-columns: 1fr 1fr;
  }

  .frame-image {
    height: 220px;
  }

  .motion-route {
    position: absolute;
    top: 300px;
    right: 30%;
    left: 30%;
    flex-direction: row;
  }

  .motion-route span {
    margin: 0 6px 0 0;
  }

  .motion-route svg {
    display: none;
  }

  .prompt-panel {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .finish-preview {
    min-height: 0;
  }

  .finish-image {
    height: 190px;
  }

  .finish-options {
    flex-wrap: wrap;
  }

  .finish-options button {
    width: 100%;
    margin-left: 0;
  }

  .workbench-tabs {
    width: 100%;
  }

  .workbench-tabs button {
    flex: 1;
    padding-inline: 8px;
  }

  .workbench-demo {
    min-height: 540px;
    grid-template-columns: 1fr;
  }

  .demo-sidebar {
    display: none;
  }

  .demo-panel {
    min-height: 485px;
    padding: 14px;
  }

  .storyboard-grid {
    grid-template-columns: 1fr 1fr;
  }

  .demo-scene {
    height: 120px;
  }

  .task-table {
    overflow-x: auto;
  }

  .task-table > div {
    width: 650px;
  }

  .caption-editor {
    grid-template-columns: 1fr;
  }

  .caption-preview {
    min-height: 235px;
  }

  .caption-list {
    display: none;
  }

  .caption-settings {
    grid-column: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
    padding-block: 17px;
  }

  .caption-settings strong {
    margin-right: 0;
  }

  .caption-settings button {
    width: 100%;
  }

  .api-mode {
    padding: 34px 4px 30px;
  }

  .compare-divider span {
    background: var(--bg);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: 330px;
  }

  .download-shell {
    gap: 42px;
    min-height: auto;
    padding: 44px 20px;
  }

  .download-platform {
    padding: 20px 16px;
  }

  .download-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .faq-list summary {
    min-height: 76px;
    font-size: 15px;
  }

  .faq-list details p {
    padding-right: 16px;
    font-size: 13px;
  }

  .footer-main {
    gap: 40px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 35px;
  }

  .hero-copy > p:not(.hero-note) {
    font-size: 15px;
    overflow-wrap: anywhere;
  }

  .studio-timeline {
    grid-template-columns: 1fr;
  }

  .timeline-tools {
    display: none;
  }

  .frames-visual {
    min-height: 510px;
  }

  .frame-image {
    height: 175px;
  }

  .motion-route {
    top: 252px;
  }

  .storyboard-grid {
    grid-template-columns: 1fr;
  }

  .storyboard-grid article:nth-child(n + 3) {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-main > div {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Program icon and real-client screenshot presentation */
.studio-screenshot {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2201 / 1359;
  object-fit: cover;
}

.studio-proof {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  color: #d9fff1;
  border: 1px solid rgba(99, 221, 176, 0.26);
  border-radius: 999px;
  background: rgba(4, 12, 9, 0.82);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.studio-proof span,
.real-interface-badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--jade);
  box-shadow: 0 0 12px rgba(99, 221, 176, 0.72);
}

.studio-caption {
  margin: 17px 0 0;
  color: var(--muted-deep);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-align: right;
}

.real-workbench.workbench-demo {
  display: block;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(213, 231, 221, 0.18);
  border-radius: var(--radius-large);
  background: #080d0b;
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.48);
}

.real-workbench-bar {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(16, 24, 21, 0.98), rgba(10, 16, 14, 0.98));
}

.real-workbench-bar > div,
.real-interface-badge {
  display: inline-flex;
  align-items: center;
}

.real-workbench-bar > div {
  gap: 10px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.real-workbench-bar img {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.real-interface-badge {
  gap: 7px;
  color: var(--jade-soft);
  font-size: 11px;
  letter-spacing: 0.05em;
}

.real-workbench-panels {
  position: relative;
  background: #060a09;
}

.real-workbench .real-workbench-panel {
  min-height: 0;
  margin: 0;
  padding: 0;
  animation: panel-in 260ms ease both;
}

.real-workbench-panel > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2201 / 1359;
  object-fit: cover;
  background: #070b0a;
}

.real-workbench-panel figcaption {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 18px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: rgba(11, 17, 14, 0.98);
  font-size: 12px;
}

.real-workbench-panel figcaption strong {
  color: var(--text);
  font-size: 13px;
  white-space: nowrap;
}

@media (max-width: 820px) {
  .studio-shell {
    transform: none;
  }

  .studio-caption {
    text-align: left;
  }

  .real-workbench.workbench-demo {
    min-height: 0;
  }

  .real-workbench-panel figcaption {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 520px) {
  .brand-mark {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .studio-proof {
    top: 9px;
    right: 9px;
    min-height: 26px;
    padding-inline: 9px;
    font-size: 9px;
  }

  .studio-caption {
    margin-top: 12px;
    font-size: 10px;
  }

  .real-workbench-bar {
    min-height: 50px;
    padding-inline: 13px;
  }

  .real-workbench-bar > div {
    font-size: 11px;
  }

  .real-workbench-bar img {
    width: 25px;
    height: 25px;
  }

  .real-interface-badge {
    font-size: 9px;
  }

  .real-workbench-panel figcaption {
    padding: 11px 13px;
    font-size: 11px;
  }

  .real-workbench-panel figcaption strong {
    font-size: 12px;
  }
}
