@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;450;500;550;600;650;700&display=swap");
:root {
  color-scheme: dark;
  --bg: #121313;
  --surface: #1a1b1b;
  --text: #f5f3ef;
  --muted: #a6a7a4;
  --line: #333634;
  --accent: #ff865e;
  --font: "DM Sans", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}
::selection {
  background: var(--accent);
  color: var(--bg);
}
button {
  cursor: pointer;
}
[hidden] {
  display: none !important;
}
.skip {
  position: fixed;
  top: -100px;
  left: 16px;
  padding: 12px;
  background: var(--accent);
  color: var(--bg);
  z-index: 99;
}
.skip:focus {
  top: 12px;
}
.header {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4.7%;
  border-bottom: 1px solid #ffffff0e;
  background: #121313ed;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.1;
  letter-spacing: -0.055em;
  font-weight: 650;
  font-size: 29px;
}
.header nav {
  display: flex;
  gap: 36px;
  font-size: 13px;
  color: #c1c2bd;
}
.header nav a:hover,
.text-link:hover,
.footer a:hover {
  color: var(--accent);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  min-height: 50px;
  transition:
    background 0.2s,
    transform 0.2s,
    border-color 0.2s;
}
.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.button:hover {
  transform: translateY(-2px);
}
.button.primary {
  background: var(--accent);
  color: #1c1714;
}
.button.primary:hover {
  background: #ffa180;
}
.button.outline {
  border-color: #4c4e4c;
  background: transparent;
}
.button.outline:hover {
  border-color: #aaa;
}
.button.small {
  padding: 9px 17px;
  min-height: 40px;
  font-size: 13px;
  gap: 18px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.text-link span {
  transition: transform 0.2s;
}
.text-link:hover span {
  transform: translate(2px, -2px);
}
.hero {
  overflow: hidden;
  background: var(--bg);
}
.hero-copy {
  text-align: center;
  padding: 48px 24px 35px;
}
.eyebrow {
  margin: 0 0 24px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.9px;
  line-height: 1.5;
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin: 0 9px 1px 0;
}
.hero .eyebrow {
  color: var(--muted);
  margin-bottom: 17px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
}
h1 {
  font-size: clamp(42px, 6.2vw, 90px);
  line-height: 1.08;
  letter-spacing: -0.065em;
  margin: 0 0 18px;
}
.hero h1 {
  font-size: clamp(108px, 14.2vw, 190px);
  font-weight: 650;
  line-height: 0.9;
  letter-spacing: -0.075em;
  margin: 25px 0 24px;
}
.accent {
  color: var(--accent);
}
.hero-promise {
  font-size: clamp(25px, 2.8vw, 39px);
  letter-spacing: -0.045em;
  line-height: 1.3;
  margin-bottom: 15px;
}
.hero-promise span {
  color: var(--accent);
}
.hero-description {
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 22px;
}
.actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
.micro {
  font-size: 11px;
  color: #a1a29e;
  margin: 13px 0 0;
}
.film-stage {
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
  scroll-margin-top: 100px;
}
.film-frame {
  overflow: hidden;
  background: #0c0e0e;
  border-radius: 10px;
  border: 1px solid #454741;
}
.launch-film {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #0c0e0e;
}
.film-stage figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0 0;
}
.film-kicker {
  display: block;
  color: var(--text);
  font-size: 10px;
  letter-spacing: 1.4px;
}
.film-duration {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}
.film-sound {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid #4c4e4c;
  border-radius: 6px;
  background: transparent;
  color: var(--text);
  font-size: 12px;
  white-space: nowrap;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.film-sound:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.film-sound[hidden] {
  display: none;
}
.section-frame {
  max-width: 1220px;
  padding: 0 60px;
  margin: 0 auto;
}
.section-space {
  padding-top: 120px;
  padding-bottom: 120px;
}
h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.13;
  letter-spacing: -0.055em;
  margin-bottom: 26px;
}
.muted {
  color: #878d84;
}
.section-heading {
  margin-bottom: 56px;
}
.section-heading h2 {
  margin: 0;
}
.workflow-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}
.step-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #81877f;
  font-size: 11px;
  letter-spacing: 1px;
  border-top: 1px solid var(--line);
  padding: 20px 0 40px;
}
.step-number > span {
  font-size: 22px;
  color: var(--accent);
}
h3 {
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -0.035em;
  margin: 0 0 13px;
}
.workflow-steps p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 27px;
  max-width: 310px;
  line-height: 1.7;
}
.step-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: #858c82;
  min-height: 27px;
}
.step-note > span {
  font-size: 17px;
  color: #b4b9b0;
}
.step-note.prompt-example {
  font-size: 12px;
  font-weight: 500;
  color: #e7b7a5;
  gap: 5px;
}
.prompt-example > span {
  color: #e7b7a5;
  font-size: 20px;
}
.control-section {
  background: #ecebe5;
  color: #20231f;
}
.control-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  padding-top: 95px;
  padding-bottom: 95px;
}
.control-heading {
  position: sticky;
  top: 140px;
  align-self: start;
}
.control-heading .eyebrow {
  color: #686d62;
}
.control-heading h2 {
  font-size: clamp(36px, 3.6vw, 49px);
}
.control-heading h2 > span {
  color: #7b806f;
}
.control-heading > p:last-child {
  font-size: 16px;
  color: #676e63;
  margin-bottom: 0;
}
.control-details > div {
  display: flex;
  gap: 25px;
  padding: 30px 0;
  border-top: 1px solid #c9cec2;
}
.control-details > div:first-child {
  padding-top: 0;
  border-top: 0;
}
.control-details > div:last-child {
  padding-bottom: 0;
}
.detail-symbol {
  font-size: 10px;
  letter-spacing: 0.6px;
  padding-top: 5px;
  color: #747c6d;
}
.control-details h3 {
  font-size: 21px;
}
.control-details p {
  font-size: 14px;
  line-height: 1.7;
  color: #626a5c;
  margin: 0;
}
.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.faq h2 {
  font-size: clamp(32px, 3.3vw, 46px);
}
.faq .eyebrow {
  color: var(--muted);
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 23px 0;
  list-style: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.025em;
}
summary::-webkit-details-marker {
  display: none;
}
summary > span {
  font-size: 21px;
  font-weight: 400;
  color: #9da496;
  line-height: 1;
  transition: transform 0.2s;
}
details[open] summary > span {
  transform: rotate(45deg);
}
details > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
  padding: 0 25px 25px 0;
}
details a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.download {
  background: #20241f;
  border-top: 1px solid #373d33;
  border-bottom: 1px solid #373d33;
}
.download-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 95px;
  padding-top: 95px;
  padding-bottom: 95px;
}
.download .eyebrow {
  color: #b8c0b0;
  font-size: 9px;
}
.download h2 {
  font-size: clamp(42px, 4.8vw, 65px);
  line-height: 1.06;
}
.download h2 > span {
  color: var(--accent);
}
.download-copy > p:not(.eyebrow) {
  color: #b3bdae;
  font-size: 16px;
}
.download-link {
  margin-top: 15px;
}
.download-copy .download-meta {
  font-size: 11px !important;
  margin: 13px 0 0;
}
.install {
  padding-top: 7px;
}
.install > h3 {
  font-size: 17px;
}
.install ol {
  list-style: none;
  padding: 0;
  margin: 26px 0 32px;
}
.install li {
  display: flex;
  gap: 18px;
  align-items: baseline;
  margin: 15px 0;
}
.install li > span {
  flex-shrink: 0;
  font-size: 11px;
  color: #9fae95;
}
.install li p {
  font-size: 13px;
  color: #bec7b8;
  margin: 0;
}
.release-note {
  border-top: 1px solid #48513f;
  padding-top: 22px;
}
.release-note strong {
  font-size: 12px;
  font-weight: 550;
}
.release-note p {
  font-size: 12px;
  color: #b3bdae;
  line-height: 1.65;
  margin: 8px 0 12px;
}
.release-note .text-link {
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 4px;
  gap: 6px;
}
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
  padding-top: 45px;
  padding-bottom: 30px;
}
.footer .wordmark {
  font-size: 27px;
}
.footer p {
  color: #81877d;
  font-size: 12px;
  margin: 0;
}
.footer > div {
  display: flex;
  gap: 25px;
  font-size: 11px;
  color: #afb5a8;
}
.copyright {
  flex-basis: 100%;
  color: #717a68;
  font-size: 10px;
  margin-top: 15px;
}
.document {
  max-width: 860px;
  margin: 0 auto;
  padding: 90px 30px 110px;
}
.document h1 {
  font-size: clamp(42px, 7vw, 75px);
  margin-bottom: 36px;
}
.document > p,
.document li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
.document h2 {
  font-size: 25px;
  margin: 44px 0 18px;
  letter-spacing: -0.03em;
}
.document code {
  font-size: 12px;
  overflow-wrap: anywhere;
  color: #d7ddcd;
}
.document a:not(.button) {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--text);
}
.document .button {
  margin-top: 20px;
}
.document ul {
  padding-left: 22px;
}
.hero-enter {
  animation: arrive 0.7s both;
}
.hero-enter:nth-child(2) {
  animation-delay: 0.08s;
}
.hero-enter:nth-child(3) {
  animation-delay: 0.16s;
}
.hero-enter:nth-child(4) {
  animation-delay: 0.22s;
}
.hero-enter:nth-child(5) {
  animation-delay: 0.28s;
}
.hero-enter:nth-child(6) {
  animation-delay: 0.34s;
}
.film-stage {
  animation: arrive 1s 0.25s both;
}
.will-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.will-reveal.seen {
  opacity: 1;
  transform: translateY(0);
}
@keyframes arrive {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 1600px) {
  .hero-copy {
    padding-top: 70px;
    padding-bottom: 50px;
  }
}
@media (max-width: 950px) {
  .section-frame {
    padding-left: 32px;
    padding-right: 32px;
  }
  .section-space {
    padding-top: 88px;
    padding-bottom: 88px;
  }
  .film-stage {
    width: calc(100% - 64px);
  }
  .workflow-steps {
    gap: 25px;
  }
  .control-inner,
  .download-inner {
    gap: 48px;
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .faq {
    gap: 40px;
  }
  .hero-copy {
    padding-top: 44px;
  }
  .control-heading {
    position: static;
  }
  .hero-promise {
    font-size: 24px;
  }
}
@media (max-width: 650px) {
  html {
    scroll-padding-top: 86px;
  }
  .header {
    height: 68px;
    padding: 0 22px;
  }
  .header nav {
    display: none;
  }
  .wordmark {
    font-size: 25px;
    gap: 8px;
  }
  .wordmark img {
    width: 28px;
    height: 28px;
  }
  .button.small {
    padding: 7px 13px;
    gap: 12px;
    font-size: 11px;
    min-height: 38px;
  }
  .hero-copy {
    padding: 43px 22px 34px;
  }
  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: 1.5px;
    margin-bottom: 21px;
  }
  h1 {
    font-size: clamp(43px, 10.5vw, 62px);
    max-width: 480px;
    line-height: 1.05;
    margin: 0 auto 22px;
    letter-spacing: -0.06em;
  }
  .hero h1 {
    font-size: clamp(88px, 24vw, 150px);
    margin: 23px auto 24px;
  }
  .hero-promise {
    font-size: 27px;
    max-width: 370px;
    margin: 0 auto 18px;
    line-height: 1.35;
  }
  .hero-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .actions {
    gap: 15px;
  }
  .actions .button {
    font-size: 12px;
    min-height: 48px;
    padding: 12px 16px;
    gap: 8px;
  }
  .actions .text-link {
    font-size: 12px;
    gap: 8px;
  }
  .micro {
    font-size: 9px;
    margin-top: 15px;
  }
  .film-stage {
    width: calc(100% - 32px);
    scroll-margin-top: 90px;
  }
  .film-frame {
    border-radius: 6px;
  }

  .film-stage figcaption {
    padding-top: 15px;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    text-align: center;
    font-size: 9px;
  }

  .section-frame {
    padding-left: 25px;
    padding-right: 25px;
  }
  .section-space {
    padding-top: 74px;
    padding-bottom: 74px;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
  }
  h2 {
    font-size: 35px;
  }
  .section-heading {
    margin-bottom: 38px;
  }
  .workflow-steps {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .step-number {
    padding: 16px 0 23px;
  }
  .workflow-steps p {
    max-width: none;
    margin-bottom: 17px;
  }
  .workflow-steps h3 {
    font-size: 23px;
    margin-bottom: 10px;
  }
  .step-note {
    font-size: 11px;
  }
  .control-inner {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .control-heading h2 {
    font-size: 35px;
  }
  .control-heading > p:last-child {
    font-size: 15px;
  }
  .control-details > div {
    padding: 25px 0;
    gap: 20px;
  }
  .control-details h3 {
    font-size: 21px;
  }
  .control-details p {
    font-size: 14px;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .faq h2 {
    font-size: 35px;
  }
  .faq-list {
    margin-top: 12px;
  }
  summary {
    font-size: 15px;
    padding: 22px 0;
  }
  details > p {
    font-size: 13px;
  }
  .download-inner {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .download h2 {
    font-size: 47px;
  }
  .download-link {
    font-size: 13px;
    margin-top: 10px;
  }
  .install > h3 {
    font-size: 19px;
  }
  .footer {
    padding-top: 32px;
    gap: 30px;
  }
  .footer p {
    display: none;
  }
  .footer > div {
    gap: 18px;
    font-size: 10px;
    flex-basis: 100%;
  }
  .copyright {
    margin-top: -5px;
  }

  .document {
    padding-top: 60px;
  }
}
@media (max-width: 359px) {
  .header {
    padding: 0 16px;
  }
  .hero-copy {
    padding-left: 14px;
    padding-right: 14px;
  }
  h1 {
    font-size: 42px;
  }
  .hero-promise {
    font-size: 25px;
  }
  .actions {
    gap: 12px;
  }
  .actions .button {
    font-size: 11px;
    padding: 11px 12px;
  }
  .actions .text-link {
    font-size: 11px;
  }
  .section-frame {
    padding-left: 21px;
    padding-right: 21px;
  }
  h2,
  .faq h2,
  .control-heading h2 {
    font-size: 31px;
  }
  .download h2 {
    font-size: 42px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .will-reveal {
    opacity: 1;
    transform: none;
  }
}
