:root {
  --bg: #09090b;
  --panel: #0c0a09;
  --panel-2: #12100f;
  --text: #f3f0ec;
  --muted: #78716c;
  --dim: #a8a29e;
  --line: #292524;
  --accent: #336774;
  --accent-2: #336774;
  --warm: #c5a77c;
  --shadow: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    "Plus Jakarta Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
}
a {
  color: inherit;
}
.container {
  width: min(1060px, calc(100% - 48px));
  margin: 0 auto;
}
.mono {
  font-family: "JetBrains Mono", monospace;
}
.site-nav {
  height: 72px;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 9, 11, 0.9);
  backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 500;
}
.brand img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-actions a {
  text-decoration: none;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-actions .download {
  padding: 10px 20px;
  border-radius: 0;
  background: var(--accent);
  color: var(--text);
  font-weight: 500;
}
.hero {
  padding: 104px 0 54px;
  text-align: left;
}
.eyebrow {
  display: inline-flex;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 24px 0 20px;
  max-width: 800px;
}
.hero p {
  max-width: 720px;
  margin: 0;
  color: var(--dim);
  font-size: 17px;
}
.studio {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 18px;
  padding: 30px 0 76px;
}
.controls,
.stage-card,
.info-card {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}
.controls {
  border-radius: 0;
  padding: 20px;
  align-self: start;
  position: sticky;
  top: 92px;
}
.control-group {
  padding: 0 0 20px;
  margin: 0 0 20px;
  border-bottom: 1px solid var(--line);
}
.control-group:last-of-type {
  border-bottom: 0;
  margin-bottom: 8px;
}
.control-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 10px;
}
.control-value {
  color: var(--accent);
  font-weight: 500;
}
.segmented {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
}
.segmented button,
.action {
  border: 1px solid var(--line);
  background: var(--panel-2);
  color: var(--muted);
  border-radius: 0;
  padding: 10px 9px;
  cursor: pointer;
  font:
    500 11px/1.2 "JetBrains Mono",
    monospace;
  letter-spacing: 0.04em;
  transition: 0.2s ease;
}
.segmented button:hover,
.segmented button.active {
  border-color: var(--accent);
  background: rgba(51, 103, 116, 0.18);
  color: var(--text);
}
.color-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.color-row input[type="color"] {
  width: 48px;
  height: 38px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.color-presets {
  display: flex;
  gap: 7px;
}
.swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}
.range {
  width: 100%;
  accent-color: var(--accent);
}
.actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.action.primary {
  background: var(--accent-2);
  border-color: var(--accent-2);
  color: #fff;
}
.action:hover {
  transform: translateY(-1px);
  color: #fff;
}
.stage-card {
  border-radius: 0;
  overflow: hidden;
  min-height: 610px;
  display: flex;
  flex-direction: column;
}
.stage-toolbar {
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 11px;
}
.stage-toolbar span:last-child {
  display: flex;
  align-items: center;
  gap: 7px;
}
.live-dot {
  width: 7px;
  height: 7px;
  background: #70d596;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(112, 213, 150, 0.1);
}
.desktop {
  --shelf: #7582b5;
  --alpha: 0.96;
  --radius: 24px;
  --icon-size: 42px;
  flex: 1;
  position: relative;
  padding: 82px 46px 54px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(145deg, #15272e, #0c1215 60%, #273c41);
}
.desktop.light {
  background: linear-gradient(145deg, #dfe9e7, #a8c3c0 55%, #789b99);
}
.desktop.aurora {
  background:
    radial-gradient(circle at 24% 20%, #925ec2 0, transparent 32%),
    radial-gradient(circle at 76% 70%, #3d9dae 0, transparent 37%),
    linear-gradient(145deg, #131829, #1b162e);
}
.menubar {
  position: absolute;
  inset: 0 0 auto;
  height: 38px;
  background: rgba(245, 248, 247, 0.88);
  color: #172021;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  font-size: 12px;
  backdrop-filter: blur(18px);
}
.desktop:not(.light) .menubar {
  background: rgba(16, 20, 23, 0.82);
  color: #edf4f2;
}
.menu-left,
.menu-right {
  display: flex;
  gap: 15px;
  align-items: center;
}
.notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 154px;
  height: 29px;
  border-radius: 0 0 13px 13px;
  background: #050607;
}
.shelf-wrap {
  width: min(100%, 830px);
  margin-top: 20px;
}
.shelf {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  background: color-mix(
    in srgb,
    var(--shelf) calc(var(--alpha) * 100%),
    transparent
  );
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(20px);
  transition: 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.shelf.classic {
  border-radius: 12px;
}
.shelf.capsule {
  border-radius: 999px;
}
.shelf.glass {
  background: color-mix(in srgb, var(--shelf) 38%, transparent);
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.22),
    0 16px 44px rgba(0, 0, 0, 0.3);
}
.shelf.minimal {
  border: 0;
  border-radius: 8px;
  box-shadow: none;
  padding: 7px 12px;
}
.shelf.segmented {
  gap: 5px;
}
.shelf-icon {
  width: var(--icon-size);
  height: var(--icon-size);
  flex: 0 0 var(--icon-size);
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  cursor: grab;
  user-select: none;
  transition:
    transform 0.2s cubic-bezier(0.2, 0.9, 0.25, 1),
    opacity 0.2s ease,
    background 0.2s ease;
  position: relative;
}
.shelf-icon:hover {
  transform: translateY(-5px) scale(1.06);
}
.shelf-icon.dragging {
  opacity: 0.3;
  transform: scale(0.88);
}
.shelf.segmented .shelf-icon {
  background: rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
}
.shelf.classic .shelf-icon {
  background: rgba(255, 255, 255, 0.09);
}
.shelf-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  pointer-events: none;
}
.drag-hint {
  text-align: center;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  margin-top: 13px;
}
.desktop.light .drag-hint {
  color: rgba(12, 24, 24, 0.62);
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 20px);
  opacity: 0;
  padding: 11px 16px;
  border-radius: 0;
  background: #f1f4f2;
  color: #121819;
  font-size: 12px;
  font-weight: 700;
  z-index: 100;
  transition: 0.25s;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.info {
  padding: 0 0 96px;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.info-card {
  border-radius: 0;
  padding: 26px;
}
.info-card span {
  color: var(--accent);
  font-size: 11px;
}
.info-card h2 {
  font-size: 18px;
  font-weight: 500;
  margin: 12px 0 8px;
}
.info-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}
.cta {
  margin-top: 18px;
  border: 1px solid rgba(125, 183, 196, 0.25);
  border-radius: 0;
  padding: 34px;
  background: linear-gradient(
    135deg,
    rgba(125, 183, 196, 0.16),
    rgba(51, 103, 116, 0.08)
  );
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta h2 {
  margin: 0 0 6px;
  font-size: 26px;
  font-weight: 400;
}
.cta p {
  margin: 0;
  color: var(--muted);
}
.cta a {
  white-space: nowrap;
  text-decoration: none;
  padding: 13px 20px;
  border-radius: 0;
  background: var(--accent);
  color: var(--text);
  font-family: "JetBrains Mono", monospace;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
  font-size: 12px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.footer-links {
  display: flex;
  gap: 18px;
}
.footer-links a {
  text-decoration: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 900px) {
  .studio {
    grid-template-columns: 1fr;
  }
  .controls {
    position: static;
  }
  .stage-card {
    min-height: 520px;
  }
  .desktop {
    padding-left: 18px;
    padding-right: 18px;
  }
  .shelf {
    gap: 5px;
    padding: 9px;
  }
  .shelf-icon {
    --icon-size: 36px;
    font-size: 15px;
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
  .cta {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .container {
    width: min(100% - 24px, 1180px);
  }
  .nav-actions > a:not(.download) {
    display: none;
  }
  .hero {
    padding-top: 58px;
  }
  .hero h1 {
    font-size: 43px;
  }
  .hero p {
    font-size: 16px;
  }
  .studio {
    padding-top: 18px;
  }
  .desktop {
    padding-top: 62px;
    min-height: 380px;
  }
  .stage-card {
    min-height: 440px;
  }
  .shelf-icon {
    --icon-size: 30px;
    font-size: 13px;
    border-radius: 8px;
  }
  .shelf-icon:nth-child(n + 10) {
    display: none;
  }
  .menu-right span:nth-child(-n + 2) {
    display: none;
  }
  .notch {
    width: 112px;
  }
  .actions {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
  }
  .footer-links {
    flex-wrap: wrap;
  }
}
