@font-face {
  font-family: "Instrument Sans";
  src: url("../fonts/InstrumentSans/static/InstrumentSans-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("../fonts/InstrumentSans/static/InstrumentSans-Medium.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("../fonts/InstrumentSans/static/InstrumentSans-Bold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 700 900;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("../fonts/InstrumentSans/InstrumentSans-Italic-Variable.ttf") format("truetype");
  font-display: swap;
  font-style: italic;
  font-weight: 400 900;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/static/Inter-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/static/Inter-Medium.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/static/Inter-Bold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/static/Inter-ExtraBold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 800;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/static/Inter-Black.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 900;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-Italic-Variable.ttf") format("truetype");
  font-display: swap;
  font-style: italic;
  font-weight: 100 900;
}

:root {
  --lime: #c6f23b;
  --orange: #ff9a3c;
  --coral: #ff6b6b;
  --grape: #a78bfa;
  --ink: #111111;
  --milk: #f8f8f6;
  --paper: #ffffff;
  --line: #deded9;
  --muted: #62615d;
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.13);
  --bg: #f8f8f6;
  --section-bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f0f0eb;
  --surface-card: #ffffff;
  --text: #111111;
  --text-muted: #3e3e3a;
  --text-soft: #62615d;
  --header-bg: rgba(248, 248, 246, 0.82);
  --hero-bg:
    linear-gradient(105deg, rgba(248, 248, 246, 0.94) 0%, rgba(248, 248, 246, 0.78) 38%, rgba(17, 17, 17, 0.06) 100%),
    linear-gradient(135deg, rgba(198, 242, 59, 0.32) 0%, rgba(248, 248, 246, 0) 42%),
    #f8f8f6;
  --hero-fade: linear-gradient(180deg, rgba(248, 248, 246, 0), #f8f8f6);
  --button-primary-bg: #111111;
  --button-primary-text: #f8f8f6;
  --button-ghost-bg: rgba(255, 255, 255, 0.68);
  --module-preview-bg: #111111;
  --module-preview-text: #f8f8f6;
  --preview-bg: #f8f8f6;
  --preview-surface: #ffffff;
  --footer-bg: #111111;
  --header-height: 68px;
  color-scheme: light;
}

:root[data-theme="dark"] {
  --bg: #080a09;
  --section-bg: #0e100f;
  --surface: #151816;
  --surface-soft: #1f241f;
  --surface-card: #171b18;
  --line: rgba(248, 248, 246, 0.14);
  --muted: #98a094;
  --text: #f8f8f6;
  --text-muted: #d0d4cc;
  --text-soft: #9ca49a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
  --header-bg: rgba(8, 10, 9, 0.82);
  --hero-bg:
    linear-gradient(105deg, rgba(8, 10, 9, 0.96) 0%, rgba(13, 16, 14, 0.88) 46%, rgba(198, 242, 59, 0.12) 100%),
    linear-gradient(135deg, rgba(198, 242, 59, 0.18) 0%, rgba(8, 10, 9, 0) 44%),
    #080a09;
  --hero-fade: linear-gradient(180deg, rgba(8, 10, 9, 0), #080a09);
  --button-primary-bg: #c6f23b;
  --button-primary-text: #111111;
  --button-ghost-bg: rgba(248, 248, 246, 0.08);
  --module-preview-bg: #0f1312;
  --module-preview-text: #f8f8f6;
  --preview-bg: #101412;
  --preview-surface: #171d1a;
  --footer-bg: #080a09;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.section,
.signal-band {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Instrument Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  transition: background 180ms ease, color 180ms ease;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 12px clamp(18px, 4vw, 48px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
}

.nav-wordmark {
  width: auto;
  height: 42px;
}

.theme-logo-light {
  display: none;
}

:root[data-theme="dark"] .theme-logo-dark {
  display: none;
}

:root[data-theme="dark"] .theme-logo-light {
  display: block;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--surface-soft);
  outline: none;
}

.theme-toggle {
  width: 58px;
  height: 34px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
}

.theme-toggle:focus-visible {
  outline: 3px solid rgba(198, 242, 59, 0.52);
  outline-offset: 3px;
}

.theme-toggle-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7px;
  border-radius: inherit;
}

.theme-toggle-track::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 1px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 5px 12px rgba(17, 17, 17, 0.22);
  transition: transform 180ms ease;
}

.theme-toggle-icon {
  position: relative;
  z-index: 1;
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-toggle[data-state="dark"] .theme-toggle-track::before {
  transform: translateX(24px);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(82svh - var(--header-height));
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(42px, 6vw, 76px) clamp(20px, 5vw, 80px) clamp(34px, 5vw, 58px);
  background: var(--hero-bg);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 18vh;
  background: var(--hero-fade);
  pointer-events: none;
  z-index: -1;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

.hero h1 {
  margin: 0;
  font-size: 122px;
  line-height: 0.86;
  font-weight: 950;
  letter-spacing: 0;
}

.logo-title {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.12em 0.18em;
  max-width: 1060px;
}

.hero-title-logo {
  width: clamp(230px, 24vw, 360px);
  height: auto;
  flex: 0 0 auto;
  transform: translateY(0.04em);
}

.logo-title span {
  display: inline-block;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 18px;
  padding: 0 10px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: #4d4d49;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-kicker {
  margin: 26px 0 0;
  max-width: 680px;
  font-size: 46px;
  line-height: 1.02;
  font-weight: 900;
}

.hero-text {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--text-muted);
  font-size: 20px;
  line-height: 1.46;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-weight: 850;
}

.button.primary {
  background: var(--button-primary-bg);
  color: var(--button-primary-text);
  border-color: var(--button-primary-bg);
}

.button.ghost {
  background: var(--button-ghost-bg);
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  transform-style: preserve-3d;
  pointer-events: none;
  --mx: 0px;
  --my: 0px;
}

.hero-video-scene {
  overflow: hidden;
}

.hero-video-rotator {
  position: absolute;
  right: clamp(22px, 6vw, 92px);
  top: 50%;
  width: min(640px, 44vw);
  aspect-ratio: 16 / 9;
  transform: translate3d(calc(var(--mx) * -0.018), calc(-50% + var(--my) * -0.018), 0) rotate(-1deg);
}

.hero-loop-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(248, 248, 246, 0.16);
  border-radius: 8px;
  background: #090b09;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.42);
  object-fit: cover;
  opacity: 0;
  transition: opacity 520ms ease;
}

.hero-loop-video.active {
  opacity: 1;
}

.hero-video-tabs {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(248, 248, 246, 0.14);
  border-radius: 8px;
  background: rgba(9, 11, 9, 0.78);
  backdrop-filter: blur(14px);
}

.hero-video-tabs span {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 6px;
  color: rgba(248, 248, 246, 0.58);
  font-size: 11px;
  font-weight: 900;
}

.hero-video-tabs span.active {
  background: var(--lime);
  color: var(--ink);
}

.scene-panel {
  position: absolute;
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.92);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.scene-panel-main {
  right: clamp(22px, 6vw, 108px);
  top: clamp(92px, 14vw, 160px);
  width: min(470px, 42vw);
  min-width: 290px;
  aspect-ratio: 1.38;
  padding: clamp(18px, 2.6vw, 30px);
  transform: translate3d(calc(var(--mx) * -0.018), calc(var(--my) * -0.018), 0) rotate(-2deg);
}

.scene-panel-side {
  right: clamp(18px, 9vw, 150px);
  bottom: clamp(64px, 11vw, 150px);
  width: 132px;
  aspect-ratio: 0.8;
  display: grid;
  place-items: center;
  text-align: center;
  border: 4px solid var(--lime);
  transform: translate3d(calc(var(--mx) * 0.026), calc(var(--my) * 0.026), 0);
}

.scene-panel-side strong {
  display: block;
  color: var(--milk);
  font-size: 28px;
}

.scene-panel-side span {
  color: var(--milk);
  font-size: 12px;
  margin-top: -34px;
}

.panel-dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--lime);
}

.panel-dot.coral {
  background: var(--coral);
}

.panel-dot.grape {
  background: var(--grape);
}

.scene-line {
  height: 12px;
  border-radius: 8px;
  margin-top: 22px;
}

.scene-line.wide {
  width: 72%;
}

.scene-line.mid {
  width: 56%;
}

.scene-line.short {
  width: 38%;
}

.scene-line.lime {
  background: var(--lime);
}

.scene-line.orange {
  background: var(--orange);
}

.scene-line.coral {
  background: var(--coral);
}

.scene-timeline {
  position: absolute;
  right: 28px;
  bottom: 34px;
  left: 28px;
  display: grid;
  gap: 12px;
}

.scene-timeline i,
.timeline-stack i {
  display: block;
  width: var(--w);
  height: 9px;
  border-radius: 8px;
  background: var(--c);
}

.liquid-ribbon {
  position: absolute;
  right: -8vw;
  bottom: -5vh;
  width: 62vw;
  min-width: 580px;
  height: 220px;
  background:
    linear-gradient(90deg, rgba(255, 154, 60, 0.72), rgba(198, 242, 59, 0.92) 48%, rgba(167, 139, 250, 0.46)),
    var(--lime);
  clip-path: polygon(0 70%, 12% 60%, 24% 45%, 40% 42%, 55% 58%, 68% 36%, 80% 46%, 100% 28%, 100% 100%, 0 100%);
  transform: translate3d(calc(var(--mx) * 0.012), 0, 0);
}

.drop {
  position: absolute;
  width: 40px;
  aspect-ratio: 0.82;
  background: var(--lime);
  border-radius: 70% 70% 78% 78%;
  transform: rotate(34deg);
}

.drop-one {
  right: 24vw;
  top: 15vh;
}

.drop-two {
  right: 17vw;
  bottom: 30vh;
  background: var(--orange);
}

.signal-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-block: 1px solid var(--line);
  background: #ffffff;
}

.signal-band span {
  min-height: 76px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  font-size: 19px;
  font-weight: 900;
}

.signal-band span:nth-child(2) {
  color: #5e7d00;
}

.signal-band span:nth-child(4) {
  color: #6543d7;
}

.section {
  padding: clamp(62px, 9vw, 124px) clamp(20px, 5vw, 80px);
}

.section-heading {
  max-width: 850px;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.section-heading p,
.block-label,
.mini-label {
  margin: 0 0 10px;
  color: #5a5a55;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-size: 68px;
  line-height: 0.96;
  letter-spacing: 0;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.brand-block,
.structure-card {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 2.2vw, 28px);
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0.04);
}

.logo-block {
  grid-column: span 5;
}

.logo-block > img {
  width: min(310px, 100%);
  margin: 16px 0 22px;
}

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

.logo-variants img,
.wordmark-pill {
  aspect-ratio: 1.15;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--milk);
  padding: 14px;
  object-fit: contain;
}

.wordmark-pill {
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--milk);
  font-size: 40px;
  font-weight: 950;
}

.concept-block {
  grid-column: span 3;
}

.concept-row {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 76px;
  border-top: 1px solid var(--line);
}

.concept-row:first-of-type {
  border-top: 0;
}

.concept-row p {
  margin: 0;
  color: #373733;
  line-height: 1.32;
}

.concept-drop {
  width: 32px;
  aspect-ratio: 0.8;
  background: var(--lime);
  border-radius: 70% 70% 78% 78%;
  transform: rotate(34deg);
}

.concept-j {
  font-size: 74px;
  line-height: 0.72;
  font-weight: 950;
}

.concept-cut {
  width: 42px;
  height: 18px;
  background: var(--ink);
  clip-path: polygon(0 0, 100% 0, 72% 100%, 0 100%);
}

.palette-block {
  grid-column: span 4;
}

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

.swatch {
  min-height: 132px;
  border: 0;
  border-radius: 8px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  color: var(--ink);
  cursor: pointer;
}

.swatch span,
.swatch b {
  display: block;
  padding: 3px 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
}

.swatch b {
  margin-top: 4px;
  font-size: 12px;
}

.swatch.lime {
  background: var(--lime);
}

.swatch.orange {
  background: var(--orange);
}

.swatch.coral {
  background: var(--coral);
}

.swatch.grape {
  background: var(--grape);
}

.swatch.ink {
  background: var(--ink);
}

.swatch.ink span,
.swatch.ink b {
  color: var(--milk);
  background: rgba(255, 255, 255, 0.14);
}

.swatch.milk {
  background: var(--milk);
  border: 1px solid var(--line);
}

.type-block {
  grid-column: span 6;
  display: grid;
  grid-template-columns: minmax(140px, 0.75fr) 1fr;
  gap: 24px;
  align-items: center;
}

.type-block .block-label {
  grid-column: 1 / -1;
}

.type-sample {
  font-size: 180px;
  line-height: 0.76;
  font-weight: 950;
}

.type-stack {
  display: grid;
  gap: 18px;
}

.type-stack p {
  margin: 0;
}

.type-stack b,
.type-stack span {
  display: block;
}

.type-stack b {
  font-size: 22px;
}

.values-block {
  grid-column: span 3;
}

.value-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.value-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--milk);
  font-weight: 800;
}

.value-pills span:nth-child(1) {
  background: rgba(198, 242, 59, 0.38);
}

.value-pills span:nth-child(2) {
  background: rgba(255, 154, 60, 0.24);
}

.value-pills span:nth-child(3) {
  background: rgba(255, 107, 107, 0.24);
}

.value-pills span:nth-child(4) {
  background: rgba(167, 139, 250, 0.26);
}

.imagery-block {
  grid-column: span 3;
}

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

.image-tile {
  min-height: 124px;
  border-radius: 8px;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.lime-fluid {
  background:
    radial-gradient(circle at 38% 62%, rgba(255, 255, 255, 0.88) 0 10%, transparent 11%),
    radial-gradient(circle at 72% 30%, rgba(255, 255, 255, 0.7) 0 7%, transparent 8%),
    linear-gradient(135deg, #e2ff63, #9ed706);
}

.citrus {
  background:
    repeating-conic-gradient(from 10deg at 50% 50%, rgba(255, 255, 255, 0.55) 0 7deg, transparent 7deg 15deg),
    radial-gradient(circle, #ffd37b, var(--orange));
}

.interface {
  background:
    linear-gradient(90deg, var(--lime) 0 40%, transparent 40%) 18px 26px / 72% 8px no-repeat,
    linear-gradient(90deg, var(--orange) 0 55%, var(--coral) 55% 80%, transparent 80%) 18px 55px / 78% 8px no-repeat,
    linear-gradient(90deg, var(--grape) 0 58%, transparent 58%) 18px 84px / 70% 8px no-repeat,
    #171717;
}

.gradient-paper {
  background:
    linear-gradient(135deg, rgba(255, 107, 107, 0.72), transparent 48%),
    linear-gradient(45deg, rgba(167, 139, 250, 0.58), transparent 52%),
    linear-gradient(90deg, #fff6f3, #ffd2bd);
}

.product-section {
  background: #111;
  color: var(--milk);
}

.product-section .section-heading p {
  color: #b8b8b1;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: center;
}

.product-copy h3 {
  margin: 0 0 16px;
  font-size: 56px;
  line-height: 0.94;
}

.product-copy p {
  max-width: 540px;
  margin: 0;
  color: #d7d7cf;
  font-size: 19px;
  line-height: 1.48;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 32px;
}

.metric-row span {
  min-height: 118px;
  display: grid;
  align-content: center;
  padding: 14px;
  border: 1px solid rgba(248, 248, 246, 0.14);
  border-radius: 8px;
}

.metric-row b {
  font-size: 50px;
  line-height: 1;
}

.metric-row small {
  color: #b8b8b1;
  margin-top: 6px;
}

.app-preview {
  min-width: 0;
  border-radius: 8px;
  background: #f8f8f6;
  color: var(--ink);
  padding: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.preview-topbar {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.preview-topbar img {
  width: 32px;
  height: 32px;
}

.preview-topbar span {
  font-weight: 900;
}

.preview-topbar button {
  width: 32px;
  height: 32px;
  margin-left: auto;
  border-radius: 8px;
  border: 1px solid var(--line);
  background:
    linear-gradient(var(--ink), var(--ink)) center / 12px 2px no-repeat,
    linear-gradient(var(--ink), var(--ink)) center / 2px 12px no-repeat,
    #fff;
}

.preview-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 14px 0;
}

.preview-tabs button {
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 850;
  line-height: 1.08;
  text-align: center;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.preview-tabs button:hover,
.preview-tabs button:focus-visible {
  border-color: color-mix(in srgb, var(--lime) 70%, var(--line));
}

.preview-tabs button.active,
.preview-tabs button[aria-selected="true"] {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
  transform: translateY(-1px);
}

.preview-panel {
  display: none;
  min-height: 330px;
  padding: 18px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)),
    var(--milk);
  border: 1px solid var(--line);
}

.preview-panel.active {
  display: block;
}

.preview-panel[hidden] {
  display: none;
}

.search-bar {
  min-height: 54px;
  display: flex;
  align-items: center;
  margin: 16px 0 22px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #6b6b65;
}

.timeline-stack {
  display: grid;
  gap: 18px;
  padding: 28px 0;
}

.folder-list,
.motion-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.folder-list span,
.motion-grid span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 850;
}

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

.motion-grid span:nth-child(1) {
  border-left: 6px solid var(--lime);
}

.motion-grid span:nth-child(2) {
  border-left: 6px solid var(--orange);
}

.motion-grid span:nth-child(3) {
  border-left: 6px solid var(--grape);
}

.motion-grid span:nth-child(4) {
  border-left: 6px solid var(--coral);
}

.modules-section,
.workflow-section,
.pdf-section {
  background: #fff;
}

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

.module-card,
.intro-card,
.pdf-callout {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0.05);
}

.module-card {
  min-height: 246px;
  padding: 24px;
  display: grid;
  align-content: start;
  gap: 14px;
}

.module-card span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--milk);
  font-weight: 950;
}

.module-card h3,
.intro-card h3,
.pdf-callout h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.05;
}

.module-card p,
.intro-card li,
.pdf-callout p {
  margin: 0;
  color: #44443f;
  line-height: 1.46;
}

.module-card.featured {
  background: var(--ink);
  color: var(--milk);
}

.module-card.featured span {
  background: var(--lime);
  color: var(--ink);
}

.module-card.featured p {
  color: #d9d9d1;
}

.workflow-section {
  background: var(--milk);
}

.workflow-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.workflow-rail article {
  min-height: 260px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.workflow-rail article:last-child {
  border-right: 0;
}

.workflow-rail span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 46px;
  border-radius: 999px;
  background: var(--lime);
  font-weight: 950;
}

.workflow-rail h3 {
  margin: 0 0 12px;
  font-size: 30px;
}

.workflow-rail p {
  margin: 0;
  color: #44443f;
  line-height: 1.48;
}

.intro-cta-section {
  background: #111;
  color: var(--milk);
}

.intro-cta-section .section-heading p {
  color: #b8b8b1;
}

.intro-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.intro-card {
  padding: 24px;
  background: #1b1b1b;
  border-color: rgba(248, 248, 246, 0.14);
  color: var(--milk);
}

.intro-card > p {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.intro-card strong {
  display: block;
  margin: 18px 0;
  font-size: 24px;
  line-height: 1.1;
}

.intro-card ul {
  min-height: 132px;
  margin: 0 0 24px;
  padding-left: 18px;
}

.intro-card li {
  color: #d7d7cf;
  margin-bottom: 10px;
}

.intro-card.highlight {
  background:
    linear-gradient(135deg, rgba(198, 242, 59, 0.22), transparent 42%),
    #1b1b1b;
  border-color: var(--lime);
}

.intro-cta-section .button.primary {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}

.intro-cta-section .button.ghost {
  background: rgba(248, 248, 246, 0.08);
  color: var(--milk);
  border-color: rgba(248, 248, 246, 0.22);
}

.pdf-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: clamp(24px, 4vw, 42px);
}

.pdf-callout p {
  max-width: 620px;
  margin-top: 12px;
}

.structure-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 16px;
}

.structure-card h3 {
  margin: 0 0 16px;
  font-size: 24px;
}

.structure-card p {
  margin: 0 0 18px;
  color: #44443f;
  line-height: 1.5;
}

pre {
  margin: 0;
  overflow: auto;
  padding: 18px;
  border-radius: 8px;
  background: #111;
  color: var(--milk);
  font-size: 15px;
  line-height: 1.5;
}

.text-link {
  font-weight: 900;
  color: #5e7d00;
}

.rename-table {
  min-width: 0;
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.rename-table div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 64px;
  border-bottom: 1px solid var(--line);
}

.rename-table div:last-child {
  border-bottom: 0;
}

.rename-table span,
.rename-table b {
  display: flex;
  align-items: center;
  padding: 0 18px;
}

.rename-table span {
  color: #6b6b65;
}

.rename-table b {
  background: rgba(198, 242, 59, 0.23);
}

.reference-board {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(20px, 5vw, 80px);
  background: #111;
  color: var(--milk);
}

.site-footer img {
  width: auto;
  height: 70px;
}

.site-footer span {
  color: var(--lime);
  font-weight: 900;
}

@media (max-width: 1050px) {
  .scene-panel-main {
    opacity: 0.36;
    width: 420px;
    right: -90px;
  }

  .hero-video-rotator {
    opacity: 0.52;
    width: min(520px, 48vw);
    right: -64px;
  }

  .scene-panel-side,
  .drop-two {
    display: none;
  }

  .brand-grid,
  .product-layout,
  .structure-grid {
    grid-template-columns: 1fr;
  }

  .logo-block,
  .concept-block,
  .palette-block,
  .type-block,
  .values-block,
  .imagery-block {
    grid-column: span 1;
  }

  .hero h1 {
    font-size: 86px;
  }

  .hero-kicker {
    font-size: 38px;
  }

  .section-heading h2 {
    font-size: 54px;
  }

  .product-copy h3 {
    font-size: 44px;
  }

  .type-sample {
    font-size: 140px;
  }

  .module-grid,
    .intro-options,
  .workflow-rail {
    grid-template-columns: 1fr;
  }

  .workflow-rail article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .workflow-rail article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .nav-wordmark {
    height: 34px;
  }

  .site-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 4px;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .site-nav a {
    flex: 0 0 auto;
    min-height: 32px;
    padding: 0 8px;
    font-size: 13px;
  }

  .hero {
    min-height: 82svh;
    padding-top: 34px;
  }

  .scene-panel-main {
    display: none;
  }

  .hero-video-rotator {
    display: none;
  }

  .drop-one {
    right: 18px;
    top: 120px;
    opacity: 0.9;
  }

  .liquid-ribbon {
    right: 0;
    width: 100%;
    min-width: 0;
    height: 150px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-title-logo {
    width: min(210px, 68vw);
    transform: translateY(0.02em);
  }

  .hero-kicker {
    font-size: 30px;
  }

  .hero-text {
    font-size: 17px;
  }

  .signal-band span {
    font-size: 16px;
  }

  .section-heading h2 {
    font-size: 38px;
  }

  .wordmark-pill {
    font-size: 30px;
  }

  .type-sample {
    font-size: 104px;
  }

  .product-copy h3 {
    font-size: 38px;
  }

  .module-card h3,
  .intro-card h3,
  .pdf-callout h3 {
    font-size: 24px;
  }

  .module-card,
  .workflow-rail article {
    min-height: auto;
  }

  .workflow-rail span {
    margin-bottom: 28px;
  }

  .pdf-callout {
    grid-template-columns: 1fr;
  }

  .metric-row b {
    font-size: 36px;
  }

  pre {
    font-size: 13px;
  }

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

  .signal-band span:last-child {
    grid-column: 1 / -1;
  }

  .swatch-grid,
  .logo-variants,
  .metric-row,
  .preview-tabs,
  .rename-table div {
    grid-template-columns: 1fr;
  }

  .type-block {
    grid-template-columns: 1fr;
  }

  .image-strip,
  .motion-grid {
    grid-template-columns: 1fr;
  }

  .product-layout {
    gap: 28px;
  }

  .app-preview {
    padding: 12px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}

.launch-hero {
  min-height: calc(74svh - var(--header-height));
  padding-top: clamp(34px, 4.6vw, 58px);
  padding-bottom: clamp(24px, 3.8vw, 42px);
}

.launch-hero .hero-copy {
  width: min(900px, 100%);
}

.launch-hero h1 {
  max-width: 880px;
  font-size: clamp(58px, 8vw, 108px);
  line-height: 0.9;
}

.launch-hero .logo-title {
  display: grid;
  align-items: start;
  max-width: 1100px;
  gap: 12px;
}

.launch-hero .logo-title span {
  line-height: 0.9;
}

.launch-hero .hero-kicker {
  max-width: 760px;
  margin-top: 20px;
  font-size: clamp(32px, 3.6vw, 46px);
}

.launch-hero .hero-text {
  margin-top: 18px;
  font-size: 18px;
}

.launch-hero .hero-actions {
  margin-top: 22px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 10px;
  margin-top: 22px;
}

.hero-proof span {
  min-height: 78px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.hero-proof b {
  font-size: 30px;
  line-height: 1;
  font-weight: 950;
}

.hero-proof small {
  color: #54544f;
  font-size: 12px;
  font-weight: 800;
}

.launch-section,
.plugins-section,
.brand-section {
  background: #fff;
}

.demo-section {
  background: var(--milk);
}

.module-showcase {
  display: grid;
  gap: 16px;
}

.launch-module {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 1.06fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: stretch;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.06);
}

.launch-module-primary {
  grid-template-columns: minmax(250px, 0.7fr) minmax(560px, 1.3fr);
  background:
    linear-gradient(135deg, rgba(198, 242, 59, 0.18), rgba(255, 255, 255, 0) 42%),
    #fff;
}

.module-copy {
  min-width: 0;
  align-self: center;
}

.module-copy > span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 18px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--milk);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.module-copy h3 {
  margin: 0;
  font-size: clamp(42px, 5.8vw, 82px);
  line-height: 0.92;
  letter-spacing: 0;
}

.module-copy p {
  max-width: 570px;
  margin: 20px 0 0;
  color: #383833;
  font-size: 18px;
  line-height: 1.45;
}

.module-copy ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.module-copy li {
  position: relative;
  padding-left: 26px;
  color: #454541;
  line-height: 1.45;
  font-weight: 750;
}

.module-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: inset 0 0 0 3px rgba(17, 17, 17, 0.12);
}

.module-demo {
  min-height: 360px;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(20px, 4vw, 36px);
  border-radius: 8px;
  background: #111;
  color: var(--milk);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(248, 248, 246, 0.1);
}

.demo-topbar {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 34px;
}

.demo-topbar span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--lime);
}

.demo-topbar small {
  color: var(--lime);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.demo-search {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(248, 248, 246, 0.12);
  border-radius: 8px;
  background: rgba(248, 248, 246, 0.07);
  color: #d8d8d0;
  font-weight: 850;
}

.sound-list {
  display: grid;
  gap: 10px;
}

.sound-list i {
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 0 14px;
  border-left: 6px solid var(--c);
  border-radius: 8px;
  background: rgba(248, 248, 246, 0.08);
  font-style: normal;
}

.sound-list small {
  color: #bdbdb6;
  font-weight: 800;
}

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

.placement-row span {
  min-height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
}

.organizer-demo {
  align-items: stretch;
}

.split-organizer {
  position: relative;
  min-height: 570px;
  display: block;
  padding: 0;
  background:
    linear-gradient(135deg, rgba(198, 242, 59, 0.14), transparent 44%),
    var(--module-preview-bg);
  user-select: none;
}

.split-pane {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  padding: clamp(20px, 3vw, 38px) clamp(14px, 2vw, 26px);
}

.ae-pane {
  z-index: 1;
  right: 56%;
  min-width: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(198, 242, 59, 0.14), transparent 42%),
    #111514;
  border-right: 1px solid rgba(198, 242, 59, 0.28);
}

.finder-pane {
  z-index: 2;
  left: 44%;
  justify-content: stretch;
  overflow: hidden;
  padding-left: clamp(12px, 1.5vw, 18px);
  padding-right: clamp(12px, 1.5vw, 18px);
  background:
    linear-gradient(135deg, rgba(167, 139, 250, 0.12), transparent 46%),
    #101010;
}

.pane-topbar,
.finder-topbar {
  min-width: 0;
  width: min(100%, 500px);
  max-width: none;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  margin-bottom: 12px;
  padding: 0 12px;
  border: 1px solid rgba(248, 248, 246, 0.1);
  border-radius: 8px;
  background: rgba(248, 248, 246, 0.08);
}

.pane-topbar span,
.finder-topbar strong {
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.pane-topbar small {
  margin-left: auto;
  color: #bfc5ba;
  font-size: 11px;
  font-weight: 850;
}

.project-tree,
.finder-body {
  min-width: 0;
  width: min(100%, 500px);
  max-width: none;
  display: grid;
  gap: 8px;
}

.tree-row {
  min-height: 34px;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid rgba(248, 248, 246, 0.08);
  background: rgba(248, 248, 246, 0.08);
  color: var(--module-preview-text);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.tree-row.child {
  width: calc(100% - 22px);
  margin-left: 22px;
  min-height: 28px;
  color: #cfd5ca;
  font-size: 12px;
  border-left: 5px solid var(--lime);
}

.tree-row i {
  width: 16px;
  height: 13px;
  border-radius: 3px 3px 4px 4px;
  background: var(--lime);
  box-shadow: inset 0 3px 0 rgba(17, 17, 17, 0.18);
}

.tree-row i::before {
  content: "";
  display: block;
  width: 9px;
  height: 4px;
  margin-top: -2px;
  margin-left: 1px;
  border-radius: 2px 2px 0 0;
  background: inherit;
}

.tree-row.child i {
  background: var(--orange);
}

.finder-window {
  width: min(100%, 640px);
  justify-self: center;
  overflow: hidden;
  border: 1px solid rgba(248, 248, 246, 0.14);
  border-radius: 8px;
  background: rgba(248, 248, 246, 0.06);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.finder-topbar {
  min-height: 34px;
  min-width: 0;
  max-width: none;
  margin: 0;
  border: 0;
  border-bottom: 1px solid rgba(248, 248, 246, 0.12);
  border-radius: 0;
  background: rgba(248, 248, 246, 0.1);
}

.finder-topbar small {
  margin-left: auto;
  color: rgba(248, 248, 246, 0.62);
  font-size: clamp(9px, 0.9vw, 12px);
  font-weight: 850;
  text-transform: uppercase;
  white-space: nowrap;
}

.finder-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.finder-dot.red {
  background: var(--coral);
}

.finder-dot.yellow {
  background: var(--orange);
}

.finder-dot.green {
  background: var(--lime);
}

.finder-body {
  min-width: 0;
  width: 100%;
  max-width: none;
  gap: 5px;
  padding: 10px 12px 12px;
}

.finder-body .tree-row {
  min-height: 27px;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 8px;
  padding: 0 10px;
  font-size: 12px;
}

.finder-body .tree-row.child {
  width: calc(100% - 14px);
  min-height: 24px;
  margin-left: 14px;
  font-size: 11px;
  border-left-width: 4px;
}

.finder-body .tree-row i {
  width: 14px;
  height: 11px;
}

.finder-body .tree-row i::before {
  width: 8px;
  height: 3px;
}

.finder-body .tree-row span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.messy-root {
  gap: 7px;
}

.messy-root-label {
  grid-template-columns: 18px minmax(0, 1fr) auto;
  border-color: rgba(198, 242, 59, 0.22);
  background: rgba(198, 242, 59, 0.1);
}

.messy-root-label small {
  color: rgba(248, 248, 246, 0.56);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.file-chip {
  min-height: 34px;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  padding: 0 10px;
  border: 1px solid rgba(248, 248, 246, 0.1);
  border-radius: 8px;
  background: rgba(248, 248, 246, 0.08);
  color: var(--module-preview-text);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  will-change: transform, opacity;
}

.file-chip i {
  width: 16px;
  height: 18px;
  border-radius: 4px;
  background: var(--lime);
  box-shadow: inset 0 -4px 0 rgba(17, 17, 17, 0.12);
}

.file-chip.video i,
.file-chip.export i {
  background: var(--grape);
}

.file-chip.image i,
.file-chip.project i {
  background: var(--orange);
}

.file-chip.audio i {
  background: var(--coral);
}

.messy-file {
  grid-template-columns: 18px minmax(100px, 0.9fr) minmax(118px, 1fr);
}

.messy-file small {
  min-width: 0;
  overflow: hidden;
  color: rgba(248, 248, 246, 0.52);
  font-size: 10px;
  font-weight: 850;
  text-overflow: ellipsis;
}

.organized-tree {
  gap: 5px;
}

.target-bucket {
  display: grid;
  gap: 3px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 180ms ease, opacity 160ms ease, transform 180ms ease;
}

.organized-file {
  min-height: 18px;
  display: flex;
  align-items: center;
  margin-left: 36px;
  padding: 0 8px;
  border: 1px solid rgba(198, 242, 59, 0.18);
  border-radius: 7px;
  background: rgba(198, 242, 59, 0.1);
  color: rgba(248, 248, 246, 0.82);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
  transition: opacity 120ms ease, transform 120ms ease;
}

.inline-target {
  min-height: 0;
  justify-self: end;
  margin-left: auto;
  padding: 3px 7px;
}

.finder-body .tree-row:has(.inline-target) {
  grid-template-columns: 16px minmax(0, 1fr) auto;
}

.sort-fly-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}

.fly-file {
  position: absolute;
  left: 0;
  top: 0;
  min-height: 28px;
  opacity: 0;
  background:
    linear-gradient(135deg, rgba(198, 242, 59, 0.24), transparent 58%),
    rgba(17, 17, 17, 0.92);
  border-color: rgba(198, 242, 59, 0.38);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.34), 0 0 22px rgba(198, 242, 59, 0.16);
}

.split-divider {
  position: absolute;
  z-index: 5;
  top: 18px;
  bottom: 18px;
  left: var(--split);
  width: 44px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  pointer-events: none;
}

.split-divider::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 24px rgba(198, 242, 59, 0.42);
}

.split-divider span {
  position: relative;
  width: 44px;
  height: 44px;
  border: 3px solid var(--lime);
  border-radius: 999px;
  background: #111;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.36);
}

.split-divider span::before,
.split-divider span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--lime);
  border-left: 2px solid var(--lime);
}

.split-divider span::before {
  left: 10px;
  transform: translateY(-50%) rotate(-45deg);
}

.split-divider span::after {
  right: 10px;
  transform: translateY(-50%) rotate(135deg);
}

.split-range {
  position: absolute;
  z-index: 6;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.split-organizer:focus-within .split-divider span {
  outline: 3px solid rgba(198, 242, 59, 0.42);
  outline-offset: 5px;
}

.duplicator-demo {
  grid-template-columns: minmax(0, 1fr) 140px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 154, 60, 0.18), transparent 42%),
    #111;
}

.comp-flow {
  display: grid;
  gap: 12px;
}

.comp-flow > i {
  width: 64%;
  height: 8px;
  margin-left: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lime), var(--orange), var(--grape));
}

.comp-node {
  min-height: 68px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(248, 248, 246, 0.08);
  border-left: 6px solid var(--lime);
}

.comp-node.output {
  border-left-color: var(--orange);
}

.comp-node b,
.comp-node small {
  display: block;
}

.comp-node small {
  color: #cfcfc7;
  font-size: 12px;
  font-weight: 850;
}

.duplicate-stats {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 4px solid var(--orange);
  border-radius: 8px;
  text-align: center;
}

.duplicate-stats b {
  font-size: 42px;
  line-height: 1;
}

.duplicate-stats small {
  width: 92px;
  color: #cfcfc7;
  font-size: 12px;
  line-height: 1.25;
}

.version-stack {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.version-stack b {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  background: rgba(248, 248, 246, 0.08);
  border-top: 5px solid var(--grape);
  font-size: 13px;
}

.vector-demo {
  background:
    linear-gradient(135deg, rgba(167, 139, 250, 0.16), transparent 38%),
    #111;
}

.layer-stack {
  display: grid;
  gap: 10px;
}

.layer-stack b {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 8px;
  background: rgba(248, 248, 246, 0.08);
  border-left: 6px solid var(--grape);
}

.demo-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(20px, 5vw, 56px);
  align-items: center;
}

.commercial-preview {
  min-height: 560px;
}

.demo-copy h3 {
  margin: 0;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 0.94;
}

.demo-copy p {
  max-width: 640px;
  margin: 20px 0 0;
  color: #3e3e3a;
  font-size: 18px;
  line-height: 1.5;
}

.value-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.value-list span {
  min-height: 84px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.value-list b {
  font-size: 18px;
}

.value-list small {
  color: #565650;
  line-height: 1.4;
}

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

.plugin-grid article,
.brand-callout {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.05);
}

.plugin-grid article {
  min-height: 280px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
}

.plugin-grid span {
  color: #6c8200;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.plugin-grid h3,
.brand-callout h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.05;
}

.plugin-grid p,
.brand-callout p {
  margin: 0;
  color: #44443f;
  line-height: 1.48;
}

.launch-roadmap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.launch-roadmap span {
  min-height: 76px;
  display: grid;
  place-items: center;
  background: var(--milk);
  font-weight: 950;
}

.brand-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: clamp(24px, 4vw, 42px);
}

.brand-callout p {
  margin-top: 12px;
  max-width: 640px;
}

.brand-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 1050px) {
  .launch-module,
  .demo-layout,
  .duplicator-demo {
    grid-template-columns: 1fr;
  }

  .duplicate-stats {
    width: 132px;
    justify-self: center;
  }

  .split-organizer {
    min-height: 520px;
  }

  .pane-topbar,
  .project-tree {
    min-width: 0;
  }

  .finder-window {
    width: 100%;
  }

  .plugin-grid,
  .launch-roadmap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commercial-preview {
    min-height: 440px;
  }
}

@media (max-width: 760px) {
  .plugin-grid,
  .launch-roadmap,
  .placement-row,
  .brand-callout {
    grid-template-columns: 1fr;
  }

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

  .hero-proof span {
    min-height: 74px;
    padding: 10px;
  }

  .hero-proof b {
    font-size: 24px;
  }

  .hero-proof small {
    font-size: 10px;
    line-height: 1.2;
  }

  .launch-hero h1 {
    font-size: 50px;
  }

  .launch-module {
    padding: 20px;
  }

  .module-copy > span {
    margin-bottom: 12px;
  }

  .module-copy h3 {
    font-size: 36px;
    line-height: 0.96;
  }

  .module-copy p {
    margin-top: 14px;
  }

  .module-copy ul {
    gap: 8px;
    margin-top: 16px;
  }

  .module-copy li {
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.34;
  }

  .module-copy li::before {
    width: 9px;
    height: 9px;
  }

  .module-demo {
    min-height: 0;
    gap: 12px;
    padding: 16px;
  }

  .split-organizer {
    min-height: 520px;
    padding: 0;
  }

  .split-pane {
    padding: 14px;
  }

  .pane-topbar,
  .project-tree {
    min-width: 0;
  }

  .finder-window {
    width: 100%;
  }

  .tree-row {
    min-height: 32px;
    gap: 8px;
    padding: 0 10px;
    font-size: 11px;
  }

  .tree-row.child {
    margin-left: 14px;
    width: calc(100% - 14px);
    min-height: 28px;
  }

  .split-divider {
    top: 12px;
    bottom: 12px;
  }

  .split-divider span {
    width: 38px;
    height: 38px;
  }

  .version-stack b {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .comp-node {
    min-height: 58px;
  }

  .comp-flow {
    gap: 8px;
  }

  .version-stack {
    grid-template-columns: 1fr;
  }

  .module-copy p,
  .demo-copy p {
    font-size: 16px;
  }
}

.signal-band,
.launch-section,
.plugins-section,
.brand-section,
.modules-section,
.workflow-section,
.pdf-section {
  background: var(--section-bg);
}

.demo-section,
.workflow-section {
  background: var(--bg);
}

.signal-band {
  border-color: var(--line);
}

.signal-band span {
  border-color: var(--line);
}

.section-heading p,
.block-label,
.mini-label,
.hero-proof small,
.value-list small {
  color: var(--text-soft);
}

.hero-proof span,
.brand-block,
.structure-card,
.launch-module,
.module-card,
.intro-card,
.pdf-callout,
.plugin-grid article,
.brand-callout,
.value-list span,
.rename-table {
  background: var(--surface-card);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.launch-module-primary {
  background:
    linear-gradient(135deg, rgba(198, 242, 59, 0.18), rgba(255, 255, 255, 0) 42%),
    var(--surface-card);
}

:root[data-theme="dark"] .launch-module-primary {
  background:
    linear-gradient(135deg, rgba(198, 242, 59, 0.16), rgba(198, 242, 59, 0) 44%),
    var(--surface-card);
}

.module-copy p,
.module-copy li,
.demo-copy p,
.plugin-grid p,
.brand-callout p,
.module-card p,
.intro-card li,
.pdf-callout p,
.workflow-rail p,
.structure-card p,
.concept-row p {
  color: var(--text-muted);
}

.module-copy > span {
  background: var(--button-primary-bg);
  color: var(--button-primary-text);
}

.module-copy li::before {
  box-shadow: inset 0 0 0 3px color-mix(in srgb, var(--text) 14%, transparent);
}

.app-preview {
  background: var(--preview-bg);
  color: var(--text);
}

.preview-topbar button,
.preview-tabs button,
.preview-panel,
.search-bar,
.folder-list span,
.motion-grid span,
.workflow-rail,
.launch-roadmap span,
.rename-table {
  background: var(--preview-surface);
  border-color: var(--line);
  color: var(--text);
}

.preview-topbar button {
  background:
    linear-gradient(var(--text), var(--text)) center / 12px 2px no-repeat,
    linear-gradient(var(--text), var(--text)) center / 2px 12px no-repeat,
    var(--preview-surface);
}

.preview-panel {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--preview-surface) 92%, transparent), color-mix(in srgb, var(--preview-surface) 78%, transparent)),
    var(--preview-bg);
}

.preview-tabs button.active {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}

.module-demo {
  background: var(--module-preview-bg);
  color: var(--module-preview-text);
}

.duplicator-demo {
  background:
    linear-gradient(135deg, rgba(255, 154, 60, 0.18), transparent 42%),
    var(--module-preview-bg);
}

.comp-node,
.version-stack b,
.sound-list i,
.demo-search,
.layer-stack b {
  background: rgba(248, 248, 246, 0.08);
  color: var(--module-preview-text);
}

.intro-cta-section,
.product-section {
  background: var(--footer-bg);
  color: var(--milk);
}

.intro-card {
  background: color-mix(in srgb, var(--footer-bg) 78%, var(--surface) 22%);
}

.intro-card.highlight {
  background:
    linear-gradient(135deg, rgba(198, 242, 59, 0.22), transparent 42%),
    color-mix(in srgb, var(--footer-bg) 78%, var(--surface) 22%);
}

.launch-roadmap {
  background: var(--line);
  border-color: var(--line);
}

.site-footer {
  background: var(--footer-bg);
}

.text-link,
.plugin-grid span,
.signal-band span:nth-child(2) {
  color: #6c8200;
}

:root[data-theme="dark"] .text-link,
:root[data-theme="dark"] .plugin-grid span,
:root[data-theme="dark"] .signal-band span:nth-child(2) {
  color: var(--lime);
}

:root[data-theme="dark"] .signal-band span:nth-child(4) {
  color: var(--grape);
}

:root[data-theme="dark"] .button.ghost {
  color: var(--text);
  border-color: var(--line);
}

:root[data-theme="dark"] .scene-panel {
  background: rgba(248, 248, 246, 0.1);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
}

.site-nav a[aria-current="page"] {
  background: var(--surface-soft);
  color: var(--text);
}

.company-hero {
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
}

.company-hero .hero-copy {
  width: min(820px, 100%);
}

.company-hero h1,
.page-hero h1 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(58px, 7.4vw, 104px);
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: 0;
}

.hero-video-card,
.product-video-card {
  min-width: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(198, 242, 59, 0.16), transparent 48%),
    var(--surface-card);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-video-card video,
.hero-video-card img,
.inline-demo-video,
.product-spotlight img {
  width: 100%;
  height: auto;
  display: block;
}

.promo-video,
.inline-demo-video {
  aspect-ratio: 16 / 9;
  background: #111;
  object-fit: cover;
}

.hero-video-card figcaption {
  margin: 0;
  padding: 12px 14px 14px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 750;
}

.demo-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(420px, 1fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  padding: clamp(24px, 4vw, 48px) clamp(20px, 5vw, 80px);
  border-block: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(198, 242, 59, 0.12), transparent 48%),
    var(--section-bg);
}

.demo-strip-copy p,
.eyebrow {
  color: var(--text-soft);
}

:root[data-theme="dark"] .eyebrow {
  background: color-mix(in srgb, var(--lime) 16%, transparent);
  border-color: color-mix(in srgb, var(--lime) 36%, transparent);
  color: var(--lime);
}

.demo-strip-copy p {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.demo-strip-copy h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(34px, 4.2vw, 66px);
  line-height: 0.96;
}

.inline-demo-video {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.signal-band a,
.signal-band span {
  min-height: 76px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  color: var(--text);
  font-size: 19px;
  font-weight: 900;
}

.signal-band a:hover,
.signal-band a:focus-visible {
  background: color-mix(in srgb, var(--lime) 18%, transparent);
  outline: none;
}

.signal-band a:nth-child(2) {
  color: #6c8200;
}

.signal-band a:nth-child(4) {
  color: #6543d7;
}

.flagship-section,
.products-preview,
.coming-soon-section,
.guide-system-section,
.product-outcome,
.feature-matrix-section,
.guides-preview {
  background: var(--section-bg);
}

.module-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.product-grid,
.feature-matrix,
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-card,
.guide-card,
.feature-matrix article {
  min-width: 0;
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-card);
  box-shadow: var(--shadow);
}

.product-card.active {
  background:
    linear-gradient(135deg, rgba(198, 242, 59, 0.22), transparent 52%),
    var(--surface-card);
}

.product-card span,
.guide-card span,
.product-spotlight span {
  color: #6c8200;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.product-card h3,
.guide-card h3,
.feature-matrix h3,
.product-spotlight h3 {
  margin: 0;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.02;
}

.product-card p,
.guide-card p,
.feature-matrix p,
.product-spotlight p,
.guides-layout p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.48;
}

.product-card a {
  align-self: end;
  color: #6c8200;
  font-weight: 900;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 22px clamp(20px, 5vw, 80px) 0;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--text);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  padding: clamp(44px, 7vw, 92px) clamp(20px, 5vw, 80px) clamp(38px, 5vw, 64px);
  background: var(--hero-bg);
}

.product-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.82fr);
  align-items: center;
}

.product-spotlight {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 0.85fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-card);
  box-shadow: var(--shadow);
}

.product-spotlight img {
  border-radius: 8px;
  border: 1px solid var(--line);
}

.guides-layout {
  max-width: 920px;
  display: grid;
  gap: 22px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-card);
  box-shadow: var(--shadow);
}

.site-footer a {
  color: inherit;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 18px;
  color: color-mix(in srgb, var(--milk) 82%, transparent);
  font-weight: 800;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: var(--lime);
  outline: none;
}

:root[data-theme="dark"] .hero-video-card,
:root[data-theme="dark"] .product-video-card,
:root[data-theme="dark"] .product-card.active {
  background:
    linear-gradient(135deg, rgba(198, 242, 59, 0.14), transparent 52%),
    var(--surface-card);
}

:root[data-theme="dark"] .product-card span,
:root[data-theme="dark"] .guide-card span,
:root[data-theme="dark"] .product-spotlight span,
:root[data-theme="dark"] .product-card a,
:root[data-theme="dark"] .signal-band a:nth-child(2) {
  color: var(--lime);
}

:root[data-theme="dark"] .signal-band a:nth-child(4) {
  color: var(--grape);
}

@media (max-width: 1120px) {
  .company-hero,
  .demo-strip,
  .product-hero,
  .product-spotlight {
    grid-template-columns: 1fr;
  }

  .hero-video-card,
  .product-video-card {
    max-width: 760px;
  }
}

@media (max-width: 880px) {
  .product-grid,
  .feature-matrix,
  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 620px) {
  :root {
    --header-height: 102px;
  }

  .site-header {
    display: grid;
    grid-template-columns: auto auto;
    gap: 8px 12px;
  }

  .nav-wordmark {
    height: 34px;
  }

  .nav-controls {
    display: contents;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-top: 4px;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    min-height: 32px;
    padding: 0 10px;
    font-size: 12px;
    white-space: nowrap;
  }

  .theme-toggle {
    grid-column: 2;
    grid-row: 1;
    width: 52px;
    height: 32px;
    justify-self: end;
  }

  .company-hero h1,
  .page-hero h1 {
    font-size: 48px;
  }

  .product-grid,
  .feature-matrix,
  .guide-grid,
  .hero-proof {
    grid-template-columns: 1fr;
  }

  .demo-strip {
    padding-top: 28px;
    padding-bottom: 28px;
  }

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

  .signal-band a,
  .signal-band span {
    min-height: 56px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

:root[data-theme="dark"] .scene-panel-side strong,
:root[data-theme="dark"] .scene-panel-side span {
  color: var(--milk);
}

:root[data-theme="dark"] .liquid-ribbon {
  opacity: 0.88;
}

@media (max-width: 760px) {
  .site-header {
    align-items: stretch;
  }

  .nav-brand {
    width: fit-content;
  }

  .nav-controls {
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
  }

  .theme-toggle {
    margin-top: 0;
  }
}
