:root {
  --bg-main: #090b13;
  --bg-secondary: #10121a;
  --bg-card: #171922;
  --bg-card-hover: #1d1f2a;
  --brand-pink: #e77a9e;
  --brand-purple: #b358cb;
  --brand-blue: #4b7fd8;
  --brand-pink-bright: #f77ea4;
  --brand-purple-bright: #cb47ea;
  --brand-blue-bright: #438cff;
  --text-primary: #f6f3fa;
  --text-secondary: #c0bcc8;
  --text-muted: #8f909c;
  --border-soft: rgba(255, 255, 255, 0.09);
  --border-highlight: rgba(203, 71, 234, 0.26);
  --gradient-brand: linear-gradient(
    100deg,
    var(--brand-pink) 0%,
    var(--brand-purple) 52%,
    var(--brand-blue) 100%
  );
  --container: 1200px;
  --header-height: 78px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg-main);
  color: var(--text-primary);
  font-family:
    -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

::selection {
  background: rgba(203, 71, 234, 0.3);
  color: #fff;
}

:focus-visible {
  outline: 3px solid rgba(75, 127, 216, 0.9);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 999;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--text-primary);
  color: var(--bg-main);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.section {
  position: relative;
  padding: 132px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition:
    background-color 240ms ease,
    border-color 240ms ease,
    backdrop-filter 240ms ease;
}

.site-header.scrolled,
.site-header.menu-active {
  border-color: rgba(255, 255, 255, 0.07);
  background: rgba(9, 11, 19, 0.88);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 13px;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.24), transparent 30%),
    var(--gradient-brand);
  box-shadow: 0 10px 28px rgba(179, 88, 203, 0.22);
  overflow: hidden;
}

.brand-orbit {
  position: absolute;
  width: 26px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  transform: rotate(-28deg);
}

.brand-core {
  position: relative;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.2;
}

.brand-copy strong {
  font-size: 18px;
  letter-spacing: 0.12em;
}

.brand-copy small {
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-menu a {
  position: relative;
  color: #aaa7b2;
  font-size: 14px;
  transition: color 180ms ease;
}

.nav-menu a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  border-radius: 4px;
  background: var(--gradient-brand);
  content: "";
  opacity: 0;
  transform: scaleX(0.25);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--text-primary);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-menu .nav-contact {
  padding: 9px 17px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.nav-menu .nav-contact::after {
  display: none;
}

.nav-menu .nav-contact:hover {
  border-color: rgba(179, 88, 203, 0.35);
  background: rgba(179, 88, 203, 0.08);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  margin: 5px auto;
  border-radius: 4px;
  background: currentColor;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.hero {
  position: relative;
  display: flex;
  min-height: 860px;
  padding: calc(var(--header-height) + 86px) 0 108px;
  align-items: center;
  background:
    radial-gradient(circle at 20% 18%, rgba(231, 122, 158, 0.1), transparent 30%),
    radial-gradient(circle at 75% 30%, rgba(75, 127, 216, 0.11), transparent 34%),
    linear-gradient(180deg, #090b13 0%, #0b0d15 100%);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-position: center;
  background-size: 72px 72px;
  content: "";
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 88%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 88%);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  right: -15%;
  bottom: -42%;
  width: 850px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
  content: "";
  transform: rotate(-12deg);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.16;
  pointer-events: none;
}

.hero-glow-pink {
  top: 18%;
  left: -160px;
  background: var(--brand-pink);
}

.hero-glow-blue {
  right: -130px;
  bottom: 6%;
  background: var(--brand-blue);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
  gap: 78px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: #aaa6b2;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

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

.eyebrow > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradient-brand);
  box-shadow: 0 0 14px rgba(203, 71, 234, 0.7);
}

.hero h1,
.section-heading h2,
.about-copy h2,
.contact-card h2 {
  margin: 0;
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.14;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(50px, 5.5vw, 76px);
}

.gradient-text {
  display: inline-block;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 600px;
  margin: 30px 0 0;
  color: #d1cdd6;
  font-size: 18px;
  line-height: 1.85;
}

.hero-support {
  max-width: 560px;
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 14px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 650;
  transition:
    transform 200ms var(--ease),
    box-shadow 200ms ease,
    border-color 200ms ease,
    background-color 200ms ease;
}

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

.button-primary {
  background: var(--gradient-brand);
  box-shadow: 0 14px 36px rgba(134, 72, 170, 0.25);
  color: #fff;
}

.button-primary:hover {
  box-shadow: 0 18px 45px rgba(134, 72, 170, 0.33);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
}

.button-secondary:hover {
  border-color: rgba(179, 88, 203, 0.35);
  background: rgba(179, 88, 203, 0.07);
}

.hero-tags {
  display: flex;
  margin: 38px 0 0;
  padding: 0;
  gap: 24px;
  color: #8f8c98;
  font-size: 12px;
  list-style: none;
}

.hero-tags li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-tags li > span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #777482;
}

.hero-visual {
  position: relative;
  perspective: 1400px;
}

.visual-caption {
  position: absolute;
  z-index: 3;
  top: -13px;
  right: 28px;
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(14, 15, 23, 0.92);
  color: #8f8c98;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.workspace-window {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: #11131b;
  box-shadow:
    0 50px 110px rgba(0, 0, 0, 0.46),
    0 0 90px rgba(92, 52, 131, 0.12);
  overflow: hidden;
  transform: rotateY(-4deg) rotateX(1.5deg);
}

.workspace-window::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    130deg,
    rgba(255, 255, 255, 0.045),
    transparent 28%
  );
  content: "";
  pointer-events: none;
}

.window-bar {
  display: grid;
  height: 48px;
  padding: 0 18px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
  background: rgba(20, 21, 29, 0.98);
}

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

.window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3c3d46;
}

.window-dots span:first-child {
  background: #9d6073;
}

.window-dots span:nth-child(2) {
  background: #88714c;
}

.window-title {
  color: #9d9aa6;
  font-size: 10px;
  letter-spacing: 0.04em;
}

.window-status {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 6px;
  color: #777582;
  font-size: 9px;
}

.window-status span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #6c9d73;
}

.workspace-body {
  display: grid;
  min-height: 480px;
  grid-template-columns: 88px 1fr;
}

.workspace-sidebar {
  display: flex;
  padding: 18px 10px;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.055);
  background: #0d0f16;
}

.sidebar-logo {
  display: grid;
  width: 30px;
  height: 30px;
  margin: 0 auto 11px;
  place-items: center;
  border-radius: 9px;
  background: var(--gradient-brand);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.sidebar-item {
  display: flex;
  padding: 9px 8px;
  align-items: center;
  gap: 7px;
  border-radius: 8px;
  color: #6f6d78;
  font-size: 8px;
}

.sidebar-item.active {
  background: rgba(179, 88, 203, 0.11);
  color: #d8d4dd;
}

.sidebar-icon {
  position: relative;
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 3px;
}

.icon-style {
  border-radius: 50%;
}

.icon-work::after {
  position: absolute;
  inset: 3px;
  border: 1px solid currentColor;
  border-radius: 1px;
  content: "";
}

.sidebar-bottom {
  display: flex;
  margin-top: auto;
  padding: 0 7px 6px;
  flex-direction: column;
  gap: 8px;
}

.sidebar-bottom span {
  width: 13px;
  height: 2px;
  border-radius: 2px;
  background: #353640;
}

.workspace-content {
  padding: 25px 25px 23px;
  background:
    radial-gradient(circle at 90% 10%, rgba(75, 127, 216, 0.07), transparent 28%),
    #12141c;
}

.workspace-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.workspace-heading > div {
  display: flex;
  flex-direction: column;
}

.micro-label {
  margin-bottom: 2px;
  color: #6f6d79;
  font-size: 8px;
}

.workspace-heading strong {
  font-size: 16px;
  font-weight: 620;
}

.progress-pill {
  padding: 4px 9px;
  border: 1px solid rgba(179, 88, 203, 0.2);
  border-radius: 999px;
  background: rgba(179, 88, 203, 0.07);
  color: #bd8fc8;
  font-size: 8px;
}

.process-row {
  display: flex;
  margin: 22px 0;
  align-items: center;
}

.process-step {
  display: flex;
  min-width: 48px;
  flex-direction: column;
  color: #666570;
  font-size: 8px;
  line-height: 1.4;
}

.process-step span {
  color: #4f4e58;
  font-size: 7px;
}

.process-step.done,
.process-step.active {
  color: #d1cdd6;
}

.process-step.done span,
.process-step.active span {
  color: #bb70c8;
}

.process-row i {
  height: 1px;
  margin: 0 7px;
  flex: 1;
  background: #292a33;
}

.workspace-panels {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
}

.script-panel,
.assets-panel {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 13px;
  background: #171922;
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #aaa6b2;
  font-size: 8px;
}

.panel-top small {
  color: #66646f;
  font-size: 7px;
}

.script-panel h3 {
  margin: 16px 0 8px;
  font-size: 13px;
  font-weight: 600;
}

.script-panel p {
  margin: 0;
  color: #888591;
  font-size: 8px;
  line-height: 1.85;
}

.script-lines {
  display: flex;
  margin-top: 17px;
  flex-direction: column;
  gap: 6px;
}

.script-lines span {
  width: 90%;
  height: 3px;
  border-radius: 4px;
  background: #272933;
}

.script-lines span:nth-child(2) {
  width: 72%;
}

.script-lines span:nth-child(3) {
  width: 82%;
}

.asset-grid {
  display: grid;
  margin-top: 12px;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.asset-card {
  min-width: 0;
}

.asset-art {
  position: relative;
  display: block;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 9px;
  overflow: hidden;
}

.asset-card p {
  margin: 5px 0 0;
  color: #777481;
  font-size: 7px;
  text-align: center;
}

.asset-person .asset-art {
  background:
    radial-gradient(circle at 50% 28%, rgba(231, 122, 158, 0.32), transparent 34%),
    linear-gradient(145deg, #302234, #171a24);
}

.person-head {
  position: absolute;
  top: 24%;
  left: 50%;
  width: 18%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #8e6876;
  transform: translateX(-50%);
}

.person-body {
  position: absolute;
  right: 29%;
  bottom: -10%;
  left: 29%;
  height: 54%;
  border-radius: 50% 50% 0 0;
  background: #4e394b;
}

.asset-scene .asset-art {
  background:
    radial-gradient(circle at 68% 28%, rgba(75, 127, 216, 0.35), transparent 22%),
    linear-gradient(150deg, #1b2c4d, #171924 65%);
}

.scene-moon {
  position: absolute;
  top: 18%;
  right: 22%;
  width: 18%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #aab9dd;
  box-shadow: 0 0 16px rgba(122, 151, 221, 0.4);
}

.scene-line {
  position: absolute;
  right: 0;
  bottom: 24%;
  left: 0;
  height: 1px;
  background: rgba(133, 155, 205, 0.3);
  transform: rotate(-8deg);
}

.scene-line.second {
  bottom: 17%;
  transform: rotate(5deg);
}

.asset-prop .asset-art {
  background:
    radial-gradient(circle at 50% 50%, rgba(179, 88, 203, 0.24), transparent 37%),
    linear-gradient(145deg, #2a2537, #181923);
}

.prop-envelope {
  position: absolute;
  top: 38%;
  left: 25%;
  width: 50%;
  height: 32%;
  border: 1px solid rgba(223, 204, 230, 0.65);
  border-radius: 2px;
}

.prop-envelope::before,
.prop-envelope::after {
  position: absolute;
  top: 0;
  width: 63%;
  height: 1px;
  background: rgba(223, 204, 230, 0.65);
  content: "";
}

.prop-envelope::before {
  left: 0;
  transform: rotate(29deg);
  transform-origin: left;
}

.prop-envelope::after {
  right: 0;
  transform: rotate(-29deg);
  transform-origin: right;
}

.generation-bar {
  display: flex;
  margin-top: 12px;
  padding: 12px 14px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(179, 88, 203, 0.16);
  border-radius: 11px;
  background: linear-gradient(
    110deg,
    rgba(231, 122, 158, 0.06),
    rgba(75, 127, 216, 0.045)
  );
}

.generation-bar > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.generation-icon {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: var(--gradient-brand);
}

.generation-icon::after {
  position: absolute;
  inset: 7px;
  border: 1px solid #fff;
  border-radius: 50%;
  content: "";
}

.generation-bar p {
  display: flex;
  margin: 0;
  flex-direction: column;
  line-height: 1.5;
}

.generation-bar strong {
  font-size: 9px;
}

.generation-bar small {
  color: #706e7a;
  font-size: 7px;
}

.generation-button {
  padding: 5px 10px;
  border-radius: 7px;
  background: var(--gradient-brand);
  color: #fff;
  font-size: 7px;
}

.positioning {
  border-top: 1px solid rgba(255, 255, 255, 0.045);
  background:
    radial-gradient(circle at 95% 10%, rgba(179, 88, 203, 0.08), transparent 26%),
    var(--bg-main);
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.about-copy h2,
.contact-card h2 {
  font-size: clamp(38px, 4.6vw, 58px);
}

.section-heading > p:last-child,
.about-copy > p,
.contact-card > p:not(.section-kicker) {
  color: var(--text-secondary);
}

.section-heading > p:last-child {
  max-width: 660px;
  margin: 24px 0 0;
  font-size: 16px;
  line-height: 1.9;
}

.section-kicker {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.value-grid {
  display: grid;
  margin-top: 66px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-card,
.capability-card {
  position: relative;
  border: 1px solid var(--border-soft);
  background: rgba(23, 25, 34, 0.78);
  overflow: hidden;
  transition:
    transform 250ms var(--ease),
    border-color 250ms ease,
    box-shadow 250ms ease,
    background-color 250ms ease;
}

.value-card::before,
.capability-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: var(--gradient-brand);
  content: "";
  opacity: 0;
  transition: opacity 250ms ease;
}

.value-card:hover,
.capability-card:hover {
  border-color: var(--border-highlight);
  background: rgba(29, 31, 42, 0.9);
  box-shadow: 0 22px 60px rgba(64, 45, 105, 0.16);
  transform: translateY(-5px);
}

.value-card:hover::before,
.capability-card:hover::before {
  opacity: 0.72;
}

.value-card {
  min-height: 330px;
  padding: 31px 30px;
  border-radius: var(--radius-md);
}

.card-number,
.capability-index {
  position: absolute;
  top: 24px;
  right: 26px;
  color: #4a4953;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.value-icon {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 60px;
  place-items: center;
  border: 1px solid rgba(179, 88, 203, 0.18);
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(231, 122, 158, 0.1),
    rgba(75, 127, 216, 0.06)
  );
}

.flow-icon span {
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1px solid #bd85c8;
  border-radius: 50%;
}

.flow-icon span:first-child {
  top: 17px;
  left: 14px;
}

.flow-icon span:nth-child(2) {
  top: 25px;
  left: 25px;
}

.flow-icon span:nth-child(3) {
  right: 14px;
  bottom: 16px;
}

.flow-icon::before,
.flow-icon::after {
  position: absolute;
  width: 13px;
  height: 1px;
  background: #805a8c;
  content: "";
  transform: rotate(35deg);
}

.flow-icon::before {
  top: 24px;
  left: 18px;
}

.flow-icon::after {
  right: 18px;
  bottom: 23px;
}

.layers-icon span {
  position: absolute;
  width: 25px;
  height: 16px;
  border: 1px solid #a873b5;
  border-radius: 4px;
  transform: skewY(-12deg);
}

.layers-icon span:first-child {
  top: 17px;
}

.layers-icon span:nth-child(2) {
  top: 22px;
  opacity: 0.65;
}

.layers-icon span:nth-child(3) {
  top: 27px;
  opacity: 0.35;
}

.folder-icon span {
  position: relative;
  width: 28px;
  height: 20px;
  border: 1px solid #a873b5;
  border-radius: 4px;
}

.folder-icon span::before {
  position: absolute;
  top: -5px;
  left: -1px;
  width: 11px;
  height: 5px;
  border: 1px solid #a873b5;
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
  content: "";
}

.value-card h3,
.capability-card h3 {
  margin: 0 0 13px;
  font-size: 21px;
  font-weight: 600;
}

.value-card p,
.capability-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.85;
}

.capabilities {
  background:
    radial-gradient(circle at 10% 50%, rgba(75, 127, 216, 0.055), transparent 28%),
    #0d0f17;
}

.section-heading-row {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}

.section-heading-row > p:last-child {
  max-width: 380px;
  margin-bottom: 7px;
}

.capability-grid {
  display: grid;
  margin-top: 68px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.capability-card {
  min-height: 285px;
  padding: 29px 28px;
  border-radius: var(--radius-md);
}

.capability-symbol {
  position: relative;
  width: 52px;
  height: 52px;
  margin-bottom: 45px;
  color: #bb83c6;
}

.symbol-script {
  padding: 12px 10px;
  border: 1px solid rgba(179, 88, 203, 0.3);
  border-radius: 12px;
}

.symbol-script span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: currentColor;
}

.symbol-script span:nth-child(2) {
  width: 72%;
}

.symbol-script span:nth-child(3) {
  width: 88%;
}

.symbol-storyboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  align-items: center;
}

.symbol-storyboard span {
  height: 30px;
  border: 1px solid currentColor;
  border-radius: 4px;
}

.symbol-storyboard span:nth-child(2) {
  height: 40px;
}

.symbol-assets span {
  position: absolute;
  border: 1px solid currentColor;
}

.symbol-assets span:first-child {
  top: 3px;
  left: 17px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.symbol-assets span:nth-child(2) {
  bottom: 3px;
  left: 9px;
  width: 34px;
  height: 23px;
  border-radius: 50% 50% 7px 7px;
}

.symbol-assets span:nth-child(3) {
  right: 0;
  bottom: 5px;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--bg-card);
}

.symbol-image {
  border: 1px solid rgba(179, 88, 203, 0.3);
  border-radius: 12px;
}

.symbol-image span:first-child {
  position: absolute;
  top: 12px;
  right: 11px;
  width: 7px;
  height: 7px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.symbol-image span:nth-child(2) {
  position: absolute;
  right: 8px;
  bottom: 10px;
  left: 8px;
  height: 18px;
  border: solid currentColor;
  border-width: 1px 1px 0 0;
  transform: rotate(-32deg) skewX(15deg);
}

.symbol-video {
  display: grid;
  place-items: center;
  border: 1px solid rgba(179, 88, 203, 0.3);
  border-radius: 12px;
}

.symbol-video span:first-child {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
}

.symbol-video span:nth-child(2) {
  position: absolute;
  inset: 7px;
  border: 1px dashed rgba(187, 131, 198, 0.38);
  border-radius: 8px;
}

.symbol-library span {
  position: absolute;
  width: 21px;
  height: 29px;
  border: 1px solid currentColor;
  border-radius: 5px;
}

.symbol-library span:first-child {
  top: 11px;
  left: 3px;
  opacity: 0.38;
}

.symbol-library span:nth-child(2) {
  top: 7px;
  left: 14px;
  opacity: 0.65;
}

.symbol-library span:nth-child(3) {
  top: 3px;
  left: 25px;
}

.workflow {
  border-top: 1px solid rgba(255, 255, 255, 0.045);
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
  background: var(--bg-main);
  overflow: hidden;
}

.workflow-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 720px;
  height: 280px;
  border-radius: 50%;
  background: rgba(137, 73, 171, 0.09);
  filter: blur(110px);
  transform: translateX(-50%);
  pointer-events: none;
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.centered > p:last-child {
  margin-inline: auto;
}

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

.workflow-list::before {
  position: absolute;
  top: 52px;
  right: 8.333%;
  left: 8.333%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(231, 122, 158, 0.3),
    rgba(179, 88, 203, 0.5),
    rgba(75, 127, 216, 0.3)
  );
  content: "";
}

.workflow-item {
  position: relative;
  padding: 0 13px;
  text-align: center;
}

.workflow-number {
  display: block;
  margin-bottom: 18px;
  color: #5b5965;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.workflow-dot {
  position: relative;
  z-index: 1;
  width: 11px;
  height: 11px;
  margin: 0 auto 32px;
  border: 2px solid #9c6ca8;
  border-radius: 50%;
  background: var(--bg-main);
  box-shadow: 0 0 0 7px rgba(179, 88, 203, 0.055);
}

.workflow-item:nth-child(5) .workflow-dot,
.workflow-item:nth-child(6) .workflow-dot {
  border-color: #6886be;
  box-shadow: 0 0 0 7px rgba(75, 127, 216, 0.055);
}

.workflow-item h3 {
  margin: 0 0 9px;
  font-size: 17px;
  font-weight: 600;
}

.workflow-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.75;
}

.about {
  background:
    radial-gradient(circle at 86% 45%, rgba(179, 88, 203, 0.075), transparent 29%),
    #0d0f17;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  gap: 92px;
  align-items: center;
}

.about-copy > p:not(.section-kicker) {
  max-width: 650px;
  margin: 25px 0 0;
  font-size: 15px;
  line-height: 2;
}

.company-card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(
      145deg,
      rgba(43, 36, 53, 0.78),
      rgba(19, 22, 31, 0.92) 62%
    );
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.26);
  overflow: hidden;
}

.company-card::before {
  position: absolute;
  top: -160px;
  right: -110px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(179, 88, 203, 0.09);
  content: "";
  filter: blur(50px);
}

.company-card-top {
  position: relative;
  display: flex;
  padding-bottom: 25px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.company-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.company-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: var(--gradient-brand);
  color: #fff;
  font-weight: 700;
}

.company-brand > div {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}

.company-brand strong {
  font-size: 16px;
}

.company-brand small {
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.verified-label {
  display: inline-flex;
  padding: 6px 10px;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(105, 163, 115, 0.18);
  border-radius: 999px;
  background: rgba(105, 163, 115, 0.055);
  color: #9cb8a1;
  font-size: 10px;
}

.verified-label i {
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  border-radius: 50%;
  background: #65866c;
  color: #fff;
  font-size: 9px;
  font-style: normal;
}

.company-details {
  position: relative;
  margin: 9px 0 0;
}

.company-details > div {
  display: grid;
  padding: 17px 0;
  grid-template-columns: 105px 1fr;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
}

.company-details dt {
  color: var(--text-muted);
  font-size: 12px;
}

.company-details dd {
  min-width: 0;
  margin: 0;
  color: #d8d4dd;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.company-details a {
  transition: color 180ms ease;
}

.company-details a:hover {
  color: #d993e3;
}

.license-note {
  margin: 18px 0 0;
  color: #6f6d78;
  font-size: 10px;
}

.contact {
  padding-top: 118px;
  background: var(--bg-main);
}

.contact-card {
  position: relative;
  padding: 88px 72px;
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: 32px;
  background:
    radial-gradient(circle at 15% 10%, rgba(231, 122, 158, 0.11), transparent 30%),
    radial-gradient(circle at 90% 88%, rgba(75, 127, 216, 0.12), transparent 32%),
    linear-gradient(135deg, #181522, #10131d 66%);
  text-align: center;
  overflow: hidden;
}

.contact-card::before,
.contact-card::after {
  position: absolute;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  content: "";
}

.contact-card::before {
  top: -120px;
  left: -70px;
}

.contact-card::after {
  right: -70px;
  bottom: -130px;
}

.contact-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 440px;
  height: 200px;
  border-radius: 50%;
  background: rgba(151, 75, 177, 0.09);
  filter: blur(80px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.contact-card > *:not(.contact-glow) {
  position: relative;
  z-index: 1;
}

.contact-card h2 {
  font-size: clamp(42px, 5vw, 64px);
}

.contact-card > p:not(.section-kicker) {
  max-width: 620px;
  margin: 24px auto 0;
  font-size: 15px;
}

.contact-email {
  display: inline-flex;
  min-height: 58px;
  margin-top: 38px;
  padding: 0 24px;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.055);
  color: #f2eef5;
  font-size: 14px;
  transition:
    transform 200ms var(--ease),
    border-color 200ms ease,
    background-color 200ms ease;
}

.contact-email:hover {
  border-color: rgba(179, 88, 203, 0.35);
  background: rgba(179, 88, 203, 0.09);
  transform: translateY(-2px);
}

.email-icon {
  position: relative;
  width: 18px;
  height: 13px;
  border: 1px solid #c5bdca;
  border-radius: 3px;
}

.email-icon::before,
.email-icon::after {
  position: absolute;
  top: 1px;
  width: 10px;
  height: 1px;
  background: #c5bdca;
  content: "";
}

.email-icon::before {
  left: 0;
  transform: rotate(30deg);
  transform-origin: left;
}

.email-icon::after {
  right: 0;
  transform: rotate(-30deg);
  transform-origin: right;
}

.site-footer {
  padding-top: 30px;
  background: var(--bg-main);
}

.footer-main {
  display: flex;
  padding: 48px 0 54px;
  align-items: flex-start;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.065);
}

.footer-brand p {
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 13px;
}

.footer-links {
  display: grid;
  min-width: 410px;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 600;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 12px;
  overflow-wrap: anywhere;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: #d8d4dd;
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  background: #070910;
}

.footer-legal .container {
  display: flex;
  min-height: 70px;
  padding: 17px 0;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-legal p {
  margin: 0;
  color: #686671;
  font-size: 11px;
}

.legal-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  color: #686671;
  font-size: 11px;
}

.legal-links a {
  transition: color 180ms ease;
}

.legal-links a:hover {
  color: #b9b5bf;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

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

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

  .workspace-window {
    transform: rotateY(-2deg);
  }

  .about-grid {
    gap: 55px;
  }

  .workflow-item {
    padding-inline: 8px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 70px;
  }

  .section {
    padding: 104px 0;
  }

  .menu-toggle {
    display: block;
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

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

  .nav-menu {
    position: fixed;
    z-index: 101;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    height: calc(100vh - var(--header-height));
    padding: 28px 24px 48px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.065);
    background: rgba(9, 11, 19, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 200ms ease,
      transform 200ms ease;
  }

  .nav-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a,
  .nav-menu .nav-contact {
    padding: 14px 12px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 0;
    font-size: 16px;
  }

  .nav-menu a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 74px) 0 92px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

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

  .hero-visual {
    max-width: 690px;
    margin-inline: auto;
  }

  .workspace-window {
    transform: none;
  }

  .section-heading-row {
    display: block;
  }

  .section-heading-row > p:last-child {
    max-width: 620px;
    margin: 24px 0 0;
  }

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

  .workflow-list {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 56px;
  }

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

  .workflow-item {
    padding: 0 18px;
  }

  .workflow-item::after {
    position: absolute;
    z-index: 0;
    top: 51px;
    left: 50%;
    width: 100%;
    height: 1px;
    background: rgba(179, 88, 203, 0.22);
    content: "";
  }

  .workflow-item:nth-child(3)::after,
  .workflow-item:nth-child(6)::after {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .company-card {
    max-width: 620px;
  }

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

  .legal-links {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px 20px;
  }
}

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

  .section {
    padding: 86px 0;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 56px);
  }

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

  .hero-lead {
    font-size: 16px;
    line-height: 1.8;
  }

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

  .button {
    width: 100%;
  }

  .hero-tags {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .visual-caption {
    right: 14px;
  }

  .workspace-window {
    border-radius: 16px;
  }

  .window-bar {
    grid-template-columns: 1fr auto;
  }

  .window-title {
    display: none;
  }

  .workspace-body {
    min-height: 410px;
    grid-template-columns: 52px 1fr;
  }

  .workspace-sidebar {
    padding-inline: 7px;
  }

  .sidebar-logo {
    width: 28px;
    height: 28px;
  }

  .sidebar-item {
    justify-content: center;
    font-size: 0;
  }

  .workspace-content {
    padding: 18px 14px 16px;
  }

  .process-step {
    min-width: 35px;
  }

  .process-row i {
    margin-inline: 3px;
  }

  .workspace-panels {
    grid-template-columns: 1fr;
  }

  .assets-panel {
    display: none;
  }

  .generation-bar {
    gap: 8px;
  }

  .generation-button {
    flex: 0 0 auto;
  }

  .section-heading h2,
  .about-copy h2 {
    font-size: clamp(34px, 10.5vw, 46px);
  }

  .value-grid,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: 300px;
  }

  .workflow-list {
    display: block;
    margin-top: 58px;
  }

  .workflow-item {
    display: grid;
    min-height: 128px;
    padding: 0 0 30px 60px;
    grid-template-columns: 1fr;
    text-align: left;
  }

  .workflow-item::after {
    top: 39px;
    bottom: 0;
    left: 20px;
    width: 1px;
    height: auto;
    background: linear-gradient(
      rgba(179, 88, 203, 0.4),
      rgba(75, 127, 216, 0.18)
    );
  }

  .workflow-item:nth-child(3)::after {
    display: block;
  }

  .workflow-item:nth-child(6)::after {
    display: none;
  }

  .workflow-number {
    position: absolute;
    top: 6px;
    left: 0;
    width: 40px;
    text-align: center;
  }

  .workflow-dot {
    position: absolute;
    top: 32px;
    left: 15px;
    width: 11px;
    margin: 0;
  }

  .workflow-item h3 {
    margin-bottom: 7px;
  }

  .workflow-item p {
    max-width: 340px;
  }

  .company-card {
    padding: 22px;
    border-radius: 22px;
  }

  .company-card-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .company-details > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .contact {
    padding-top: 76px;
  }

  .contact-card {
    width: calc(100% - 24px);
    padding: 66px 20px;
    border-radius: 24px;
  }

  .contact-card h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .contact-email {
    width: 100%;
    padding-inline: 15px;
    justify-content: center;
    gap: 9px;
    overflow-wrap: anywhere;
  }

  .footer-main {
    flex-direction: column;
    gap: 42px;
  }

  .footer-links {
    width: 100%;
    min-width: 0;
    gap: 24px;
  }

  .footer-legal .container {
    min-height: 94px;
  }
}

@media (max-width: 420px) {
  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.15em;
  }

  .workspace-heading strong {
    font-size: 14px;
  }

  .process-step {
    min-width: 30px;
    font-size: 7px;
  }

  .process-row i {
    margin-inline: 1px;
  }

  .generation-bar p {
    display: none;
  }

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

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

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

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

