:root {
  --studio-ink: #06060a;
  --studio-ink-soft: #0f1118;
  --studio-panel: rgba(9, 11, 19, 0.84);
  --studio-panel-soft: rgba(17, 22, 34, 0.72);
  --studio-line: rgba(255, 255, 255, 0.08);
  --studio-line-strong: rgba(255, 255, 255, 0.16);
  --studio-text: #f7f8ff;
  --studio-text-soft: rgba(247, 248, 255, 0.74);
  --studio-text-muted: rgba(247, 248, 255, 0.48);
  --studio-blue: #4f56ff;
  --studio-blue-deep: #1c57dc;
  --studio-lilac: #c6d6ff;
  --studio-glow: rgba(123, 143, 255, 0.72);
}

html,
body.studio-body {
  background:
    radial-gradient(circle at 18% 16%, rgba(249, 250, 255, 0.9), transparent 0, transparent 30%),
    radial-gradient(circle at 82% 10%, rgba(116, 132, 255, 0.66), transparent 0, transparent 24%),
    radial-gradient(circle at 28% 76%, rgba(34, 78, 243, 0.74), transparent 0, transparent 28%),
    linear-gradient(180deg, #dbe4ff 0%, #95abff 26%, #111319 66%, #040404 100%);
  background-attachment: fixed;
}

body.studio-body {
  color: var(--studio-text);
}

body.studio-body::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 14%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.16), transparent 22%);
  opacity: 0.68;
}

.studio-body .page-noise {
  opacity: 0.16;
}

.studio-body .site-header.is-scrolled {
  background: rgba(7, 8, 14, 0.56);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.studio-body .brand,
.studio-body .site-nav,
.studio-body .header-link {
  color: rgba(14, 18, 35, 0.7);
}

.studio-body .site-header.is-scrolled .brand,
.studio-body .site-header.is-scrolled .site-nav,
.studio-body .site-header.is-scrolled .header-link {
  color: rgba(255, 255, 255, 0.82);
}

.studio-body .site-nav a[aria-current="page"] {
  color: rgba(10, 14, 29, 0.96);
}

.studio-body .site-header.is-scrolled .site-nav a[aria-current="page"] {
  color: rgba(255, 255, 255, 0.96);
}

.studio-body .site-header:not(.is-scrolled) .site-nav a:hover,
.studio-body .site-header:not(.is-scrolled) .header-link:hover {
  color: rgba(10, 14, 29, 0.96);
}

.studio-body .theme-toggle {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(10, 14, 29, 0.08);
  color: rgba(10, 14, 29, 0.76);
  box-shadow: 0 10px 30px rgba(41, 53, 92, 0.12);
}

.studio-header .header-inner {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}

.studio-header .brand {
  justify-self: start;
}

.studio-header .site-nav {
  grid-column: 2;
  justify-self: center;
}

.studio-header .header-actions {
  grid-column: 3;
  justify-self: end;
}

.studio-body .site-header.is-scrolled .theme-toggle {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
}

.studio-page {
  width: min(1400px, calc(100vw - 40px));
  margin: 0 auto;
  padding-top: 0;
}

.studio-hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  justify-items: center;
  gap: 30px;
  padding-top: 112px;
  padding-bottom: 92px;
  overflow: clip;
}

.studio-atmosphere {
  position: absolute;
  inset: -6% -8% auto;
  height: 86%;
  pointer-events: none;
}

.studio-haze {
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.88;
}

.studio-haze--one {
  top: 2%;
  left: 10%;
  width: min(44vw, 620px);
  height: min(36vw, 520px);
  background: radial-gradient(circle, rgba(253, 255, 255, 0.95), rgba(227, 236, 255, 0.3) 56%, transparent 72%);
}

.studio-haze--two {
  top: 4%;
  right: 4%;
  width: min(30vw, 440px);
  height: min(26vw, 380px);
  background: radial-gradient(circle, rgba(132, 144, 255, 0.88), rgba(97, 112, 255, 0.32) 52%, transparent 70%);
}

.studio-haze--three {
  bottom: 12%;
  left: 0;
  width: min(42vw, 560px);
  height: min(30vw, 380px);
  background: radial-gradient(circle, rgba(23, 81, 255, 0.82), rgba(31, 62, 168, 0.28) 54%, transparent 74%);
}

.studio-code-cloud {
  position: absolute;
  inset: 0;
}

.studio-code-bit {
  position: absolute;
  top: var(--top);
  left: var(--left);
  z-index: 1;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 34px rgba(11, 18, 42, 0.16);
  color: rgba(12, 17, 33, 0.72);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  backdrop-filter: blur(18px);
  transition:
    opacity 220ms ease,
    background 220ms ease,
    border-color 220ms ease;
}

.studio-code-bit:nth-child(2n) {
  color: rgba(255, 255, 255, 0.82);
  background: rgba(17, 23, 44, 0.18);
}

.studio-hero-copy {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100vw - 48px));
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.studio-hero-copy h1,
.studio-section-head h2,
.studio-feature-copy h3,
.studio-surface-copy h3,
.studio-cta-panel h2 {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.studio-hero-copy h1 {
  font-size: clamp(42px, 7.6vw, 76px);
  line-height: 0.94;
  color: #11152d;
}

.studio-hero-copy p,
.studio-section-head p,
.studio-feature-copy p,
.studio-surface-copy p,
.studio-cta-panel p,
.studio-testimonial-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.54;
  letter-spacing: -0.012em;
}

.studio-hero-copy p {
  max-width: 630px;
  color: rgba(17, 21, 45, 0.72);
}

.studio-hero-button,
.studio-section-button {
  min-height: 36px;
  padding: 0 16px;
  background: rgba(15, 16, 22, 0.92);
  color: #f8f9ff;
  border-color: rgba(10, 10, 14, 0.1);
}

.studio-stage-shell {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100vw - 48px));
  padding: 18px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(12, 15, 27, 0.12);
  box-shadow:
    0 60px 160px rgba(8, 15, 48, 0.32),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transform:
    perspective(1800px)
    rotateX(calc(var(--pointer-rotate-x, 0deg) + var(--stage-intro-rx, 0deg)))
    rotateY(calc(var(--pointer-rotate-y, 0deg) + var(--stage-intro-ry, 0deg)))
    translate3d(
      var(--pointer-stage-x, 0px),
      calc(var(--pointer-stage-y, 0px) + var(--stage-enter-y, 0px)),
      0
    );
  transition:
    transform 220ms ease-out,
    opacity 520ms ease;
}

.studio-stage {
  display: grid;
  grid-template-columns: minmax(184px, 0.26fr) minmax(0, 0.92fr) minmax(244px, 0.38fr);
  min-height: min(39vw, 540px);
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 22%),
    linear-gradient(180deg, rgba(6, 8, 16, 0.92), rgba(8, 10, 18, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.studio-stage-sidebar,
.studio-stage-thread,
.studio-stage-review {
  min-width: 0;
}

.studio-stage-sidebar {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 18px 18px 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 60%),
    linear-gradient(180deg, rgba(240, 248, 255, 0.96), rgba(219, 232, 247, 0.94));
  color: rgba(13, 17, 33, 0.84);
}

.studio-window-dots {
  display: inline-flex;
  gap: 8px;
}

.studio-window-dots span,
.studio-terminal-bar span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(20, 26, 48, 0.14);
}

.studio-window-dots span:nth-child(1) {
  background: #ff5f57;
}

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

.studio-window-dots span:nth-child(3) {
  background: #28c840;
}

.studio-sidebar-links,
.studio-sidebar-group {
  display: grid;
  gap: 10px;
}

.studio-sidebar-links span {
  font-size: 14px;
  letter-spacing: -0.015em;
}

.studio-sidebar-group p {
  margin: 0;
  color: rgba(13, 17, 33, 0.46);
  font-size: 13px;
}

.studio-sidebar-card {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: inset 0 0 0 1px rgba(18, 22, 38, 0.06);
}

.studio-sidebar-card strong,
.studio-review-head strong,
.studio-review-note strong,
.studio-surface-copy h3,
.studio-testimonial-head strong {
  font-weight: 500;
}

.studio-sidebar-card strong {
  font-size: 14px;
}

.studio-sidebar-card span,
.studio-stage-crumb,
.studio-status-list span,
.studio-action-meta,
.studio-review-head span,
.studio-review-note span,
.studio-surface-copy p,
.studio-surface-cta,
.studio-testimonial-head span {
  color: var(--studio-text-muted);
}

.studio-sidebar-card span {
  color: rgba(13, 17, 33, 0.56);
  font-size: 13px;
}

.studio-sidebar-card--active {
  background:
    linear-gradient(180deg, rgba(181, 214, 255, 0.72), rgba(234, 246, 255, 0.68));
  box-shadow:
    inset 0 0 0 1px rgba(32, 60, 123, 0.08),
    0 20px 34px rgba(87, 127, 215, 0.16);
}

.studio-stage-thread {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 18px 18px 16px;
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 255, 255, 0.06), transparent 20%),
    rgba(13, 16, 27, 0.92);
}

.studio-stage-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.studio-stage-tab {
  color: rgba(255, 255, 255, 0.94);
  font-size: 18px;
  letter-spacing: -0.03em;
}

.studio-stage-crumb {
  font-size: 13px;
}

.studio-thread-scroll {
  display: grid;
  align-content: start;
  gap: 16px;
  padding-top: 18px;
}

.studio-bubble {
  width: min(84%, 420px);
  padding: 18px 20px;
  border-radius: 24px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.studio-bubble--prompt {
  justify-self: end;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.96);
}

.studio-bubble--response {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
}

.studio-status-list {
  display: grid;
  gap: 8px;
}

.studio-status-list span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.studio-status-list span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(122, 248, 195, 0.86);
  box-shadow: 0 0 0 5px rgba(122, 248, 195, 0.12);
}

.studio-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.studio-action-label,
.studio-review-head strong,
.studio-review-note strong {
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
}

.studio-action-meta,
.studio-review-head span,
.studio-review-note span {
  font-size: 13px;
}

.studio-composer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  color: rgba(15, 18, 28, 0.38);
  font-size: clamp(14px, 1.6vw, 18px);
}

.studio-composer button {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: #121319;
  color: #fff;
  cursor: pointer;
}

.studio-composer button svg {
  width: 18px;
  height: 18px;
}

.studio-stage-review {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 20px 18px;
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 255, 255, 0.04), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 38%),
    rgba(15, 18, 29, 0.98);
}

.studio-review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.studio-diff-block {
  display: grid;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 13px;
  line-height: 1.5;
}

.studio-diff-block--remove {
  background: rgba(146, 44, 44, 0.14);
  color: rgba(255, 194, 194, 0.78);
}

.studio-diff-block--add {
  background: rgba(37, 133, 79, 0.14);
  color: rgba(170, 252, 206, 0.82);
}

.studio-review-note {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.studio-logo-rail {
  position: relative;
  z-index: 2;
  width: min(1260px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  padding-top: 8px;
}

.studio-logo-wordmark {
  min-height: 70px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: rgba(5, 5, 7, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.2);
}

.studio-logo-wordmark span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-align: center;
}

.studio-intro,
.studio-surfaces,
.studio-testimonials {
  padding-top: 10px;
}

.studio-intro {
  padding-bottom: 50px;
}

.studio-feature-list {
  display: grid;
  gap: 74px;
  padding-bottom: 104px;
}

.studio-product-link {
  margin: 0 auto 88px;
}

.studio-product-showcase {
  display: grid;
  gap: 22px;
}

.studio-product-feature,
.studio-product-card {
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.studio-product-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr) auto;
  align-items: center;
  gap: 24px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 16%, rgba(113, 144, 255, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.24);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.studio-product-feature:hover,
.studio-product-feature:focus-visible,
.studio-product-card:hover,
.studio-product-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.28);
}

.studio-product-feature-copy,
.studio-product-card-copy {
  display: grid;
  gap: 10px;
}

.studio-product-feature-copy h3,
.studio-product-card-copy h3 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: #f6f8ff;
}

.studio-product-card-copy h3 {
  font-size: 28px;
}

.studio-product-feature-copy p:last-of-type,
.studio-product-card-copy p:last-of-type {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: -0.018em;
  color: rgba(232, 239, 255, 0.72);
}

.studio-product-feature-media,
.studio-product-card-media {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 12px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(12, 19, 35, 0.96), rgba(7, 10, 18, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 18px 40px rgba(0, 0, 0, 0.28);
  justify-self: stretch;
  overflow: hidden;
}

.studio-product-card-media {
  padding: 10px;
  border-radius: 24px;
}

.studio-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.studio-product-meta span,
.studio-product-card-copy span {
  width: max-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(232, 239, 255, 0.82);
  font-size: 12px;
  line-height: 1;
}

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

.studio-product-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background:
    radial-gradient(circle at 88% 10%, rgba(113, 144, 255, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.2);
}

.studio-product-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.92fr) auto;
  align-items: center;
  gap: 26px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at 78% 22%, rgba(113, 144, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.24);
  min-width: 0;
}

.studio-product-feature > *,
.studio-product-card > *,
.studio-product-panel > * {
  min-width: 0;
}

.studio-product-copy {
  display: grid;
  gap: 10px;
}

.studio-product-label {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232, 239, 255, 0.58);
}

.studio-product-copy h2 {
  margin: 0;
  font-size: clamp(34px, 3.8vw, 48px);
  line-height: 0.96;
  letter-spacing: -0.045em;
  color: #f6f8ff;
}

.studio-product-copy p:last-child {
  margin: 0;
  max-width: 46ch;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: -0.018em;
  color: rgba(232, 239, 255, 0.72);
}

.studio-product-preview {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 14px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(12, 19, 35, 0.98), rgba(7, 10, 18, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 18px 40px rgba(0, 0, 0, 0.28);
  justify-self: stretch;
  overflow: hidden;
}

.studio-product-preview-top {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.studio-product-preview-top span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.studio-product-preview-stage {
  display: grid;
  gap: 10px;
}

.studio-product-preview-strip {
  height: 54px;
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(13, 124, 255, 0.16), rgba(255, 255, 255, 0.08)),
    linear-gradient(180deg, #d1eaf8 0%, #89b6d6 56%, #445f74 100%);
}

.studio-product-preview-screen {
  min-height: 120px;
  padding: 16px;
  display: grid;
  gap: 10px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.02);
}

.studio-product-preview-screen span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.studio-product-preview-screen span:first-child {
  width: 64%;
  height: 16px;
}

.studio-product-preview-screen span:nth-child(2) {
  width: 100%;
  height: 58px;
}

.studio-product-preview-screen span:last-child {
  width: 48%;
  height: 14px;
}

.studio-product-button {
  white-space: nowrap;
}

.studio-section-head {
  width: min(760px, 100%);
  display: grid;
  gap: 16px;
}

.studio-section-head--center {
  margin: 0 auto 32px;
  justify-items: center;
  text-align: center;
}

.studio-section-head h2 {
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.02;
  color: rgba(255, 255, 255, 0.96);
}

.studio-section-head p {
  color: rgba(255, 255, 255, 0.68);
}

.studio-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  align-items: center;
  gap: clamp(28px, 4vw, 52px);
}

.studio-feature--left {
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
}

.studio-feature--left .studio-feature-copy {
  order: 2;
}

.studio-feature--left .studio-feature-media {
  order: 1;
}

.studio-feature-copy {
  display: grid;
  gap: 14px;
}

.studio-feature-meta {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.studio-feature-copy h3 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.02;
}

.studio-feature-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.studio-feature-detail {
  color: rgba(255, 255, 255, 0.54);
}

.studio-feature-media {
  min-width: 0;
}

.studio-visual,
.studio-surface-media,
.studio-cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 24%, rgba(251, 252, 255, 0.88), transparent 24%),
    radial-gradient(circle at 78% 22%, rgba(114, 122, 255, 0.72), transparent 20%),
    radial-gradient(circle at 36% 88%, rgba(35, 93, 255, 0.86), transparent 26%),
    linear-gradient(135deg, #dfe7ff 0%, #9ab1ff 34%, #3c54ff 100%);
  box-shadow:
    0 42px 110px rgba(14, 24, 71, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.studio-visual {
  min-height: clamp(280px, 34vw, 410px);
  display: grid;
  place-items: center;
}

.studio-mini-shell,
.studio-device,
.studio-task-table,
.studio-terminal,
.studio-surface-shell,
.studio-surface-review,
.studio-surface-terminal {
  position: relative;
  z-index: 1;
}

.studio-mini-shell {
  width: min(72%, 420px);
  min-height: min(78%, 340px);
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  overflow: hidden;
  border-radius: 22px;
  background: rgba(12, 14, 22, 0.92);
  box-shadow:
    0 24px 54px rgba(8, 12, 30, 0.36),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.studio-mini-nav {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px 16px;
  background: rgba(15, 17, 30, 0.92);
}

.studio-mini-line {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.studio-mini-line--short {
  width: 66%;
}

.studio-mini-line--accent {
  background: rgba(102, 140, 255, 0.72);
}

.studio-mini-thread {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 18px;
}

.studio-mini-pill,
.studio-device-prompt {
  width: fit-content;
  max-width: 100%;
  padding: 12px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  color: rgba(10, 14, 26, 0.82);
  font-size: 14px;
  line-height: 1.45;
}

.studio-mini-copy,
.studio-device-copy {
  display: grid;
  gap: 9px;
}

.studio-mini-copy span,
.studio-device-copy span,
.studio-surface-prompt,
.studio-surface-row,
.studio-surface-terminal span {
  display: block;
  border-radius: 999px;
}

.studio-mini-copy span {
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
}

.studio-mini-copy span:nth-child(2) {
  width: 86%;
}

.studio-mini-copy span:nth-child(3) {
  width: 74%;
}

.studio-mini-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.studio-mini-summary strong {
  color: rgba(255, 255, 255, 0.94);
  font-weight: 500;
}

.studio-device {
  width: 166px;
  min-height: 326px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px 14px;
  border-radius: 22px;
  background: rgba(10, 12, 20, 0.94);
  box-shadow:
    0 24px 54px rgba(8, 12, 30, 0.38),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.studio-device-copy span {
  height: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.studio-device-copy span:nth-child(2) {
  width: 82%;
}

.studio-device-copy span:nth-child(3) {
  width: 68%;
}

.studio-device-copy span:nth-child(4) {
  width: 76%;
}

.studio-device-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.studio-device--skills {
  width: 188px;
}

.studio-card-image {
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  background:
    radial-gradient(circle at 48% 42%, rgba(255, 255, 255, 0.95), transparent 26%),
    radial-gradient(circle at 50% 72%, rgba(115, 176, 255, 0.9), transparent 30%),
    linear-gradient(180deg, #8dd8ff 0%, #4b89ff 52%, #1231aa 100%);
}

.studio-task-table {
  width: min(78%, 480px);
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(10, 12, 22, 0.92);
  box-shadow:
    0 24px 54px rgba(8, 12, 30, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.studio-task-row {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(68px, 0.8fr) minmax(68px, 0.8fr);
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.studio-task-row--head {
  background: transparent;
  color: rgba(255, 255, 255, 0.44);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
}

.studio-terminal {
  width: min(58%, 280px);
  min-height: 324px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(8, 10, 17, 0.96);
  box-shadow:
    0 24px 54px rgba(8, 12, 30, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.studio-terminal-bar {
  display: inline-flex;
  gap: 8px;
}

.studio-terminal-lines {
  display: grid;
  gap: 12px;
  color: rgba(213, 224, 255, 0.82);
  font-size: 13px;
  line-height: 1.5;
}

.studio-terminal-lines span:first-child {
  color: rgba(133, 170, 255, 0.92);
}

.studio-surfaces {
  padding-bottom: 96px;
}

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

.studio-surface-card {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(12, 14, 22, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
}

.studio-surface-media {
  min-height: 224px;
  display: grid;
  place-items: center;
}

.studio-surface-copy {
  display: grid;
  gap: 12px;
  padding: 20px 18px 22px;
}

.studio-surface-copy h3 {
  font-size: 24px;
  line-height: 1.06;
}

.studio-surface-copy p {
  color: rgba(227, 235, 255, 0.76);
}

.studio-surface-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  width: fit-content;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
}

.studio-surface-shell {
  width: min(72%, 232px);
  min-height: 168px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 12px;
  border-radius: 22px;
  background: rgba(14, 17, 29, 0.92);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.studio-surface-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.studio-surface-title {
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  letter-spacing: -0.03em;
}

.studio-surface-prompt {
  width: 78%;
  min-height: 58px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: rgba(18, 24, 42, 0.92);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.studio-surface-prompt span:last-child {
  color: rgba(35, 54, 122, 0.72);
}

.studio-surface-review {
  width: min(74%, 248px);
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(14, 17, 29, 0.92);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.studio-surface-row {
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 14px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(225, 234, 255, 0.86);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.studio-surface-row--accent {
  background: rgba(116, 134, 255, 0.82);
  color: rgba(10, 13, 28, 0.92);
}

.studio-surface-terminal {
  width: min(72%, 236px);
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(10, 12, 18, 0.96);
  color: rgba(208, 223, 255, 0.84);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  font-size: 13px;
}

.studio-testimonials {
  padding-bottom: 110px;
}

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

.studio-testimonial-card {
  display: grid;
  gap: 18px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(17, 19, 28, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.2);
}

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

.studio-testimonial-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(222, 229, 255, 0.96), rgba(103, 126, 255, 0.9));
  color: rgba(12, 16, 30, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.studio-testimonial-head div {
  display: grid;
  gap: 4px;
}

.studio-testimonial-head strong {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
}

.studio-testimonial-head span {
  font-size: 12px;
}

.studio-testimonial-card p {
  color: rgba(255, 255, 255, 0.72);
}

.studio-cta {
  padding-bottom: 96px;
}

.studio-cta-panel {
  min-height: 340px;
  display: grid;
  place-items: center;
  gap: 18px;
  padding: 46px 28px;
  text-align: center;
}

.studio-cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 10, 22, 0.18), rgba(3, 4, 8, 0.22)),
    radial-gradient(circle at 14% 80%, rgba(34, 81, 255, 0.9), transparent 22%),
    radial-gradient(circle at 70% 16%, rgba(255, 255, 255, 0.86), transparent 18%);
}

.studio-cta-panel h2,
.studio-cta-panel p,
.studio-cta-panel .pill-button {
  position: relative;
  z-index: 1;
}

.studio-cta-panel h2 {
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 0.98;
}

.studio-cta-panel p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
}

html[data-theme="light"],
html[data-theme="light"] body.studio-body {
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.96), transparent 0, transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(150, 170, 255, 0.52), transparent 0, transparent 24%),
    radial-gradient(circle at 24% 72%, rgba(79, 120, 255, 0.24), transparent 0, transparent 26%),
    linear-gradient(180deg, #eef4ff 0%, #d5e1ff 24%, #f7f9fc 62%, #eef3f8 100%);
}

html[data-theme="light"] body.studio-body::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 14%),
    linear-gradient(0deg, rgba(17, 24, 39, 0.04), transparent 22%);
  opacity: 0.56;
}

html[data-theme="light"] .studio-body .site-header.is-scrolled {
  background: rgba(245, 247, 252, 0.84);
  border-bottom-color: rgba(17, 24, 39, 0.08);
}

html[data-theme="light"] .studio-body .site-header.is-scrolled .brand,
html[data-theme="light"] .studio-body .site-header.is-scrolled .site-nav,
html[data-theme="light"] .studio-body .site-header.is-scrolled .header-link {
  color: rgba(14, 18, 35, 0.76);
}

html[data-theme="light"] .studio-body .site-header.is-scrolled .site-nav a[aria-current="page"] {
  color: rgba(10, 14, 29, 0.96);
}

html[data-theme="light"] .studio-body .theme-toggle,
html[data-theme="light"] .studio-body .site-header.is-scrolled .theme-toggle {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(17, 24, 39, 0.08);
  color: rgba(10, 14, 29, 0.76);
  box-shadow: 0 12px 30px rgba(56, 86, 150, 0.12);
}

html[data-theme="light"] .studio-stage-shell {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.46)),
    rgba(176, 195, 236, 0.24);
  box-shadow:
    0 48px 120px rgba(56, 86, 150, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.52);
}

html[data-theme="light"] .studio-stage {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), transparent 22%),
    linear-gradient(180deg, #f8fbff, #ebf1f8);
  border-color: rgba(17, 24, 39, 0.08);
}

html[data-theme="light"] .studio-stage-thread,
html[data-theme="light"] .studio-stage-review {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(241, 246, 252, 0.96));
}

html[data-theme="light"] .studio-stage-topbar {
  border-bottom-color: rgba(17, 24, 39, 0.06);
}

html[data-theme="light"] .studio-stage-tab,
html[data-theme="light"] .studio-action-label,
html[data-theme="light"] .studio-review-head strong,
html[data-theme="light"] .studio-review-note strong {
  color: rgba(15, 23, 42, 0.94);
}

html[data-theme="light"] .studio-stage-crumb,
html[data-theme="light"] .studio-status-list span,
html[data-theme="light"] .studio-action-meta,
html[data-theme="light"] .studio-review-head span,
html[data-theme="light"] .studio-review-note span {
  color: rgba(15, 23, 42, 0.5);
}

html[data-theme="light"] .studio-bubble--prompt {
  background: rgba(18, 23, 38, 0.92);
  color: rgba(255, 255, 255, 0.96);
}

html[data-theme="light"] .studio-bubble--response {
  background: rgba(17, 24, 39, 0.05);
  color: rgba(15, 23, 42, 0.78);
}

html[data-theme="light"] .studio-action-bar,
html[data-theme="light"] .studio-review-note {
  background: rgba(17, 24, 39, 0.04);
}

html[data-theme="light"] .studio-logo-wordmark {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(17, 24, 39, 0.08);
  box-shadow: 0 24px 52px rgba(56, 86, 150, 0.12);
}

html[data-theme="light"] .studio-product-panel {
  background:
    radial-gradient(circle at 78% 22%, rgba(91, 127, 255, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 247, 252, 0.92));
  border-color: rgba(17, 24, 39, 0.08);
  box-shadow: 0 24px 60px rgba(56, 86, 150, 0.12);
}

html[data-theme="light"] .studio-product-feature,
html[data-theme="light"] .studio-product-card {
  background:
    radial-gradient(circle at 78% 22%, rgba(91, 127, 255, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 247, 252, 0.92));
  border-color: rgba(17, 24, 39, 0.08);
  box-shadow: 0 24px 60px rgba(56, 86, 150, 0.12);
}

html[data-theme="light"] .studio-product-label {
  color: rgba(15, 23, 42, 0.46);
}

html[data-theme="light"] .studio-logo-wordmark span,
html[data-theme="light"] .studio-section-head h2,
html[data-theme="light"] .studio-product-feature-copy h3,
html[data-theme="light"] .studio-product-card-copy h3,
html[data-theme="light"] .studio-product-copy h2,
html[data-theme="light"] .studio-feature-copy h3,
html[data-theme="light"] .studio-surface-copy h3,
html[data-theme="light"] .studio-testimonial-head strong,
html[data-theme="light"] .studio-cta-panel h2 {
  color: rgba(15, 23, 42, 0.96);
}

html[data-theme="light"] .studio-section-head p,
html[data-theme="light"] .studio-product-feature-copy p:last-of-type,
html[data-theme="light"] .studio-product-card-copy p:last-of-type,
html[data-theme="light"] .studio-product-copy p:last-child,
html[data-theme="light"] .studio-feature-copy p,
html[data-theme="light"] .studio-feature-detail,
html[data-theme="light"] .studio-testimonial-card p,
html[data-theme="light"] .studio-cta-panel p {
  color: rgba(15, 23, 42, 0.68);
}

html[data-theme="light"] .studio-feature-meta,
html[data-theme="light"] .studio-testimonial-head span {
  color: rgba(15, 23, 42, 0.48);
}

html[data-theme="light"] .studio-product-preview {
  background:
    linear-gradient(180deg, rgba(20, 30, 54, 0.94), rgba(10, 16, 30, 0.96));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 18px 40px rgba(56, 86, 150, 0.16);
}

html[data-theme="light"] .studio-product-feature-media,
html[data-theme="light"] .studio-product-card-media {
  background:
    linear-gradient(180deg, rgba(20, 30, 54, 0.94), rgba(10, 16, 30, 0.96));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 18px 40px rgba(56, 86, 150, 0.16);
}

html[data-theme="light"] .studio-product-meta span,
html[data-theme="light"] .studio-product-card-copy span {
  background: rgba(17, 24, 39, 0.05);
  color: rgba(15, 23, 42, 0.76);
}

html[data-theme="light"] .studio-surface-card,
html[data-theme="light"] .studio-testimonial-card {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(17, 24, 39, 0.08);
  box-shadow: 0 24px 60px rgba(56, 86, 150, 0.12);
}

html[data-theme="light"] .studio-surface-copy p {
  color: rgba(15, 23, 42, 0.74);
}

html[data-theme="light"] .studio-surface-cta {
  background: rgba(17, 24, 39, 0.06);
  color: rgba(15, 23, 42, 0.82);
}

html[data-theme="light"] .studio-surface-shell,
html[data-theme="light"] .studio-surface-review,
html[data-theme="light"] .studio-surface-terminal {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 18px 40px rgba(28, 45, 94, 0.14);
}

html[data-theme="light"] .studio-cta-panel::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.16)),
    radial-gradient(circle at 14% 80%, rgba(91, 127, 255, 0.42), transparent 22%),
    radial-gradient(circle at 70% 16%, rgba(255, 255, 255, 0.86), transparent 18%);
}

html.js body:not(.is-ready) .studio-hero-copy,
html.js body:not(.is-ready) .studio-stage-shell,
html.js body:not(.is-ready) .studio-logo-rail {
  opacity: 0;
}

html.js body:not(.is-ready) .studio-hero-copy {
  transform: translateY(20px);
}

html.js body:not(.is-ready) .studio-stage-shell {
  --stage-enter-y: 28px;
  --stage-intro-rx: 7deg;
  --stage-intro-ry: -5deg;
}

html.js body:not(.is-ready) .studio-logo-rail {
  transform: translateY(18px);
}

body.is-ready .studio-hero-copy,
body.is-ready .studio-logo-rail {
  opacity: 1;
  transform: none;
  transition:
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 520ms ease;
}

body.is-ready .studio-stage-shell {
  opacity: 1;
  --stage-enter-y: 0px;
  --stage-intro-rx: 0deg;
  --stage-intro-ry: 0deg;
}

@media (max-width: 1180px) {
  .studio-stage {
    grid-template-columns: minmax(168px, 0.26fr) minmax(0, 1fr);
  }

  .studio-stage-review {
    grid-column: span 2;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

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

  .studio-feature,
  .studio-feature--left {
    grid-template-columns: minmax(0, 1fr);
  }

  .studio-feature--left .studio-feature-copy,
  .studio-feature--left .studio-feature-media {
    order: initial;
  }

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

  .studio-product-feature {
    grid-template-columns: minmax(0, 1fr);
    justify-items: stretch;
  }

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

  .studio-product-panel {
    grid-template-columns: minmax(0, 1fr);
    justify-items: stretch;
  }

  .studio-product-feature-media {
    width: 100%;
  }

  .studio-product-preview {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .studio-page {
    width: min(100vw - 28px, 100%);
  }

  .studio-hero {
    padding-top: 92px;
  }

  .studio-stage-shell,
  .studio-logo-rail {
    width: min(100vw - 28px, 100%);
  }

  .studio-stage {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
  }

  .studio-stage-sidebar,
  .studio-stage-review {
    display: none;
  }

  .studio-stage-thread {
    min-height: 520px;
  }

  .studio-composer {
    padding: 16px 18px;
  }

  .studio-composer span {
    max-width: 250px;
  }

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

  .studio-surface-grid,
  .studio-testimonial-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .studio-product-feature,
  .studio-product-card {
    padding: 18px;
    border-radius: 24px;
  }

  .studio-product-link {
    margin-bottom: 68px;
  }
}

@media (max-width: 560px) {
  .studio-hero {
    gap: 24px;
    padding-top: 84px;
    padding-bottom: 72px;
  }

  .studio-hero-copy {
    width: min(100vw - 32px, 100%);
    gap: 14px;
  }

  .studio-code-bit {
    display: none;
  }

  .studio-stage-shell {
    padding: 10px;
    border-radius: 24px;
  }

  .studio-stage {
    border-radius: 18px;
  }

  .studio-stage-thread {
    padding: 14px 14px 12px;
    min-height: 460px;
  }

  .studio-stage-topbar {
    padding-bottom: 12px;
  }

  .studio-stage-tab {
    font-size: 16px;
  }

  .studio-bubble {
    width: 100%;
    padding: 16px 18px;
    font-size: 15px;
  }

  .studio-composer {
    align-items: flex-end;
    padding: 14px 16px;
    font-size: 14px;
  }

  .studio-composer button {
    width: 46px;
    height: 46px;
  }

  .studio-logo-rail {
    grid-template-columns: minmax(0, 1fr);
  }

  .studio-logo-wordmark {
    min-height: 60px;
  }

  .studio-feature-list,
  .studio-surfaces,
  .studio-testimonials,
  .studio-cta {
    padding-bottom: 74px;
  }

  .studio-feature-list {
    gap: 56px;
  }

  .studio-product-panel {
    padding: 20px;
    border-radius: 24px;
  }

  .studio-product-feature,
  .studio-product-card,
  .studio-product-panel {
    gap: 16px;
  }

  .studio-product-feature-media,
  .studio-product-card-media {
    padding: 10px;
    border-radius: 22px;
  }

  .studio-visual,
  .studio-surface-media {
    min-height: 250px;
    border-radius: 22px;
  }

  .studio-mini-shell,
  .studio-task-table {
    width: calc(100% - 28px);
  }

  .studio-mini-shell {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .studio-terminal,
  .studio-device {
    width: min(74%, 220px);
  }

  .studio-surface-shell,
  .studio-surface-review,
  .studio-surface-terminal {
    width: calc(100% - 28px);
  }

  .studio-cta-panel {
    min-height: 280px;
    padding: 34px 20px;
    border-radius: 24px;
  }
}
