:root {
  --ink: #111216;
  --muted: #5d6472;
  --line: #e8e7e2;
  --paper: #fffdfa;
  --soft: #f6f3eb;
  --mint: #98F0D9;
  --mint-deep: #67A593;
  --coral: #ff8f73;
  --violet: #a98cff;
  --blue: #6aa7ff;
  --shadow: 0 28px 90px rgba(29, 28, 24, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(152, 240, 217, 0.4), transparent 28rem),
    radial-gradient(circle at 90% 18%, rgba(255, 143, 115, 0.18), transparent 22rem),
    var(--paper);
  font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.home-page {
  background: #ffffff;
}

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

button {
  font: inherit;
}

body.has-modal {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  width: calc(100% - 32px);
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(5, 7, 7, 0.94);
  box-shadow: 0 18px 56px rgba(17, 18, 22, 0.2);
  backdrop-filter: blur(20px);
}

.brand,
.main-nav,
.header-actions {
  display: flex;
  align-items: center;
}

.brand {
  width: max-content;
  justify-self: start;
  font-weight: 800;
}

.demo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 30px;
  margin-left: 16px;
  border: 1px solid rgba(152, 240, 217, 0.78);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--mint);
  background: transparent;
  box-shadow: none;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    color 180ms ease;
}

.demo-link:hover,
.demo-link:focus {
  color: #07110f;
  background: var(--mint);
  box-shadow: 0 10px 24px rgba(152, 240, 217, 0.22);
}

.brand-logo {
  display: block;
  width: auto;
  height: 34px;
  max-width: min(190px, 46vw);
  object-fit: contain;
}

.brand-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  font-size: 17px;
  line-height: 1;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 31px;
  height: 31px;
  margin: 0 2px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  color: var(--ink);
  background: var(--mint);
  transform: translateY(1px);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  top: 8px;
  bottom: 8px;
  width: 2px;
  content: "";
  border-radius: 999px;
  background: rgba(17, 18, 22, 0.18);
}

.brand-mark::before {
  left: 7px;
}

.brand-mark::after {
  right: 7px;
}

.brand-m {
  position: relative;
  z-index: 1;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  transform: scaleX(0.92);
}

.brand-mark svg,
.editor-copy svg,
.login-close svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.4;
}

.main-nav {
  grid-column: 3;
  justify-content: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.82);
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--mint);
}

.main-nav .nav-accent,
.nav-dropdown-toggle .nav-accent {
  color: var(--mint);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 6px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  color: rgba(255, 255, 255, 0.84);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 400;
}

.nav-dropdown-toggle svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.5;
  transition: transform 180ms ease;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 40;
  display: grid;
  min-width: 244px;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 8px;
  background: rgba(7, 9, 9, 0.96);
  box-shadow: 0 24px 70px rgba(17, 18, 22, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, 8px, 0);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
  backdrop-filter: blur(18px);
}

.nav-dropdown-menu::before {
  position: absolute;
  top: -14px;
  right: 0;
  left: 0;
  height: 14px;
  content: "";
}

.nav-dropdown-menu a {
  border-radius: 9px;
  padding: 11px 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 400;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus,
.nav-dropdown-menu a[aria-current="page"] {
  color: #08231c;
  background: var(--mint);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0);
}

.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown:focus-within .nav-dropdown-toggle svg,
.nav-dropdown.is-open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.header-actions {
  grid-column: 4;
  gap: 10px;
}

.ghost-link {
  border: 0;
  background: transparent;
  padding: 11px 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}

.site-header .ghost-link:hover,
.site-header .ghost-link:focus {
  color: var(--mint);
}

.site-header .button-dark {
  min-height: 30px;
  color: #071c16;
  background: #fff;
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 400;
}

.site-header .button-dark:hover,
.site-header .button-dark:focus {
  background: var(--mint);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button-dark {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 12px 30px rgba(17, 18, 22, 0.18);
}

.button-mint {
  color: #09251d;
  background: var(--mint);
  box-shadow: 0 12px 30px rgba(103, 165, 147, 0.26);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  width: calc(100% - 32px);
  margin: 0 auto;
  min-height: 720px;
  padding: 8px 0 36px;
  overflow: hidden;
  border-radius: 28px;
  background: #ffffff;
  text-align: center;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: none;
  pointer-events: none;
}

.hero-bg-visual {
  position: absolute;
  top: 204px;
  left: 50%;
  z-index: 0;
  width: min(885px, 64.5vw);
  aspect-ratio: 1672 / 941;
  overflow: hidden;
  outline: 0;
  -webkit-tap-highlight-color: transparent;
  transform: translateX(-50%);
}

.hero-bg-visual img {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  filter: none;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.hero-bg-visual:focus,
.hero-bg-visual:focus-visible,
.hero-bg-visual *:focus,
.hero-bg-visual *:focus-visible {
  outline: 0 !important;
  box-shadow: none !important;
}

.hero-bg-visual::before,
.hero-bg-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero-bg-visual::before {
  z-index: 1;
  display: none;
  background: transparent;
}

.hero-bg-visual::after {
  z-index: 2;
  display: none;
  background: url("assets/themusicgen-piano-chords.png?v=chord-piano-transparent-20260623") center / contain no-repeat;
  clip-path: none;
  filter: saturate(1.06) contrast(1.04);
}

.keyboard-flash-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: auto;
  touch-action: manipulation;
}

.keyboard-flash-key {
  position: absolute;
  border-radius: clamp(7px, 0.9vw, 14px);
  background: rgba(88, 199, 173, 0.78);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.72) inset,
    0 0 28px rgba(88, 199, 173, 0.92),
    0 16px 34px rgba(49, 86, 74, 0.26);
  opacity: 0;
  mix-blend-mode: multiply;
  pointer-events: none;
  transform: scale(0.88);
}

.piano-chord-key {
  border-radius: 4px 4px 8px 8px;
  mix-blend-mode: screen;
}

.piano-chord-key.is-black-key {
  z-index: 5;
  border-radius: 3px 3px 7px 7px;
}

.piano-chord-key.is-white-key {
  z-index: 4;
}

.keyboard-flash-key.is-playable {
  cursor: pointer;
  pointer-events: auto;
}

.keyboard-flash-key.is-playable:hover {
  opacity: 0;
  transform: scale(0.94);
}

.piano-chord-key.is-held {
  opacity: 0.58;
  background: rgba(88, 199, 173, 0.92);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.72) inset,
    0 0 34px rgba(88, 199, 173, 0.92);
}

.keyboard-flash-key.is-active {
  animation: keyFlash 360ms ease-out forwards;
}

.keyboard-pop-letter {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  min-width: clamp(24px, 2.2vw, 40px);
  height: clamp(24px, 2.2vw, 40px);
  padding: 0 0.24em;
  border-radius: 999px;
  color: #58c7ad;
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 10px 28px rgba(49, 86, 74, 0.18),
    0 0 0 1px rgba(88, 199, 173, 0.26);
  font-size: clamp(18px, 2vw, 34px);
  font-weight: 900;
  line-height: 1;
  opacity: 0;
  transform: translate(-50%, -42%) scale(0.68);
  animation: keyLetterPop 700ms cubic-bezier(0.2, 0.84, 0.32, 1) forwards;
}

.landing-piano-panel {
  position: absolute;
  right: 17%;
  bottom: 9%;
  z-index: 4;
  width: min(520px, 42%);
  height: clamp(74px, 7.2vw, 108px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 14px;
  background: #1a1625;
  box-shadow:
    0 16px 38px rgba(26, 22, 37, 0.22),
    0 0 0 1px rgba(106, 83, 153, 0.2);
}

.landing-piano-canvas {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  touch-action: none;
}

.landing-piano-hint {
  position: absolute;
  right: 8px;
  bottom: 7px;
  max-width: calc(100% - 16px);
  padding: 3px 8px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.58);
  background: rgba(0, 0, 0, 0.32);
  font-size: clamp(8px, 0.66vw, 10px);
  font-weight: 700;
  line-height: 1.2;
  pointer-events: none;
  white-space: nowrap;
}

@keyframes keyFlash {
  0% {
    opacity: 0;
    transform: scale(0.88);
  }

  28% {
    opacity: 1;
    transform: scale(1.02);
  }

  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

@keyframes keyLetterPop {
  0% {
    opacity: 0;
    transform: translate(-50%, -30%) scale(0.68);
  }

  24% {
    opacity: 1;
    transform: translate(-50%, -86%) scale(1.08);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -138%) scale(0.9);
  }
}

.hero > :not(.hero-bg-visual) {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4px 18px 12px;
}

.hero-lower-copy {
  max-width: 1180px;
  margin: 314px auto 0;
  padding: 0 18px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #31564A;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 1120px;
  margin: 0 auto 10px;
  font-size: clamp(34.5px, 4.95vw, 64.5px);
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
}

.headline-accent {
  color: #67d8bd;
  white-space: nowrap;
}

.typewriter-nowrap {
  display: inline-block;
  white-space: nowrap;
}

.typewriter-letter {
  color: var(--ink);
  transition: color 260ms ease;
}

.typewriter-letter.is-accent,
.typewriter-letter.is-new {
  color: #58c7ad;
}

.typewriter-cursor {
  display: inline-block;
  width: 0.08em;
  height: 0.82em;
  margin-left: 0.04em;
  border-radius: 999px;
  background: #58c7ad;
  transform: translateY(0.08em);
  animation: typewriterBlink 840ms steps(2, start) infinite;
}

@keyframes typewriterBlink {
  50% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .typewriter-cursor {
    animation: none;
  }
}

.hero-subtitle {
  max-width: 1120px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(16px, 1.82vw, 21px);
  line-height: 1.35;
}

.hero-subtitle strong {
  font-weight: 400;
}

.hero-subtitle strong:nth-of-type(odd) {
  color: #58c7ad;
}

.hero-subtitle.is-waiting-title {
  opacity: 1;
}

.hero-subtitle.is-revealed {
  opacity: 1;
}

.hero-subtitle .subtitle-word {
  display: inline-block;
  color: inherit;
  opacity: 0;
  transform: translateY(9px);
  transition:
    opacity 360ms ease,
    transform 360ms ease;
  transition-delay: calc(var(--word-index, 0) * 44ms);
  will-change: opacity, transform;
}

.hero-subtitle.is-revealed .subtitle-word {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hero-subtitle .subtitle-word {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 0;
}

.hero-actions .button {
  min-height: 55px;
  padding: 0 24px;
  font-size: 18px;
}

.mock-controls button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-weight: 750;
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.trust-row {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  color: var(--muted);
}

.trust-row > span {
  color: var(--mint-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.trust-logo-strip {
  width: min(100%, 980px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.trust-logo-track {
  --logo-rail-gap-half: 5px;
  display: flex;
  width: max-content;
  gap: 10px;
  animation: logoRail 34s linear infinite;
}

.trust-logo-strip img,
.trust-text-logo {
  display: inline-flex;
  width: 174px;
  min-width: 174px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 30px rgba(17, 18, 22, 0.05);
  animation: logoOrbit 6.4s ease-in-out infinite;
  transform-origin: center;
}

.trust-logo-strip img:nth-child(2),
.trust-logo-strip .trust-text-logo:nth-child(2) {
  animation-delay: 0.25s;
}

.trust-logo-strip img:nth-child(3),
.trust-logo-strip .trust-text-logo:nth-child(3) {
  animation-delay: 0.5s;
}

.trust-logo-strip img:nth-child(4),
.trust-logo-strip .trust-text-logo:nth-child(4) {
  animation-delay: 0.75s;
}

.trust-logo-strip img:nth-child(5),
.trust-logo-strip .trust-text-logo:nth-child(5) {
  animation-delay: 1s;
}

.trust-logo-strip img:nth-child(6),
.trust-logo-strip .trust-text-logo:nth-child(6) {
  animation-delay: 1.25s;
}

.trust-logo-strip img:nth-child(7),
.trust-logo-strip .trust-text-logo:nth-child(7) {
  animation-delay: 1.5s;
}

.trust-logo-strip img:nth-child(8),
.trust-logo-strip .trust-text-logo:nth-child(8) {
  animation-delay: 1.75s;
}

.trust-logo-strip img {
  object-fit: contain;
  object-position: center;
}

.trust-logo-strip .trust-amazon-logo {
  padding: 10px 18px;
}

.trust-logo-strip .trust-vevo-logo {
  padding: 14px 28px;
}

.trust-logo-strip .trust-youtube-logo {
  padding: 10px 14px;
}

.trust-logo-strip .trust-instagram-logo {
  padding: 10px 12px;
}

.trust-logo-strip .trust-vimeo-logo {
  padding: 10px 18px;
}

.trust-logo-strip .trust-spotify-logo {
  padding: 10px 16px;
}

.trust-logo-strip .trust-apple-logo {
  padding: 10px 12px;
}

.trust-text-logo {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.partner-strip-title {
  margin: 26px 0 0;
  color: var(--mint-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.partner-name-strip {
  width: min(100%, 1040px);
  overflow: hidden;
  margin: 14px auto 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.partner-logo-track {
  --logo-rail-gap-half: 12px;
  display: flex;
  width: max-content;
  align-items: center;
  gap: 24px;
  animation: logoRail 38s linear infinite reverse;
}

.partner-name-strip img {
  display: block;
  width: auto;
  max-width: 213px;
  height: 44px;
  object-fit: contain;
  filter: brightness(0) saturate(100%);
  opacity: 0.94;
  animation: partnerLogoFloat 5.8s ease-in-out infinite;
  transform-origin: center;
}

.partner-name-strip img:nth-child(2) {
  animation-delay: 0.35s;
}

.partner-name-strip img:nth-child(3) {
  animation-delay: 0.7s;
}

.partner-name-strip img:nth-child(4) {
  animation-delay: 1.05s;
}

.partner-name-strip img:nth-child(5) {
  animation-delay: 1.4s;
}

.partner-name-strip img:nth-child(6) {
  animation-delay: 1.75s;
}

.partner-name-strip img:nth-child(7) {
  animation-delay: 2.1s;
}

.partner-name-strip img:nth-child(8) {
  animation-delay: 2.45s;
}

.partner-name-strip img:nth-child(9) {
  animation-delay: 2.8s;
}

.partner-name-strip .partner-vertex-logo,
.partner-name-strip .partner-youtube-logo,
.partner-name-strip .partner-gemini-logo,
.partner-name-strip .partner-veo-logo,
.partner-name-strip .partner-seedance-logo,
.partner-name-strip .partner-runpod-logo,
.partner-name-strip .partner-leyla-logo,
.partner-name-strip .partner-instadrama-logo,
.partner-name-strip .partner-gaanagpt-logo {
  max-width: 247px;
  filter: none;
  opacity: 1;
}

.partner-name-strip .partner-veo-logo {
  width: 166px;
  max-width: 166px;
}

@keyframes partnerLogoFloat {
  0%,
  100% {
    opacity: 0.9;
    transform: translate3d(0, 0, 0) rotate(-1.2deg) scale(1);
  }

  45% {
    opacity: 1;
    transform: translate3d(0, -4px, 0) rotate(1.4deg) scale(1.025);
  }
}

@keyframes logoOrbit {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1deg);
  }

  33% {
    transform: translate3d(2px, -3px, 0) rotate(1.4deg);
  }

  66% {
    transform: translate3d(-2px, 2px, 0) rotate(-0.6deg);
  }
}

@keyframes logoRail {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - var(--logo-rail-gap-half)), 0, 0);
  }
}

.video-carousel-window {
  position: relative;
  --carousel-gap: 16px;
  --carousel-gap-half: 8px;
  width: 100vw;
  margin: 30px 50% 0;
  overflow: hidden;
  transform: translateX(-50%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.video-example-rail {
  display: flex;
  width: max-content;
  gap: var(--carousel-gap);
  animation: exampleMarquee 42s linear infinite;
  will-change: transform;
}

.video-carousel-window:hover .video-example-rail {
  animation-play-state: paused;
}

.video-example-card {
  position: relative;
  flex: 0 0 248px;
  width: 248px;
  height: 334px;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.74)),
    radial-gradient(circle at 28% 24%, var(--card-glow), transparent 8.5rem),
    #0a0d0f;
  box-shadow: 0 18px 42px rgba(17, 18, 22, 0.16);
  text-align: left;
  transform: translateZ(0);
  cursor: pointer;
}

.video-example-card::before,
.video-example-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.video-example-card::before {
  z-index: 2;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.82)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 24%, transparent 76%, rgba(0, 0, 0, 0.18));
}

.video-example-card::after {
  z-index: 1;
  opacity: 0.18;
  background: repeating-linear-gradient(0deg, transparent 0 10px, rgba(255, 255, 255, 0.18) 11px 12px);
  animation: videoScan 4.6s linear infinite;
}

.example-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transform-origin: center;
}

.platform-tags {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  display: flex;
  max-width: calc(100% - 64px);
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  pointer-events: none;
}

.platform-tags img {
  display: block;
  width: 22px;
  height: 22px;
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  object-fit: contain;
}

.platform-tags .platform-instagram-logo {
  width: 23px;
  height: 23px;
}

.platform-tags .platform-youtube-logo {
  width: 24px;
  height: 24px;
}

.platform-tags .platform-vimeo-logo {
  width: 22px;
  height: 22px;
}

.platform-tags .platform-vevo-logo {
  width: 56px;
  height: 24px;
}

.video-hover-preview {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 80;
  width: min(var(--preview-width, 318px), 86vw);
  max-height: 88vh;
  aspect-ratio: var(--preview-aspect, 248 / 352);
  overflow: hidden;
  border-radius: 10px;
  pointer-events: auto;
  color: #fff;
  background: #07090a;
  box-shadow:
    0 28px 90px rgba(6, 10, 12, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.14);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.94);
  transition: opacity 160ms ease, transform 160ms ease;
}

.video-hover-preview.is-modal {
  z-index: 120;
  width: min(var(--preview-width, 318px), calc(100vw - 28px));
  max-height: calc(100dvh - 44px);
  pointer-events: auto;
  box-shadow:
    0 36px 120px rgba(6, 10, 12, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.18);
}

.video-hover-preview.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.video-hover-preview::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.72)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 26%, transparent 78%, rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.video-hover-preview video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}

.video-hover-preview strong {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  font-size: 27px;
  line-height: 0.96;
  letter-spacing: 0;
}

.video-preview-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: #071c16;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.video-preview-close svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}

.example-play {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #071c16;
  background: rgba(152, 240, 217, 0.94);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.example-play svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke-width: 0;
  transform: translateX(1px);
}

.example-scene {
  position: absolute;
  inset: 18px;
  z-index: 1;
  animation: sceneDrift 7s ease-in-out infinite alternate;
}

.example-scene span {
  position: absolute;
  display: block;
}

.scene-city span:nth-child(1) {
  inset: 34% 4% 0 auto;
  width: 54%;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, rgba(152, 240, 217, 0.9), rgba(49, 86, 74, 0.68));
}

.scene-city span:nth-child(2) {
  left: 6%;
  bottom: 0;
  width: 48%;
  height: 54%;
  border-radius: 8px 8px 0 0;
  background: rgba(255, 255, 255, 0.22);
}

.scene-city span:nth-child(3) {
  inset: auto 18% 25% auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #ff8f73;
  box-shadow: 0 0 40px rgba(255, 143, 115, 0.68);
}

.scene-stage span:nth-child(1) {
  left: 50%;
  bottom: 0;
  width: 70px;
  height: 106px;
  border-radius: 44px 44px 16px 16px;
  background: linear-gradient(180deg, #fff, var(--mint));
  transform: translateX(-50%);
}

.scene-stage span:nth-child(2),
.scene-stage span:nth-child(3) {
  top: 0;
  bottom: 0;
  width: 44%;
  background: linear-gradient(105deg, transparent 36%, rgba(152, 240, 217, 0.42), transparent 62%);
}

.scene-stage span:nth-child(2) {
  left: 0;
}

.scene-stage span:nth-child(3) {
  right: 0;
  transform: scaleX(-1);
}

.scene-social span:nth-child(1),
.scene-social span:nth-child(2),
.scene-social span:nth-child(3) {
  width: 35%;
  height: 70%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.scene-social span:nth-child(1) {
  left: 2%;
  top: 14%;
  transform: rotate(-7deg);
}

.scene-social span:nth-child(2) {
  left: 33%;
  top: 4%;
  background: rgba(152, 240, 217, 0.26);
}

.scene-social span:nth-child(3) {
  right: 2%;
  top: 18%;
  transform: rotate(7deg);
}

.scene-cover span:nth-child(1) {
  inset: 8% 18%;
  border-radius: 50%;
  border: 18px solid rgba(152, 240, 217, 0.82);
  background: rgba(255, 255, 255, 0.08);
}

.scene-cover span:nth-child(2) {
  inset: 31% 41%;
  border-radius: 50%;
  background: #fff;
}

.scene-cover span:nth-child(3) {
  left: 12%;
  right: 12%;
  bottom: 5%;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mint), #fff, #ff8f73);
}

.scene-ad span:nth-child(1) {
  inset: 16% 8% auto;
  height: 46%;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent),
    rgba(152, 240, 217, 0.24);
}

.scene-ad span:nth-child(2) {
  left: 16%;
  bottom: 10%;
  width: 58%;
  height: 24px;
  border-radius: 999px;
  background: #fff;
}

.scene-ad span:nth-child(3) {
  right: 9%;
  bottom: 7%;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 36px rgba(152, 240, 217, 0.56);
}

.scene-testimonial span:nth-child(1) {
  left: 7%;
  bottom: 2%;
  width: 58px;
  height: 86px;
  border-radius: 34px 34px 12px 12px;
  background: linear-gradient(180deg, #fff, rgba(169, 140, 255, 0.78));
}

.scene-testimonial span:nth-child(2) {
  right: 8%;
  top: 10%;
  width: 88px;
  height: 58px;
  border-radius: 8px;
  background: rgba(152, 240, 217, 0.32);
}

.scene-testimonial span:nth-child(3) {
  right: 24%;
  bottom: 12%;
  width: 76px;
  height: 18px;
  border-radius: 999px;
  background: #fff;
}

.example-copy {
  position: absolute;
  right: 16px;
  bottom: 15px;
  left: 16px;
  z-index: 3;
  display: grid;
  gap: 5px;
  padding: 0;
}

.example-copy strong {
  color: #fff;
  font-size: 25px;
  line-height: 0.96;
  letter-spacing: 0;
}

.example-neon {
  --card-glow: rgba(169, 140, 255, 0.54);
}

.example-real {
  --card-glow: rgba(103, 216, 189, 0.62);
}

.example-animated {
  --card-glow: rgba(255, 198, 117, 0.56);
}

.example-hybrid {
  --card-glow: rgba(129, 162, 255, 0.56);
}

.example-sketch {
  --card-glow: rgba(240, 240, 230, 0.54);
}

.example-liveaction {
  --card-glow: rgba(255, 113, 148, 0.5);
}

.example-beauty {
  --card-glow: rgba(255, 169, 204, 0.5);
}

.example-bollywood {
  --card-glow: rgba(255, 214, 87, 0.52);
}

.example-retro {
  --card-glow: rgba(255, 143, 115, 0.54);
}

.example-trendmatcher {
  --card-glow: rgba(103, 216, 189, 0.58);
}

.example-lip-sync {
  --card-glow: rgba(129, 162, 255, 0.56);
}

.example-supercut {
  --card-glow: rgba(255, 116, 211, 0.5);
}

.example-hyperdancer {
  --card-glow: rgba(103, 216, 189, 0.62);
}

.example-mint {
  --card-glow: rgba(152, 240, 217, 0.64);
}

.example-sun {
  --card-glow: rgba(255, 143, 115, 0.52);
}

.example-ink {
  --card-glow: rgba(106, 167, 255, 0.48);
}

.example-blue {
  --card-glow: rgba(49, 86, 74, 0.56);
}

.example-violet {
  --card-glow: rgba(169, 140, 255, 0.55);
}

@keyframes exampleMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - var(--carousel-gap-half)));
  }
}

@keyframes videoScan {
  from {
    transform: translateY(-16px);
  }

  to {
    transform: translateY(16px);
  }
}

@keyframes sceneDrift {
  from {
    transform: translate3d(-4px, 0, 0) scale(1);
  }

  to {
    transform: translate3d(4px, -3px, 0) scale(1.03);
  }
}

section:not(.hero) {
  width: calc(100% - 32px);
  margin: 0 auto;
  padding: 72px 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 30px;
  text-align: center;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.editor-mock {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 55px rgba(17, 18, 22, 0.07);
}

.editor-copy p {
  color: var(--muted);
  line-height: 1.6;
}

.workflow-section {
  text-align: center;
}

.workflow-board {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.workflow-rail {
  display: grid;
  gap: 10px;
}

.workflow-stage-button {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 12px;
  min-height: 76px;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  text-align: left;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.workflow-stage-button:hover {
  transform: translateY(-2px);
  border-color: rgba(17, 18, 22, 0.2);
}

.workflow-stage-button.is-active {
  border-color: rgba(17, 18, 22, 0.24);
  color: var(--ink);
  background: #fff;
  box-shadow: 0 16px 45px rgba(17, 18, 22, 0.08);
}

.workflow-stage-button span {
  grid-row: span 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #08221a;
  background: var(--mint);
  font-size: 13px;
  font-weight: 900;
}

.workflow-stage-button strong {
  font-size: 15px;
  line-height: 1.1;
}

.workflow-stage-button small {
  line-height: 1.35;
}

.workflow-focus {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 34px);
  background:
    radial-gradient(circle at 82% 18%, rgba(152, 240, 217, 0.52), transparent 18rem),
    radial-gradient(circle at 20% 84%, rgba(169, 140, 255, 0.2), transparent 18rem),
    #fff;
  box-shadow: var(--shadow);
  text-align: left;
}

.workflow-copy {
  display: grid;
  align-content: center;
}

.micro {
  margin: 0 0 14px;
  color: #31564A;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.workflow-copy h3 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 0.98;
}

.workflow-copy p:not(.micro) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.workflow-tags,
.release-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.workflow-tags {
  margin-top: 12px;
}

.workflow-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.workflow-visual {
  position: relative;
  display: grid;
  align-content: center;
  gap: 14px;
  overflow: hidden;
  min-height: 100%;
  border-radius: 8px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(17, 18, 22, 0.82), rgba(17, 18, 22, 0.58)),
    url("assets/musicgen-hero.png") center / cover no-repeat;
}

.workflow-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 64px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 64px);
  mask-image: linear-gradient(135deg, transparent, #000 22%, #000 78%, transparent);
}

.workflow-screen,
.release-stack {
  position: relative;
  z-index: 1;
}

.workflow-screen {
  display: grid;
  gap: 16px;
  max-width: 430px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  padding: 22px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(22px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.workflow-screen small {
  color: var(--mint);
  font-weight: 900;
}

.workflow-screen strong {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.92;
}

.visual-bars {
  display: grid;
  gap: 9px;
}

.visual-bars span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.visual-bars span:nth-child(2) {
  width: 76%;
  background: var(--mint);
}

.visual-bars span:nth-child(3) {
  width: 54%;
  background: var(--coral);
}

.release-stack div {
  display: grid;
  min-width: 132px;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  padding: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.release-stack small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.release-stack strong {
  font-size: 14px;
  line-height: 1.2;
}

.editor-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 34px;
}

.editor-copy {
  text-align: left;
}

.editor-copy p {
  margin-bottom: 24px;
  font-size: 17px;
}

.editor-mock {
  padding: 18px;
  background: #fbfaf6;
}

.mock-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.mock-toolbar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--coral);
}

.mock-toolbar span:nth-child(2) {
  background: #ffd36c;
}

.mock-toolbar span:nth-child(3) {
  background: var(--mint-deep);
}

.mock-toolbar button {
  margin-left: auto;
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  color: #fff;
  background: var(--ink);
  font-weight: 800;
}

.mock-timeline {
  display: grid;
  gap: 12px;
}

.track {
  position: relative;
  overflow: hidden;
  min-height: 68px;
  border-radius: 8px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.52) 0 2px, transparent 2px 18px),
    var(--track-color);
}

.track::after {
  position: absolute;
  inset: 18px 24px 18px 112px;
  content: "";
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
}

.track span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-width: 82px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin: 17px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.track.coral {
  --track-color: rgba(255, 143, 115, 0.65);
}

.track.mint {
  --track-color: rgba(152, 240, 217, 0.75);
}

.track.violet {
  --track-color: rgba(169, 140, 255, 0.62);
}

.track.blue {
  --track-color: rgba(106, 167, 255, 0.62);
}

.mock-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.mock-controls button {
  min-height: 40px;
  padding: 0 15px;
}

.mock-controls .is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.signup-page main {
  width: calc(100% - 32px);
  margin: 0 auto;
}

.signup-hero,
.signup-detail-band,
.enterprise-signup-shell {
  display: grid;
  gap: 24px;
  padding: 72px 0;
}

.signup-hero {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.56fr);
  align-items: center;
  padding-bottom: 28px;
}

.signup-hero + .enterprise-signup-shell {
  padding-top: 18px;
}

.signup-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(46px, 6vw, 88px);
  text-align: left;
}

.signup-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

.signup-hero .hero-actions {
  justify-content: flex-start;
}

.signup-readiness-card,
.signup-overview article,
.signup-detail-grid article,
.enterprise-signup-form,
.signup-note-stack p {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 55px rgba(17, 18, 22, 0.07);
}

.signup-readiness-card {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.signup-readiness-card span,
.signup-overview span,
.signup-detail-grid span {
  color: #31564A;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.signup-readiness-card strong {
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.08;
}

.signup-readiness-card div,
.signup-detail-grid {
  display: grid;
  gap: 10px;
}

.signup-readiness-card p,
.signup-detail-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.signup-overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: calc(100% - 32px);
  margin: 0 auto;
  padding: 0 0 38px;
}

.signup-overview article,
.signup-detail-grid article {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.signup-overview strong {
  font-size: 20px;
}

.signup-overview p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.signup-detail-band {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
}

.signup-detail-grid {
  grid-template-columns: repeat(3, 1fr);
}

.enterprise-signup-shell {
  grid-template-columns: 0.55fr 1fr;
  align-items: start;
}

.signup-form-copy {
  position: sticky;
  top: 110px;
}

.signup-form-copy h2,
.signup-detail-band h2 {
  text-align: left;
}

.signup-form-copy > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.6;
}

.signup-note-stack {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.signup-note-stack p {
  margin: 0;
  padding: 16px;
  color: var(--muted);
  line-height: 1.55;
}

.enterprise-signup-form {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 30px);
}

.enterprise-signup-form fieldset {
  display: grid;
  gap: 14px;
  margin: 0;
  border: 0;
  padding: 0;
}

.enterprise-signup-form legend {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
}

.signup-field-grid,
.signup-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.enterprise-signup-form label,
.signup-wide-label {
  display: grid;
  gap: 8px;
  color: #31564A;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.enterprise-signup-form input,
.enterprise-signup-form select,
.enterprise-signup-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 13px;
  color: var(--ink);
  outline: 0;
  background: rgba(255, 255, 255, 0.82);
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  text-transform: none;
}

.enterprise-signup-form textarea {
  min-height: 130px;
  padding: 13px;
  resize: vertical;
}

.enterprise-signup-form input:focus,
.enterprise-signup-form select:focus,
.enterprise-signup-form textarea:focus {
  border-color: rgba(103, 165, 147, 0.84);
  box-shadow: 0 0 0 3px rgba(152, 240, 217, 0.38);
}

.signup-check-grid label {
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--soft);
  color: var(--ink);
  font-size: 14px;
}

.signup-check-grid input {
  width: 18px;
  min-height: 18px;
  accent-color: #31564A;
}

.signup-status {
  min-height: 22px;
  margin: 0;
  color: #31564A;
  font-weight: 850;
}

.signup-submit {
  width: max-content;
}

.login-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: clamp(16px, 4vw, 34px);
}

.login-modal.is-open {
  display: grid;
}

.login-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 28%, rgba(152, 240, 217, 0.28), transparent 22rem),
    rgba(17, 18, 22, 0.54);
  backdrop-filter: blur(12px);
}

.login-dialog {
  position: relative;
  display: grid;
  gap: 13px;
  overflow: hidden;
  width: min(94vw, 462px);
  max-height: calc(100vh - 42px);
  overflow-y: auto;
  border: 1px solid rgba(152, 240, 217, 0.54);
  border-radius: 24px;
  padding: 30px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(152, 240, 217, 0.16), transparent 130px),
    #fff;
  box-shadow: 0 30px 90px rgba(8, 12, 10, 0.28);
}

.login-dialog::before {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(152, 240, 217, 0.46), rgba(152, 240, 217, 0)) 0 0 / 100% 4px no-repeat,
    radial-gradient(circle at 88% 12%, rgba(152, 240, 217, 0.22), transparent 8rem);
}

.login-dialog > * {
  position: relative;
  z-index: 1;
}

.login-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(49, 86, 74, 0.14);
  border-radius: 50%;
  color: #111216;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(17, 18, 22, 0.08);
  cursor: pointer;
}

.login-close svg {
  width: 18px;
  height: 18px;
}

.login-brand {
  display: flex;
  min-height: auto;
  align-items: center;
  padding: 0 50px 3px 0;
  margin: 0;
  background: transparent;
}

.login-logo {
  width: auto;
  height: 38px;
  max-width: min(260px, 70vw);
  object-fit: contain;
}

.login-dialog > .eyebrow,
.login-dialog h2 {
  margin-right: 0;
  margin-left: 0;
}

.login-dialog > .eyebrow {
  margin-bottom: -4px;
  color: #31564A;
  font-size: 11px;
  letter-spacing: 0.13em;
}

.login-dialog h2 {
  max-width: 350px;
  margin: 0;
  color: #111216;
  font-size: clamp(29px, 5.5vw, 38px);
  line-height: 0.96;
  letter-spacing: 0;
}

.login-copy {
  max-width: 370px;
  margin: 0;
  color: #31564A;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
}

.login-form,
.password-step {
  display: grid;
  gap: 12px;
}

.login-form {
  gap: 14px;
  padding: 9px 0 0;
}

.password-step[hidden] {
  display: none;
}

.login-form label {
  display: grid;
  gap: 8px;
  color: #31564A;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.login-form input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(49, 86, 74, 0.16);
  border-radius: 16px;
  padding: 0 17px;
  color: var(--ink);
  outline: 0;
  background: #fbfffd;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
}

.login-form input:focus {
  border-color: rgba(103, 165, 147, 0.84);
  box-shadow: 0 0 0 3px rgba(152, 240, 217, 0.38);
}

.login-destination {
  border: 1px solid rgba(103, 165, 147, 0.3);
  border-radius: 14px;
  padding: 12px 14px;
  color: #31564A;
  background: rgba(152, 240, 217, 0.18);
  font-size: 13px;
  font-weight: 800;
}

.login-destination:empty {
  display: none;
}

.login-status {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.login-status:empty {
  display: none;
}

.login-status.is-error {
  color: #b9472d;
}

.login-status.is-success {
  color: #31564A;
}

.login-submit {
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  color: #09251d;
  background: var(--mint);
  box-shadow: 0 16px 34px rgba(103, 165, 147, 0.28);
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  width: 100%;
}

.ownership-page main {
  display: grid;
  gap: 34px;
  padding: 78px 0 64px;
}

.ownership-hero,
.ownership-section,
.ownership-band,
.ownership-disclaimer {
  width: calc(100% - 32px);
  margin: 0 auto;
}

.ownership-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 24px;
  align-items: stretch;
  min-height: 520px;
  padding: 56px;
  border: 1px solid rgba(17, 18, 22, 0.08);
  border-radius: 18px;
  background:
    radial-gradient(circle at 16% 18%, rgba(152, 240, 217, 0.5), transparent 22rem),
    radial-gradient(circle at 88% 12%, rgba(255, 143, 115, 0.18), transparent 22rem),
    #fffefa;
  box-shadow: var(--shadow);
}

.ownership-hero-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.ownership-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.94;
  letter-spacing: 0;
}

.ownership-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.ownership-summary-card {
  display: grid;
  align-content: end;
  gap: 20px;
  min-height: 100%;
  border-radius: 14px;
  padding: 28px;
  color: #eafcf7;
  background:
    linear-gradient(160deg, rgba(9, 37, 29, 0.95), rgba(17, 18, 22, 0.98)),
    #111216;
  box-shadow: 0 26px 70px rgba(17, 18, 22, 0.22);
}

.ownership-summary-card span,
.ownership-principles span,
.release-flow-grid span,
.approval-lane-grid span,
.license-question-grid span,
.handoff-grid span,
.ownership-disclaimer strong {
  color: var(--mint);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ownership-summary-card strong {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.04;
}

.ownership-summary-card div,
.policy-chip-list,
.ownership-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ownership-summary-card p,
.policy-chip-list span,
.ownership-checklist span {
  margin: 0;
  border-radius: 999px;
  padding: 10px 13px;
  font-size: 12px;
  font-weight: 850;
}

.ownership-summary-card p {
  color: #08231c;
  background: var(--mint);
}

.ownership-principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: calc(100% - 32px);
  margin: 0 auto;
}

.ownership-principles article,
.ownership-grid article,
.release-flow-grid article,
.approval-lane-grid article,
.license-question-grid article,
.handoff-grid article,
.ownership-two-column > article {
  border: 1px solid rgba(17, 18, 22, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 54px rgba(17, 18, 22, 0.07);
}

.ownership-principles article {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.ownership-principles strong {
  font-size: 20px;
}

.ownership-principles p,
.ownership-grid p,
.release-flow-grid p,
.approval-lane-grid p,
.license-question-grid p,
.handoff-grid p,
.ownership-two-column p,
.ownership-band p,
.ownership-disclaimer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.ownership-section {
  display: grid;
  gap: 22px;
  padding: 36px 0;
}

.ownership-grid,
.release-flow-grid,
.approval-lane-grid,
.license-question-grid,
.handoff-grid {
  display: grid;
  gap: 14px;
}

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

.ownership-grid article,
.release-flow-grid article,
.approval-lane-grid article,
.license-question-grid article,
.handoff-grid article {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.ownership-grid h3,
.ownership-two-column h2 {
  margin: 0;
}

.ownership-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: center;
  border-radius: 18px;
  padding: 30px;
  color: #f4fffb;
  background:
    radial-gradient(circle at 88% 16%, rgba(152, 240, 217, 0.22), transparent 18rem),
    linear-gradient(135deg, #07110e, #111216);
}

.ownership-band h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
}

.ownership-band p {
  color: rgba(255, 255, 255, 0.74);
}

.ownership-two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ownership-two-column > article {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px;
}

.release-flow-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.approval-lane-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.license-question-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.license-question-grid strong {
  font-size: 19px;
  line-height: 1.1;
}

.policy-chip-list span,
.ownership-checklist span {
  color: #08231c;
  background: rgba(152, 240, 217, 0.78);
}

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

.ownership-disclaimer {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(103, 165, 147, 0.24);
  border-radius: 14px;
  padding: 22px;
  background: rgba(152, 240, 217, 0.16);
}

.product-page main {
  display: grid;
  gap: 30px;
  padding: 52px 0 62px;
}

.product-hero,
.product-nav-strip,
.product-section,
.product-next-band {
  width: calc(100% - 32px);
  margin: 0 auto;
}

.product-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
  align-items: stretch;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(152, 240, 217, 0.28);
  border-radius: 28px;
  padding: 56px;
  background:
    linear-gradient(90deg, rgba(255, 253, 250, 0.94), rgba(255, 253, 250, 0.72) 48%, rgba(255, 253, 250, 0.32)),
    linear-gradient(180deg, rgba(255, 253, 250, 0.4), rgba(255, 253, 250, 0.96)),
    url("assets/bgmusicgen.png") center 8% / cover no-repeat;
  box-shadow: 0 30px 90px rgba(17, 18, 22, 0.12);
}

.product-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 18% 20%, rgba(152, 240, 217, 0.42), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 253, 250, 0.88) 78%);
  pointer-events: none;
}

.product-hero-copy,
.product-visual-card,
.product-section,
.product-next-band {
  display: grid;
}

.product-hero-copy {
  position: relative;
  z-index: 1;
  align-content: center;
  gap: 18px;
  max-width: 900px;
}

.product-kicker {
  width: fit-content;
  border: 1px solid rgba(103, 165, 147, 0.38);
  border-radius: 999px;
  padding: 9px 13px;
  color: #31564A;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(17, 18, 22, 0.08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(46px, 7.6vw, 96px);
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
}

.product-hero p,
.product-section p,
.product-next-band p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.product-hero p {
  max-width: 760px;
  font-size: 17px;
  color: #34413d;
}

.product-visual-card {
  position: relative;
  overflow: hidden;
  align-content: end;
  gap: 18px;
  z-index: 1;
  border: 1px solid rgba(152, 240, 217, 0.2);
  border-radius: 18px;
  padding: 30px;
  color: #f3fffb;
  background:
    radial-gradient(circle at 16% 18%, rgba(152, 240, 217, 0.34), transparent 18rem),
    linear-gradient(155deg, rgba(7, 17, 14, 0.94), rgba(17, 18, 22, 0.98)),
    #111216;
  box-shadow: 0 28px 80px rgba(17, 18, 22, 0.26);
}

.product-visual-card::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(152, 240, 217, 0.22);
  border-radius: 12px;
  content: "";
  pointer-events: none;
}

.product-visual-card::after {
  position: absolute;
  right: -18%;
  bottom: -14%;
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(152, 240, 217, 0.34), transparent 62%);
  pointer-events: none;
}

.product-visual-card > * {
  position: relative;
  z-index: 1;
}

.product-visual-card small {
  width: fit-content;
  border-radius: 999px;
  padding: 8px 10px;
  color: #06241c;
  background: var(--mint);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-visual-card strong {
  max-width: 520px;
  font-size: clamp(28px, 3.9vw, 50px);
  line-height: 0.98;
}

.product-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.product-signal-grid span {
  border: 1px solid rgba(152, 240, 217, 0.18);
  border-radius: 8px;
  padding: 10px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  font-size: 12px;
  font-weight: 850;
}

.product-nav-strip {
  overflow: hidden;
  border: 1px solid rgba(103, 165, 147, 0.22);
  border-radius: 999px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 46px rgba(17, 18, 22, 0.06);
  backdrop-filter: blur(18px);
}

.product-nav-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.product-nav-track::-webkit-scrollbar {
  display: none;
}

.product-nav-track a {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 12px 15px;
  color: #31564A;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-nav-track a[aria-current="page"] {
  color: #08231c;
  background: var(--mint);
}

.product-section {
  gap: 22px;
  border: 1px solid rgba(17, 18, 22, 0.06);
  border-radius: 24px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 22px 70px rgba(17, 18, 22, 0.06);
}

.product-section h2,
.product-next-band h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(34px, 5.5vw, 58px);
  line-height: 0.98;
}

.product-card-grid,
.product-output-grid,
.product-process-grid {
  display: grid;
  gap: 14px;
}

.product-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-output-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-process-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.product-card-grid article,
.product-output-grid article,
.product-process-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 174px;
  border: 1px solid rgba(103, 165, 147, 0.18);
  border-radius: 12px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 253, 250, 0.78)),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 54px rgba(17, 18, 22, 0.055);
}

.product-card-grid span,
.product-output-grid span,
.product-process-grid span {
  color: var(--mint-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-card-grid strong,
.product-output-grid strong,
.product-process-grid strong {
  font-size: 20px;
  line-height: 1.1;
}

.product-next-band {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border-radius: 24px;
  padding: 34px;
  color: #f4fffb;
  background:
    radial-gradient(circle at 90% 14%, rgba(152, 240, 217, 0.22), transparent 18rem),
    linear-gradient(135deg, #07110e, #111216);
}

.product-next-band p {
  color: rgba(255, 255, 255, 0.72);
}

.product-next-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

@keyframes scan {
  0%,
  45% {
    transform: translateX(-74%);
  }

  72%,
  100% {
    transform: translateX(74%);
  }
}

.site-footer {
  display: grid;
  grid-template-columns:
    minmax(16px, 1fr)
    minmax(260px, 354px)
    minmax(320px, 826px)
    minmax(16px, 1fr);
  gap: 18px 28px;
  width: 100%;
  margin: 0;
  padding: 34px;
  border: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(circle at 16% 20%, rgba(152, 240, 217, 0.18), transparent 18rem),
    linear-gradient(135deg, #050707 0%, #101412 64%, #050707 100%);
  box-shadow: 0 24px 70px rgba(17, 18, 22, 0.2);
}

.footer-brand {
  grid-column: 2;
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-logo {
  height: 48px;
  max-width: min(260px, 76vw);
}

.footer-brand p {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.55;
}

.footer-links {
  grid-column: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-content: start;
  justify-content: flex-end;
}

.footer-links a,
.footer-links button,
.footer-company-details span,
.footer-company-details a {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  text-decoration: none;
}

.footer-links a,
.footer-links button {
  display: inline-flex;
  min-height: 0;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
}

.footer-meta,
.footer-company-details {
  grid-column: 2 / 4;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
}

.footer-company-details {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(180px, 0.65fr);
  gap: 4px 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
}

.footer-company-details span:first-child {
  grid-column: 1;
  grid-row: 1;
}

.footer-company-details span:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.footer-company-details a {
  grid-column: 2;
  grid-row: 1 / 3;
}

.footer-company-details span,
.footer-company-details a {
  display: flex;
  min-height: 0;
  align-items: center;
  padding: 0;
}

.footer-company-details a {
  justify-content: center;
  color: var(--mint);
  font-weight: 900;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto auto;
    border-radius: 24px;
  }

  .menu-button {
    display: grid;
    grid-column: 3;
    justify-self: end;
  }

  .demo-link {
    min-height: 28px;
    margin-left: 8px;
    padding: 0 10px;
    font-size: 11px;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .site-header.is-open .main-nav,
  .site-header.is-open .header-actions {
    display: flex;
    grid-column: 1 / -1;
    width: 100%;
  }

  .site-header.is-open .main-nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 8px 8px;
  }

  .site-header.is-open .nav-dropdown,
  .site-header.is-open .nav-dropdown-toggle,
  .site-header.is-open .nav-dropdown-menu {
    width: 100%;
  }

  .site-header.is-open .nav-dropdown-toggle {
    justify-content: space-between;
  }

  .site-header.is-open .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    margin-top: 8px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-header.is-open .nav-dropdown.is-open .nav-dropdown-menu,
  .site-header.is-open .nav-dropdown:focus-within .nav-dropdown-menu {
    display: grid;
  }

  .site-header.is-open .nav-dropdown-menu::before {
    display: none;
  }

  .site-header.is-open .header-actions {
    align-items: stretch;
    padding: 8px;
  }

  .site-header.is-open .header-actions .button,
  .site-header.is-open .header-actions .ghost-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero {
    min-height: 640px;
    padding-top: 8px;
  }

  .hero-bg-visual {
    top: 210px;
    width: min(810px, 78vw);
  }

  .landing-piano-panel {
    right: 26%;
    bottom: 8%;
    width: min(460px, 36%);
  }

  .hero-copy {
    padding-top: 4px;
  }

  .hero-lower-copy {
    margin-top: 296px;
  }

  .editor-section,
  .workflow-board,
  .workflow-focus,
  .signup-hero,
  .signup-detail-band,
  .signup-detail-grid,
  .enterprise-signup-shell,
  .ownership-hero,
  .ownership-band,
  .ownership-two-column,
  .product-hero,
  .product-next-band {
    grid-template-columns: 1fr;
  }

  .ownership-hero {
    min-height: auto;
    padding: 34px;
  }

  .ownership-principles,
  .ownership-grid,
  .release-flow-grid,
  .approval-lane-grid,
  .license-question-grid,
  .handoff-grid,
  .product-card-grid,
  .product-output-grid,
  .product-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-hero {
    min-height: auto;
    padding: 34px;
    background-position: center top;
  }

  .product-next-actions {
    justify-content: flex-start;
  }

  .product-section {
    padding: 28px;
  }

  .signup-form-copy {
    position: static;
  }

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

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

  .video-carousel-window {
    width: 100vw;
  }

  .video-example-card {
    flex-basis: 232px;
    width: 232px;
    height: 312px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 30px 16px;
  }

  .footer-brand,
  .footer-links,
  .footer-meta,
  .footer-company-details {
    grid-column: 1;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-company-details {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .footer-company-details a {
    grid-column: 1;
    grid-row: auto;
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .hero,
  section:not(.hero),
  .site-header,
  .ownership-hero,
  .ownership-principles,
  .ownership-section,
  .ownership-band,
  .ownership-disclaimer,
  .product-hero,
  .product-nav-strip,
  .product-section,
  .product-next-band {
    width: calc(100% - 20px);
  }

  .product-page main {
    gap: 18px;
    padding-top: 34px;
  }

  .product-hero {
    border-radius: 18px;
    padding: 24px;
    background-size: auto 620px;
  }

  .product-section {
    border-radius: 18px;
    padding: 22px;
  }

  h1 {
    font-size: clamp(30px, 8.6vw, 38px);
    line-height: 0.98;
  }

  .hero {
    min-height: 680px;
    border-radius: 18px;
  }

  .hero-bg-visual {
    top: 292px;
    width: 510px;
  }

  .landing-piano-panel {
    right: 29%;
    bottom: 8%;
    width: 300px;
    height: 72px;
    border-radius: 10px;
  }

  .landing-piano-hint {
    display: none;
  }

  .hero-copy {
    padding: 4px 10px 8px;
  }

  .eyebrow {
    font-size: 11px;
    line-height: 1.22;
  }

  .typewriter-nowrap {
    font-size: clamp(18px, 5.05vw, 22px);
  }

  .hero-lower-copy {
    margin-top: 300px;
    padding: 0 10px;
  }

  .hero-subtitle {
    max-width: 342px;
    font-size: 15px;
    line-height: 1.26;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .button {
    min-height: 50px;
    padding: 0 18px;
    font-size: 16px;
  }

  h2 {
    font-size: 34px;
  }

  .mock-toolbar {
    min-width: 0;
  }

  .track::after {
    inset-left: 96px;
  }

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

  .video-example-rail {
    --carousel-gap: 12px;
    --carousel-gap-half: 6px;
    gap: 12px;
    animation-duration: 38s;
  }

  .video-example-card {
    flex-basis: 218px;
    width: 218px;
    height: 293px;
  }

  .video-hover-preview.is-modal {
    width: min(var(--preview-width, 318px), calc(100vw - 20px));
    max-height: calc(100dvh - 34px);
    border-radius: 12px;
  }

  .video-hover-preview strong {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding-right: 38px;
    font-size: 21px;
  }

  .video-preview-close {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
  }

  .partner-name-strip {
    gap: 12px 18px;
  }

  .partner-name-strip img {
    max-width: 179px;
    height: 39px;
  }

  .login-modal {
    padding: 12px;
  }

  .login-brand {
    padding: 0 44px 2px 0;
  }

  .login-logo {
    height: 33px;
    max-width: min(224px, 68vw);
  }

  .login-dialog > .eyebrow,
  .login-dialog h2 {
    margin-right: 0;
    margin-left: 0;
  }

  .login-copy {
    margin-right: 0;
    margin-left: 0;
  }

  .login-form {
    padding-right: 0;
    padding-left: 0;
  }

  .workflow-focus {
    min-height: auto;
  }

  .workflow-visual {
    min-height: 420px;
  }

  .workflow-stage-button {
    min-height: 68px;
  }

  .signup-overview,
  .signup-field-grid,
  .signup-check-grid,
  .footer-links,
  .ownership-principles,
  .ownership-grid,
  .release-flow-grid,
  .approval-lane-grid,
  .license-question-grid,
  .handoff-grid,
  .product-card-grid,
  .product-output-grid,
  .product-process-grid {
    grid-template-columns: 1fr;
  }

  .ownership-page main {
    gap: 22px;
    padding-top: 42px;
  }

  .ownership-hero,
  .ownership-band,
  .ownership-two-column > article,
  .product-hero,
  .product-next-band {
    padding: 22px;
  }

  .ownership-hero h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .product-page main {
    gap: 22px;
    padding-top: 42px;
  }

  .product-hero h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .product-signal-grid {
    grid-template-columns: 1fr;
  }

  .signup-hero h1 {
    font-size: 42px;
  }

  .signup-submit {
    width: 100%;
  }
}

/* Force the enterprise login modal to remain a compact access card. */
.login-modal .login-dialog {
  width: min(calc(100vw - 32px), 380px) !important;
  max-width: 380px !important;
  padding: 26px !important;
  border-radius: 22px !important;
}

.login-modal .login-brand,
.login-modal .login-copy,
.login-modal .login-form,
.login-modal .login-submit,
.login-modal .login-form input,
.login-modal .password-step {
  width: 100% !important;
  max-width: 100% !important;
}

.login-modal .login-logo {
  height: 32px !important;
  max-width: 214px !important;
}

.login-modal .login-dialog h2 {
  max-width: 300px !important;
  font-size: clamp(28px, 4.6vw, 34px) !important;
}

.login-modal .login-copy {
  font-size: 13px !important;
}
