@font-face {
  font-family: Pretendard;
  src: url('assets/fonts/PretendardVariable.woff2') format('woff2');
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --ink: #111;
  --paper: #fff;
  --red: #ff2d2d;
  --action: #db2020;
  --muted: #656565;
  --line: #dedede;
  --light: #f3f3f3;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --gutter: clamp(24px, 5vw, 88px);
  --header: 80px;
  --content: 1440px;
  font-family:
    Pretendard,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  color: var(--ink);
  font-synthesis: none;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 24px);
}
body {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.015em;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
button,
input,
textarea {
  font: inherit;
  color: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  border: 0;
}
button:disabled {
  cursor: wait;
}
img,
video,
svg {
  display: block;
  max-width: 100%;
}
img {
  height: auto;
}
button,
input,
textarea {
  border-radius: 0;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h2,
h3 {
  word-break: keep-all;
}
p {
  word-break: keep-all;
  overflow-wrap: break-word;
}
h2 {
  font-size: clamp(34px, 4.25vw, 64px);
  line-height: 1.23;
  letter-spacing: -0.05em;
  font-weight: 600;
}
h3 {
  font-weight: 600;
  letter-spacing: -0.035em;
}
em {
  font-style: normal;
}
[hidden] {
  display: none !important;
}
::selection {
  background: var(--red);
  color: #fff;
}
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 5px;
}
.dark {
  color: #fff;
  background: var(--ink);
}
.container {
  width: 100%;
  max-width: var(--content);
  padding: 0 var(--gutter);
  margin-inline: auto;
}
.section-space {
  padding-block: 120px;
}
.red {
  color: var(--red);
}
.secondary {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.85;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.6;
}
.live-dot {
  display: inline-block;
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}
.section-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 54px;
}
.section-index {
  font-size: 13px;
  color: var(--muted);
}
.dark .section-index {
  color: #aaa;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  padding: 12px 20px;
  background: #fff;
  color: #111;
  z-index: 300;
}
.skip-link:focus {
  top: 16px;
}
.button {
  display: inline-flex;
  gap: 36px;
  min-height: 54px;
  padding: 14px 22px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.5;
  transition:
    background 0.2s,
    transform 0.2s,
    border-color 0.2s;
}
.button span {
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
}
.button.primary {
  background: var(--action);
  color: #fff;
}
.button.primary:hover {
  background: #bd1717;
}
.button:active {
  transform: translateY(1px);
}
.button.black {
  background: var(--ink);
  color: #fff;
}
.button.black:hover {
  background: #333;
}
.button.outline {
  border-color: var(--line);
  background: transparent;
}
.button.outline:hover {
  border-color: #111;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  border-bottom: 1px solid currentColor;
  line-height: 1.7;
}
.text-link span {
  font-size: 20px;
  line-height: 1;
  transition: transform 0.2s;
}
.text-link:hover span {
  transform: translate(2px, -2px);
}
.text-link.light {
  color: #ddd;
  border-color: #555;
}
.text-link.muted {
  color: var(--muted);
}
/* Identity from the source brand guide: original symbol geometry, medium wordmark. */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}
.brand-symbol {
  width: 57px;
  height: 30px;
  overflow: visible;
}
.brand > span {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
}
.mini-symbol {
  width: 32px;
  height: 17px;
  flex: none;
}
.site-header {
  height: var(--header);
  position: sticky;
  top: 0;
  z-index: 80;
  background: #111;
  color: #fff;
  transition:
    background 0.25s,
    color 0.25s;
  border-bottom: 1px solid #303030;
}
.site-header.scrolled {
  background: #fff;
  color: #111;
  border-bottom-color: var(--line);
}
.site-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform-origin: left;
  transform: scaleX(var(--scroll-progress, 0));
}
.header-inner {
  height: 100%;
  max-width: var(--content);
  padding-inline: var(--gutter);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.desktop-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
.desktop-nav a {
  font-size: 14px;
  color: #c6c6c6;
  transition: color 0.2s;
}
.desktop-nav a:hover {
  color: #fff;
}
.scrolled .desktop-nav a {
  color: #595959;
}
.scrolled .desktop-nav a:hover {
  color: #111;
}
.header-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.header-login {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border: 1px solid #555;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 14px;
  min-height: 40px;
  transition: background 0.2s;
}
.header-login:hover {
  background: #292929;
}
.scrolled .header-login {
  border-color: #d1d1d1;
}
.scrolled .header-login:hover {
  background: #f3f3f3;
}
.header-login span {
  font-size: 20px;
}
.menu-toggle {
  display: none;
  background: transparent;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 10px;
}
.menu-toggle span {
  width: 24px;
  height: 1px;
  background: currentColor;
  transition: transform 0.2s;
}
.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: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 16px var(--gutter) 28px;
  background: inherit;
  border-bottom: 1px solid #555;
}
.mobile-menu a {
  display: flex;
  justify-content: space-between;
  padding: 17px 0;
  border-bottom: 1px solid #7775;
  font-size: 20px;
}
.mobile-menu a span {
  font-size: 12px;
  letter-spacing: 0.1em;
}
/* The company is the opening statement; the product is the next connection. */
.brand-hero {
  padding: 45px 0 0;
  overflow: hidden;
}
.hero-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #aaa;
}
.hero-edition {
  font-size: 12px;
  letter-spacing: 0.1em;
}
.hero-title {
  font-size: clamp(40px, 9.5vw, 144px);
  letter-spacing: 0.09em;
  line-height: 1.1;
  font-weight: 600;
  padding: 42px 0 46px;
}
.hero-title > span {
  display: block;
  white-space: nowrap;
  animation: arrive 0.9s var(--ease) both;
}
.hero-title > span:nth-child(2) {
  animation-delay: 0.1s;
}
.title-dot {
  color: var(--red);
  letter-spacing: 0;
  margin-left: -0.025em;
}
.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 44px;
  padding-bottom: 48px;
}
.hero-message > p {
  font-size: clamp(20px, 2vw, 29px);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.03em;
}
.hero-message em {
  color: #c0c0c0;
}
.hero-message .text-link {
  margin-top: 24px;
  font-size: 13px;
  border-bottom: 0;
  gap: 35px;
}
.hero-film {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0;
  text-align: left;
  background: transparent;
  color: #fff;
  width: 440px;
  max-width: 45%;
}
.hero-film-image {
  position: relative;
  width: 168px;
  flex: 0 0 168px;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #333;
  border-radius: 3px;
}
.hero-film-image img {
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  transition:
    filter 0.3s,
    transform 0.5s var(--ease);
}
.hero-film:hover img {
  filter: brightness(0.9);
  transform: scale(1.045);
}
.hero-film-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.hero-film-text > .eyebrow {
  color: #aaa;
  font-size: 12px;
  letter-spacing: 0.13em;
}
.hero-film-text > strong {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.hero-film-text > span:last-child {
  font-size: 12px;
  color: #aaa;
  line-height: 1.8;
}
.hero-film-text b {
  display: block;
  font-weight: 400;
  letter-spacing: 0.09em;
  margin-top: 8px;
  color: #fff;
}
.hero-baseline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid #353535;
  font-size: 12px;
  color: #aaa;
}
.hero-baseline > a {
  display: flex;
  gap: 36px;
  letter-spacing: 0.08em;
  color: #ddd;
}
.hero-baseline > a span {
  font-size: 16px;
}
.round-play {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #111;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.round-play svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  margin-right: 4px;
}
.round-play.small {
  width: 40px;
  height: 40px;
}
.round-play.small svg {
  width: 17px;
  height: 17px;
  margin-right: 3px;
}
.hero-film-image > .round-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: start;
}
.about-heading h2 {
  font-size: clamp(34px, 4.1vw, 60px);
}
.about-copy > p:first-child {
  font-size: 20px;
  line-height: 1.85;
  letter-spacing: -0.025em;
}
.about-copy .secondary {
  margin-top: 25px;
  font-size: 15px;
}
.connection-list {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
}
.connection-item {
  position: relative;
  padding: 30px 24px 24px 0;
}
.connection-item + .connection-item {
  padding-left: 32px;
  border-left: 1px solid var(--line);
}
.connection-number {
  font-size: 12px;
  color: #777;
  font-variant-numeric: tabular-nums;
}
.connection-item h3 {
  font-size: 27px;
  margin: 24px 0 8px;
}
.connection-item h3 span {
  color: var(--red);
  font-size: 26px;
  margin: 0 4px;
}
.connection-item p {
  font-size: 15px;
  color: var(--muted);
}
.about-transition {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 70px;
}
.transition-line {
  height: 1px;
  background: var(--line);
  flex: 1;
}
.about-transition p {
  font-size: 16px;
}
.about-transition a {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 22px;
}
.about-transition a:hover {
  background: var(--light);
}
.studio-section {
  background: var(--light);
  border-top: 1px solid #e9e9e9;
  padding-bottom: 85px;
}
.product-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 60px;
}
.product-heading h2 {
  position: relative;
  font-size: clamp(56px, 6.7vw, 102px);
  letter-spacing: -0.025em;
  font-weight: 500;
  line-height: 1.02;
  white-space: nowrap;
}
.product-heading h2 > span {
  font-weight: 600;
  letter-spacing: -0.04em;
}
.product-period {
  display: inline-block;
  width: 0.13em;
  height: 0.13em;
  border-radius: 50%;
  background: var(--red);
  margin-left: 0.08em;
}
.product-lede {
  font-size: 27px;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.product-heading .secondary {
  font-size: 16px;
}
.product-heading .button {
  margin-top: 28px;
}
.product-film {
  border: 1px solid #333;
  background: #181818;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 28px 65px -35px #0004;
}
.film-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.1em;
}
.film-toolbar > span {
  display: flex;
  align-items: center;
  gap: 12px;
}
.film-toolbar-note {
  font-size: 12px;
  color: #aaa;
}
.film-toolbar-note .live-dot {
  width: 5px;
  height: 5px;
}
.film-screen {
  position: relative;
  background: #e7e7e7;
  aspect-ratio: 16/9;
}
.film-screen > video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.film-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  background: #1119;
  color: #fff;
}
.film-cover-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 24px;
}
.film-cover-content > strong {
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.035em;
  margin-top: 8px;
}
.film-cover-content > span:last-child {
  font-size: 14px;
  color: #eee;
}
.film-cover:hover .round-play {
  transform: scale(1.08);
}
.film-chapters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.film-chapters button {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #181818;
  color: #ddd;
  padding: 22px;
  border-right: 1px solid #3a3a3a;
  transition: background 0.2s;
}
.film-chapters button:last-child {
  border-right: 0;
}
.film-chapters button:hover,
.film-chapters button.active {
  background: #2a2a2a;
  color: #fff;
}
.film-chapters button.active {
  box-shadow: inset 0 2px var(--red);
}
.film-chapters button > span {
  font-size: 12px;
  color: #9b9b9b;
  letter-spacing: 0.08em;
}
.film-chapters strong {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.film-chapters small {
  margin-left: auto;
  font-size: 12px;
  color: #aaa;
  font-variant-numeric: tabular-nums;
}
.film-caption {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
  font-size: 12px;
  color: #666;
}
.film-caption > span:first-child {
  letter-spacing: 0.08em;
}
.feature-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-end;
  margin-bottom: 55px;
}
.feature-heading h2 {
  font-size: clamp(32px, 3.8vw, 54px);
}
.feature-heading .text-link {
  white-space: nowrap;
}
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #111;
}
.feature {
  padding: 27px 32px 0 0;
}
.feature + .feature {
  padding-left: 32px;
  border-left: 1px solid var(--line);
}
.feature-number {
  font-size: 12px;
  letter-spacing: 0.13em;
  color: #666;
}
.feature-icon {
  margin: 38px 0 28px;
}
.feature-icon svg {
  height: 42px;
  width: 42px;
  stroke: #111;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature h3 {
  font-size: 25px;
  line-height: 1.4;
  margin-bottom: 18px;
}
.feature p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
}
/* The extra section height is the scroll distance for the three fixed cards. */
html.feature-scroll-layout {
  overflow-anchor: none;
  scroll-behavior: auto;
}
.possibility-section.is-scroll-story {
  height: calc(var(--feature-stage-height) + var(--feature-scroll-distance));
  padding-block: 0;
}
.is-scroll-story .feature-stage {
  position: sticky;
  top: var(--header);
  min-height: var(--feature-viewport);
  padding-block: clamp(32px, 5vh, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.has-feature-scroll .feature {
  opacity: var(--feature-progress, 1);
}
.has-feature-scroll .feature > * {
  transform: translateY(calc(28px * (1 - var(--feature-progress, 1))));
}
@media print, (prefers-reduced-motion: reduce) {
  .possibility-section.is-scroll-story {
    height: auto;
    padding-block: 70px;
  }
  .is-scroll-story .feature-stage {
    position: static;
    min-height: 0;
    padding-block: 0;
  }
  .has-feature-scroll .feature {
    opacity: 1;
  }
  .has-feature-scroll .feature > * {
    transform: none;
  }
}
.experience-section {
  background: #151515;
}
.experience-heading {
  display: flex;
  gap: 60px;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.experience-heading h2 {
  font-size: clamp(34px, 4.2vw, 61px);
}
.experience-heading > p {
  color: #b2b2b2;
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 4px;
}
.demo-shell {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  border: 1px solid #414141;
  border-radius: 8px;
  overflow: hidden;
  color: #111;
}
.demo-sidebar {
  background: #202020;
  color: #fff;
  padding: 28px 23px;
  display: flex;
  flex-direction: column;
}
.demo-brand {
  display: flex;
  gap: 10px;
  align-items: center;
}
.demo-brand strong {
  font-size: 14px;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.demo-brand > span {
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 3px 5px;
  border: 1px solid #606060;
  border-radius: 2px;
  margin-left: auto;
}
.demo-steps {
  list-style: none;
  padding: 0;
  margin: 55px 0 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.demo-steps li {
  display: flex;
  gap: 14px;
  padding: 15px 10px;
  color: #999;
  border: 1px solid transparent;
  border-radius: 4px;
}
.demo-steps li > span {
  font-size: 12px;
  margin-top: 3px;
  font-variant-numeric: tabular-nums;
}
.demo-steps li strong {
  display: block;
  font-weight: 500;
  font-size: 14px;
}
.demo-steps li small {
  display: block;
  font-size: 12px;
  margin-top: 4px;
  color: #aaa;
}
.demo-steps li.active {
  background: #303030;
  border-color: #414141;
  color: #fff;
}
.demo-steps li.active > span {
  color: #ff6c6c;
}
.demo-steps li.complete > span {
  color: #ddd;
}
.demo-sidebar-bottom {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #aaa;
  font-size: 12px;
  margin-top: auto;
  padding-top: 48px;
}
.demo-sidebar-bottom > .live-dot {
  width: 5px;
  height: 5px;
}
.demo-content {
  background: #fff;
  min-width: 0;
  min-height: 630px;
}
.demo-panel {
  padding: 38px 42px;
  animation: arrive 0.35s var(--ease);
}
.demo-panel-heading {
  margin-bottom: 26px;
}
.demo-panel-heading > .eyebrow {
  font-size: 12px;
  color: #717171;
  letter-spacing: 0.12em;
}
.demo-panel-heading h3 {
  font-size: 27px;
  margin-top: 8px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}
.demo-panel-heading p {
  font-size: 14px;
  line-height: 1.7;
  color: #707070;
  margin-top: 6px;
}
.demo-presets {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
.demo-presets button {
  padding: 7px 13px;
  border-radius: 4px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 13px;
  color: #555;
  min-height: 36px;
}
.demo-presets button[aria-pressed='true'] {
  background: #111;
  border-color: #111;
  color: #fff;
}
.demo-presets button:hover {
  border-color: #111;
}
.field {
  margin-bottom: 18px;
}
.field > label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}
.field > label > span {
  font-size: 12px;
  color: #737373;
  font-weight: 400;
}
.field input,
.field textarea {
  width: 100%;
  min-width: 0;
  display: block;
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 15px;
  line-height: 1.6;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.field textarea {
  resize: vertical;
  min-height: 100px;
  max-height: 280px;
}
.field input:focus,
.field textarea:focus {
  outline: 0;
  border-color: #222;
  box-shadow: 0 0 0 3px #1111110a;
  background: #fff;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #818181;
}
.demo-form-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}
.demo-form-bottom > span {
  font-size: 12px;
  color: #767676;
  max-width: 190px;
  line-height: 1.6;
  word-break: keep-all;
}
.demo-form-bottom > .button {
  font-size: 14px;
  flex-shrink: 0;
  min-height: 48px;
}
.script-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.script-card {
  padding: 17px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: #fafafa;
}
.script-card-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.script-card-heading > span {
  color: #b32020;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}
.script-card-heading > h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}
.script-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #4a4a4a;
  white-space: pre-line;
  overflow-wrap: anywhere;
}
.demo-result-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
}
.demo-result-actions .button {
  min-height: 48px;
  font-size: 14px;
}
.demo-result-actions .text-link {
  font-size: 13px;
  border: 0;
  gap: 12px;
}
.demo-sample {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111;
  border-radius: 4px;
  text-align: left;
  padding: 0;
  color: #fff;
}
.demo-sample img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.demo-sample-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 24px;
  background: #111a;
}
.demo-sample-overlay strong {
  display: block;
  font-size: 16px;
  font-weight: 500;
}
.demo-sample-overlay small {
  display: block;
  font-size: 12px;
  color: #ddd;
  margin-top: 4px;
}
.demo-handoff {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 16px;
}
.demo-handoff > span {
  min-width: 0;
}
.demo-handoff strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  overflow-wrap: anywhere;
}
.demo-handoff small {
  display: block;
  font-size: 12px;
  color: #767676;
  margin-top: 4px;
}
.demo-handoff .button {
  flex-shrink: 0;
  font-size: 13px;
  gap: 16px;
  min-height: 48px;
}
.demo-panel > .text-link {
  font-size: 13px;
  border: 0;
  gap: 12px;
}
.demo-footnote {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  color: #a8a8a8;
  font-size: 12px;
  margin-top: 18px;
  line-height: 1.7;
}
.noscript-message {
  padding-top: 20px;
}
.noscript-message a {
  text-decoration: underline;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}
.faq-layout .eyebrow {
  font-size: 12px;
  color: #666;
}
.faq-layout h2 {
  margin-top: 27px;
}
.faq-list {
  border-top: 1px solid #111;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 17px;
  font-weight: 500;
  padding: 26px 0;
  word-break: keep-all;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  font-size: 26px;
  line-height: 1;
  font-weight: 300;
  color: #555;
  transition: transform 0.2s;
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
}
.faq-list details > p {
  color: #646464;
  font-size: 16px;
  line-height: 1.85;
  padding: 0 30px 26px 0;
}
.closing-section {
  padding: 100px 0 112px;
  background: var(--light);
  border-top: 1px solid #e3e3e3;
}
.closing-section .container {
  position: relative;
}
.closing-section h2 {
  font-size: clamp(38px, 5.8vw, 85px);
  line-height: 1.2;
  margin: 26px 0 36px;
  font-weight: 500;
  letter-spacing: -0.045em;
}
.closing-section .button {
  position: absolute;
  right: var(--gutter);
  bottom: 12px;
}
.closing-section .eyebrow {
  color: #666;
}
.site-footer {
  padding: 50px 0 22px;
}
.footer-main {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-bottom: 45px;
}
.footer-main > p {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #b1b1b1;
  margin-left: 15px;
}
.footer-main nav {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  font-size: 13px;
  color: #ddd;
}
.footer-main nav a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid #393939;
  font-size: 12px;
  color: #aaa;
}
.footer-bottom > span:nth-child(2) {
  letter-spacing: 0.08em;
}
.footer-bottom > a {
  font-size: 12px;
  letter-spacing: 0.07em;
}
.video-dialog {
  width: min(1080px, calc(100% - 40px));
  max-height: 90svh;
  padding: 24px;
  background: #151515;
  color: #fff;
  border: 1px solid #555;
  border-radius: 8px;
  overflow: auto;
}
.video-dialog::backdrop {
  background: #000d;
}
.video-dialog[open] {
  animation: arrive 0.25s var(--ease);
}
.video-dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}
.video-dialog-header .eyebrow {
  font-size: 12px;
  color: #aaa;
}
.video-dialog-header h2 {
  font-size: 22px;
  margin-top: 5px;
}
.icon-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid #555;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  font-size: 18px;
  flex-shrink: 0;
}
.icon-button:hover {
  background: #333;
}
.video-dialog video {
  width: 100%;
  max-height: 65svh;
  aspect-ratio: 16/9;
  object-fit: contain;
  background: #000;
}
.video-dialog > p {
  font-size: 12px;
  color: #aaa;
  margin-top: 15px;
}
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  max-width: calc(100% - 32px);
  width: max-content;
  z-index: 250;
  background: #fff;
  color: #111;
  padding: 15px 22px;
  border: 1px solid #ccc;
  box-shadow: 0 8px 40px #0002;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.6;
}
/* Content stays visible unless the scroll observer has prepared it. */
[data-reveal] {
  --reveal-animation: scroll-reveal;
  --reveal-distance: 24px;
  --reveal-slide: 36px;
  --reveal-x: 0px;
  --reveal-duration: 650ms;
  --reveal-tempo: 1;
  --reveal-stagger: 100ms;
  --reveal-order: 0;
  --reveal-scale: 1;
  --reveal-inset: 8%;
}
[data-reveal='fade'] {
  --reveal-distance: 0px;
  --reveal-duration: 450ms;
}
[data-reveal='left'],
[data-reveal='right'] {
  --reveal-distance: 0px;
  --reveal-duration: 750ms;
}
[data-reveal='left'] {
  --reveal-x: calc(-1 * var(--reveal-slide));
}
[data-reveal='right'] {
  --reveal-x: var(--reveal-slide);
}
[data-reveal='title'] {
  --reveal-animation: scroll-reveal-title;
  --reveal-duration: 950ms;
}
[data-reveal='wipe'] {
  --reveal-animation: scroll-reveal-wipe;
  --reveal-duration: 850ms;
}
[data-reveal='zoom'] {
  --reveal-distance: 0px;
  --reveal-scale: 0.94;
  --reveal-duration: 850ms;
}
[data-reveal='cinema'] {
  --reveal-animation: scroll-reveal-cinema;
  --reveal-duration: 1150ms;
}
[data-reveal='expand'] {
  --reveal-animation: scroll-reveal-expand;
  --reveal-duration: 1000ms;
}
[data-reveal='focus'] {
  --reveal-distance: 0px;
  --reveal-scale: 1.06;
  --reveal-duration: 1100ms;
}
[data-reveal-delay='1'] {
  --reveal-order: 1;
}
[data-reveal-delay='2'] {
  --reveal-order: 2;
}
[data-reveal-delay='3'] {
  --reveal-order: 3;
}
[data-reveal].reveal-pending {
  /* Keep the observed bounds stable, including content at the page bottom. */
  opacity: 0;
}
[data-reveal].reveal-running {
  animation: var(--reveal-animation) calc(var(--reveal-duration) * var(--reveal-tempo)) var(--ease)
    both;
  animation-delay: calc(var(--reveal-order) * var(--reveal-stagger));
}
@keyframes scroll-reveal {
  from {
    opacity: 0;
    transform: translate(var(--reveal-x), var(--reveal-distance)) scale(var(--reveal-scale));
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes scroll-reveal-title {
  from {
    opacity: 0;
    clip-path: inset(0 0 100%);
    transform: translateY(var(--reveal-distance));
  }
  35% {
    opacity: 1;
  }
  to {
    opacity: 1;
    clip-path: inset(0);
    transform: none;
  }
}
@keyframes scroll-reveal-wipe {
  from {
    opacity: 0.35;
    clip-path: inset(0 100% 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0);
  }
}
@keyframes scroll-reveal-cinema {
  from {
    opacity: 0;
    clip-path: inset(var(--reveal-inset) var(--reveal-inset) round 18px);
    transform: scale(0.94);
  }
  45% {
    opacity: 1;
  }
  to {
    opacity: 1;
    clip-path: inset(0 round 0);
    transform: none;
  }
}
@keyframes scroll-reveal-expand {
  from {
    opacity: 0;
    clip-path: inset(0 var(--reveal-inset));
    transform: scaleX(0.96);
  }
  to {
    opacity: 1;
    clip-path: inset(0);
    transform: none;
  }
}
@media (max-width: 600px) {
  [data-reveal] {
    --reveal-distance: 14px;
    --reveal-slide: 16px;
    --reveal-tempo: 0.7;
    --reveal-stagger: 60ms;
    --reveal-inset: 4%;
  }
  [data-reveal='fade'],
  [data-reveal='left'],
  [data-reveal='right'],
  [data-reveal='zoom'],
  [data-reveal='focus'] {
    --reveal-distance: 0px;
  }
}
@media print, (prefers-reduced-motion: reduce) {
  [data-reveal].reveal-pending,
  [data-reveal].reveal-running {
    opacity: 1;
    transform: none;
    clip-path: none;
    animation: none;
  }
}

@keyframes arrive {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Sign-in shares the company identity; authentication is connected separately. */
.login-page {
  background: #fff;
}
.login-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
}
.login-brand-panel {
  background: #111;
  color: #fff;
  padding: 48px clamp(32px, 4.5vw, 72px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.login-brand-panel > .brand {
  align-self: flex-start;
}
.login-brand-story {
  margin: auto 0;
  padding: 72px 0 50px;
}
.login-brand-story > .eyebrow {
  color: #aaa;
  font-size: 12px;
}
.login-brand-story h1 {
  font-size: clamp(36px, 4.2vw, 67px);
  line-height: 1.13;
  letter-spacing: 0.07em;
  font-weight: 600;
  margin: 28px 0;
}
.login-brand-story h1 > span {
  display: block;
  white-space: nowrap;
}
.login-brand-story > p {
  font-size: 22px;
  line-height: 1.65;
  letter-spacing: -0.03em;
}
.login-brand-story > p em {
  color: #aaa;
}
.login-product-note {
  display: flex;
  gap: 18px;
  align-items: center;
  border-top: 1px solid #3b3b3b;
  padding-top: 28px;
  margin-top: 48px;
}
.login-product-note > .mini-symbol {
  width: 42px;
  height: 24px;
}
.login-product-note strong {
  display: block;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.025em;
}
.login-product-note small {
  display: block;
  color: #aaa;
  font-size: 13px;
  margin-top: 4px;
}
.login-brand-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #9d9d9d;
}
.login-form-panel {
  display: flex;
  flex-direction: column;
  padding: 38px clamp(28px, 6.5vw, 110px);
  min-width: 0;
}
.login-top {
  display: flex;
  justify-content: flex-end;
}
.login-back {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #666;
  min-height: 44px;
}
.login-box {
  width: 100%;
  max-width: 410px;
  margin: auto;
  padding: 70px 0;
}
.login-box > .eyebrow {
  color: #777;
  font-size: 12px;
}
.login-box h2 {
  font-size: 38px;
  line-height: 1.3;
  margin: 18px 0 16px;
  letter-spacing: -0.05em;
}
.login-description {
  color: #666;
  font-size: 15px;
  line-height: 1.8;
}
.login-draft {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 16px;
  background: #f6f6f6;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  margin: 26px 0 0;
}
.login-draft > .draft-icon {
  font-size: 20px;
  color: #b61d1d;
}
.login-draft strong {
  font-size: 14px;
  font-weight: 500;
  display: block;
  overflow-wrap: anywhere;
}
.login-draft p {
  font-size: 12px;
  color: #707070;
  line-height: 1.7;
}
.login-form {
  margin-top: 34px;
}
.login-form .field {
  margin-bottom: 22px;
}
.login-form .field input {
  min-height: 52px;
}
.password-wrap {
  position: relative;
}
.password-wrap input {
  padding-right: 55px;
}
.password-toggle {
  position: absolute;
  right: 5px;
  top: 4px;
  bottom: 4px;
  width: 44px;
  background: transparent;
  display: grid;
  place-items: center;
  color: #666;
}
.password-toggle svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}
.login-submit {
  width: 100%;
  margin-top: 8px;
}
.login-preview-note {
  font-size: 12px;
  color: #747474;
  text-align: center;
  line-height: 1.7;
  margin-top: 15px;
}
.login-status {
  padding: 13px 15px;
  background: #fff5f5;
  border: 1px solid #f0caca;
  color: #a51b1b;
  border-radius: 4px;
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.7;
}
.login-demo-link {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid #e2e2e2;
  font-size: 13px;
  color: #737373;
}
.login-demo-link a {
  color: #111;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.login-form-bottom {
  text-align: center;
  color: #767676;
  font-size: 12px;
  letter-spacing: 0.04em;
  padding-bottom: 10px;
}
.login-continue {
  margin-top: 32px;
  width: 100%;
}
@media (min-width: 1600px) {
  .brand-hero {
    padding-top: 55px;
  }
  .hero-title {
    padding-top: 52px;
    padding-bottom: 60px;
  }
  .hero-bottom {
    padding-bottom: 60px;
  }
}
@media (max-width: 1100px) {
  .hero-film {
    width: 360px;
    gap: 15px;
  }
  .hero-film-image {
    width: 130px;
    flex-basis: 130px;
  }
  .hero-film-text > strong {
    font-size: 17px;
  }
  .hero-film-text > .eyebrow {
    font-size: 12px;
  }
  .about-heading,
  .product-heading {
    gap: 45px;
  }
  .about-copy > p:first-child {
    font-size: 18px;
  }
  .product-lede {
    font-size: 23px;
  }
  .film-chapters button {
    padding: 18px 15px;
    gap: 8px;
  }
  .film-chapters small {
    font-size: 12px;
  }
  .demo-shell {
    grid-template-columns: 230px minmax(0, 1fr);
  }
  .demo-sidebar {
    padding-inline: 17px;
  }
  .demo-panel {
    padding: 32px;
  }
  .demo-brand {
    gap: 7px;
  }
  .demo-brand .mini-symbol {
    width: 26px;
  }
  .demo-brand strong {
    font-size: 12px;
  }
  .demo-panel-heading h3 {
    font-size: 25px;
  }
  .demo-form-bottom {
    flex-wrap: wrap;
    gap: 15px;
  }
  .demo-form-bottom > span {
    max-width: none;
  }
  .demo-handoff {
    flex-wrap: wrap;
  }
  .footer-main {
    flex-wrap: wrap;
  }
  .footer-main nav {
    width: 100%;
    margin: 0;
  }
  .faq-layout {
    gap: 50px;
  }
  .login-brand-panel {
    padding-inline: 30px;
  }
  .login-form-panel {
    padding-inline: 40px;
  }
}
@media (max-width: 800px) {
  :root {
    --header: 72px;
    --gutter: 28px;
  }
  .section-space {
    padding-block: 85px;
  }
  .desktop-nav {
    gap: 22px;
  }
  .header-inner {
    gap: 20px;
  }
  .brand-symbol {
    width: 47px;
    height: 25px;
  }
  .brand > span {
    font-size: 19px;
  }
  .brand {
    gap: 12px;
  }
  .hero-title {
    font-size: 9.35vw;
    letter-spacing: 0.08em;
    padding: 45px 0 40px;
  }
  .hero-kicker > .eyebrow {
    font-size: 12px;
  }
  .hero-edition {
    font-size: 12px;
  }
  .hero-bottom {
    gap: 35px;
  }
  .hero-film {
    max-width: 43%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .hero-film-image {
    width: 155px;
    flex-basis: auto;
  }
  .hero-film-text > .eyebrow {
    display: none;
  }
  .hero-film-text > strong {
    font-size: 16px;
  }
  .hero-film-text > span:last-child {
    font-size: 12px;
  }
  .hero-film-text b {
    display: inline;
    margin-left: 8px;
  }
  .hero-message > p {
    font-size: 22px;
  }
  .hero-message .text-link {
    margin-top: 20px;
  }
  .about-heading,
  .product-heading {
    grid-template-columns: 1.1fr 1fr;
    gap: 28px;
  }
  .about-heading h2 {
    font-size: 34px;
  }
  .about-copy > p:first-child {
    font-size: 16px;
  }
  .about-copy .secondary {
    font-size: 14px;
  }
  .connection-item h3 {
    font-size: 22px;
  }
  .connection-item + .connection-item {
    padding-left: 20px;
  }
  .connection-item p {
    font-size: 14px;
  }
  .product-heading h2 {
    font-size: 7.3vw;
  }
  .product-lede {
    font-size: 21px;
  }
  .product-heading .secondary {
    font-size: 15px;
  }
  .film-chapters small {
    display: none;
  }
  .film-chapters button {
    justify-content: center;
    padding: 18px 8px;
  }
  .film-toolbar-note {
    font-size: 12px;
  }
  .film-caption {
    flex-direction: column;
    gap: 5px;
  }
  .feature-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }
  .feature h3 {
    font-size: 21px;
  }
  .feature {
    padding-right: 22px;
  }
  .feature + .feature {
    padding-left: 22px;
  }
  .feature p {
    font-size: 15px;
  }
  .feature-number {
    font-size: 12px;
  }
  .experience-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }
  .demo-shell {
    grid-template-columns: 1fr;
  }
  .demo-sidebar {
    padding: 20px 26px;
  }
  .demo-brand {
    gap: 12px;
  }
  .demo-brand strong {
    font-size: 14px;
  }
  .demo-brand > span {
    margin-left: 0;
  }
  .demo-steps {
    flex-direction: row;
    gap: 15px;
    margin-top: 22px;
  }
  .demo-steps li {
    flex: 1;
    gap: 10px;
    padding: 11px 0;
    border: 0 !important;
    background: none !important;
  }
  .demo-steps li small,
  .demo-sidebar-bottom {
    display: none;
  }
  .demo-steps li.active {
    border-bottom: 2px solid var(--red) !important;
    border-radius: 0;
  }
  .demo-steps li strong {
    font-size: 13px;
  }
  .demo-content {
    min-height: 620px;
  }
  .demo-form-bottom {
    flex-wrap: nowrap;
  }
  .demo-form-bottom > span {
    max-width: 210px;
  }
  .demo-handoff {
    flex-wrap: nowrap;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-layout h2 br {
    display: none;
  }
  .faq-layout h2 {
    margin-top: 16px;
  }
  .closing-section {
    padding-block: 85px;
  }
  .closing-section .button {
    position: static;
  }
  .closing-section h2 {
    margin-bottom: 30px;
  }
  .footer-bottom {
    flex-wrap: wrap;
  }
  .footer-bottom > span:nth-child(2) {
    display: none;
  }
  .login-layout {
    grid-template-columns: 0.85fr 1fr;
  }
  .login-brand-panel {
    padding: 32px 24px;
  }
  .login-brand-story h1 {
    font-size: 4.1vw;
    letter-spacing: 0.04em;
  }
  .login-brand-story > p {
    font-size: 19px;
  }
  .login-brand-bottom {
    flex-direction: column;
    gap: 10px;
  }
  .login-form-panel {
    padding: 25px 28px;
  }
  .login-box h2 {
    font-size: 32px;
  }
  .login-description {
    font-size: 14px;
  }
  .login-demo-link {
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media (max-width: 600px) {
  :root {
    --header: 68px;
    --gutter: 22px;
  }
  .section-space {
    padding-block: 70px;
  }
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .header-actions {
    gap: 8px;
  }
  .header-inner {
    padding-right: 13px;
  }
  .header-login {
    min-height: 36px;
    padding: 6px 12px;
    font-size: 12px;
    gap: 18px;
  }
  .brand {
    gap: 10px;
  }
  .brand-symbol {
    width: 42px;
    height: 23px;
  }
  .brand > span {
    font-size: 18px;
  }
  .brand-hero {
    padding-top: 28px;
  }
  .hero-kicker > .eyebrow {
    font-size: 12px;
    letter-spacing: 0.085em;
    gap: 7px;
  }
  .hero-kicker .live-dot {
    width: 5px;
    height: 5px;
  }
  .hero-edition {
    display: none;
  }
  .hero-title {
    font-size: 9vw;
    letter-spacing: 0.08em;
    line-height: 1.16;
    padding: 42px 0 33px;
  }
  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 34px;
    padding-bottom: 28px;
  }
  .hero-message > p {
    font-size: 21px;
    line-height: 1.6;
  }
  .hero-message .text-link {
    font-size: 12px;
    margin-top: 16px;
  }
  .hero-film {
    flex-direction: row;
    gap: 18px;
    max-width: 100%;
    width: 100%;
    border-top: 1px solid #333;
    padding-top: 24px;
    align-items: center;
  }
  .hero-film-image {
    width: 115px;
    flex-basis: 115px;
  }
  .hero-film-text > .eyebrow {
    display: flex;
    font-size: 12px;
  }
  .hero-film-text {
    gap: 6px;
  }
  .hero-film-text > strong {
    font-size: 16px;
  }
  .hero-film-text > span:last-child {
    font-size: 12px;
  }
  .hero-film-text b {
    display: block;
    margin: 5px 0 0;
  }
  .hero-baseline {
    padding-block: 16px;
    align-items: center;
    font-size: 12px;
  }
  .hero-baseline > a {
    font-size: 12px;
    gap: 12px;
  }
  .section-label {
    margin-bottom: 33px;
    gap: 16px;
  }
  .section-label > .eyebrow {
    font-size: 12px;
    letter-spacing: 0.095em;
  }
  .section-index {
    font-size: 12px;
    white-space: nowrap;
  }
  .section-label .live-dot {
    width: 5px;
    height: 5px;
  }
  .about-heading,
  .product-heading {
    grid-template-columns: 1fr;
    gap: 29px;
  }
  .about-heading h2 {
    font-size: 33px;
  }
  .about-copy > p:first-child {
    font-size: 17px;
    line-height: 1.85;
  }
  .about-copy > p:first-child br {
    display: none;
  }
  .about-copy .secondary {
    margin-top: 20px;
    font-size: 14px;
  }
  .connection-list {
    grid-template-columns: 1fr;
    margin-top: 39px;
  }
  .connection-item,
  .connection-item + .connection-item {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 2px 13px;
    padding: 23px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }
  .connection-number {
    font-size: 12px;
    margin-top: 7px;
  }
  .connection-item h3 {
    font-size: 23px;
    margin: 0;
  }
  .connection-item h3 span {
    font-size: 22px;
  }
  .connection-item p {
    grid-column: 2;
    margin-top: 4px;
  }
  .about-transition {
    gap: 16px;
    margin-top: 37px;
  }
  .about-transition p {
    font-size: 13px;
  }
  .about-transition a {
    width: 38px;
    height: 38px;
    font-size: 18px;
    flex: none;
  }
  .product-heading {
    margin-bottom: 35px;
    gap: 28px;
  }
  .product-heading h2 {
    font-size: 14vw;
    line-height: 1.03;
  }
  .product-lede {
    font-size: 23px;
    margin-bottom: 14px;
  }
  .product-heading .secondary {
    font-size: 15px;
  }
  .product-heading .button {
    margin-top: 23px;
    font-size: 14px;
    min-height: 50px;
  }
  .product-film {
    border-radius: 5px;
  }
  .film-toolbar {
    padding: 12px;
    font-size: 12px;
    gap: 10px;
  }
  .film-toolbar > span {
    gap: 8px;
  }
  .film-toolbar .mini-symbol {
    width: 24px;
    height: 13px;
  }
  .film-toolbar-note {
    font-size: 0;
  }
  .film-toolbar-note .live-dot {
    width: 5px;
    height: 5px;
  }
  .film-cover-content {
    padding: 12px;
    gap: 8px;
  }
  .round-play {
    width: 50px;
    height: 50px;
  }
  .round-play svg {
    width: 20px;
    height: 20px;
  }
  .film-cover-content > strong {
    font-size: 17px;
    margin-top: 2px;
  }
  .film-cover-content > span:last-child {
    font-size: 12px;
  }
  .film-chapters {
    grid-template-columns: repeat(2, 1fr);
  }
  .film-chapters button {
    justify-content: flex-start;
    padding: 13px 14px;
    gap: 9px;
    border-top: 1px solid #363636;
  }
  .film-chapters button:nth-child(2) {
    border-right: 0;
  }
  .film-chapters button > span {
    font-size: 12px;
  }
  .film-chapters button strong {
    font-size: 12px;
  }
  .film-chapters small {
    display: block;
    font-size: 12px;
  }
  .film-caption {
    font-size: 12px;
    gap: 7px;
    margin-top: 16px;
    line-height: 1.7;
  }
  .film-caption > span:first-child {
    font-size: 12px;
    letter-spacing: 0.05em;
  }
  .feature-heading h2 {
    font-size: 31px;
    line-height: 1.3;
  }
  .feature-heading {
    margin-bottom: 34px;
    gap: 20px;
  }
  .feature-heading .text-link {
    font-size: 13px;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .feature,
  .feature + .feature {
    position: relative;
    border-left: 0;
    border-bottom: 1px solid var(--line);
    padding: 25px 0 28px;
  }
  .feature:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .feature-number {
    font-size: 12px;
  }
  .feature-icon {
    position: absolute;
    top: 25px;
    right: 0;
    margin: 0;
  }
  .feature-icon svg {
    width: 32px;
    height: 32px;
  }
  .feature h3 {
    font-size: 25px;
    margin: 27px 0 15px;
  }
  .feature p {
    font-size: 16px;
    line-height: 1.85;
    max-width: 36em;
  }
  .experience-heading {
    gap: 22px;
    margin-bottom: 35px;
  }
  .experience-heading h2 {
    font-size: 32px;
    line-height: 1.3;
  }
  .experience-heading > p {
    font-size: 15px;
    line-height: 1.8;
  }
  .demo-shell {
    border-radius: 5px;
  }
  .demo-sidebar {
    padding: 18px 18px 0;
  }
  .demo-brand {
    gap: 9px;
  }
  .demo-brand strong {
    font-size: 12px;
  }
  .demo-brand > span {
    font-size: 12px;
  }
  .demo-steps {
    gap: 9px;
    margin-top: 15px;
  }
  .demo-steps li {
    gap: 6px;
    padding: 13px 0;
    align-items: center;
  }
  .demo-steps li > span {
    font-size: 12px;
    margin-top: 0;
  }
  .demo-steps li strong {
    font-size: 12px;
    line-height: 1.5;
    word-break: keep-all;
  }
  .demo-panel {
    padding: 25px 20px;
  }
  .demo-content {
    min-height: 630px;
  }
  .demo-panel-heading {
    margin-bottom: 21px;
  }
  .demo-panel-heading > .eyebrow {
    font-size: 12px;
  }
  .demo-panel-heading h3 {
    font-size: 22px;
    margin-top: 9px;
  }
  .demo-panel-heading p {
    font-size: 13px;
  }
  .demo-presets {
    gap: 6px;
    margin-bottom: 23px;
  }
  .demo-presets button {
    font-size: 12px;
    padding: 7px 10px;
    min-height: 34px;
  }
  .field > label {
    font-size: 13px;
  }
  .field > label > span {
    font-size: 12px;
  }
  .field input,
  .field textarea {
    font-size: 16px;
    padding: 11px 12px;
  }
  .field textarea {
    min-height: 108px;
  }
  .demo-form-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-top: 24px;
  }
  .demo-form-bottom > span {
    max-width: none;
    font-size: 12px;
  }
  .demo-form-bottom > .button {
    font-size: 14px;
    min-height: 48px;
  }
  .demo-footnote {
    flex-direction: column;
    gap: 5px;
    font-size: 12px;
  }
  .script-card {
    padding: 14px;
  }
  .script-card-heading {
    gap: 8px;
  }
  .script-card-heading > h4 {
    font-size: 13px;
  }
  .script-card p {
    font-size: 14px;
    line-height: 1.8;
  }
  .demo-result-actions {
    flex-direction: column-reverse;
    gap: 15px;
    align-items: stretch;
  }
  .demo-result-actions .text-link {
    align-self: center;
    font-size: 12px;
  }
  .demo-sample-overlay {
    gap: 10px;
    padding: 15px;
  }
  .demo-sample-overlay strong {
    font-size: 13px;
  }
  .demo-sample-overlay small {
    font-size: 12px;
  }
  .demo-sample-overlay .round-play {
    width: 34px;
    height: 34px;
  }
  .demo-handoff {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .demo-handoff strong {
    font-size: 14px;
  }
  .demo-handoff small {
    font-size: 12px;
  }
  .demo-panel > .text-link {
    font-size: 12px;
  }
  .faq-layout {
    gap: 28px;
  }
  .faq-layout > .eyebrow,
  .faq-layout .eyebrow {
    font-size: 12px;
  }
  .faq-layout h2 {
    font-size: 33px;
  }
  .faq-list summary {
    font-size: 15px;
    padding: 23px 0;
    gap: 18px;
  }
  .faq-list details > p {
    font-size: 14px;
    padding-right: 8px;
    line-height: 1.9;
  }
  .closing-section {
    padding-block: 64px 72px;
  }
  .closing-section .eyebrow {
    font-size: 12px;
  }
  .closing-section h2 {
    font-size: 36px;
    margin: 25px 0 29px;
  }
  .closing-section .button {
    font-size: 14px;
  }
  .site-footer {
    padding-top: 35px;
  }
  .footer-main {
    gap: 25px;
    padding-bottom: 30px;
  }
  .footer-main > p {
    width: 100%;
    margin: 0;
    font-size: 12px;
    letter-spacing: 0.1em;
  }
  .footer-main nav {
    gap: 20px;
    font-size: 12px;
  }
  .footer-bottom {
    font-size: 12px;
    gap: 16px;
  }
  .footer-bottom > a {
    font-size: 12px;
  }
  .video-dialog {
    padding: 16px;
    width: calc(100% - 24px);
  }
  .video-dialog-header {
    gap: 16px;
    margin-bottom: 16px;
  }
  .video-dialog-header .eyebrow {
    font-size: 12px;
  }
  .video-dialog-header h2 {
    font-size: 18px;
  }
  .video-dialog-header .icon-button {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  .video-dialog > p {
    font-size: 12px;
  }
  .login-layout {
    display: block;
  }
  .login-brand-panel {
    padding: 25px 24px 32px;
  }
  .login-brand-story {
    padding: 35px 0 0;
    margin: 0;
  }
  .login-brand-story > .eyebrow {
    font-size: 12px;
  }
  .login-brand-story h1 {
    font-size: 10vw;
    letter-spacing: 0.055em;
    margin: 16px 0;
  }
  .login-brand-story > p {
    font-size: 17px;
  }
  .login-brand-story > p br {
    display: none;
  }
  .login-product-note,
  .login-brand-bottom {
    display: none;
  }
  .login-form-panel {
    padding: 17px 24px 28px;
  }
  .login-top {
    justify-content: flex-start;
  }
  .login-back {
    font-size: 12px;
  }
  .login-box {
    padding: 30px 0 45px;
  }
  .login-box h2 {
    font-size: 32px;
  }
  .login-description {
    font-size: 14px;
  }
  .login-form {
    margin-top: 27px;
  }
  .login-draft {
    margin-top: 22px;
  }
  .login-demo-link {
    font-size: 12px;
  }
  .login-form-bottom {
    font-size: 12px;
  }
}
@media (max-width: 359px) {
  :root {
    --gutter: 18px;
  }
  .hero-kicker > .eyebrow {
    font-size: 7px;
  }
  .hero-message > p {
    font-size: 19px;
  }
  .hero-film-image {
    width: 92px;
    flex-basis: 92px;
  }
  .hero-film {
    gap: 13px;
  }
  .hero-film-text > strong {
    font-size: 14px;
  }
  .hero-film-text > span:last-child {
    font-size: 12px;
  }
  .section-index {
    display: none;
  }
  .about-heading h2 {
    font-size: 30px;
  }
  .feature-heading h2 {
    font-size: 28px;
  }
  .experience-heading h2 {
    font-size: 29px;
  }
  .demo-panel {
    padding: 23px 16px;
  }
  .demo-presets button {
    font-size: 12px;
    padding-inline: 8px;
  }
  .demo-steps li strong {
    font-size: 12px;
  }
  .demo-steps li {
    gap: 4px;
  }
  .closing-section h2 {
    font-size: 32px;
  }
  .hero-baseline {
    font-size: 12px;
  }
  .hero-baseline > a {
    font-size: 12px;
  }
  .footer-main nav {
    gap: 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

.brief-copy-actions {
  margin: 4px 0 18px;
}
.brief-copy-actions > .text-link {
  min-height: 44px;
  font-size: 13px;
  border: 0;
  gap: 14px;
}
.brief-copy-actions .field {
  margin-top: 12px;
}
.brief-copy-text {
  display: block;
  width: 100%;
  padding: 12px;
  margin-top: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font: inherit;
  font-size: 14px;
  line-height: 1.7;
  resize: vertical;
  background: #fafafa;
}
.brief-copy-status {
  font-size: 12px;
  line-height: 1.7;
  color: #666;
  margin-top: 6px;
}
