:root {
  --bg: #f4f1e8;
  --bg-soft: #efe7d8;
  --panel: rgba(255, 250, 240, 0.78);
  --panel-soft: rgba(255, 246, 232, 0.74);
  --card: rgba(255, 250, 240, 0.82);
  --line: rgba(16, 16, 16, 0.1);
  --text: #161616;
  --muted: #5f584d;
  --accent: #c8ff72;
  --accent-cyan: #9cdccf;
  --accent-blue: #a7bdd2;
  --accent-pink: #ddc39f;
  --alert: #ff6f4a;
  --ok: #156f4d;
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow: 0 20px 80px rgba(19, 18, 15, 0.1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -10%, rgba(200, 255, 114, 0.24), transparent 24%),
    radial-gradient(circle at 100% 20%, rgba(16, 16, 16, 0.04), transparent 26%),
    linear-gradient(180deg, #f8f4eb 0%, #eee6d7 100%);
}

img,
video {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(16, 16, 16, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 16, 16, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 90%);
}

.concept-shell {
  width: min(1220px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 40px 0 92px;
  position: relative;
}

.hero-lead {
  padding: 62px 0 44px;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  animation: rise-in 640ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.eyebrow,
.panel-kicker,
.hero-proof-label,
.workflow-step-index {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 800;
}

.eyebrow {
  color: #706b63;
  margin-bottom: 18px;
}

.hero-lead h1,
.access-heading h2,
.access-card h3 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, serif;
  letter-spacing: -0.04em;
  margin: 0;
}

.hero-lead h1 {
  font-size: clamp(3rem, 5.4vw, 5.2rem);
  max-width: 15.4ch;
  margin-inline: auto;
  line-height: 0.94;
  color: #1b1814;
  text-wrap: balance;
}

.hero-proof {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 10px 8px 16px;
  border-radius: 999px;
  background: rgba(255, 251, 243, 0.82);
  border: 1px solid rgba(16, 16, 16, 0.08);
  box-shadow: 0 12px 32px rgba(19, 18, 15, 0.06);
}

.hero-proof-label {
  color: #625c53;
}

.prompt-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: #101010;
  border: 1px solid rgba(16, 16, 16, 0.08);
  color: #faf6ee;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: "SF Mono", "Menlo", "Monaco", "Consolas", monospace;
}

.studio-section,
.access-section {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.studio-console {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(200, 255, 114, 0.16);
  background:
    radial-gradient(circle at 14% 0%, rgba(200, 255, 114, 0.14), transparent 22%),
    radial-gradient(circle at 92% 14%, rgba(255, 255, 255, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(11, 11, 17, 0.98), rgba(16, 15, 24, 0.97));
  box-shadow: var(--shadow);
  animation: rise-in 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.studio-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(200, 255, 114, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 20%, transparent 78%, rgba(255, 255, 255, 0.03));
  pointer-events: none;
}

.studio-windowbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.studio-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.studio-dot-red {
  background: #ff6d5f;
}

.studio-dot-yellow {
  background: #f4bf4f;
}

.studio-dot-green {
  background: #52c36a;
}

.studio-title {
  margin-left: 8px;
  color: rgba(233, 241, 221, 0.62);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.studio-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.36fr) minmax(0, 0.64fr);
  overflow: visible;
  isolation: isolate;
}

.brief-panel,
.output-panel {
  position: relative;
  min-height: 380px;
  z-index: 1;
}

.brief-panel {
  padding: 24px 24px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.output-panel {
  padding: 0;
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: start;
}

.panel-kicker {
  color: rgba(232, 237, 245, 0.58);
  display: inline-block;
  margin-bottom: 12px;
}

.output-stage-strip {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 26px;
  padding: 0 20px 14px;
}

.output-stage-marker {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(200, 255, 114, 0.94);
  box-shadow: 0 0 16px rgba(200, 255, 114, 0.42);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.composer-shell {
  --recorder-pan-x: 0px;
  --recorder-pan-y: 0px;
  position: relative;
  min-height: 208px;
  padding: 16px 16px 14px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 16% -10%, rgba(156, 220, 207, 0.1), transparent 30%),
    radial-gradient(circle at 88% 118%, rgba(221, 195, 159, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(16, 20, 31, 0.97), rgba(9, 12, 20, 0.98)),
    rgba(255, 255, 255, 0.02);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 18px 40px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  isolation: isolate;
  overflow: hidden;
  transform-style: preserve-3d;
  transform-origin: var(--recorder-focus-x, 50%) var(--recorder-focus-y, 50%);
  transition:
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 280ms ease,
    box-shadow 280ms ease;
  will-change: transform, filter;
}

.composer-shell.is-recorder-focus {
  transform: translate(var(--recorder-pan-x), var(--recorder-pan-y)) scale(1.022);
  filter: saturate(1.04) contrast(1.02);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 22px 48px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 24px rgba(200, 255, 114, 0.08);
}

.composer-focus {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(
      150px 104px at var(--recorder-focus-x, 50%) var(--recorder-focus-y, 50%),
      rgba(255, 255, 255, 0.13),
      rgba(200, 255, 114, 0.08) 26%,
      rgba(156, 220, 207, 0.04) 42%,
      transparent 74%
    );
  transition: opacity 220ms ease;
}

.composer-shell.is-recorder-focus .composer-focus {
  opacity: 1;
}

.composer-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background:
    linear-gradient(140deg, rgba(156, 220, 207, 0.6), rgba(255, 255, 255, 0.1) 28%, rgba(255, 255, 255, 0.04) 52%, rgba(221, 195, 159, 0.46) 78%, rgba(200, 255, 114, 0.36));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0.54;
  pointer-events: none;
}

.composer-shell::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: linear-gradient(108deg, transparent 34%, rgba(255, 255, 255, 0.08) 46%, rgba(156, 220, 207, 0.08) 50%, rgba(221, 195, 159, 0.06) 54%, transparent 68%);
  transform: translateX(-38%) rotate(6deg);
  opacity: 0.16;
  filter: blur(24px);
  pointer-events: none;
  animation: composer-sheen 7.2s linear infinite;
}

.composer-aura {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.composer-aura-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.12;
  will-change: transform, opacity;
}

.composer-aura-ring-one {
  width: 170px;
  height: 170px;
  left: -42px;
  top: -58px;
  border-color: rgba(156, 220, 207, 0.1);
}

.composer-aura-ring-two {
  width: 250px;
  height: 250px;
  right: -92px;
  bottom: -128px;
  border-color: rgba(221, 195, 159, 0.08);
}

.composer-aura-beam {
  position: absolute;
  left: -8%;
  right: 42%;
  bottom: 18px;
  height: 54px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 50%, rgba(156, 220, 207, 0.16), rgba(156, 220, 207, 0));
  filter: blur(16px);
  opacity: 0.22;
}

.composer-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.composer-topline-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(200, 255, 114, 0.34);
}

.composer-topline-track {
  flex: 1 1 auto;
  height: 1px;
  background:
    linear-gradient(90deg, rgba(200, 255, 114, 0.56), rgba(156, 220, 207, 0.34), rgba(167, 189, 210, 0.22), rgba(255, 255, 255, 0));
  background-size: 180% 100%;
  opacity: 0.58;
}

.composer-depth {
  position: absolute;
  inset: 42px 16px 54px;
  border-radius: 18px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.014)),
    rgba(255, 255, 255, 0.012);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.composer-depth::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(200, 255, 114, 0.09), transparent 22%),
    radial-gradient(circle at 86% 72%, rgba(156, 220, 207, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 30%, transparent 72%, rgba(255, 255, 255, 0.02));
  opacity: 0.58;
}

.composer-depth-grid {
  position: absolute;
  inset: 0;
}

.composer-depth-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.038) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.38));
  opacity: 0.18;
}

.composer-depth-grid-secondary::before {
  background-size: 12px 12px;
  opacity: 0.04;
}

.composer-copy {
  position: relative;
  z-index: 1;
  min-height: 110px;
  color: #eef4ff;
  font-size: 0.98rem;
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  padding: 14px 16px 14px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(4, 7, 12, 0.38), rgba(4, 7, 12, 0.12)),
    rgba(255, 255, 255, 0.01);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(8px);
}

.typed-brief {
  white-space: pre-wrap;
  font-family: inherit;
  font-weight: 520;
  letter-spacing: -0.01em;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.03);
  max-width: 22ch;
}

.composer-toolbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.composer-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.composer-drive {
  position: relative;
  flex: 1 1 auto;
  height: 40px;
  display: flex;
  align-items: center;
  min-width: 54px;
}

.composer-drive-line,
.composer-drive-pulse {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.composer-drive-line {
  height: 1px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(200, 255, 114, 0.16), rgba(156, 220, 207, 0.22), rgba(167, 189, 210, 0.24), rgba(255, 255, 255, 0.06));
  overflow: hidden;
  opacity: 0.52;
}

.composer-drive-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.2) 0 2px,
    transparent 2px 14px
  );
  opacity: 0.12;
}

.composer-drive-pulse {
  right: auto;
  width: 24px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(156, 220, 207, 0), rgba(156, 220, 207, 0.86) 40%, rgba(255, 255, 255, 0.94));
  filter: blur(0.4px);
  opacity: 0;
}

.attach-toggle,
.send-trigger {
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
  color: #f7f9fc;
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.attach-toggle span,
.send-trigger span {
  position: absolute;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms ease;
}

.attach-toggle span:last-child {
  transform: rotate(90deg);
}

.attach-toggle.is-open {
  background:
    linear-gradient(180deg, rgba(156, 220, 207, 0.12), rgba(156, 220, 207, 0.07)),
    rgba(255, 255, 255, 0.04);
  border-color: rgba(156, 220, 207, 0.28);
  box-shadow: 0 0 20px rgba(156, 220, 207, 0.1);
}

.attach-toggle.is-open span:first-child {
  transform: rotate(45deg);
}

.attach-toggle.is-open span:last-child {
  transform: rotate(-45deg);
}

.composer-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
  color: rgba(239, 244, 251, 0.76);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 8px 16px rgba(0, 0, 0, 0.1);
}

.send-trigger {
  color: #061018;
  background:
    radial-gradient(circle at 30% 26%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 30%),
    linear-gradient(180deg, #f7fbff, #dbe8ff);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.16),
    inset 0 -5px 12px rgba(167, 189, 210, 0.16);
}

.studio-console[data-stage="compose"] .send-trigger,
.studio-console[data-stage="attach"] .send-trigger {
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.16),
    0 0 20px rgba(167, 189, 210, 0.14),
    inset 0 -5px 12px rgba(167, 189, 210, 0.16);
  animation: send-ready 1.2s ease-in-out infinite;
}

.send-trigger-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  transform: translate(-4px, 0);
  box-shadow: 0 0 12px rgba(6, 16, 24, 0.18);
}

.send-trigger-arrow {
  width: 10px;
  transform: translate(2px, 0) rotate(-35deg);
}

.send-trigger-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -3px;
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.editor-cursor {
  width: 8px;
  height: 1.15em;
  margin-left: 4px;
  background: var(--accent);
  border-radius: 3px;
  box-shadow: 0 0 16px rgba(200, 255, 114, 0.24);
  animation: cursor-blink 860ms steps(1) infinite;
}

.attachment-pop {
  position: relative;
  left: 0;
  top: 0;
  width: 216px;
  height: 0;
  margin-top: 0;
  pointer-events: none;
  z-index: 2;
  overflow: visible;
  transition: height 260ms cubic-bezier(0.22, 1, 0.36, 1), margin-top 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.attachment-pop.is-open {
  height: 66px;
  margin-top: 16px;
}

.attachment-pop span {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(10, 14, 22, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(243, 248, 255, 0.92);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translate(0, 0) scale(0.76) rotate(var(--attach-rot, 0deg));
  transform-origin: 18px 0;
  transition:
    opacity 240ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 240ms ease;
}

.attachment-pop span:nth-child(1) {
  --attach-x: 0px;
  --attach-y: 0px;
  --attach-rot: -3deg;
  transition-delay: 0ms;
}

.attachment-pop span:nth-child(2) {
  --attach-x: 56px;
  --attach-y: 14px;
  --attach-rot: 1deg;
  transition-delay: 46ms;
}

.attachment-pop span:nth-child(3) {
  --attach-x: 126px;
  --attach-y: 30px;
  --attach-rot: 4deg;
  transition-delay: 92ms;
}

.attachment-pop.is-open span {
  opacity: 1;
  transform: translate(var(--attach-x), var(--attach-y)) scale(1) rotate(var(--attach-rot, 0deg));
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.03);
}

.composer-launch {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 134px;
  height: 84px;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
}

.composer-launch-core,
.composer-launch-beam,
.composer-launch-pulse {
  position: absolute;
  transform-origin: 100% 50%;
}

.composer-launch-core {
  right: 4px;
  bottom: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f7fbff;
  box-shadow:
    0 0 0 5px rgba(167, 189, 210, 0.1),
    0 0 16px rgba(167, 189, 210, 0.28);
}

.composer-launch-beam {
  right: 8px;
  bottom: 8px;
  width: 118px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(156, 220, 207, 0), rgba(156, 220, 207, 0.78) 24%, rgba(167, 189, 210, 0.94) 62%, rgba(255, 255, 255, 0.94));
  filter: blur(0.4px);
  transform: rotate(-24deg) scaleX(0.08);
}

.composer-launch-pulse {
  right: 0;
  bottom: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(167, 189, 210, 0.34);
  opacity: 0;
}

.composer-launch-pulse-one {
  animation-delay: 0ms;
}

.composer-launch-pulse-two {
  animation-delay: 150ms;
}

.demo-cursor {
  --cursor-x: 18px;
  --cursor-y: 146px;
  --cursor-scale: 1;
  --cursor-duration: 420ms;
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 28px;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transform: translate(var(--cursor-x), var(--cursor-y)) scale(var(--cursor-scale));
  transform-origin: 0 0;
  transition:
    transform var(--cursor-duration) cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease;
}

.demo-cursor.is-visible {
  opacity: 0.96;
}

.demo-cursor-arrow {
  position: absolute;
  inset: 0;
}

.demo-cursor-arrow::before,
.demo-cursor-arrow::after {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(0 0, 0 100%, 26% 74%, 42% 100%, 58% 92%, 42% 66%, 78% 66%);
}

.demo-cursor-arrow::before {
  background: rgba(7, 9, 13, 0.92);
  transform: translate(1px, 1px);
  filter: blur(0.4px);
}

.demo-cursor-arrow::after {
  background: linear-gradient(180deg, #ffffff, #e8eef6);
  box-shadow:
    0 0 0 1px rgba(12, 14, 18, 0.24),
    0 6px 14px rgba(0, 0, 0, 0.2);
}

.demo-cursor-ring {
  position: absolute;
  left: 1px;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(247, 251, 255, 0.7);
  opacity: 0;
  transform: scale(0.36);
}

.demo-cursor.is-clicking .demo-cursor-ring {
  animation: cursor-click-ring 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.demo-cursor.is-clicking .demo-cursor-arrow::after {
  animation: cursor-click-press 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.studio-console[data-stage="compose"] .demo-cursor,
.studio-console[data-stage="attach"] .demo-cursor {
  opacity: 0.96;
}

.studio-console[data-stage="search"] .demo-cursor,
.studio-console[data-stage="director"] .demo-cursor,
.studio-console[data-stage="audio"] .demo-cursor,
.studio-console[data-stage="visual"] .demo-cursor,
.studio-console[data-stage="engine"] .demo-cursor,
.studio-console[data-stage="render"] .demo-cursor {
  opacity: 0;
}

.brief-glow {
  position: absolute;
  inset: auto 16px 0 16px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(156, 220, 207, 0), rgba(156, 220, 207, 0.86), rgba(221, 195, 159, 0));
  opacity: 0.18;
  filter: blur(0.4px);
}

.output-shell {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  background: #020307;
}

.output-shell::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 112px;
  background: linear-gradient(180deg, rgba(2, 3, 7, 0) 0%, rgba(2, 3, 7, 0.92) 100%);
  pointer-events: none;
}

#output-stage-title {
  color: rgba(247, 250, 255, 0.94);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.demo-video {
  width: 100%;
  height: 100%;
  min-height: 380px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: none;
}

.video-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  cursor: pointer;
}

.video-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-cover.is-hidden {
  display: none;
}

.output-footer {
  display: flex;
  align-items: center;
  padding: 12px 20px 0;
}

.output-footer-note {
  color: rgba(233, 239, 247, 0.7);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.video-center-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 88px;
  height: 88px;
  display: inline-grid;
  place-items: center;
  border: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(8, 10, 14, 0.58);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition: transform 220ms ease, opacity 220ms ease, background 220ms ease;
}

.video-center-play:hover {
  transform: translate(-50%, -50%) scale(1.04);
  background: rgba(8, 10, 14, 0.76);
}

.output-shell.is-playing .video-center-play {
  opacity: 0;
  pointer-events: none;
}

.play-icon {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid #f8fbff;
}

.workflow-band {
  position: relative;
  padding: 18px 20px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.workflow-rail {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 26px;
  height: 18px;
  pointer-events: none;
}

.rail-line,
.rail-progress {
  position: absolute;
  left: 0;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  border-radius: 999px;
}

.rail-line {
  right: 0;
  background: linear-gradient(90deg, rgba(156, 220, 207, 0.08), rgba(167, 189, 210, 0.1), rgba(221, 195, 159, 0.1), rgba(200, 255, 114, 0.08));
}

.rail-progress {
  width: var(--rail-progress, 0px);
  background: linear-gradient(90deg, rgba(156, 220, 207, 0.72), rgba(167, 189, 210, 0.8), rgba(221, 195, 159, 0.76));
  box-shadow: 0 0 12px rgba(167, 189, 210, 0.14);
  transition: width 460ms cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.rail-progress::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.85), transparent);
  transform: translateX(-120%);
  opacity: 0;
}

.rail-node {
  position: absolute;
  left: var(--rail-node, 0px);
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: #f7fbff;
  box-shadow:
    0 0 0 4px rgba(167, 189, 210, 0.12),
    0 0 18px rgba(167, 189, 210, 0.42);
  transition: left 460ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease, transform 260ms ease;
}

.workflow-rail:not(.is-idle) .rail-progress::after {
  opacity: 0.78;
  animation: workflow-rail-flow 1.5s linear infinite;
}

.workflow-step[data-state="working"] ~ .workflow-step[data-state="queued"] {
  opacity: 0.5;
}

.workflow-rail.is-idle .rail-node {
  opacity: 0;
}

.workflow-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin-top: 0;
  padding-top: 16px;
  border-radius: 0;
  overflow: visible;
  background: none;
  border: none;
  box-shadow: none;
}

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

.workflow-grid::after {
  display: none;
}

.workflow-step {
  position: relative;
  min-height: 32px;
  padding: 8px 4px 0;
  background: transparent;
  border: none;
  border-radius: 0;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 4px;
  transition: opacity 220ms ease, transform 220ms ease;
}

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

.workflow-step::after {
  display: none;
}

.workflow-step-head {
  display: none;
}

.workflow-step-index {
  color: rgba(231, 236, 244, 0.36);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.54rem;
  font-weight: 800;
}

.workflow-step-visual {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  overflow: hidden;
  box-shadow: none;
  transition: transform 220ms ease, background 220ms ease, opacity 220ms ease, box-shadow 220ms ease;
}

.workflow-step-visual::before,
.workflow-step-visual::after {
  display: none;
}

.workflow-step strong {
  display: block;
  font-size: 0.64rem;
  color: rgba(236, 240, 247, 0.48);
  line-height: 1.08;
  letter-spacing: -0.01em;
  max-width: none;
  text-align: center;
  text-wrap: balance;
}

.workflow-step-state {
  display: none;
}

.workflow-step[data-state="queued"] {
  opacity: 0.68;
}

.workflow-step[data-state="done"] {
  opacity: 0.9;
}

.workflow-step[data-state="working"] {
  opacity: 1;
  transform: translateY(-1px);
  background: transparent;
  box-shadow: none;
}

.workflow-step[data-state="working"] strong {
  color: #f6f8fb;
}

.workflow-step[data-state="queued"] .workflow-step-visual {
  opacity: 0.28;
}

.workflow-step[data-state="done"] .workflow-step-visual {
  background: rgba(200, 255, 114, 0.42);
  opacity: 0.58;
}

.workflow-step[data-state="working"] .workflow-step-visual {
  background: rgba(247, 251, 255, 0.96);
  opacity: 1;
  transform: scale(1.18);
  box-shadow: 0 0 0 4px rgba(167, 189, 210, 0.12), 0 0 16px rgba(167, 189, 210, 0.28);
}

.workflow-step:last-child::after {
  display: none;
}

.workflow-status {
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 20px;
  color: rgba(232, 236, 243, 0.58);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(200, 255, 114, 0.42);
  animation: status-pulse 1.8s ease-in-out infinite;
}

.studio-console[data-stage="compose"] .composer-shell,
.studio-console[data-stage="attach"] .composer-shell {
  border-color: rgba(200, 255, 114, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 0 1px rgba(200, 255, 114, 0.06),
    0 0 30px rgba(200, 255, 114, 0.08);
}

.studio-console[data-stage="compose"] .composer-aura-ring-one,
.studio-console[data-stage="attach"] .composer-aura-ring-one {
  animation: ring-drift-one 7.8s ease-in-out infinite;
}

.studio-console[data-stage="compose"] .composer-aura-ring-two,
.studio-console[data-stage="attach"] .composer-aura-ring-two {
  animation: ring-drift-two 9.2s ease-in-out infinite;
}

.studio-console[data-stage="compose"] .composer-topline-dot,
.studio-console[data-stage="attach"] .composer-topline-dot {
  animation: status-pulse 1.5s ease-in-out infinite;
}

.studio-console[data-stage="compose"] .composer-topline-track,
.studio-console[data-stage="attach"] .composer-topline-track {
  animation: topline-flow 3.2s linear infinite;
}

.studio-console[data-stage="compose"] .composer-drive-line,
.studio-console[data-stage="attach"] .composer-drive-line {
  animation: drive-idle 2.8s linear infinite;
}

.studio-console[data-stage="compose"] .composer-depth-grid-primary::before,
.studio-console[data-stage="attach"] .composer-depth-grid-primary::before {
  animation: depth-grid-shift 7s linear infinite;
}

.studio-console[data-stage="compose"] .brief-glow,
.studio-console[data-stage="attach"] .brief-glow {
  animation: brief-glow 1.2s ease-in-out infinite;
}

.studio-console[data-stage="compose"] .typed-brief {
  animation: text-charge 2.8s linear infinite;
}

.studio-console[data-stage="search"] .composer-shell {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 0 1px rgba(167, 189, 210, 0.08),
    0 0 34px rgba(167, 189, 210, 0.1);
}

.studio-console[data-stage="search"] .output-stage-marker {
  background: rgba(156, 220, 207, 0.98);
  box-shadow: 0 0 16px rgba(156, 220, 207, 0.42);
}

.studio-console[data-stage="search"] .workflow-grid::after {
  background: radial-gradient(160px 90px at var(--grid-glow-x, 0px) 52%, rgba(156, 220, 207, 0.16), transparent 72%);
}

.studio-console[data-stage="director"] .output-stage-marker {
  background: rgba(247, 242, 232, 0.98);
  box-shadow: 0 0 16px rgba(221, 195, 159, 0.34);
}

.studio-console[data-stage="director"] .workflow-grid::after {
  background: radial-gradient(160px 90px at var(--grid-glow-x, 0px) 52%, rgba(221, 195, 159, 0.14), transparent 72%);
}

.studio-console[data-stage="audio"] .output-stage-marker {
  background: rgba(156, 220, 207, 0.98);
  box-shadow: 0 0 16px rgba(156, 220, 207, 0.42);
}

.studio-console[data-stage="audio"] .workflow-grid::after {
  background: radial-gradient(160px 90px at var(--grid-glow-x, 0px) 52%, rgba(156, 220, 207, 0.14), transparent 72%);
}

.studio-console[data-stage="visual"] .output-stage-marker {
  background: rgba(167, 189, 210, 0.98);
  box-shadow: 0 0 16px rgba(167, 189, 210, 0.42);
}

.studio-console[data-stage="visual"] .workflow-grid::after {
  background: radial-gradient(160px 90px at var(--grid-glow-x, 0px) 52%, rgba(167, 189, 210, 0.16), transparent 72%);
}

.studio-console[data-stage="engine"] .output-stage-marker {
  background: rgba(221, 195, 159, 0.98);
  box-shadow: 0 0 16px rgba(221, 195, 159, 0.42);
}

.studio-console[data-stage="engine"] .workflow-grid::after {
  background: radial-gradient(160px 90px at var(--grid-glow-x, 0px) 52%, rgba(221, 195, 159, 0.16), transparent 72%);
}

.studio-console[data-stage="render"] .output-stage-marker {
  background: rgba(200, 255, 114, 0.98);
  box-shadow: 0 0 16px rgba(200, 255, 114, 0.42);
}

.studio-console[data-stage="render"] .workflow-grid::after {
  background: radial-gradient(160px 90px at var(--grid-glow-x, 0px) 52%, rgba(200, 255, 114, 0.16), transparent 72%);
}

.studio-console.is-manual-launch .composer-drive-pulse,
.studio-console[data-stage="search"] .composer-drive-pulse {
  animation: drive-pulse 820ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.studio-console.is-manual-launch .composer-launch,
.studio-console[data-stage="search"] .composer-launch {
  opacity: 1;
}

.studio-console.is-manual-launch .composer-launch-core,
.studio-console[data-stage="search"] .composer-launch-core {
  animation: launch-core 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.studio-console.is-manual-launch .composer-launch-beam,
.studio-console[data-stage="search"] .composer-launch-beam {
  animation: launch-beam 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.studio-console.is-manual-launch .composer-launch-pulse,
.studio-console[data-stage="search"] .composer-launch-pulse {
  animation: launch-pulse 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.studio-console[data-stage="render"] .output-shell {
  box-shadow:
    inset 0 0 0 1px rgba(200, 255, 114, 0.12),
    0 0 0 1px rgba(200, 255, 114, 0.08),
    0 0 40px rgba(200, 255, 114, 0.12);
}

.studio-console[data-stage="render"] .output-footer-note {
  color: rgba(235, 247, 223, 0.9);
}

.workflow-step[data-state="working"] .workflow-step-visual {
  background: rgba(255, 255, 255, 0.05);
}

.access-section {
  padding-top: 78px;
  animation: rise-in 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.access-dock {
  max-width: 1008px;
  margin: 0 auto;
  padding: 24px 24px 26px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 251, 243, 0.82), rgba(246, 240, 230, 0.76)),
    rgba(255, 255, 255, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    0 24px 54px rgba(19, 18, 15, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
}

.access-dock::before {
  content: "";
  display: block;
  height: 1px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, rgba(200, 255, 114, 0.9), rgba(16, 16, 16, 0.16), rgba(16, 16, 16, 0));
}

.access-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 18px;
}

.access-heading .eyebrow {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: rgba(95, 88, 77, 0.78);
}

.access-heading h2 {
  font-size: clamp(1.14rem, 1.9vw, 1.34rem);
  color: #1b1814;
  line-height: 1.08;
  max-width: 28ch;
  text-align: left;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  letter-spacing: -0.02em;
  font-weight: 760;
  opacity: 0.94;
}

.access-helper {
  margin: 2px 0 0;
  color: rgba(95, 88, 77, 0.88);
  font-size: 0.93rem;
  line-height: 1.5;
  max-width: 54ch;
}

.access-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 20px;
  align-items: start;
}

.access-card {
  position: relative;
  overflow: hidden;
  align-self: start;
  padding: 22px 22px 20px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.78), rgba(247, 241, 232, 0.64)),
    rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(16, 16, 16, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 18px 34px rgba(19, 18, 15, 0.07);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.access-card-invite {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.88), rgba(246, 241, 232, 0.74)),
    rgba(255, 255, 255, 0.48);
  border-color: rgba(16, 16, 16, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 22px 42px rgba(19, 18, 15, 0.1);
}

.access-card-apply {
  isolation: isolate;
}

.access-card-apply > * {
  position: relative;
  z-index: 1;
}

.access-card-apply::after {
  content: "";
  position: absolute;
  top: -24%;
  bottom: -24%;
  left: -40%;
  width: 42%;
  background: linear-gradient(
    90deg,
    rgba(200, 255, 114, 0),
    rgba(200, 255, 114, 0.28),
    rgba(255, 255, 255, 0.8),
    rgba(200, 255, 114, 0)
  );
  opacity: 0;
  transform: translateX(-130%) skewX(-18deg);
  pointer-events: none;
  z-index: 0;
}

.access-card-apply.is-submitting {
  border-color: rgba(200, 255, 114, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 20px 38px rgba(19, 18, 15, 0.09),
    0 0 0 1px rgba(200, 255, 114, 0.12);
}

.access-card-apply.is-submitting::after {
  opacity: 0.9;
  animation: apply-sweep 980ms linear infinite;
}

.access-card-apply.is-success {
  border-color: rgba(200, 255, 114, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 24px 42px rgba(19, 18, 15, 0.1),
    0 0 0 1px rgba(200, 255, 114, 0.16),
    0 0 28px rgba(200, 255, 114, 0.18);
  animation: apply-card-pop 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.access-card-apply.is-success::after {
  opacity: 1;
  animation: apply-sweep 860ms cubic-bezier(0.22, 1, 0.36, 1) 1;
}

.access-card-apply .button-dark:disabled {
  cursor: wait;
  opacity: 0.9;
  transform: none;
}

.access-card-apply.is-success .button-dark {
  box-shadow: 0 18px 34px rgba(200, 255, 114, 0.28);
}

.access-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 255, 114, 0.84), rgba(16, 16, 16, 0.14), rgba(16, 16, 16, 0));
}

.access-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.access-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(16, 16, 16, 0.04);
  border: 1px solid rgba(16, 16, 16, 0.08);
  color: #161616;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.access-label {
  color: #5f584d;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.access-card .panel-kicker {
  display: block;
  margin-top: 14px;
  color: #5f584d;
}

.access-card h3 {
  margin-top: -2px;
  font-size: 1.52rem;
  color: #161616;
  line-height: 1;
  letter-spacing: -0.03em;
}

.feedback {
  color: #5f584d;
}

.stack-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 6px;
}

.access-section input,
.access-section textarea {
  font-size: 0.95rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(16, 16, 16, 0.14);
  border-radius: 16px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.66);
  color: #161616;
  outline: none;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(95, 88, 77, 0.5);
}

input:focus,
textarea:focus {
  border-color: rgba(16, 16, 16, 0.4);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 4px rgba(16, 16, 16, 0.06);
  transform: translateY(-1px);
}

textarea {
  resize: vertical;
  min-height: 116px;
}

.button {
  border: none;
  cursor: pointer;
  padding: 15px 18px;
  border-radius: 16px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.access-section .button {
  font-size: 0.95rem;
}

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

.button-accent,
.button-dark {
  color: #071018;
}

.button-accent {
  background: linear-gradient(180deg, #0d1018, #202634);
  color: #f7fbff;
  box-shadow: 0 14px 28px rgba(19, 18, 15, 0.14);
}

.button-dark {
  background: linear-gradient(180deg, var(--accent), #ddff97);
  box-shadow: 0 14px 28px rgba(200, 255, 114, 0.18);
}

.invite-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.invite-form .button {
  min-width: 136px;
}

.apply-fields {
  display: grid;
  gap: 12px;
}

.apply-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.access-note {
  color: rgba(95, 88, 77, 0.82);
  font-size: 0.86rem;
  line-height: 1.45;
  max-width: 24ch;
}

.access-note-inline {
  max-width: none;
}

.feedback {
  min-height: 20px;
  font-weight: 700;
  font-size: 0.84rem;
}

.feedback.is-error {
  color: var(--alert);
}

.feedback.is-success {
  color: var(--ok);
}

.concept-footer {
  width: min(100%, 920px);
  margin: 36px auto 0;
  padding: 20px 2px 0;
  border-top: 1px solid rgba(16, 16, 16, 0.08);
  color: rgba(95, 88, 77, 0.86);
}

.footer-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-brand {
  font-weight: 800;
  color: #171512;
  letter-spacing: -0.02em;
}

.footer-tagline {
  color: rgba(95, 88, 77, 0.86);
  font-size: 0.9rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 12px;
  font-size: 0.76rem;
  letter-spacing: 0.01em;
}

.footer-link {
  position: relative;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease;
}

.footer-link:hover {
  color: #171512;
}

.footer-link-icon {
  justify-content: center;
  width: 18px;
  height: 18px;
}

.footer-link-icon svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.footer-meta > *:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(16, 16, 16, 0.22);
  transform: translateY(-50%);
}

@media (max-width: 1080px) {
  .workflow-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .workflow-rail {
    top: 18px;
  }
}

@media (max-width: 920px) {
  .composer-shell.is-recorder-focus {
    transform: translate(var(--recorder-pan-x), var(--recorder-pan-y)) scale(1.014);
  }

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

  .access-heading {
    gap: 8px;
  }

  .access-heading h2 {
    max-width: none;
  }

  .brief-panel {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .output-panel {
    min-height: 0;
  }

  .workflow-grid {
    gap: 0;
    margin-top: 0;
    padding-top: 16px;
  }

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

  .workflow-step {
    min-height: 32px;
    padding: 8px 3px 0;
    border: none;
    background: transparent;
    box-shadow: none;
  }
}

@media (max-width: 720px) {
  .concept-shell {
    width: min(100vw - 18px, 1180px);
    padding-top: 18px;
  }

  .hero-lead {
    padding: 42px 0 30px;
  }

  .hero-lead h1 {
    font-size: clamp(2.8rem, 12vw, 3.6rem);
    max-width: 12.2ch;
  }

  .hero-proof {
    flex-wrap: wrap;
    border-radius: 24px;
    padding: 12px 14px;
  }

  .brief-panel,
  .workflow-band {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brief-panel {
    min-height: 0;
    padding-top: 20px;
  }

  .composer-shell {
    min-height: 196px;
    padding: 16px 16px 14px;
  }

  .composer-depth {
    inset: 42px 16px 58px;
  }

  .attachment-pop {
    left: 0;
    top: 0;
    width: 204px;
    height: 0;
  }

  .attachment-pop.is-open {
    height: 62px;
    margin-top: 12px;
  }

  .demo-cursor {
    --cursor-scale: 0.92;
  }

  .video-center-play {
    width: 72px;
    height: 72px;
  }

  .output-footer {
    padding: 8px 12px 0;
  }

  .output-footer-note {
    font-size: 0.64rem;
  }

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

  .workflow-step {
    min-height: 30px;
    padding: 8px 2px 0;
  }

  .workflow-step strong {
    font-size: 0.58rem;
    letter-spacing: -0.01em;
  }

  .workflow-step-visual {
    width: 6px;
    height: 6px;
  }

  .workflow-status {
    margin-top: 10px;
    font-size: 0.68rem;
  }

  .demo-cursor {
    --cursor-scale: 0.82;
  }

  .composer-shell.is-recorder-focus {
    transform: translate(var(--recorder-pan-x), var(--recorder-pan-y)) scale(1.01);
  }

  .access-section {
    padding-top: 48px;
  }

  .access-dock {
    padding: 20px 18px 22px;
    border-radius: 26px;
  }

  .access-card {
    padding: 20px 18px 18px;
    border-radius: 24px;
  }

  .access-heading h2 {
    font-size: 1.08rem;
  }

  .access-card h3 {
    font-size: 1.3rem;
  }

  .invite-form {
    grid-template-columns: 1fr;
  }

  .invite-form .button {
    width: 100%;
    min-width: 0;
  }

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

  .access-note {
    max-width: none;
  }

  .concept-footer {
    margin-top: 28px;
    padding-top: 16px;
  }

  .footer-brand-row {
    gap: 6px;
    justify-content: flex-start;
  }

  .footer-tagline {
    width: 100%;
    font-size: 0.84rem;
  }

  .footer-meta {
    gap: 8px 14px;
    font-size: 0.74rem;
  }

  .footer-meta span:not(:last-child)::after {
    right: -8px;
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cursor-blink {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

@keyframes status-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 18px rgba(200, 255, 114, 0.45);
  }

  50% {
    transform: scale(1.18);
    box-shadow: 0 0 26px rgba(200, 255, 114, 0.72);
  }
}

@keyframes brief-glow {
  0%,
  100% {
    opacity: 0.22;
    transform: scaleX(0.86);
  }

  50% {
    opacity: 0.9;
    transform: scaleX(1);
  }
}

@keyframes state-breathe {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(167, 189, 210, 0);
  }

  50% {
    transform: translateY(-1px);
    box-shadow: 0 0 18px rgba(167, 189, 210, 0.12);
  }
}

@keyframes send-ready {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-1px) scale(1.02);
  }
}

@keyframes composer-sheen {
  0% {
    transform: translateX(-42%) rotate(6deg);
    opacity: 0.14;
  }

  18% {
    opacity: 0.3;
  }

  46% {
    opacity: 0.36;
  }

  100% {
    transform: translateX(42%) rotate(6deg);
    opacity: 0.12;
  }
}

@keyframes ring-drift-one {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.98);
    opacity: 0.18;
  }

  50% {
    transform: translate3d(10px, 6px, 0) scale(1.04);
    opacity: 0.28;
  }
}

@keyframes ring-drift-two {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.96);
    opacity: 0.12;
  }

  50% {
    transform: translate3d(-10px, -8px, 0) scale(1.02);
    opacity: 0.22;
  }
}

@keyframes topline-flow {
  0% {
    background-position: 0% 0%;
    opacity: 0.54;
  }

  50% {
    background-position: 100% 0%;
    opacity: 0.86;
  }

  100% {
    background-position: 0% 0%;
    opacity: 0.54;
  }
}

@keyframes depth-grid-shift {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0.18;
  }

  50% {
    transform: translate3d(-10px, -6px, 0);
    opacity: 0.3;
  }

  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.18;
  }
}

@keyframes drive-idle {
  0% {
    opacity: 0.52;
  }

  50% {
    opacity: 0.8;
  }

  100% {
    opacity: 0.52;
  }
}

@keyframes drive-pulse {
  0% {
    transform: translateY(-50%) translateX(0) scaleX(0.3);
    opacity: 0;
  }

  18% {
    opacity: 0.96;
  }

  80% {
    opacity: 0.86;
  }

  100% {
    transform: translateY(-50%) translateX(calc(100% - 30px)) scaleX(1);
    opacity: 0;
  }
}

@keyframes text-charge {
  0%,
  100% {
    text-shadow:
      0 0 18px rgba(255, 255, 255, 0.02),
      0 0 0 rgba(156, 220, 207, 0);
  }

  50% {
    text-shadow:
      0 0 22px rgba(255, 255, 255, 0.06),
      0 0 22px rgba(156, 220, 207, 0.08);
  }
}

@keyframes workflow-rail-flow {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(120%);
  }
}

@keyframes workflow-search-sweep {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@keyframes workflow-director-pulse {
  0%,
  100% {
    box-shadow: -12px 0 0 rgba(221, 195, 159, 0.46), -24px 0 0 rgba(221, 195, 159, 0.24);
    transform: translateX(0);
  }

  50% {
    box-shadow: -12px 0 0 rgba(221, 195, 159, 0.86), -24px 0 0 rgba(221, 195, 159, 0.44);
    transform: translateX(2px);
  }
}

@keyframes workflow-audio-bars {
  0%,
  100% {
    transform: scaleY(0.8);
    opacity: 0.72;
  }

  50% {
    transform: scaleY(1.18);
    opacity: 1;
  }
}

@keyframes workflow-visual-frame {
  0%,
  100% {
    opacity: 0.72;
    inset: 7px 11px;
  }

  50% {
    opacity: 1;
    inset: 6px 10px;
  }
}

@keyframes workflow-engine-lines {
  0% {
    opacity: 0;
    transform: translateX(-90%) skewX(-36deg);
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(90%) skewX(-36deg);
  }
}

@keyframes workflow-engine-lines-alt {
  0% {
    opacity: 0;
    transform: translateX(90%) skewX(36deg);
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(-90%) skewX(36deg);
  }
}

@keyframes launch-core {
  0% {
    transform: scale(0.42);
    opacity: 0;
  }

  24% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(-130px, -58px) scale(0.3);
    opacity: 0;
  }
}

@keyframes launch-beam {
  0% {
    opacity: 0;
    transform: rotate(-24deg) scaleX(0.06);
  }

  26% {
    opacity: 1;
    transform: rotate(-24deg) scaleX(1);
  }

  100% {
    opacity: 0;
    transform: rotate(-24deg) scaleX(0.18);
  }
}

@keyframes launch-pulse {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }

  28% {
    opacity: 0.62;
  }

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

@keyframes cursor-click-ring {
  0% {
    opacity: 0.9;
    transform: scale(0.3);
  }

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

@keyframes cursor-click-press {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(1px, 2px);
  }
}

@keyframes workflow-render-glow {
  0%,
  100% {
    opacity: 0.72;
    box-shadow: 0 0 10px rgba(200, 255, 114, 0.18);
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 18px rgba(200, 255, 114, 0.34);
  }
}

@keyframes apply-sweep {
  from {
    transform: translateX(-130%) skewX(-18deg);
  }

  to {
    transform: translateX(340%) skewX(-18deg);
  }
}

@keyframes apply-card-pop {
  0% {
    transform: translateY(0) scale(1);
  }

  35% {
    transform: translateY(-2px) scale(1.012);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .access-card-apply,
  .access-card-apply::after {
    animation: none !important;
    transition: none !important;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}


/* admin styles */
.admin-body {
  min-height: 100vh;
}

.admin-shell {
  width: min(1240px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 40px 0 88px;
}

.admin-topbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.admin-topbar h1 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 0.94;
  margin: 0;
  color: #1b1814;
}

.admin-auth-form {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255, 252, 246, 0.72);
  border: 1px solid rgba(16, 16, 16, 0.08);
  box-shadow: 0 16px 40px rgba(19, 18, 15, 0.08);
}

.admin-auth-form input {
  min-width: 280px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.stat-card,
.admin-panel {
  background: rgba(255, 252, 246, 0.74);
  border: 1px solid rgba(16, 16, 16, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(19, 18, 15, 0.08);
  backdrop-filter: blur(16px);
}

.stat-card {
  padding: 18px 18px 20px;
  display: grid;
  gap: 10px;
}

.stat-card .panel-kicker {
  color: #5f584d;
}

.stat-card strong {
  font-size: 1.9rem;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #1b1814;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  margin-bottom: 18px;
}

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

.admin-panel {
  padding: 22px;
}

.panel-heading.compact {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.panel-heading.compact h2 {
  margin: 4px 0 0;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.compact-form,
.stack-form {
  display: grid;
  gap: 14px;
}

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

.inline-grid label,
.stack-form label {
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--muted);
}

.admin-shell input,
.admin-shell textarea,
.admin-shell select {
  width: 100%;
  border: 1px solid rgba(16, 16, 16, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  padding: 12px 14px;
  outline: none;
}

.admin-shell input:focus,
.admin-shell textarea:focus,
.admin-shell select:focus {
  border-color: rgba(200, 255, 114, 0.9);
  box-shadow: 0 0 0 4px rgba(200, 255, 114, 0.16);
}

.trend-chart {
  min-height: 240px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(36px, 1fr));
  gap: 10px;
  align-items: end;
  padding: 18px;
  border-radius: 20px;
  background: rgba(16, 16, 16, 0.04);
}

.chart-col {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.chart-bar {
  width: 100%;
  max-width: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(200, 255, 114, 0.96), rgba(141, 207, 61, 0.9));
  box-shadow: 0 8px 18px rgba(141, 207, 61, 0.24);
}

.chart-label {
  font-size: 0.78rem;
  color: var(--muted);
}

.chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.chips-row span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(16, 16, 16, 0.08);
  background: rgba(255, 255, 255, 0.72);
  color: #3d382f;
  font-size: 0.82rem;
  font-weight: 700;
}

.table-panel {
  min-height: 360px;
}

.table-list {
  display: grid;
  gap: 12px;
}

.row-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 16, 16, 0.08);
}

.row-card p {
  margin: 0;
  line-height: 1.55;
  color: #423b31;
}

.row-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.row-title {
  font-size: 1rem;
  font-weight: 800;
  color: #171410;
}

.row-subtitle,
.table-meta {
  color: #6a6255;
  font-size: 0.84rem;
}

.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.status-tag,
.status-button,
.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.status-tag {
  padding: 8px 12px;
  border: 1px solid rgba(16, 16, 16, 0.08);
  background: rgba(255, 255, 255, 0.75);
  color: #2e2a24;
  text-transform: capitalize;
}

.status-tag.pending { background: rgba(243, 194, 93, 0.18); color: #7c5900; }
.status-tag.reviewing { background: rgba(167, 189, 210, 0.18); color: #34506a; }
.status-tag.approved, .status-tag.active { background: rgba(21, 111, 77, 0.14); color: #156f4d; }
.status-tag.rejected { background: rgba(255, 111, 74, 0.14); color: #b43d1f; }

.status-button,
.pill-button {
  border: 1px solid rgba(16, 16, 16, 0.08);
  background: #101010;
  color: #faf6ee;
  padding: 10px 14px;
  cursor: pointer;
}

.status-button:hover,
.pill-button:hover {
  transform: translateY(-1px);
}

.empty-state {
  padding: 24px;
  border-radius: 18px;
  background: rgba(16, 16, 16, 0.04);
  color: #6a6255;
  text-align: center;
}

@media (max-width: 980px) {
  .admin-shell {
    width: min(100vw - 24px, 1240px);
    padding: 24px 0 64px;
  }

  .admin-topbar,
  .admin-grid,
  .admin-grid-bottom,
  .inline-grid,
  .stats-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .admin-topbar {
    align-items: stretch;
  }

  .admin-auth-form {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-auth-form input {
    min-width: 0;
  }
}
