:root {
  --bg: #050509;
  --bg-soft: #090a12;
  --panel: rgba(13, 14, 25, 0.88);
  --panel-2: rgba(9, 14, 22, 0.9);
  --line: rgba(174, 89, 255, 0.22);
  --line-cyan: rgba(39, 217, 255, 0.35);
  --text: #f7f4ff;
  --muted: #aaa7b5;
  --purple: #a54dff;
  --purple-2: #d9a8ff;
  --cyan: #25d7ff;
  --header-height: 92px;
  --container: 1440px;
  --radius: 24px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 74% 12%, rgba(9, 112, 137, 0.14), transparent 27rem),
    radial-gradient(circle at 26% 18%, rgba(126, 43, 178, 0.19), transparent 32rem),
    var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
a { color: inherit; 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;
}

.site-glow {
  position: fixed;
  pointer-events: none;
  z-index: -1;
  filter: blur(90px);
  opacity: .28;
}

.site-glow--top {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  left: 34%;
  top: -210px;
  background: var(--purple);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  padding: 14px clamp(22px, 4vw, 64px);
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  gap: 28px;
  background: rgba(4, 4, 9, .88);
  border-bottom: 1px solid rgba(153, 76, 255, .13);
  backdrop-filter: blur(22px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  flex: 0 0 64px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(165, 77, 255, .30)) drop-shadow(0 0 26px rgba(37, 215, 255, .22));
}

.brand-copy {
  display: grid;
  gap: 5px;
}

.brand-copy strong {
  font-size: 20px;
  letter-spacing: .01em;
  background: linear-gradient(90deg, #d995ff, #9b56ff 60%, #31cfff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-copy small {
  color: #b7b1c3;
  font-size: 10px;
  letter-spacing: .22em;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 42px;
  color: #aaa6b2;
  font-size: 15px;
  font-weight: 600;
}

.main-nav a {
  transition: color .2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #fff;
}

.header-cta { justify-self: end; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #fff;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.button {
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

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

.button--primary {
  background: linear-gradient(135deg, #ad4cff, #7337ed);
  box-shadow: 0 14px 34px rgba(134, 55, 237, .25);
}

.button--primary:hover {
  box-shadow: 0 18px 42px rgba(134, 55, 237, .4);
}

.button--secondary,
.button--outline {
  background: rgba(12, 13, 22, .5);
  border-color: rgba(169, 89, 255, .35);
}

.button--secondary:hover,
.button--outline:hover {
  border-color: rgba(37, 215, 255, .55);
}

.button--large {
  min-height: 58px;
  padding-inline: 30px;
}

.play-icon { color: #fff; font-size: 13px; }

.section-anchor {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.hero {
  width: min(var(--container), calc(100% - 64px));
  min-height: calc(100svh - var(--header-height));
  margin: 0 auto;
  padding: clamp(58px, 7vw, 110px) 0;
  display: grid;
  grid-template-columns: .98fr 1.12fr;
  gap: clamp(46px, 6vw, 90px);
  align-items: center;
}

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

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 20px;
  border: 1px solid rgba(169, 83, 255, .38);
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(113, 46, 159, .18), rgba(21, 146, 171, .14));
  color: #b98bff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  box-shadow: 0 0 25px rgba(148, 64, 231, .15);
}

.hero h1 {
  margin: 35px 0 26px;
  font-size: clamp(52px, 5.6vw, 88px);
  line-height: .99;
  letter-spacing: -.055em;
  font-weight: 900;
  background-image: linear-gradient(
    90deg,
    #f0a0ff 0%,
    #d96cff 24%,
    #b257f7 48%,
    #805cf4 68%,
    #596bf1 84%,
    #3f82ee 100%
  );
  background-size: 100% 100%;
  background-position: left center;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-lead {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.75;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-trust {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: #8d8997;
  font-size: 13px;
}

.hero-trust span::before {
  content: "•";
  margin-right: 8px;
  color: var(--cyan);
}

.hero-media {
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 12% 0 0;
  background: radial-gradient(circle, rgba(38, 219, 255, .2), rgba(150, 65, 255, .13) 38%, transparent 70%);
  filter: blur(40px);
}

.media-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(179, 87, 255, .38);
  border-radius: 22px;
  background: #06070d;
  box-shadow:
    0 40px 80px rgba(0,0,0,.55),
    0 0 46px rgba(89, 52, 176, .14);
  transform: perspective(1200px) rotateY(-1deg);
}

.media-frame img {
  width: 100%;
  height: auto;
}

.media-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, transparent 30%, rgba(255,255,255,.07) 45%, transparent 58%);
  transform: translateX(-120%);
  animation: shine 8s ease-in-out infinite 2s;
}

@keyframes shine {
  0%, 55% { transform: translateX(-120%); }
  78%, 100% { transform: translateX(120%); }
}

.section {
  width: min(var(--container), calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(82px, 9vw, 140px) 0;
}

.section-heading {
  max-width: 900px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading .section-kicker {
  margin-bottom: 18px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -.045em;
  background: linear-gradient(110deg, #f0d4ff, #c479ff 68%, #43d8ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-heading p {
  margin: 26px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.7;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}

.step-card,
.feature-card,
.audience-card,
.price-card {
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(19, 14, 27, .92), rgba(7, 13, 20, .94));
  border-radius: var(--radius);
}

.step-card {
  min-height: 275px;
  padding: 34px 28px;
}

.step-card:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -23px;
  top: 47%;
  color: rgba(167, 73, 255, .55);
  font-size: 35px;
  z-index: 2;
}

.step-card.featured,
.feature-card.featured,
.audience-card.featured {
  border-color: transparent;
  background:
    linear-gradient(var(--panel), var(--panel)) padding-box,
    linear-gradient(135deg, #a849ff, #2dd5ff) border-box;
  box-shadow: 0 28px 60px rgba(100, 44, 177, .24);
}

.step-number {
  display: block;
  margin-bottom: 28px;
  color: #9258ff;
  font-size: 51px;
  font-weight: 900;
  letter-spacing: -.05em;
}

.step-card h3,
.feature-card h3,
.audience-card h3,
.price-card h3 {
  margin: 0 0 16px;
  font-size: 23px;
}

.step-card p,
.feature-card p,
.price-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  min-height: 260px;
  padding: 34px 30px;
}

.feature-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #c05aff;
  background: linear-gradient(135deg, rgba(132, 56, 197, .28), rgba(25, 97, 130, .25));
  font-size: 31px;
  box-shadow: inset 0 0 20px rgba(95, 44, 155, .15);
}

.compatibility-bar {
  margin-top: 38px;
  padding: 26px 34px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(127, 80, 185, .22);
  border-radius: 18px;
  color: #aaa8b2;
  background: rgba(7, 11, 18, .72);
}

.compatibility-bar span::first-letter {
  color: var(--cyan);
}

.app-action {
  padding-top: 95px;
}

.app-showcase {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  padding: 24px;
  border: 1px solid rgba(149, 72, 229, .24);
  border-radius: 28px;
  background: rgba(7, 8, 15, .88);
  box-shadow: 0 40px 85px rgba(0,0,0,.32);
}

.app-tabs {
  display: grid;
  align-content: center;
  gap: 10px;
}

.app-tab {
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #aaa7b3;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-weight: 700;
}

.app-tab span {
  color: #7d5de9;
  font-size: 12px;
}

.app-tab:hover,
.app-tab.active {
  color: #fff;
  border-color: rgba(162, 72, 255, .35);
  background: linear-gradient(90deg, rgba(141, 56, 214, .2), rgba(27, 117, 140, .1));
}

.app-preview {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid rgba(50, 184, 220, .28);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 25%, rgba(102, 53, 157, .23), transparent 38%),
    #080911;
}

.app-preview > img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.placeholder-preview {
  min-height: 540px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  text-align: center;
  color: #aaa7b4;
  background:
    linear-gradient(rgba(6, 7, 13, .45), rgba(6, 7, 13, .45)),
    repeating-linear-gradient(90deg, transparent 0 69px, rgba(122, 77, 179, .05) 70px),
    repeating-linear-gradient(0deg, transparent 0 49px, rgba(47, 190, 215, .04) 50px);
}

.placeholder-icon {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--purple);
  background: rgba(124, 48, 188, .14);
  font-size: 42px;
}

.placeholder-preview strong {
  color: #fff;
  font-size: 28px;
}

.placeholder-preview p { margin: 0; }

.preview-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: minmax(180px, .6fr) 1.4fr;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(184, 108, 255, .25);
  border-radius: 14px;
  background: rgba(4, 5, 10, .84);
  backdrop-filter: blur(14px);
}

.preview-caption span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
}

.preview-caption h3 {
  margin: 6px 0 0;
  font-size: 22px;
}

.preview-caption p {
  margin: 0;
  color: #aaa7b2;
  line-height: 1.55;
}

.workflow-strip {
  min-height: 180px;
  margin: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: rgba(226, 205, 244, .32);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 800;
  white-space: nowrap;
  border-block: 1px solid rgba(132, 66, 192, .16);
  background: linear-gradient(90deg, rgba(54, 10, 65, .16), rgba(9, 30, 43, .28));
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.workflow-track {
  width: max-content;
  display: flex;
  flex: 0 0 auto;
  animation: workflow-marquee 38s linear infinite;
  will-change: transform;
}

.workflow-group {
  flex: 0 0 auto;
  min-width: max-content;
  padding: 30px clamp(40px, 5vw, 90px) 30px 0;
  display: flex;
  align-items: center;
  gap: clamp(26px, 3.2vw, 58px);
}

.workflow-strip i {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: rgba(177, 70, 255, .62);
  box-shadow: 0 0 14px rgba(177, 70, 255, .28);
}

.workflow-strip:hover .workflow-track {
  animation-play-state: paused;
}

@keyframes workflow-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
}

.audience-card {
  min-height: 420px;
  padding: 46px;
}

.audience-icon {
  margin-bottom: 26px;
  color: #ad52ff;
  font-size: 53px;
}

.audience-card h3 {
  margin-bottom: 32px;
  font-size: 29px;
}

.audience-card ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 22px;
  list-style: none;
  color: #aaa8b2;
}

.audience-card li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  line-height: 1.45;
}

.audience-card li::before {
  content: "›";
  color: var(--cyan);
  font-size: 24px;
  line-height: .75;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}

.price-card {
  min-height: 390px;
  padding: 42px;
  display: flex;
  flex-direction: column;
}

.price-card h3 {
  font-size: 31px;
}

.price-card strong {
  margin: 40px 0 auto;
  display: block;
  font-size: clamp(33px, 3vw, 47px);
  background: linear-gradient(100deg, #a954ff, #4fa5ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price-card .button {
  width: 100%;
  margin-top: 42px;
}

.price-card--featured {
  border-color: #a64fff;
  transform: translateY(-14px);
  box-shadow: 0 32px 70px rgba(117, 43, 193, .3);
}

.popular-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 155px;
  padding: 10px 18px;
  border-radius: 99px;
  background: linear-gradient(90deg, #a55aff, #28c8ef);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.final-cta {
  padding: clamp(90px, 10vw, 150px) 32px;
  border-top: 1px solid rgba(135, 61, 194, .15);
  background:
    radial-gradient(circle at 50% 50%, rgba(133, 52, 197, .28), transparent 31rem),
    radial-gradient(circle at 72% 56%, rgba(24, 107, 128, .19), transparent 27rem);
}

.final-cta-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(50px, 6vw, 86px);
  line-height: 1.05;
  letter-spacing: -.05em;
  background: linear-gradient(100deg, #fae8ff, #d099ff, #9c56f0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.final-cta p {
  max-width: 700px;
  margin: 28px auto 36px;
  color: #aaa7b2;
  font-size: 18px;
  line-height: 1.65;
}

.site-footer {
  width: min(var(--container), calc(100% - 64px));
  margin: 0 auto;
  padding: 56px 0 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  color: #9996a3;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-weight: 700;
}

.brand-mark--small {
  width: 42px;
  height: 42px;
  flex-basis: 42px;
}

.site-footer nav {
  display: flex;
  gap: 38px;
}

.site-footer nav a:hover { color: #fff; }

.site-footer > p {
  grid-column: 1 / -1;
  margin: 30px 0 0;
  padding-top: 30px;
  text-align: center;
  border-top: 1px solid rgba(138, 73, 191, .14);
  font-size: 13px;
}

.signup-dialog {
  width: min(600px, calc(100% - 34px));
  border: 1px solid rgba(168, 77, 255, .5);
  border-radius: 24px;
  padding: 38px;
  color: #fff;
  background:
    radial-gradient(circle at 25% 0, rgba(130, 48, 190, .28), transparent 22rem),
    #090a12;
  box-shadow: 0 40px 100px rgba(0,0,0,.7);
}

.signup-dialog::backdrop {
  background: rgba(1, 1, 5, .75);
  backdrop-filter: blur(8px);
}

.signup-dialog h2 {
  margin: 20px 0 14px;
  font-size: 34px;
}

.signup-dialog > p,
.form-message {
  color: #aaa8b2;
  line-height: 1.6;
}

.dialog-close {
  position: absolute;
  right: 18px;
  top: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}

.signup-dialog label {
  display: block;
  margin: 26px 0 10px;
  color: #d9d5e1;
  font-size: 13px;
  font-weight: 700;
}

.signup-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.signup-row input {
  min-width: 0;
  height: 50px;
  border: 1px solid rgba(168, 78, 255, .36);
  border-radius: 8px;
  padding: 0 15px;
  color: #fff;
  background: rgba(3, 4, 8, .72);
  outline: none;
}

.signup-row input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(37, 215, 255, .1);
}

.form-message { min-height: 24px; margin-bottom: 0; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .75s ease;
}

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

@media (max-width: 1150px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    padding: 28px;
    flex-direction: column;
    background: rgba(5,5,10,.97);
    border-bottom: 1px solid rgba(151, 77, 221, .18);
  }

  .main-nav.open { display: flex; }
  .nav-toggle { display: block; justify-self: end; }
  .header-cta { display: none; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

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

  .step-card:not(:last-child)::after { display: none; }
  .steps-grid .step-card:last-child { grid-column: 1 / -1; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .app-showcase { grid-template-columns: 1fr; }

  .app-tabs {
    grid-template-columns: repeat(5, minmax(145px, 1fr));
    overflow-x: auto;
  }

  .app-tab { white-space: nowrap; }
}

@media (max-width: 780px) {
  :root { --header-height: 78px; }

  .site-header,
  .hero,
  .section,
  .site-footer {
    width: 100%;
  }

  .site-header { padding: 12px 20px; }
  .brand-copy strong { font-size: 16px; }
  .brand-copy small { font-size: 8px; }

  .hero {
    padding: 58px 22px 80px;
    gap: 42px;
  }

  .hero h1 {
    margin-top: 28px;
    font-size: clamp(46px, 14vw, 68px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button { width: 100%; }

  .section {
    padding: 76px 22px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .steps-grid,
  .features-grid,
  .audience-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid .step-card:last-child { grid-column: auto; }
  .step-card,
  .feature-card { min-height: auto; }

  .compatibility-bar {
    flex-direction: column;
    padding: 24px;
  }

  .app-showcase {
    padding: 12px;
  }

  .app-tabs {
    grid-template-columns: repeat(5, 160px);
  }

  .app-preview,
  .app-preview > img,
  .placeholder-preview {
    min-height: 410px;
  }

  .preview-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .preview-caption p {
    display: none;
  }

  .workflow-strip {
    min-height: 132px;
    font-size: 25px;
  }

  .workflow-track {
    animation-duration: 30s;
  }

  .audience-card,
  .price-card {
    min-height: auto;
    padding: 32px 26px;
  }

  .price-card--featured {
    transform: none;
  }

  .site-footer {
    padding: 44px 22px 30px;
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    flex-direction: column;
    gap: 14px;
  }

  .signup-row {
    grid-template-columns: 1fr;
  }

  .signup-dialog {
    padding: 32px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .workflow-track { animation: none !important; }
  .workflow-strip { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
}

.hero-overview {
  width: min(var(--container), calc(100% - 64px));
  margin: -8px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.overview-card {
  min-height: 190px;
  padding: 28px 28px 24px;
  border: 1px solid rgba(158, 82, 255, .18);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(12, 11, 20, .92), rgba(8, 14, 22, .92));
  box-shadow: 0 26px 50px rgba(0, 0, 0, .22);
}

.overview-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
}

.overview-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 24px;
}

.overview-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.overview-card--featured {
  border-color: transparent;
  background:
    linear-gradient(var(--panel), var(--panel)) padding-box,
    linear-gradient(135deg, #a849ff, #2dd5ff) border-box;
  box-shadow: 0 28px 60px rgba(100, 44, 177, .24);
}

.media-frame--hero img {
  width: 100%;
  aspect-ratio: 1672 / 941;
  object-fit: cover;
}

@media (max-width: 1150px) {
  .hero-overview {
    grid-template-columns: 1fr;
    width: min(var(--container), calc(100% - 64px));
  }

  .app-tabs {
    grid-template-columns: repeat(8, minmax(150px, 1fr));
    overflow-x: auto;
  }
}

@media (max-width: 780px) {
  .hero-overview {
    width: 100%;
    padding: 0 22px;
    gap: 18px;
  }

  .overview-card {
    min-height: auto;
    padding: 24px 22px;
  }

  .app-tabs {
    grid-template-columns: repeat(8, 170px);
  }
}

/* V4 — studio hero and compact upper landing section */
.main-nav { gap: 30px; }

.hero--studio {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  min-height: min(790px, calc(100svh - var(--header-height)));
  margin: 0;
  padding: clamp(62px, 6vw, 92px) max(32px, calc((100vw - var(--container)) / 2));
  display: grid;
  grid-template-columns: minmax(430px, .85fr) minmax(560px, 1.35fr);
  grid-template-rows: 1fr auto;
  gap: 32px 42px;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(158, 73, 229, .18);
  background:
    radial-gradient(circle at 15% 35%, rgba(135, 48, 195, .14), transparent 29rem),
    #040409;
}

.hero-studio-image {
  position: absolute;
  z-index: -3;
  top: 34px;
  right: max(0px, calc((100vw - 1700px) / 2));
  bottom: 30px;
  width: min(72vw, 1220px);
  display: grid;
  place-items: center;
  opacity: .98;
}

.hero-studio-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  filter: saturate(.94) contrast(1.03) brightness(.84);
}

.hero-studio-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, #040409 0%, rgba(4, 4, 9, .98) 25%, rgba(4, 4, 9, .76) 39%, rgba(4, 4, 9, .13) 62%, rgba(4, 4, 9, .08) 82%, rgba(4, 4, 9, .4) 100%),
    linear-gradient(180deg, rgba(4, 4, 9, .36), transparent 30%, transparent 72%, rgba(4, 4, 9, .8));
}

.hero-copy--studio {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  max-width: 610px;
  align-self: center;
}

.hero--studio h1 {
  margin: 28px 0 24px;
  max-width: 640px;
  font-size: clamp(50px, 4.35vw, 74px);
  line-height: 1.015;
  display: block;
}


.hero--studio .hero-lead {
  max-width: 575px;
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.68;
  color: #b5b1bd;
}

.hero--studio .hero-actions { margin-top: 31px; }

.hero-benefits {
  position: relative;
  z-index: 3;
  grid-column: 1;
  grid-row: 2;
  width: min(720px, 100%);
  padding-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  border-top: 1px solid rgba(172, 85, 255, .17);
}

.hero-benefits article {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 11px;
  align-items: start;
}

.benefit-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(46, 210, 245, .38);
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(8, 20, 29, .68);
  box-shadow: 0 0 22px rgba(80, 86, 238, .16);
}

.hero-benefits strong,
.hero-benefits small { display: block; }
.hero-benefits strong { font-size: 13px; line-height: 1.35; }
.hero-benefits small { margin-top: 5px; color: #9894a2; font-size: 11px; line-height: 1.45; }

.how-compact {
  padding-top: clamp(68px, 6vw, 92px);
  padding-bottom: clamp(72px, 6vw, 98px);
}

.section-heading--compact { margin-bottom: 36px; }
.section-heading--compact h2 { font-size: clamp(40px, 4vw, 60px); }
.section-heading--compact p { margin-top: 17px; }

.steps-grid--compact { gap: 24px; }

.step-card--compact {
  min-height: 218px;
  padding: 24px 24px 25px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto 1fr;
  align-content: start;
}

.step-card--compact .step-number {
  margin: 0;
  font-size: 19px;
  letter-spacing: 0;
  color: #d4adff;
}

.step-symbol {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #9e58ff;
  background: linear-gradient(145deg, rgba(132, 51, 195, .25), rgba(28, 106, 132, .22));
  font-size: 28px;
}

.step-card--compact h3 {
  grid-column: 1 / -1;
  margin: 24px 0 10px;
  font-size: 18px;
}

.step-card--compact p {
  grid-column: 1 / -1;
  font-size: 13px;
  line-height: 1.55;
}

.app-action { padding-top: clamp(76px, 7vw, 110px); }

.app-tabs {
  grid-template-columns: 1fr;
  max-height: 590px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(165, 77, 255, .55) transparent;
}

.app-preview {
  min-height: 620px;
}

.app-preview > img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  padding: 8px;
  object-fit: contain;
  background: #020307;
  transition: opacity .16s ease, transform .16s ease;
}

.app-preview > img.is-changing {
  opacity: .35;
  transform: scale(.995);
}

@media (max-width: 1260px) {
  .hero--studio {
    grid-template-columns: minmax(390px, .9fr) minmax(450px, 1.1fr);
  }
  .hero-studio-image { width: 76vw; opacity: .8; }
  .hero-studio-overlay {
    background:
      linear-gradient(90deg, #040409 0%, rgba(4,4,9,.98) 32%, rgba(4,4,9,.72) 49%, rgba(4,4,9,.18) 75%, rgba(4,4,9,.4) 100%),
      linear-gradient(180deg, rgba(4,4,9,.3), transparent 35%, rgba(4,4,9,.75));
  }
}

@media (max-width: 980px) {
  .hero--studio {
    min-height: auto;
    padding: 58px 24px 50px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 34px;
  }
  .hero-studio-image {
    position: relative;
    z-index: 0;
    inset: auto;
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    height: auto;
    opacity: 1;
  }
  .hero-studio-image img { height: auto; object-fit: contain; }
  .hero-studio-overlay {
    background: linear-gradient(180deg, rgba(4,4,9,.08), transparent 50%, rgba(4,4,9,.55));
  }
  .hero-copy--studio { grid-column: 1; grid-row: 1; max-width: 760px; }
  .hero-benefits { grid-column: 1; grid-row: 3; width: 100%; }
  .steps-grid--compact { grid-template-columns: repeat(2, 1fr); }
  .steps-grid--compact .step-card:last-child { grid-column: 1 / -1; }
  .app-tabs {
    grid-template-columns: repeat(7, minmax(150px, 1fr));
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
  }
}

@media (max-width: 650px) {
  .hero--studio h1 { font-size: clamp(43px, 13vw, 59px); }
  .hero-benefits { grid-template-columns: 1fr; gap: 14px; }
  .hero-benefits article { grid-template-columns: 40px 1fr; }
  .steps-grid--compact { grid-template-columns: 1fr; }
  .steps-grid--compact .step-card:last-child { grid-column: auto; }
  .app-preview, .app-preview > img { min-height: 420px; }
}


/* V5 — app-matched purple/blue gradients and verified 8-screen gallery */
:root {
  --purple: #b54cff;
  --purple-2: #f1a2ef;
  --cyan: #25d8ff;
  --line: rgba(171, 72, 255, .26);
  --line-cyan: rgba(37, 216, 255, .42);
}

body {
  background:
    radial-gradient(circle at 82% 10%, rgba(32, 83, 185, .16), transparent 29rem),
    radial-gradient(circle at 24% 15%, rgba(178, 52, 224, .18), transparent 31rem),
    radial-gradient(circle at 70% 64%, rgba(34, 181, 233, .075), transparent 30rem),
    var(--bg);
}

.brand-copy strong,
.hero h1,
.section-heading h2,
.price-card strong,
.final-cta h2 {
  background: linear-gradient(105deg, #f2a9ef 0%, #c960ff 35%, #8057ff 64%, #28d6ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


.button--primary {
  background: linear-gradient(120deg, #b546ff 0%, #814cff 50%, #238fe9 100%);
  box-shadow: 0 14px 36px rgba(111, 62, 238, .30), 0 0 24px rgba(37, 216, 255, .10);
}

.button--primary:hover {
  box-shadow: 0 18px 44px rgba(125, 65, 243, .43), 0 0 30px rgba(37, 216, 255, .16);
}

.eyebrow,
.section-kicker {
  border-color: rgba(172, 75, 255, .50);
  background: linear-gradient(90deg, rgba(168, 59, 219, .20), rgba(32, 152, 217, .16));
  color: #d79cff;
  box-shadow: 0 0 24px rgba(141, 70, 230, .15), inset 0 0 20px rgba(45, 191, 238, .035);
}

.step-number,
.step-card--compact .step-number,
.app-tab span {
  color: #aa70ff;
}

.step-symbol,
.feature-icon {
  color: #bc54ff;
  background: linear-gradient(145deg, rgba(174, 66, 232, .27), rgba(31, 145, 208, .23));
}

.featured,
.price-card--featured {
  border-color: transparent;
  background:
    linear-gradient(var(--panel), var(--panel)) padding-box,
    linear-gradient(135deg, #c24fff 0%, #705dff 53%, #25d8ff 100%) border-box;
}

.app-showcase {
  border-color: transparent;
  background:
    linear-gradient(rgba(7, 8, 15, .96), rgba(7, 8, 15, .96)) padding-box,
    linear-gradient(135deg, rgba(183, 72, 255, .54), rgba(98, 85, 255, .28) 54%, rgba(37, 216, 255, .48)) border-box;
  box-shadow: 0 36px 82px rgba(0, 0, 0, .43), 0 0 46px rgba(114, 58, 211, .10);
}

.app-tab {
  min-height: 62px;
}

.app-tab:hover,
.app-tab.active {
  color: #fff;
  border-color: #31cfff;
  background: linear-gradient(90deg, rgba(174, 61, 237, .28), rgba(100, 77, 246, .18) 55%, rgba(31, 175, 225, .16));
  box-shadow: inset 0 0 22px rgba(121, 63, 220, .14), 0 0 18px rgba(35, 189, 235, .10);
}

.app-tab.active span {
  color: #32d8ff;
}

.app-preview {
  border-color: transparent;
  background:
    linear-gradient(#020307, #020307) padding-box,
    linear-gradient(135deg, #b34eff, #655eff 55%, #25d8ff) border-box;
  box-shadow: 0 24px 58px rgba(0,0,0,.35), inset 0 0 42px rgba(49, 102, 210, .035);
}

.preview-caption {
  border-color: rgba(175, 81, 255, .42);
  box-shadow: 0 12px 35px rgba(0,0,0,.28), 0 0 25px rgba(96, 61, 201, .09);
}

.preview-caption span {
  color: #29d7ff;
}

.popular-badge {
  background: linear-gradient(90deg, #b94cff, #7555ff 55%, #25cffa);
}

@media (max-width: 980px) {
  .app-tabs {
    grid-template-columns: repeat(8, minmax(150px, 1fr));
  }
}


/* V7: one continuous left-to-right gradient across the complete multiline hero heading. */
.hero--studio h1 {
  display: block;
  width: 100%;
  max-width: 640px;
  background-image: linear-gradient(
    90deg,
    #f0a0ff 0%,
    #d96cff 26%,
    #b257f7 49%,
    #815cf4 70%,
    #596bf1 86%,
    #3f82ee 100%
  );
  background-size: 100% 100%;
  background-position: left top;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  box-decoration-break: slice;
  -webkit-box-decoration-break: slice;
}

/* V8 — keep the App Screens menu and screenshot next to each other on laptop/tablet widths. */
.app-showcase {
  display: grid;
  grid-template-columns: clamp(180px, 21vw, 270px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(16px, 2.2vw, 30px);
  width: 100%;
}

.app-tabs {
  grid-template-columns: 1fr;
  width: 100%;
  min-width: 0;
  max-height: none;
  overflow: visible;
  align-content: start;
}

.app-tab {
  width: 100%;
  min-width: 0;
  white-space: normal;
}

.app-preview {
  width: 100%;
  min-width: 0;
}

.app-preview > img {
  width: 100%;
  max-width: 100%;
}

/* Only genuinely narrow phone screens stack the controls above the screenshot. */
@media (max-width: 720px) {
  .app-showcase {
    grid-template-columns: 1fr;
  }

  .app-tabs {
    grid-template-columns: repeat(8, minmax(150px, 1fr));
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    scrollbar-width: thin;
  }

  .app-tab {
    white-space: nowrap;
  }
}

/* V9 — definitive App Screens layout fix.
   The tabs and screenshot remain next to each other at every viewport width. */
.app-showcase {
  display: grid !important;
  grid-template-columns: clamp(128px, 21vw, 270px) minmax(0, 1fr) !important;
  grid-template-rows: auto !important;
  grid-auto-flow: column !important;
  align-items: start !important;
  gap: clamp(12px, 2vw, 30px) !important;
  width: 100% !important;
  min-width: 0 !important;
  overflow: hidden !important;
}

.app-showcase > .app-tabs {
  grid-column: 1 !important;
  grid-row: 1 !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  align-content: start !important;
  width: 100% !important;
  min-width: 0 !important;
  max-height: none !important;
  overflow: visible !important;
  padding: 0 !important;
}

.app-showcase > .app-preview {
  grid-column: 2 !important;
  grid-row: 1 !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  align-self: start !important;
}

.app-showcase > .app-preview > img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-width: 100% !important;
  aspect-ratio: 16 / 9;
  object-fit: contain !important;
}

@media (max-width: 720px) {
  .app-showcase {
    grid-template-columns: 118px minmax(0, 1fr) !important;
    gap: 10px !important;
    padding: 10px !important;
  }

  .app-showcase > .app-tabs {
    grid-template-columns: 1fr !important;
    overflow: visible !important;
  }

  .app-showcase .app-tab {
    min-height: 48px !important;
    padding: 10px 9px !important;
    gap: 7px !important;
    white-space: normal !important;
    font-size: 11px !important;
    line-height: 1.25 !important;
  }

  .app-showcase .app-tab span {
    font-size: 9px !important;
  }

  .app-showcase .preview-caption {
    left: 7px !important;
    right: 7px !important;
    bottom: 7px !important;
    padding: 9px 10px !important;
  }

  .app-showcase .preview-caption h3 {
    margin-top: 3px !important;
    font-size: 13px !important;
  }

  .app-showcase .preview-caption p {
    display: none !important;
  }
}

@media (max-width: 430px) {
  .app-showcase {
    grid-template-columns: 102px minmax(0, 1fr) !important;
    gap: 8px !important;
    padding: 8px !important;
  }

  .app-showcase .app-tab {
    min-height: 43px !important;
    padding: 8px 7px !important;
    font-size: 10px !important;
  }
}



/* V10 — adaptive App Screens menu.
   The left tab list follows the screenshot height and shrinks with the preview. */
.app-showcase {
  container-type: inline-size;
  align-items: stretch !important;
}

.app-showcase > .app-tabs {
  contain: size layout;
  align-self: stretch !important;
  height: var(--app-preview-height, 100%) !important;
  min-height: 0 !important;
  max-height: none !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows: repeat(8, minmax(0, 1fr)) !important;
  gap: clamp(2px, 0.55cqw, 10px) !important;
  overflow: hidden !important;
}

.app-showcase .app-tab {
  min-width: 0 !important;
  min-height: 0 !important;
  height: 100% !important;
  padding: clamp(4px, 1.05cqw, 18px) clamp(5px, 1.25cqw, 20px) !important;
  gap: clamp(4px, 0.8cqw, 14px) !important;
  border-radius: clamp(8px, 1.1cqw, 14px) !important;
  font-size: clamp(9px, 1.18cqw, 15px) !important;
  line-height: 1.15 !important;
  white-space: normal !important;
  overflow: hidden !important;
}

.app-showcase .app-tab span {
  flex: 0 0 auto;
  font-size: clamp(8px, 0.82cqw, 12px) !important;
}

.app-showcase > .app-preview {
  align-self: start !important;
  aspect-ratio: 16 / 9;
  min-height: 0 !important;
  height: auto !important;
}

.app-showcase > .app-preview > img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 9;
  object-fit: contain !important;
}

@container (max-width: 860px) {
  .app-showcase {
    grid-template-columns: 150px minmax(0, 1fr) !important;
    gap: 12px !important;
    padding: 12px !important;
  }

  .app-showcase .app-tab {
    padding: 5px 8px !important;
    gap: 6px !important;
    font-size: 11px !important;
    border-radius: 9px !important;
  }

  .app-showcase .app-tab span {
    font-size: 8px !important;
  }
}

@container (max-width: 650px) {
  .app-showcase {
    grid-template-columns: 118px minmax(0, 1fr) !important;
    gap: 8px !important;
    padding: 8px !important;
  }

  .app-showcase .app-tab {
    padding: 3px 5px !important;
    gap: 4px !important;
    font-size: 9px !important;
    border-radius: 7px !important;
  }

  .app-showcase .app-tab span {
    font-size: 7px !important;
  }

  .app-showcase .preview-caption {
    left: 6px !important;
    right: 6px !important;
    bottom: 6px !important;
    padding: 7px 8px !important;
  }

  .app-showcase .preview-caption h3 {
    font-size: 12px !important;
  }

  .app-showcase .preview-caption p {
    display: none !important;
  }
}

@container (max-width: 500px) {
  .app-showcase {
    grid-template-columns: 96px minmax(0, 1fr) !important;
    gap: 6px !important;
    padding: 6px !important;
  }

  .app-showcase .app-tab {
    padding: 2px 4px !important;
    font-size: 8px !important;
  }

  .app-showcase .app-tab span {
    font-size: 6px !important;
  }
}

/* =========================
   V11 — expanded content based on approved layout.
   Hero and See the App in Action remain unchanged.
   ========================= */

.steps-grid--seven {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
}

.steps-grid--seven .step-card {
  min-height: 238px;
  padding: 24px 18px;
}

.steps-grid--seven .step-card:not(:last-child)::after {
  right: -11px;
  font-size: 24px;
}

.steps-grid--seven .step-number {
  margin-bottom: 14px;
  font-size: 32px;
}

.steps-grid--seven .step-symbol {
  margin-bottom: 16px;
  display: block;
  color: var(--cyan);
  font-size: 35px;
  line-height: 1;
  text-shadow: 0 0 20px rgba(37, 215, 255, .24);
}

.steps-grid--seven h3 {
  font-size: 17px;
  line-height: 1.25;
}

.steps-grid--seven p {
  font-size: 13px;
  line-height: 1.55;
}

.features-grid--expanded {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card--detailed {
  min-height: 310px;
  padding: 28px 24px 24px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
}

.feature-card--detailed .feature-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  font-size: 30px;
}

.feature-card--detailed h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.feature-card--detailed p {
  font-size: 14px;
}

.feature-points {
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
  color: #aaa8b2;
  font-size: 13px;
}

.feature-points li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 7px;
}

.feature-points li::before {
  content: '✓';
  color: var(--cyan);
}

.product-proof-bar,
.pricing-notes {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.product-proof-bar span,
.pricing-notes span {
  min-height: 36px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(69, 151, 209, .22);
  border-radius: 8px;
  color: #aaa8b2;
  background: rgba(7, 11, 18, .78);
  font-size: 12px;
}

.product-proof-bar span::first-letter,
.pricing-notes span::first-letter {
  color: var(--cyan);
}

.audience-grid--premium {
  gap: 24px;
}

.audience-grid--premium .audience-card {
  min-height: 330px;
  padding: 34px;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  overflow: hidden;
}

.audience-card--beginner {
  background:
    radial-gradient(circle at 12% 52%, rgba(159, 71, 255, .25), transparent 17rem),
    linear-gradient(145deg, rgba(27, 14, 40, .94), rgba(9, 11, 20, .96));
}

.audience-card--pro {
  background:
    radial-gradient(circle at 92% 52%, rgba(24, 162, 210, .2), transparent 18rem),
    linear-gradient(145deg, rgba(11, 20, 32, .96), rgba(7, 17, 26, .96));
}

.audience-side-icon {
  width: 110px;
  height: 150px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(173, 77, 255, .38);
  border-radius: 20px;
  color: #cf79ff;
  background: linear-gradient(145deg, rgba(126, 42, 191, .5), rgba(65, 24, 105, .3));
  font-size: 58px;
  box-shadow: 0 20px 50px rgba(101, 33, 165, .25);
}

.audience-card--pro .audience-side-icon {
  color: var(--cyan);
  border-color: rgba(37, 215, 255, .38);
  background: linear-gradient(145deg, rgba(15, 137, 172, .45), rgba(16, 68, 95, .28));
  box-shadow: 0 20px 50px rgba(20, 118, 153, .22);
}

.audience-content h3 {
  margin-bottom: 12px;
}

.audience-content > p {
  margin: 0 0 20px;
  color: #aaa8b2;
  line-height: 1.65;
}

.audience-content ul {
  gap: 10px;
}

.pricing-grid--premium .price-card {
  min-height: 360px;
}

.pricing-grid--premium .price-card strong {
  margin: 12px 0 18px;
  font-size: 20px;
  color: #d9d4e5;
  background: none;
  -webkit-text-fill-color: initial;
}

.pricing-grid--premium .price-card p {
  margin-bottom: auto;
}

.pricing-grid--premium .price-card .button {
  margin-top: 30px;
}

.final-cta--waveform {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(104, 74, 166, .22);
  border-radius: 22px;
  width: min(var(--container), calc(100% - 64px));
  margin: 30px auto 0;
  padding: 64px 32px;
  background:
    linear-gradient(90deg, rgba(50, 12, 68, .18), rgba(7, 14, 24, .82) 42%, rgba(8, 31, 48, .2));
}

.cta-wave {
  position: absolute;
  top: 50%;
  width: 43%;
  height: 170px;
  transform: translateY(-50%);
  opacity: .85;
}

.cta-wave--left { left: 0; }
.cta-wave--right { right: 0; }

.final-cta--waveform .final-cta-inner {
  position: relative;
  z-index: 2;
}

.final-cta--waveform h2 {
  font-size: clamp(38px, 4.5vw, 65px);
}

@media (max-width: 1280px) {
  .steps-grid--seven {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .steps-grid--seven .step-card:nth-child(5),
  .steps-grid--seven .step-card:nth-child(6),
  .steps-grid--seven .step-card:nth-child(7) {
    min-height: 210px;
  }

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

@media (max-width: 780px) {
  .steps-grid--seven,
  .features-grid--expanded {
    grid-template-columns: 1fr;
  }

  .steps-grid--seven .step-card {
    min-height: auto;
  }

  .audience-grid--premium .audience-card {
    grid-template-columns: 84px minmax(0, 1fr);
    padding: 25px 20px;
    gap: 18px;
  }

  .audience-side-icon {
    width: 78px;
    height: 112px;
    font-size: 40px;
  }

  .final-cta--waveform {
    width: calc(100% - 36px);
    padding: 56px 20px;
  }

  .cta-wave {
    width: 55%;
    opacity: .46;
  }
}

@media (max-width: 520px) {
  .audience-grid--premium .audience-card {
    grid-template-columns: 1fr;
  }

  .audience-side-icon {
    width: 72px;
    height: 72px;
  }

  .cta-wave {
    width: 75%;
    opacity: .3;
  }
}



/* =========================================================
   V12 — hero information and How It Works based on reference.
   Hero image and See the App in Action remain unchanged.
   ========================================================= */

.hero-copy--studio {
  max-width: 650px;
}

.hero-capabilities {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  width: min(650px, 100%);
}

.hero-capabilities > span {
  min-height: 49px;
  padding: 7px 9px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(91, 105, 181, .42);
  border-radius: 7px;
  color: #e9e5f1;
  background: linear-gradient(145deg, rgba(8, 11, 22, .86), rgba(8, 14, 22, .64));
  box-shadow: inset 0 0 18px rgba(64, 38, 121, .06);
}

.hero-capabilities svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: url("#capabilityGradient");
  stroke: #c05cff;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 7px rgba(58, 205, 255, .20));
}

.hero-capabilities > span:nth-child(even) svg {
  stroke: #26d6ff;
}

.hero-capabilities strong {
  font-size: 10px;
  line-height: 1.15;
  font-weight: 600;
}

.hero--studio .hero-actions {
  margin-top: 17px;
}

.hero-benefits--reference {
  width: min(780px, 100%);
  padding-top: 21px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.hero-benefits--reference article {
  grid-template-columns: 31px minmax(0, 1fr);
  gap: 8px;
}

.benefit-icon--plain {
  width: 29px;
  height: 29px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.benefit-icon--plain svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #b14cff;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter:
    drop-shadow(0 0 5px rgba(179, 69, 255, .28))
    drop-shadow(0 0 6px rgba(31, 205, 255, .16));
}

.hero-benefits--reference article:nth-child(even) .benefit-icon--plain svg {
  stroke: #23cfff;
}

.hero-benefits--reference strong {
  font-size: 11px;
  line-height: 1.25;
}

.hero-benefits--reference small {
  margin-top: 3px;
  font-size: 9px;
  line-height: 1.35;
}

.how-compact {
  padding-top: 28px;
  padding-bottom: 66px;
  border-top: 1px solid rgba(124, 62, 191, .16);
}

.section-heading--compact {
  margin-bottom: 16px;
}

.section-heading--compact .section-kicker,
.section-heading--compact p {
  display: none;
}

.section-heading--compact h2 {
  font-size: 16px;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #e8a9ff, #b45cff 55%, #36d6ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.steps-grid--reference {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  overflow: visible;
}

.steps-grid--reference .step-card--reference {
  position: relative;
  min-height: 206px;
  padding: 16px 10px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 9px;
  border: 1px solid rgba(84, 88, 146, .35);
  background:
    radial-gradient(circle at 50% 0%, rgba(63, 45, 121, .15), transparent 48%),
    linear-gradient(150deg, rgba(13, 16, 31, .96), rgba(8, 13, 23, .96));
  box-shadow: inset 0 0 22px rgba(38, 43, 88, .08);
}

.steps-grid--reference .step-card--reference:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 42%;
  right: -15px;
  width: 16px;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(122, 71, 214, .75) 0 3px,
    transparent 3px 6px
  );
}

.step-number--circle {
  position: absolute;
  top: 13px;
  left: 12px;
  width: 21px;
  height: 21px;
  margin: 0 !important;
  display: grid;
  place-items: center;
  border: 1px solid rgba(203, 115, 255, .58);
  border-radius: 50%;
  color: #e6c3ff !important;
  background: rgba(82, 42, 125, .18);
  font-size: 10px !important;
  font-weight: 700;
  box-shadow: 0 0 10px rgba(166, 74, 255, .14);
}

.step-icon-reference {
  width: 58px;
  height: 58px;
  margin: 6px 0 12px;
  display: grid;
  place-items: center;
}

.step-icon-reference svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: #24cfff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter:
    drop-shadow(0 0 6px rgba(31, 203, 255, .25))
    drop-shadow(0 0 12px rgba(149, 70, 255, .18));
}

.step-card--reference:nth-child(2n) .step-icon-reference svg,
.step-card--reference:nth-child(3) .step-icon-reference svg {
  stroke: #9e55ff;
}

.steps-grid--reference .step-card--reference h3 {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.2;
  color: #fff;
}

.steps-grid--reference .step-card--reference p {
  margin: 0;
  font-size: 10px;
  line-height: 1.45;
  color: #a9a5b2;
}

@media (max-width: 1280px) {
  .hero-capabilities {
    grid-template-columns: repeat(5, minmax(88px, 1fr));
  }

  .steps-grid--reference {
    grid-template-columns: repeat(7, minmax(118px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
  }
}

@media (max-width: 980px) {
  .hero-capabilities {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-capabilities > span:nth-child(4),
  .hero-capabilities > span:nth-child(5) {
    min-width: 0;
  }

  .hero-benefits--reference {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 16px;
  }
}

@media (max-width: 620px) {
  .hero-capabilities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-benefits--reference {
    grid-template-columns: 1fr;
  }
}


/* V13 — automatic slideshow progress in See the App in Action. */
.app-showcase .app-tab {
  position: relative;
  overflow: hidden;
}

.app-showcase .app-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: auto;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #b64fff, #6c5fff 58%, #24ceff);
  box-shadow: 0 0 8px rgba(64, 196, 255, .38);
  opacity: 0;
}

.app-showcase.slideshow-tick .app-tab.active::after {
  opacity: 1;
  animation: appSlideProgress 3s linear forwards;
}

@keyframes appSlideProgress {
  from { width: 0; }
  to { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .app-showcase.slideshow-tick .app-tab.active::after {
    animation: none;
    width: 100%;
  }
}


/* V15 — screenshot and synchronized information panel as two separate blocks. */
.app-showcase > .app-preview {
  display: flex !important;
  flex-direction: column !important;
  align-self: start !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  overflow: visible !important;
  padding: 0 !important;
  gap: clamp(10px, 1vw, 14px) !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}
.app-showcase .app-preview-image {
  position: relative; width:100%; min-width:0; overflow:hidden;
  border:1px solid rgba(47,211,255,.72); border-radius:20px;
  background:radial-gradient(circle at 50% 25%,rgba(102,53,157,.18),transparent 42%),#080911;
  box-shadow:0 0 0 1px rgba(158,69,255,.20),0 18px 42px rgba(0,0,0,.28);
}
.app-showcase .app-preview-image > img {
  display:block !important; width:100% !important; height:auto !important;
  min-height:0 !important; max-width:100% !important; aspect-ratio:16/9 !important;
  object-fit:contain !important; border-radius:19px;
  transition:opacity .22s ease, transform .22s ease;
}
.app-showcase .preview-caption {
  position:static !important; inset:auto !important; width:100% !important; min-width:0 !important;
  margin:0 !important; padding:clamp(14px,1.2vw,20px) clamp(16px,1.45vw,24px) !important;
  display:grid !important; grid-template-columns:minmax(190px,.52fr) minmax(0,1.48fr) !important;
  align-items:center !important; gap:clamp(18px,1.8vw,34px) !important;
  border:1px solid rgba(181,78,255,.62) !important; border-radius:18px !important;
  background:linear-gradient(110deg,rgba(10,8,20,.98),rgba(7,12,22,.98)) !important;
  backdrop-filter:none !important;
  box-shadow:inset 0 0 26px rgba(101,42,158,.06),0 12px 30px rgba(0,0,0,.22);
}
.app-showcase .preview-caption-title { min-width:0; }
.app-showcase .preview-caption span { display:block; color:#26d7ff; font-size:clamp(10px,.8vw,13px) !important; font-weight:800; letter-spacing:.16em; }
.app-showcase .preview-caption h3 { margin:7px 0 0 !important; color:#fff; font-size:clamp(20px,1.65vw,30px) !important; line-height:1.08; }
.app-showcase .preview-caption p { display:block !important; margin:0 !important; color:#aaa8b3; font-size:clamp(12px,1.02vw,17px) !important; line-height:1.55; }
.app-showcase > .app-tabs { align-self:stretch !important; height:var(--app-preview-height,auto) !important; }
@container (max-width:760px){
 .app-showcase .preview-caption{grid-template-columns:1fr !important;gap:9px !important;padding:11px 13px !important}
 .app-showcase .preview-caption h3{font-size:16px !important}
 .app-showcase .preview-caption p{display:block !important;font-size:10px !important;line-height:1.4}
}
@container (max-width:520px){
 .app-showcase > .app-preview{gap:7px !important}
 .app-showcase .app-preview-image,.app-showcase .app-preview-image > img{border-radius:12px !important}
 .app-showcase .preview-caption{border-radius:12px !important;padding:8px 9px !important;gap:5px !important}
 .app-showcase .preview-caption span{font-size:7px !important}
 .app-showcase .preview-caption h3{margin-top:3px !important;font-size:12px !important}
 .app-showcase .preview-caption p{font-size:8px !important}
}


/* V16 — move and slightly compress the desktop Hero studio image.
   This keeps the neon sign away from the headline without changing mobile layout. */
@media (min-width: 981px) {
  .hero-studio-image {
    width: min(66vw, 1120px) !important;
    right: max(-18px, calc((100vw - 1700px) / 2)) !important;
    transform: translateX(34px) scale(.97) !important;
    transform-origin: right center !important;
  }

  .hero-studio-image img {
    object-position: right center !important;
  }

  .hero-studio-overlay {
    background:
      linear-gradient(
        90deg,
        #040409 0%,
        rgba(4, 4, 9, .995) 30%,
        rgba(4, 4, 9, .90) 42%,
        rgba(4, 4, 9, .48) 54%,
        rgba(4, 4, 9, .10) 70%,
        rgba(4, 4, 9, .08) 84%,
        rgba(4, 4, 9, .40) 100%
      ),
      linear-gradient(
        180deg,
        rgba(4, 4, 9, .36),
        transparent 30%,
        transparent 72%,
        rgba(4, 4, 9, .80)
      ) !important;
  }
}

@media (min-width: 981px) and (max-width: 1260px) {
  .hero-studio-image {
    width: 69vw !important;
    transform: translateX(28px) scale(.96) !important;
  }
}


/* V17 — crop the left neon-sign area from the desktop Hero image.
   The app monitor remains visible on the right, while no image content sits under the headline. */
@media (min-width: 981px) {
  .hero-studio-image {
    left: 40.5% !important;
    right: 0 !important;
    width: auto !important;
    top: 28px !important;
    bottom: 24px !important;
    overflow: hidden !important;
    transform: none !important;
    place-items: stretch !important;
  }

  .hero-studio-image img {
    width: 116% !important;
    max-width: none !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: 78% center !important;
    transform: translateX(-2%) !important;
    clip-path: inset(0 0 0 13%) !important;
  }

  .hero-studio-overlay {
    background:
      linear-gradient(
        90deg,
        #040409 0%,
        #040409 34%,
        rgba(4, 4, 9, .995) 39%,
        rgba(4, 4, 9, .94) 44%,
        rgba(4, 4, 9, .58) 50%,
        rgba(4, 4, 9, .14) 61%,
        rgba(4, 4, 9, .07) 82%,
        rgba(4, 4, 9, .38) 100%
      ),
      linear-gradient(
        180deg,
        rgba(4, 4, 9, .34),
        transparent 30%,
        transparent 72%,
        rgba(4, 4, 9, .82)
      ) !important;
  }
}

@media (min-width: 981px) and (max-width: 1260px) {
  .hero-studio-image {
    left: 43% !important;
  }

  .hero-studio-image img {
    width: 122% !important;
    object-position: 81% center !important;
    clip-path: inset(0 0 0 17%) !important;
  }
}


/* V18 — final desktop Hero crop matching the approved preview.
   Reuse the existing studio image, but show only the monitor/right studio area. */
@media (min-width: 981px) {
  .hero--studio { overflow: hidden !important; }
  .hero-copy--studio { position: relative !important; z-index: 5 !important; max-width: 610px !important; }
  .hero-studio-image {
    left: 39.5% !important;
    right: -1.5% !important;
    top: 18px !important;
    bottom: 18px !important;
    width: auto !important;
    overflow: hidden !important;
    transform: none !important;
    border-radius: 0 !important;
  }
  .hero-studio-image img {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 132% !important;
    max-width: none !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: right center !important;
    transform: none !important;
    clip-path: none !important;
  }
  .hero-studio-overlay {
    z-index: 2 !important;
    background:
      linear-gradient(90deg,
        #040409 0%,
        #040409 35%,
        rgba(4,4,9,.995) 39%,
        rgba(4,4,9,.88) 44%,
        rgba(4,4,9,.38) 50%,
        rgba(4,4,9,.06) 59%,
        rgba(4,4,9,.03) 86%,
        rgba(4,4,9,.34) 100%),
      linear-gradient(180deg,rgba(4,4,9,.28),transparent 28%,transparent 72%,rgba(4,4,9,.78)) !important;
  }
}
@media (min-width: 981px) and (max-width: 1260px) {
  .hero-studio-image { left: 42% !important; right: -3% !important; }
  .hero-studio-image img { width: 140% !important; }
  .hero-copy--studio { max-width: 540px !important; }
}


/* V19 — Hero matched to the approved reference image.
   Existing studio artwork is cropped and positioned as a separate right-side visual. */
@media (min-width: 981px) {
  .hero--studio {
    min-height: 790px !important;
    padding-top: 54px !important;
    padding-bottom: 48px !important;
    grid-template-columns: minmax(470px, 0.82fr) minmax(650px, 1.38fr) !important;
    gap: 28px 34px !important;
    background: #040409 !important;
  }

  .hero-copy--studio {
    max-width: 560px !important;
    z-index: 5 !important;
  }

  .hero-copy--studio .eyebrow {
    display: none !important;
  }

  .hero--studio h1 {
    margin: 0 0 26px !important;
    max-width: 545px !important;
    font-size: clamp(56px, 4.45vw, 76px) !important;
    line-height: 1.02 !important;
  }

  .hero--studio .hero-lead {
    max-width: 535px !important;
    font-size: clamp(16px, 1.18vw, 20px) !important;
    line-height: 1.65 !important;
  }

  .hero-studio-image {
    left: 38.5% !important;
    right: 1.8% !important;
    top: 56px !important;
    bottom: 70px !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
    overflow: hidden !important;
    opacity: 1 !important;
    transform: none !important;
    border-radius: 0 !important;
  }

  .hero-studio-image img {
    position: static !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: none !important;
    clip-path: none !important;
    filter: saturate(1.02) contrast(1.04) brightness(.96) !important;
  }

  .hero-studio-overlay {
    background:
      linear-gradient(90deg,
        #040409 0%,
        #040409 34%,
        rgba(4,4,9,.99) 37.5%,
        rgba(4,4,9,.72) 40.5%,
        rgba(4,4,9,.18) 44%,
        transparent 49%,
        transparent 91%,
        rgba(4,4,9,.20) 100%),
      linear-gradient(180deg,
        rgba(4,4,9,.16) 0%,
        transparent 18%,
        transparent 78%,
        rgba(4,4,9,.72) 100%) !important;
  }

  .hero-capabilities {
    margin-top: 25px !important;
    width: min(555px, 100%) !important;
  }

  .hero--studio .hero-actions {
    margin-top: 18px !important;
  }

  .hero-benefits--reference {
    width: min(760px, 100%) !important;
    padding-top: 20px !important;
  }
}

@media (min-width: 981px) and (max-width: 1260px) {
  .hero--studio {
    grid-template-columns: minmax(420px, .9fr) minmax(540px, 1.1fr) !important;
  }

  .hero-copy--studio {
    max-width: 500px !important;
  }

  .hero--studio h1 {
    max-width: 500px !important;
    font-size: clamp(50px, 5vw, 65px) !important;
  }

  .hero-studio-image {
    left: 40% !important;
    right: 0 !important;
    top: 64px !important;
    bottom: 80px !important;
  }
}

/* =========================
   V20 — responsive layout stabilization
   Fixes:
   1) hero content scales down more cleanly on smaller desktop/laptop widths,
   2) capability chips keep text inside, including “Full arrangement”,
   3) How It Works cards stay centered instead of drifting right.
   ========================= */

.hero--studio {
  gap: clamp(24px, 3vw, 42px);
}

.hero-copy--studio {
  max-width: min(640px, 100%);
}

.hero-capabilities {
  width: min(660px, 100%);
  gap: clamp(6px, 0.8vw, 8px);
}

.hero-capabilities > span {
  min-width: 0;
  min-height: clamp(46px, 4vw, 52px);
  padding: clamp(6px, 0.7vw, 8px) clamp(7px, 0.75vw, 10px);
  grid-template-columns: clamp(22px, 2vw, 28px) minmax(0, 1fr);
  gap: clamp(5px, 0.55vw, 7px);
}

.hero-capabilities svg {
  width: clamp(21px, 1.9vw, 27px);
  height: clamp(21px, 1.9vw, 27px);
}

.hero-capabilities strong {
  display: block;
  min-width: 0;
  font-size: clamp(9px, 0.68vw + 5.8px, 10px);
  line-height: 1.14;
  overflow-wrap: anywhere;
}

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

.steps-grid--reference {
  justify-items: stretch;
  align-items: stretch;
}

@media (max-width: 1400px) {
  .hero--studio {
    grid-template-columns: minmax(380px, 0.92fr) minmax(440px, 1.08fr);
    padding-inline: clamp(24px, 3vw, 42px);
  }

  .hero-studio-image {
    width: min(68vw, 1080px);
    right: max(0px, calc((100vw - 1560px) / 2));
  }

  .hero-studio-overlay {
    background:
      linear-gradient(90deg, #040409 0%, rgba(4, 4, 9, .985) 30%, rgba(4, 4, 9, .78) 44%, rgba(4, 4, 9, .18) 66%, rgba(4, 4, 9, .10) 82%, rgba(4, 4, 9, .42) 100%),
      linear-gradient(180deg, rgba(4, 4, 9, .34), transparent 30%, transparent 72%, rgba(4, 4, 9, .8));
  }

  .hero--studio h1 {
    font-size: clamp(46px, 4.8vw, 68px);
  }
}

@media (max-width: 1220px) {
  .hero--studio {
    grid-template-columns: minmax(340px, 0.95fr) minmax(380px, 1.02fr);
    gap: 22px 24px;
  }

  .hero-studio-image {
    width: min(63vw, 920px);
  }

  .hero-capabilities {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .hero-capabilities > span {
    min-height: 44px;
    padding: 6px 7px;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 5px;
  }

  .hero-capabilities svg {
    width: 20px;
    height: 20px;
  }

  .hero-capabilities strong {
    font-size: 8.6px;
    line-height: 1.1;
  }

  .steps-grid--reference {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    overflow: visible;
    padding-bottom: 0;
  }

  .steps-grid--reference .step-card--reference {
    grid-column: span 2;
    min-height: 188px;
    padding: 14px 10px 14px;
  }

  .steps-grid--reference .step-card--reference:not(:last-child)::after {
    display: none;
  }

  .steps-grid--reference .step-card--reference:nth-child(7) {
    grid-column: 3 / span 2;
  }
}

@media (max-width: 1040px) {
  .hero--studio {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 28px;
    min-height: auto;
    padding: 48px 22px 42px;
  }

  .hero-copy--studio {
    max-width: 760px;
  }

  .hero-studio-image {
    position: relative;
    z-index: 0;
    inset: auto;
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    max-width: 860px;
    height: auto;
    margin: 0 auto;
    opacity: 1;
  }

  .hero-studio-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .hero-studio-overlay {
    background:
      linear-gradient(180deg, rgba(4,4,9,.08), rgba(4,4,9,.12) 45%, rgba(4,4,9,.68) 100%),
      radial-gradient(circle at 18% 22%, rgba(140, 56, 198, .18), transparent 19rem);
  }

  .hero-capabilities {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-capabilities > span {
    min-height: 48px;
    padding: 7px 9px;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 7px;
  }

  .hero-capabilities svg {
    width: 24px;
    height: 24px;
  }

  .hero-capabilities strong {
    font-size: 10px;
    line-height: 1.14;
  }

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

@media (max-width: 900px) {
  .steps-grid--reference {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .steps-grid--reference .step-card--reference,
  .steps-grid--reference .step-card--reference:nth-child(7) {
    grid-column: auto;
    min-height: 182px;
  }
}

@media (max-width: 680px) {
  .hero-capabilities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-benefits--reference {
    grid-template-columns: 1fr;
  }

  .steps-grid--reference {
    grid-template-columns: 1fr;
  }

  .steps-grid--reference .step-card--reference {
    min-height: auto;
    padding: 18px 14px 16px;
  }
}

/* =========================================================
   V21 — definitive responsive breakpoint fix
   One rule only:
   - 981px and above: desktop hero
   - 980px and below: stacked responsive hero
   This block intentionally overrides older V16–V20 rules.
   ========================================================= */

@media (min-width: 981px) {
  .hero--studio {
    display: grid !important;
    grid-template-columns: minmax(420px, 0.92fr) minmax(520px, 1.08fr) !important;
    grid-template-rows: auto auto !important;
    align-items: center !important;
    gap: clamp(24px, 3vw, 48px) !important;
    min-height: calc(100vh - 108px) !important;
    padding: clamp(48px, 6vw, 90px) clamp(28px, 5vw, 78px) clamp(48px, 5vw, 76px) !important;
    overflow: hidden !important;
  }

  .hero-copy--studio {
    position: relative !important;
    z-index: 3 !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 100% !important;
    max-width: 660px !important;
    min-width: 0 !important;
  }

  .hero-studio-image {
    position: absolute !important;
    z-index: 0 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: min(68vw, 1120px) !important;
    max-width: none !important;
    height: 100% !important;
    margin: 0 !important;
    transform: none !important;
    opacity: 1 !important;
    overflow: hidden !important;
  }

  .hero-studio-image img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center right !important;
    transform: none !important;
  }

  .hero-studio-overlay {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    background:
      linear-gradient(90deg,
        #040409 0%,
        rgba(4,4,9,.995) 28%,
        rgba(4,4,9,.93) 38%,
        rgba(4,4,9,.48) 52%,
        rgba(4,4,9,.10) 72%,
        rgba(4,4,9,.20) 100%),
      linear-gradient(180deg, rgba(4,4,9,.18), transparent 35%, transparent 70%, rgba(4,4,9,.78)) !important;
  }

  .hero-benefits--reference {
    position: relative !important;
    z-index: 3 !important;
    grid-column: 1 !important;
    grid-row: 2 !important;
    width: min(820px, 100%) !important;
    margin: 0 !important;
  }

  .hero-capabilities {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 86px !important;
  }

  .hero--studio {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-rows: auto auto auto !important;
    align-items: start !important;
    gap: 24px !important;
    min-height: 0 !important;
    padding: 34px 20px 40px !important;
    overflow: visible !important;
  }

  .hero-copy--studio {
    position: relative !important;
    z-index: 3 !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 100% !important;
    max-width: 760px !important;
    min-width: 0 !important;
    margin: 0 auto !important;
  }

  .hero--studio h1 {
    margin-top: 0 !important;
    font-size: clamp(42px, 8vw, 68px) !important;
    line-height: .98 !important;
    overflow: visible !important;
  }

  .hero-lead {
    max-width: 700px !important;
    font-size: clamp(16px, 2.2vw, 20px) !important;
  }

  .hero-capabilities {
    width: 100% !important;
    max-width: 700px !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .hero-capabilities > span {
    min-width: 0 !important;
    min-height: 48px !important;
    padding: 7px 9px !important;
    grid-template-columns: 24px minmax(0, 1fr) !important;
    gap: 7px !important;
  }

  .hero-capabilities strong {
    font-size: 10px !important;
    line-height: 1.14 !important;
    overflow-wrap: anywhere !important;
  }

  .hero-actions {
    flex-wrap: wrap !important;
  }

  .hero-studio-image {
    position: relative !important;
    z-index: 2 !important;
    inset: auto !important;
    grid-column: 1 !important;
    grid-row: 2 !important;
    width: 100% !important;
    max-width: 900px !important;
    height: auto !important;
    margin: 0 auto !important;
    transform: none !important;
    opacity: 1 !important;
    overflow: hidden !important;
    border-radius: 20px !important;
  }

  .hero-studio-image img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    aspect-ratio: 16 / 10 !important;
    object-fit: cover !important;
    object-position: center right !important;
    transform: none !important;
  }

  .hero-studio-overlay {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    background:
      radial-gradient(circle at 18% 20%, rgba(143, 59, 219, .18), transparent 18rem),
      linear-gradient(180deg, rgba(4,4,9,.04), rgba(4,4,9,.10) 50%, rgba(4,4,9,.45) 100%) !important;
    pointer-events: none !important;
  }

  .hero-benefits--reference {
    position: relative !important;
    z-index: 3 !important;
    grid-column: 1 !important;
    grid-row: 3 !important;
    width: 100% !important;
    max-width: 760px !important;
    margin: 0 auto !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }

  .steps-grid--reference {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    justify-content: center !important;
    justify-items: stretch !important;
    width: 100% !important;
    max-width: 760px !important;
    margin: 0 auto !important;
    gap: 12px !important;
    overflow: visible !important;
    padding: 0 !important;
  }

  .steps-grid--reference .step-card--reference,
  .steps-grid--reference .step-card--reference:nth-child(7) {
    grid-column: auto !important;
    min-width: 0 !important;
    width: 100% !important;
    min-height: 184px !important;
  }

  .steps-grid--reference .step-card--reference:nth-child(7) {
    grid-column: 1 / -1 !important;
    width: min(50%, 370px) !important;
    justify-self: center !important;
  }

  .steps-grid--reference .step-card--reference:not(:last-child)::after {
    display: none !important;
  }
}

@media (max-width: 620px) {
  .hero--studio {
    padding: 28px 14px 34px !important;
  }

  .hero--studio h1 {
    font-size: clamp(38px, 12vw, 56px) !important;
  }

  .hero-capabilities {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .hero-benefits--reference {
    grid-template-columns: 1fr !important;
  }

  .steps-grid--reference {
    grid-template-columns: 1fr !important;
  }

  .steps-grid--reference .step-card--reference:nth-child(7) {
    grid-column: auto !important;
    width: 100% !important;
  }
}

/* =========================================================
   V22 — desktop hero matched to the compact reference layout.
   No content changes outside the hero and responsive stability.
   ========================================================= */

@media (min-width: 981px) {
  .hero--studio {
    display: grid !important;
    grid-template-columns: minmax(390px, 40%) minmax(0, 60%) !important;
    grid-template-rows: auto auto !important;
    align-items: center !important;
    gap: 18px 30px !important;
    min-height: 610px !important;
    padding: 24px clamp(28px, 3.2vw, 54px) 20px !important;
    overflow: hidden !important;
  }

  .hero-copy--studio {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 100% !important;
    max-width: 520px !important;
    margin: 0 !important;
    padding: 0 !important;
    align-self: center !important;
  }

  .hero--studio .section-kicker,
  .hero--studio .eyebrow,
  .hero--studio .hero-badge {
    margin-bottom: 12px !important;
    font-size: 10px !important;
    letter-spacing: .16em !important;
  }

  .hero--studio h1 {
    margin: 0 !important;
    max-width: 500px !important;
    font-size: clamp(42px, 3.55vw, 58px) !important;
    line-height: .98 !important;
    letter-spacing: -.045em !important;
  }

  .hero-lead {
    max-width: 500px !important;
    margin: 18px 0 0 !important;
    font-size: clamp(15px, 1.15vw, 18px) !important;
    line-height: 1.55 !important;
  }

  .hero-capabilities {
    width: 100% !important;
    max-width: 520px !important;
    margin-top: 16px !important;
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 7px !important;
  }

  .hero-capabilities > span {
    min-width: 0 !important;
    min-height: 45px !important;
    padding: 6px 7px !important;
    grid-template-columns: 20px minmax(0, 1fr) !important;
    gap: 5px !important;
    border-radius: 7px !important;
  }

  .hero-capabilities svg {
    width: 20px !important;
    height: 20px !important;
  }

  .hero-capabilities strong {
    font-size: 8.4px !important;
    line-height: 1.08 !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
  }

  .hero-actions {
    margin-top: 15px !important;
    gap: 12px !important;
    flex-wrap: nowrap !important;
  }

  .hero-actions .button,
  .hero-actions a,
  .hero-actions button {
    min-height: 48px !important;
    padding: 0 24px !important;
    font-size: 14px !important;
  }

  .hero-studio-image {
    position: relative !important;
    inset: auto !important;
    z-index: 1 !important;
    grid-column: 2 !important;
    grid-row: 1 / span 2 !important;
    width: 100% !important;
    max-width: none !important;
    height: 560px !important;
    margin: 0 !important;
    transform: none !important;
    opacity: 1 !important;
    overflow: hidden !important;
    border-radius: 0 !important;
  }

  .hero-studio-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: 72% center !important;
    filter: brightness(1.08) contrast(1.03) saturate(1.03) !important;
  }

  .hero-studio-overlay {
    position: absolute !important;
    inset: 0 !important;
    background:
      linear-gradient(90deg,
        #040409 0%,
        rgba(4,4,9,.92) 5%,
        rgba(4,4,9,.42) 14%,
        rgba(4,4,9,.08) 28%,
        rgba(4,4,9,.02) 78%,
        rgba(4,4,9,.18) 100%),
      linear-gradient(180deg, rgba(4,4,9,.06), transparent 35%, transparent 74%, rgba(4,4,9,.50)) !important;
  }

  .hero-benefits--reference {
    grid-column: 1 !important;
    grid-row: 2 !important;
    width: 100% !important;
    max-width: 560px !important;
    margin: 0 !important;
    padding-top: 16px !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 12px !important;
    align-self: end !important;
  }

  .hero-benefits--reference article {
    grid-template-columns: 24px minmax(0, 1fr) !important;
    gap: 7px !important;
  }

  .benefit-icon--plain,
  .benefit-icon--plain svg {
    width: 23px !important;
    height: 23px !important;
  }

  .hero-benefits--reference strong {
    font-size: 9.6px !important;
    line-height: 1.15 !important;
  }

  .hero-benefits--reference small {
    font-size: 8px !important;
    line-height: 1.28 !important;
  }
}

@media (min-width: 981px) and (max-width: 1220px) {
  .hero--studio {
    grid-template-columns: minmax(350px, 42%) minmax(0, 58%) !important;
    min-height: 570px !important;
    padding-inline: 24px !important;
  }

  .hero--studio h1 {
    font-size: clamp(38px, 4.2vw, 50px) !important;
  }

  .hero-studio-image {
    height: 520px !important;
  }

  .hero-capabilities strong {
    font-size: 7.8px !important;
  }
}


/* === V23 hero full neon fix === */
.hero--studio {
  position: relative !important;
  overflow: hidden !important;
  width: min(var(--container), calc(100% - 48px)) !important;
  min-height: calc(100svh - var(--header-height)) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 38%) minmax(0, 62%) !important;
  gap: clamp(20px, 3vw, 34px) !important;
  align-items: start !important;
  padding: clamp(28px, 4.2vw, 48px) clamp(18px, 3vw, 36px) 26px !important;
}
.hero--studio::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(4,5,10,.20);
}
.hero-studio-image {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  pointer-events: none !important;
}
.hero-studio-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  opacity: 1 !important;
  filter: saturate(1.02) brightness(.92) !important;
}
.hero-studio-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
  background:
    linear-gradient(90deg,
      rgba(5,6,11,.94) 0%,
      rgba(5,6,11,.90) 17%,
      rgba(5,6,11,.76) 27%,
      rgba(5,6,11,.36) 35%,
      rgba(5,6,11,.14) 42%,
      rgba(5,6,11,.10) 57%,
      rgba(5,6,11,.12) 74%,
      rgba(5,6,11,.24) 100%),
    radial-gradient(circle at 18% 46%, rgba(5,6,11,.10) 0 15%, rgba(5,6,11,0) 26%),
    linear-gradient(180deg, rgba(5,6,11,.14) 0%, rgba(5,6,11,.08) 38%, rgba(5,6,11,.28) 100%) !important;
}
.hero-copy--studio,
.hero-benefits--reference {
  position: relative !important;
  z-index: 2 !important;
}
.hero-copy--studio {
  max-width: 540px !important;
  width: 100% !important;
  padding-top: 6px !important;
}
.hero--studio .eyebrow {
  min-height: 32px !important;
  padding: 0 14px !important;
  font-size: 10px !important;
  letter-spacing: .12em !important;
}
.hero--studio h1 {
  margin: 18px 0 18px !important;
  max-width: 10.3ch !important;
  font-size: clamp(38px, 5.6vw, 66px) !important;
  line-height: .98 !important;
  letter-spacing: -.06em !important;
}
.hero--studio .hero-lead {
  max-width: 550px !important;
  font-size: clamp(15px, 1.45vw, 20px) !important;
  line-height: 1.58 !important;
}
.hero-capabilities {
  margin-top: 24px !important;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 9px !important;
  max-width: 560px !important;
}
.hero-capabilities span {
  min-width: 0 !important;
  min-height: 58px !important;
  padding: 8px 8px 9px !important;
  gap: 6px !important;
  border: 1px solid rgba(126, 92, 228, .34) !important;
  border-radius: 10px !important;
  background: rgba(8,10,18,.50) !important;
  backdrop-filter: blur(8px) !important;
}
.hero-capabilities svg {
  width: 18px !important;
  height: 18px !important;
}
.hero-capabilities strong {
  font-size: 10px !important;
  line-height: 1.12 !important;
  font-weight: 600 !important;
  letter-spacing: -.01em !important;
}
.hero--studio .hero-actions {
  margin-top: 20px !important;
  gap: 12px !important;
}
.hero--studio .button--large {
  min-height: 46px !important;
  padding-inline: 22px !important;
}
.hero-benefits--reference {
  grid-column: 1 / 2 !important;
  max-width: 560px !important;
  margin-top: 18px !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 10px !important;
}
.hero-benefits--reference article {
  min-width: 0 !important;
  gap: 8px !important;
  padding: 0 !important;
}
.hero-benefits--reference article div strong {
  font-size: 14px !important;
  line-height: 1.18 !important;
}
.hero-benefits--reference article div small {
  font-size: 11px !important;
  line-height: 1.28 !important;
}
.hero-benefits--reference .benefit-icon {
  width: 28px !important;
  height: 28px !important;
  flex: 0 0 28px !important;
}
.hero-benefits--reference .benefit-icon svg {
  width: 18px !important;
  height: 18px !important;
}

@media (max-width: 1380px) {
  .hero--studio {
    grid-template-columns: minmax(0, 40%) minmax(0, 60%) !important;
    width: min(var(--container), calc(100% - 36px)) !important;
    padding-inline: 16px !important;
  }
  .hero-studio-image img { object-position: 57% center !important; }
  .hero-studio-overlay {
    background:
      linear-gradient(90deg,
        rgba(5,6,11,.95) 0%,
        rgba(5,6,11,.92) 19%,
        rgba(5,6,11,.78) 29%,
        rgba(5,6,11,.40) 37%,
        rgba(5,6,11,.14) 43%,
        rgba(5,6,11,.10) 58%,
        rgba(5,6,11,.15) 76%,
        rgba(5,6,11,.24) 100%) !important;
  }
}

@media (max-width: 1240px) {
  .hero--studio {
    grid-template-columns: minmax(0, 43%) minmax(0, 57%) !important;
    gap: 18px !important;
    padding-top: 24px !important;
  }
  .hero-studio-image img { object-position: 60% center !important; }
  .hero--studio h1 { font-size: clamp(36px, 4.8vw, 56px) !important; }
  .hero-capabilities { max-width: 520px !important; }
  .hero-capabilities strong { font-size: 9.5px !important; }
  .hero-benefits--reference { max-width: 520px !important; }
}

@media (max-width: 1100px) {
  .hero--studio {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    padding-bottom: 26px !important;
  }
  .hero-copy--studio,
  .hero-benefits--reference {
    max-width: 620px !important;
  }
  .hero-studio-image img {
    object-position: 68% center !important;
    filter: saturate(1) brightness(.82) !important;
  }
  .hero-studio-overlay {
    background:
      linear-gradient(90deg,
        rgba(5,6,11,.92) 0%,
        rgba(5,6,11,.88) 34%,
        rgba(5,6,11,.48) 47%,
        rgba(5,6,11,.18) 58%,
        rgba(5,6,11,.12) 74%,
        rgba(5,6,11,.20) 100%),
      linear-gradient(180deg, rgba(5,6,11,.10), rgba(5,6,11,.30)) !important;
  }
  .hero-benefits--reference {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    row-gap: 12px !important;
  }
}

@media (max-width: 820px) {
  .hero--studio {
    width: min(var(--container), calc(100% - 24px)) !important;
    padding: 20px 12px 22px !important;
  }
  .hero-studio-image img {
    object-position: 72% center !important;
    filter: saturate(1) brightness(.72) !important;
  }
  .hero-studio-overlay {
    background:
      linear-gradient(90deg,
        rgba(5,6,11,.94) 0%,
        rgba(5,6,11,.92) 55%,
        rgba(5,6,11,.56) 70%,
        rgba(5,6,11,.18) 82%,
        rgba(5,6,11,.12) 100%) !important,
      linear-gradient(180deg, rgba(5,6,11,.20), rgba(5,6,11,.45)) !important;
  }
  .hero--studio h1 {
    max-width: 9ch !important;
    font-size: clamp(34px, 8.5vw, 52px) !important;
  }
  .hero-capabilities {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-width: 100% !important;
  }
  .hero-benefits--reference {
    grid-template-columns: 1fr 1fr !important;
    max-width: 100% !important;
  }
}

/* =====================================================
   V24 — HERO rebuilt to match the accepted reference
   Full studio image, neon preserved, no black dead zone.
   ===================================================== */

@media (min-width: 1101px) {
  .hero--studio {
    position: relative !important;
    isolation: isolate !important;
    overflow: hidden !important;
    width: 100% !important;
    max-width: none !important;
    min-height: calc(100svh - var(--header-height)) !important;
    height: auto !important;
    margin: 0 !important;
    padding: clamp(30px, 4.2vw, 54px) clamp(30px, 4vw, 64px) clamp(24px, 3vw, 36px) !important;
    display: grid !important;
    grid-template-columns: minmax(430px, 35%) minmax(0, 65%) !important;
    grid-template-rows: auto auto !important;
    column-gap: clamp(24px, 3vw, 46px) !important;
    row-gap: 16px !important;
    align-items: start !important;
    background: #030409 !important;
  }

  .hero--studio::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    background: rgba(3,4,9,.06) !important;
    pointer-events: none !important;
  }

  .hero-studio-image {
    position: absolute !important;
    z-index: 0 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 18% !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
  }

  .hero-studio-image img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: 50% center !important;
    opacity: 1 !important;
    filter: brightness(.96) saturate(1.03) contrast(1.02) !important;
    transform: none !important;
  }

  .hero-studio-overlay {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    pointer-events: none !important;
    background:
      linear-gradient(90deg,
        rgba(3,4,9,.98) 0%,
        rgba(3,4,9,.97) 18%,
        rgba(3,4,9,.91) 27%,
        rgba(3,4,9,.72) 34%,
        rgba(3,4,9,.34) 42%,
        rgba(3,4,9,.10) 53%,
        rgba(3,4,9,.04) 72%,
        rgba(3,4,9,.12) 100%),
      linear-gradient(180deg,
        rgba(3,4,9,.12) 0%,
        rgba(3,4,9,.02) 48%,
        rgba(3,4,9,.30) 100%) !important;
  }

  .hero-copy--studio {
    position: relative !important;
    z-index: 2 !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 100% !important;
    max-width: 560px !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .hero--studio .eyebrow {
    margin: 0 0 18px !important;
    min-height: 31px !important;
    padding: 0 14px !important;
    font-size: 10px !important;
  }

  .hero--studio h1 {
    margin: 0 0 18px !important;
    max-width: 10.8ch !important;
    font-size: clamp(48px, 4.45vw, 70px) !important;
    line-height: .98 !important;
    letter-spacing: -.062em !important;
  }

  .hero--studio .hero-lead {
    max-width: 525px !important;
    margin: 0 !important;
    font-size: clamp(16px, 1.28vw, 20px) !important;
    line-height: 1.55 !important;
  }

  .hero-capabilities {
    width: 100% !important;
    max-width: 560px !important;
    margin: 18px 0 0 !important;
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .hero-capabilities > span {
    min-width: 0 !important;
    min-height: 52px !important;
    padding: 7px 8px !important;
    grid-template-columns: 20px minmax(0,1fr) !important;
    gap: 6px !important;
    background: rgba(5,8,16,.64) !important;
    backdrop-filter: blur(8px) !important;
  }

  .hero-capabilities svg {
    width: 20px !important;
    height: 20px !important;
  }

  .hero-capabilities strong {
    min-width: 0 !important;
    font-size: 9.5px !important;
    line-height: 1.12 !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .hero--studio .hero-actions {
    margin: 18px 0 0 !important;
    gap: 12px !important;
  }

  .hero--studio .button--large {
    min-height: 48px !important;
    padding: 0 22px !important;
  }

  .hero-benefits--reference {
    position: relative !important;
    z-index: 2 !important;
    grid-column: 1 !important;
    grid-row: 2 !important;
    width: 100% !important;
    max-width: 590px !important;
    margin: 0 !important;
    padding-top: 16px !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0,1fr)) !important;
    gap: 12px !important;
    border-top: 1px solid rgba(122, 81, 183, .20) !important;
  }

  .hero-benefits--reference article {
    min-width: 0 !important;
    gap: 8px !important;
  }

  .hero-benefits--reference article div strong {
    font-size: 13px !important;
    line-height: 1.14 !important;
  }

  .hero-benefits--reference article div small {
    font-size: 10.5px !important;
    line-height: 1.25 !important;
  }

  .hero-benefits--reference .benefit-icon {
    width: 26px !important;
    height: 26px !important;
    flex: 0 0 26px !important;
  }
}

@media (min-width: 1101px) and (max-width: 1320px) {
  .hero--studio {
    grid-template-columns: minmax(395px, 38%) minmax(0, 62%) !important;
    padding-inline: 28px !important;
  }

  .hero-studio-image {
    left: 21% !important;
  }

  .hero--studio h1 {
    font-size: clamp(44px, 4.15vw, 58px) !important;
  }

  .hero-capabilities,
  .hero-copy--studio {
    max-width: 520px !important;
  }

  .hero-capabilities strong {
    font-size: 8.8px !important;
  }
}

@media (max-width: 1100px) {
  .hero--studio {
    position: relative !important;
    isolation: isolate !important;
    overflow: hidden !important;
    width: 100% !important;
    max-width: none !important;
    min-height: auto !important;
    display: block !important;
    padding: 34px 24px 30px !important;
    background: #030409 !important;
  }

  .hero-studio-image {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
  }

  .hero-studio-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: 70% center !important;
    filter: brightness(.74) saturate(1.02) !important;
    transform: none !important;
  }

  .hero-studio-overlay {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    background:
      linear-gradient(90deg,
        rgba(3,4,9,.97) 0%,
        rgba(3,4,9,.96) 48%,
        rgba(3,4,9,.72) 64%,
        rgba(3,4,9,.30) 82%,
        rgba(3,4,9,.14) 100%),
      linear-gradient(180deg, rgba(3,4,9,.15), rgba(3,4,9,.42)) !important;
  }

  .hero-copy--studio,
  .hero-benefits--reference {
    position: relative !important;
    z-index: 2 !important;
    max-width: 620px !important;
  }
}

/* =========================================================
   V25 — FINAL STABLE HERO SYSTEM
   One coherent responsive system only:
   desktop >= 1200px, tablet 800–1199px, mobile <= 799px.
   Full image, no hard vertical cut, no layout jumping.
   ========================================================= */

/* Shared foundation */
.hero.hero--studio {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
  width: 100% !important;
  max-width: none !important;
  min-height: calc(100svh - var(--header-height)) !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  background: #04050a !important;
}

.hero.hero--studio .hero-studio-image {
  position: absolute !important;
  inset: 0 !important;
  z-index: -3 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  transform: none !important;
}

.hero.hero--studio .hero-studio-image img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: none !important;
  opacity: 1 !important;
  filter: saturate(1.04) brightness(.93) contrast(1.02) !important;
}

.hero.hero--studio .hero-studio-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: -2 !important;
  display: block !important;
  pointer-events: none !important;
  background:
    linear-gradient(90deg,
      rgba(3,4,9,.98) 0%,
      rgba(3,4,9,.96) 18%,
      rgba(3,4,9,.88) 26%,
      rgba(3,4,9,.67) 34%,
      rgba(3,4,9,.30) 43%,
      rgba(3,4,9,.08) 53%,
      rgba(3,4,9,.03) 72%,
      rgba(3,4,9,.13) 100%),
    linear-gradient(180deg,
      rgba(3,4,9,.20) 0%,
      rgba(3,4,9,.02) 35%,
      rgba(3,4,9,.05) 70%,
      rgba(3,4,9,.42) 100%) !important;
}

.hero.hero--studio::before,
.hero.hero--studio::after {
  content: none !important;
  display: none !important;
}

.hero.hero--studio .hero-copy--studio,
.hero.hero--studio .hero-benefits--reference {
  position: relative !important;
  z-index: 2 !important;
  min-width: 0 !important;
}

/* DESKTOP — accepted reference composition */
@media (min-width: 1200px) {
  .hero.hero--studio {
    grid-template-columns: minmax(470px, 39%) minmax(0, 61%) !important;
    grid-template-rows: 1fr auto !important;
    align-items: center !important;
    column-gap: 0 !important;
    padding: clamp(30px, 4vh, 54px) clamp(34px, 3.2vw, 62px) clamp(24px, 3vh, 38px) !important;
  }

  .hero.hero--studio .hero-copy--studio {
    grid-column: 1 !important;
    grid-row: 1 !important;
    align-self: center !important;
    width: min(100%, 570px) !important;
    max-width: 570px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .hero.hero--studio .eyebrow {
    display: inline-flex !important;
    min-height: 30px !important;
    margin: 0 0 18px !important;
    padding: 0 14px !important;
    font-size: 10px !important;
  }

  .hero.hero--studio h1 {
    max-width: 9.5ch !important;
    margin: 0 0 22px !important;
    font-size: clamp(50px, 4.55vw, 74px) !important;
    line-height: .96 !important;
    letter-spacing: -.062em !important;
  }

  .hero.hero--studio .hero-lead {
    max-width: 530px !important;
    margin: 0 !important;
    font-size: clamp(16px, 1.28vw, 20px) !important;
    line-height: 1.58 !important;
  }

  .hero.hero--studio .hero-capabilities {
    width: min(100%, 560px) !important;
    max-width: 560px !important;
    margin: 26px 0 0 !important;
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .hero.hero--studio .hero-capabilities > span {
    min-width: 0 !important;
    min-height: 58px !important;
    padding: 8px 7px !important;
    grid-template-columns: 20px minmax(0, 1fr) !important;
    gap: 6px !important;
    border-radius: 10px !important;
    background: rgba(8,10,18,.55) !important;
    backdrop-filter: blur(8px) !important;
  }

  .hero.hero--studio .hero-capabilities svg {
    width: 20px !important;
    height: 20px !important;
  }

  .hero.hero--studio .hero-capabilities strong {
    font-size: 10px !important;
    line-height: 1.12 !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .hero.hero--studio .hero-actions {
    margin: 20px 0 0 !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
  }

  .hero.hero--studio .hero-actions .button {
    min-height: 48px !important;
    padding: 0 24px !important;
    white-space: nowrap !important;
  }

  .hero.hero--studio .hero-benefits--reference {
    grid-column: 1 !important;
    grid-row: 2 !important;
    width: min(100%, 650px) !important;
    max-width: 650px !important;
    margin: 22px 0 0 !important;
    padding: 18px 0 0 !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 13px !important;
    border-top: 1px solid rgba(142,92,238,.20) !important;
  }

  .hero.hero--studio .hero-benefits--reference article {
    min-width: 0 !important;
    display: grid !important;
    grid-template-columns: 30px minmax(0,1fr) !important;
    gap: 8px !important;
    padding: 0 !important;
  }

  .hero.hero--studio .hero-benefits--reference strong {
    font-size: 13px !important;
    line-height: 1.15 !important;
  }

  .hero.hero--studio .hero-benefits--reference small {
    font-size: 10px !important;
    line-height: 1.28 !important;
  }
}

/* TABLET / SMALL LAPTOP — same composition, smoothly scaled */
@media (min-width: 800px) and (max-width: 1199px) {
  .hero.hero--studio {
    grid-template-columns: minmax(390px, 46%) minmax(0, 54%) !important;
    grid-template-rows: 1fr auto !important;
    align-items: center !important;
    padding: 28px 28px 26px !important;
  }

  .hero.hero--studio .hero-studio-image img {
    object-position: 60% center !important;
    filter: saturate(1.02) brightness(.88) contrast(1.02) !important;
  }

  .hero.hero--studio .hero-studio-overlay {
    background:
      linear-gradient(90deg,
        rgba(3,4,9,.98) 0%,
        rgba(3,4,9,.96) 24%,
        rgba(3,4,9,.88) 36%,
        rgba(3,4,9,.58) 47%,
        rgba(3,4,9,.20) 58%,
        rgba(3,4,9,.06) 75%,
        rgba(3,4,9,.14) 100%),
      linear-gradient(180deg, rgba(3,4,9,.18), rgba(3,4,9,.36)) !important;
  }

  .hero.hero--studio .hero-copy--studio {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: min(100%, 500px) !important;
    max-width: 500px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .hero.hero--studio .eyebrow {
    margin-bottom: 14px !important;
  }

  .hero.hero--studio h1 {
    max-width: 9.5ch !important;
    margin: 0 0 18px !important;
    font-size: clamp(42px, 5.2vw, 60px) !important;
    line-height: .97 !important;
  }

  .hero.hero--studio .hero-lead {
    max-width: 470px !important;
    font-size: clamp(15px, 1.65vw, 18px) !important;
    line-height: 1.55 !important;
  }

  .hero.hero--studio .hero-capabilities {
    width: min(100%, 500px) !important;
    max-width: 500px !important;
    margin-top: 20px !important;
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 6px !important;
  }

  .hero.hero--studio .hero-capabilities > span {
    min-width: 0 !important;
    min-height: 54px !important;
    padding: 7px 5px !important;
    grid-template-columns: 17px minmax(0, 1fr) !important;
    gap: 4px !important;
  }

  .hero.hero--studio .hero-capabilities svg {
    width: 17px !important;
    height: 17px !important;
  }

  .hero.hero--studio .hero-capabilities strong {
    font-size: 8.8px !important;
    line-height: 1.1 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  .hero.hero--studio .hero-actions {
    margin-top: 17px !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
  }

  .hero.hero--studio .hero-actions .button {
    min-height: 45px !important;
    padding: 0 18px !important;
    font-size: 14px !important;
    white-space: nowrap !important;
  }

  .hero.hero--studio .hero-benefits--reference {
    grid-column: 1 !important;
    grid-row: 2 !important;
    width: min(100%, 500px) !important;
    max-width: 500px !important;
    margin: 18px 0 0 !important;
    padding-top: 16px !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    gap: 14px 18px !important;
    border-top: 1px solid rgba(142,92,238,.20) !important;
  }

  .hero.hero--studio .hero-benefits--reference article {
    min-width: 0 !important;
  }
}

/* MOBILE — intentional vertical composition, no overlap */
@media (max-width: 799px) {
  .hero.hero--studio {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto !important;
    min-height: auto !important;
    padding: 28px 18px 28px !important;
    row-gap: 22px !important;
  }

  .hero.hero--studio .hero-studio-image {
    position: relative !important;
    inset: auto !important;
    z-index: 0 !important;
    grid-column: 1 !important;
    grid-row: 2 !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 10 !important;
    border-radius: 16px !important;
    border: 1px solid rgba(111,74,195,.42) !important;
  }

  .hero.hero--studio .hero-studio-image img {
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    filter: saturate(1) brightness(.92) !important;
  }

  .hero.hero--studio .hero-studio-overlay {
    position: absolute !important;
    inset: 0 !important;
    z-index: -2 !important;
    background: linear-gradient(180deg, rgba(3,4,9,.12), rgba(3,4,9,.32)) !important;
  }

  .hero.hero--studio .hero-copy--studio {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .hero.hero--studio .eyebrow {
    margin-bottom: 14px !important;
  }

  .hero.hero--studio h1 {
    max-width: 10ch !important;
    margin: 0 0 18px !important;
    font-size: clamp(38px, 11vw, 56px) !important;
    line-height: .98 !important;
  }

  .hero.hero--studio .hero-lead {
    max-width: 620px !important;
    font-size: 16px !important;
    line-height: 1.55 !important;
  }

  .hero.hero--studio .hero-capabilities {
    width: 100% !important;
    max-width: none !important;
    margin-top: 20px !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    gap: 8px !important;
  }

  .hero.hero--studio .hero-capabilities > span {
    min-width: 0 !important;
    min-height: 52px !important;
    padding: 8px 10px !important;
    grid-template-columns: 22px minmax(0,1fr) !important;
    gap: 8px !important;
  }

  .hero.hero--studio .hero-capabilities strong {
    font-size: 10px !important;
    line-height: 1.12 !important;
  }

  .hero.hero--studio .hero-actions {
    margin-top: 18px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .hero.hero--studio .hero-actions .button {
    width: 100% !important;
    min-height: 48px !important;
  }

  .hero.hero--studio .hero-benefits--reference {
    grid-column: 1 !important;
    grid-row: 3 !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding-top: 18px !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    gap: 14px !important;
    border-top: 1px solid rgba(142,92,238,.20) !important;
  }
}

@media (max-width: 480px) {
  .hero.hero--studio {
    padding-inline: 14px !important;
  }

  .hero.hero--studio .hero-capabilities,
  .hero.hero--studio .hero-benefits--reference {
    grid-template-columns: 1fr !important;
  }
}


/* ==========================================================
   V26 — clean hero using the exact full reference image
   The image is NEVER cropped on the left. It is scaled down
   proportionally and shifted right, so the full neon remains
   visible beside the copy instead of underneath it.
   ========================================================== */
.hero.hero--studio {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
  width: min(100%, 1672px) !important;
  min-height: 0 !important;
  aspect-ratio: 1672 / 941 !important;
  margin: 0 auto !important;
  padding: clamp(30px, 3.8vw, 62px) clamp(34px, 3.8vw, 64px) clamp(22px, 2.4vw, 38px) !important;
  display: grid !important;
  grid-template-columns: minmax(430px, 39%) minmax(0, 61%) !important;
  grid-template-rows: 1fr auto !important;
  align-items: center !important;
  background: #030409 !important;
}

.hero.hero--studio .hero-studio-image {
  position: absolute !important;
  inset: 0 !important;
  z-index: -3 !important;
  display: flex !important;
  align-items: stretch !important;
  justify-content: flex-end !important;
  overflow: hidden !important;
  transform: none !important;
}

.hero.hero--studio .hero-studio-image img {
  display: block !important;
  width: 92% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: translateX(0) !important;
  opacity: 1 !important;
  filter: saturate(1.03) brightness(.94) contrast(1.02) !important;
}

.hero.hero--studio .hero-studio-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: -2 !important;
  pointer-events: none !important;
  background:
    linear-gradient(90deg,
      rgba(3,4,9,.99) 0%,
      rgba(3,4,9,.98) 17%,
      rgba(3,4,9,.94) 25%,
      rgba(3,4,9,.77) 32%,
      rgba(3,4,9,.36) 38%,
      rgba(3,4,9,.10) 45%,
      rgba(3,4,9,.02) 56%,
      rgba(3,4,9,.02) 82%,
      rgba(3,4,9,.10) 100%),
    linear-gradient(180deg,
      rgba(3,4,9,.10) 0%,
      rgba(3,4,9,.00) 48%,
      rgba(3,4,9,.20) 78%,
      rgba(3,4,9,.48) 100%) !important;
}

.hero.hero--studio::before,
.hero.hero--studio::after {
  content: none !important;
  display: none !important;
}

.hero.hero--studio .hero-copy--studio {
  position: relative !important;
  z-index: 2 !important;
  grid-column: 1 !important;
  grid-row: 1 !important;
  width: min(100%, 565px) !important;
  max-width: 565px !important;
  margin: 0 !important;
  padding: 0 !important;
  align-self: center !important;
}

.hero.hero--studio .eyebrow {
  margin: 0 0 18px !important;
}

.hero.hero--studio h1 {
  max-width: 9.6ch !important;
  margin: 0 0 20px !important;
  font-size: clamp(48px, 4.65vw, 74px) !important;
  line-height: .965 !important;
  letter-spacing: -.06em !important;
}

.hero.hero--studio .hero-lead {
  max-width: 535px !important;
  margin: 0 !important;
  font-size: clamp(16px, 1.25vw, 20px) !important;
  line-height: 1.55 !important;
}

.hero.hero--studio .hero-capabilities {
  width: min(100%, 560px) !important;
  max-width: 560px !important;
  margin: 24px 0 0 !important;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0,1fr)) !important;
  gap: 8px !important;
}

.hero.hero--studio .hero-capabilities > span {
  min-width: 0 !important;
  min-height: 58px !important;
  padding: 8px 7px !important;
  grid-template-columns: 20px minmax(0,1fr) !important;
  gap: 6px !important;
}

.hero.hero--studio .hero-capabilities strong {
  font-size: 10px !important;
  line-height: 1.12 !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}

.hero.hero--studio .hero-actions {
  margin: 20px 0 0 !important;
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 12px !important;
}

.hero.hero--studio .hero-benefits--reference {
  position: relative !important;
  z-index: 2 !important;
  grid-column: 1 !important;
  grid-row: 2 !important;
  width: min(100%, 650px) !important;
  max-width: 650px !important;
  margin: 20px 0 0 !important;
  padding: 17px 0 0 !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0,1fr)) !important;
  gap: 13px !important;
  border-top: 1px solid rgba(142,92,238,.20) !important;
}

@media (min-width: 1200px) and (max-width: 1450px) {
  .hero.hero--studio {
    grid-template-columns: minmax(420px, 41%) minmax(0, 59%) !important;
    padding-inline: 34px !important;
  }

  .hero.hero--studio .hero-studio-image img {
    width: 90% !important;
  }

  .hero.hero--studio h1 {
    font-size: clamp(44px, 4.35vw, 64px) !important;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .hero.hero--studio {
    width: 100% !important;
    aspect-ratio: auto !important;
    min-height: 760px !important;
    grid-template-columns: minmax(390px, 45%) minmax(0, 55%) !important;
    padding: 30px 28px 26px !important;
  }

  .hero.hero--studio .hero-studio-image img {
    width: 86% !important;
    object-fit: contain !important;
  }

  .hero.hero--studio .hero-studio-overlay {
    background:
      linear-gradient(90deg,
        rgba(3,4,9,.99) 0%,
        rgba(3,4,9,.98) 24%,
        rgba(3,4,9,.91) 34%,
        rgba(3,4,9,.68) 43%,
        rgba(3,4,9,.28) 51%,
        rgba(3,4,9,.08) 62%,
        rgba(3,4,9,.03) 100%),
      linear-gradient(180deg, rgba(3,4,9,.12), rgba(3,4,9,.36)) !important;
  }

  .hero.hero--studio h1 {
    font-size: clamp(40px, 5.1vw, 58px) !important;
  }

  .hero.hero--studio .hero-capabilities {
    grid-template-columns: repeat(5, minmax(0,1fr)) !important;
    gap: 6px !important;
  }

  .hero.hero--studio .hero-capabilities strong {
    font-size: 8.8px !important;
  }

  .hero.hero--studio .hero-benefits--reference {
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    max-width: 500px !important;
  }
}

@media (max-width: 899px) {
  .hero.hero--studio {
    width: 100% !important;
    aspect-ratio: auto !important;
    min-height: auto !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto !important;
    row-gap: 22px !important;
    padding: 28px 18px 26px !important;
  }

  .hero.hero--studio .hero-copy--studio {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 100% !important;
    max-width: none !important;
  }

  .hero.hero--studio .hero-studio-image {
    position: relative !important;
    inset: auto !important;
    z-index: 0 !important;
    grid-column: 1 !important;
    grid-row: 2 !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1672 / 941 !important;
    border-radius: 14px !important;
    border: 1px solid rgba(111,74,195,.35) !important;
    background: #030409 !important;
  }

  .hero.hero--studio .hero-studio-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    filter: saturate(1.02) brightness(.96) !important;
  }

  .hero.hero--studio .hero-studio-overlay {
    display: none !important;
  }

  .hero.hero--studio h1 {
    max-width: 10ch !important;
    font-size: clamp(38px, 10vw, 56px) !important;
  }

  .hero.hero--studio .hero-capabilities {
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    max-width: none !important;
  }

  .hero.hero--studio .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .hero.hero--studio .hero-actions .button {
    width: 100% !important;
  }

  .hero.hero--studio .hero-benefits--reference {
    grid-column: 1 !important;
    grid-row: 3 !important;
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }
}

@media (max-width: 520px) {
  .hero.hero--studio .hero-capabilities,
  .hero.hero--studio .hero-benefits--reference {
    grid-template-columns: 1fr !important;
  }
}

/* =========================================================
   V27 — CLEAN HERO LAYOUT
   One authoritative responsive system. This block deliberately
   overrides all older hero experiments without changing the rest
   of the website.
   ========================================================= */

.hero.hero--studio {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-height: clamp(650px, 51vw, 820px) !important;
  height: auto !important;
  margin: 0 !important;
  padding: clamp(52px, 4vw, 76px) clamp(34px, 3.2vw, 62px) 36px !important;
  overflow: hidden !important;
  isolation: isolate !important;
  background: #03040a !important;
  box-sizing: border-box !important;
}

.hero.hero--studio .hero-studio-image {
  position: absolute !important;
  z-index: 0 !important;
  top: 0 !important;
  right: 0 !important;
  bottom: auto !important;
  left: auto !important;
  width: min(72vw, 1180px) !important;
  height: auto !important;
  max-width: none !important;
  transform: none !important;
  overflow: visible !important;
  pointer-events: none !important;
}

.hero.hero--studio .hero-studio-image img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: none !important;
  opacity: 1 !important;
  filter: brightness(.76) saturate(.94) contrast(1.03) !important;
}

/* Darken the text area smoothly. No hard vertical cut. */
.hero.hero--studio .hero-studio-overlay {
  position: absolute !important;
  z-index: 1 !important;
  inset: 0 !important;
  pointer-events: none !important;
  background:
    linear-gradient(90deg,
      rgba(3,4,10,1) 0%,
      rgba(3,4,10,.99) 24%,
      rgba(3,4,10,.94) 34%,
      rgba(3,4,10,.68) 43%,
      rgba(3,4,10,.20) 55%,
      rgba(3,4,10,0) 66%),
    linear-gradient(180deg,
      rgba(3,4,10,.08) 0%,
      rgba(3,4,10,0) 58%,
      rgba(3,4,10,.86) 100%) !important;
}

.hero.hero--studio::before,
.hero.hero--studio::after {
  content: none !important;
  display: none !important;
}

.hero.hero--studio .hero-copy--studio {
  position: relative !important;
  z-index: 3 !important;
  width: min(39%, 590px) !important;
  max-width: 590px !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
}

.hero.hero--studio .eyebrow {
  margin: 0 0 28px !important;
}

.hero.hero--studio h1 {
  width: 100% !important;
  max-width: 590px !important;
  margin: 0 0 26px !important;
  font-size: clamp(48px, 4.45vw, 72px) !important;
  line-height: .98 !important;
  letter-spacing: -.055em !important;
  text-wrap: balance !important;
}

.hero.hero--studio .hero-lead {
  max-width: 560px !important;
  margin: 0 0 24px !important;
  font-size: clamp(17px, 1.25vw, 21px) !important;
  line-height: 1.55 !important;
}

.hero.hero--studio .hero-capabilities {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  width: 100% !important;
  gap: 8px !important;
  margin: 0 0 24px !important;
}

.hero.hero--studio .hero-capabilities > span {
  min-width: 0 !important;
  padding: 9px 6px !important;
}

.hero.hero--studio .hero-capabilities strong {
  font-size: 11px !important;
  line-height: 1.08 !important;
  overflow-wrap: anywhere !important;
}

.hero.hero--studio .hero-actions {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 14px !important;
  margin: 0 !important;
}

.hero.hero--studio .hero-actions .button {
  min-width: 0 !important;
  white-space: nowrap !important;
}

.hero.hero--studio .hero-benefits--reference {
  position: absolute !important;
  z-index: 3 !important;
  left: clamp(34px, 3.2vw, 62px) !important;
  bottom: 34px !important;
  width: min(39%, 590px) !important;
  max-width: 590px !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 14px !important;
  margin: 0 !important;
  padding: 22px 0 0 !important;
  border-top: 1px solid rgba(150, 83, 255, .25) !important;
  transform: none !important;
}

.hero.hero--studio .hero-benefits--reference article {
  min-width: 0 !important;
  gap: 8px !important;
  align-items: flex-start !important;
}

.hero.hero--studio .hero-benefits--reference strong {
  font-size: 13px !important;
  line-height: 1.13 !important;
}

.hero.hero--studio .hero-benefits--reference small {
  font-size: 10px !important;
  line-height: 1.25 !important;
}

/* Compact desktop / large tablet: still two columns, but never clip the title. */
@media (max-width: 1180px) and (min-width: 901px) {
  .hero.hero--studio {
    min-height: 700px !important;
    padding: 46px 34px 30px !important;
  }
  .hero.hero--studio .hero-studio-image {
    width: 68vw !important;
    top: 56px !important;
  }
  .hero.hero--studio .hero-copy--studio {
    width: 43% !important;
  }
  .hero.hero--studio h1 {
    font-size: clamp(43px, 5.2vw, 58px) !important;
  }
  .hero.hero--studio .hero-lead {
    font-size: 16px !important;
  }
  .hero.hero--studio .hero-benefits--reference {
    left: 34px !important;
    width: 43% !important;
    bottom: 28px !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    row-gap: 14px !important;
  }
}

/* Tablet and mobile: normal document flow. Nothing is absolutely cropped. */
@media (max-width: 900px) {
  .hero.hero--studio {
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
    padding: 38px 26px 0 !important;
    overflow: hidden !important;
  }

  .hero.hero--studio .hero-copy--studio {
    order: 1 !important;
    width: 100% !important;
    max-width: 680px !important;
  }

  .hero.hero--studio h1 {
    max-width: 650px !important;
    font-size: clamp(42px, 8.2vw, 62px) !important;
    line-height: 1 !important;
  }

  .hero.hero--studio .hero-capabilities {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    max-width: 620px !important;
  }

  .hero.hero--studio .hero-actions {
    flex-wrap: wrap !important;
  }

  .hero.hero--studio .hero-studio-image {
    order: 2 !important;
    position: relative !important;
    top: auto !important;
    right: auto !important;
    width: calc(100% + 52px) !important;
    margin: 28px -26px 0 !important;
  }

  .hero.hero--studio .hero-studio-image img {
    width: 100% !important;
    filter: brightness(.84) saturate(.95) !important;
  }

  .hero.hero--studio .hero-studio-overlay {
    display: none !important;
  }

  .hero.hero--studio .hero-benefits--reference {
    order: 3 !important;
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    width: calc(100% + 52px) !important;
    max-width: none !important;
    margin: 0 -26px !important;
    padding: 24px 26px 30px !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    background: linear-gradient(180deg, rgba(3,4,10,.35), #03040a 38%) !important;
  }
}

@media (max-width: 560px) {
  .hero.hero--studio {
    padding: 30px 18px 0 !important;
  }
  .hero.hero--studio h1 {
    font-size: clamp(38px, 12vw, 52px) !important;
  }
  .hero.hero--studio .hero-capabilities {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .hero.hero--studio .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
  .hero.hero--studio .hero-actions .button {
    width: 100% !important;
  }
  .hero.hero--studio .hero-studio-image {
    width: calc(100% + 36px) !important;
    margin-left: -18px !important;
    margin-right: -18px !important;
  }
  .hero.hero--studio .hero-benefits--reference {
    width: calc(100% + 36px) !important;
    margin-left: -18px !important;
    margin-right: -18px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}

/* =========================================================
   V28 — focused hero corrections
   1. Keep every capability label inside its frame.
   2. Move the four product highlights closer to the buttons.
   No image, headline or downstream section geometry changes.
   ========================================================= */

@media (min-width: 1200px) {
  .hero.hero--studio .hero-capabilities {
    width: min(100%, 570px) !important;
    max-width: 570px !important;
    gap: 7px !important;
  }

  .hero.hero--studio .hero-capabilities > span {
    grid-template-columns: 18px minmax(0, 1fr) !important;
    column-gap: 5px !important;
    padding: 8px 5px !important;
    overflow: hidden !important;
  }

  .hero.hero--studio .hero-capabilities svg {
    width: 18px !important;
    height: 18px !important;
  }

  .hero.hero--studio .hero-capabilities strong {
    min-width: 0 !important;
    max-width: 100% !important;
    font-size: 9.4px !important;
    line-height: 1.08 !important;
    letter-spacing: -0.02em !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .hero.hero--studio .hero-capabilities > span:nth-child(4) strong {
    font-size: 9.1px !important;
    letter-spacing: -0.035em !important;
  }

  .hero.hero--studio .hero-benefits--reference {
    bottom: 86px !important;
    padding-top: 16px !important;
  }
}

@media (min-width: 901px) and (max-width: 1199px) {
  .hero.hero--studio .hero-capabilities > span {
    grid-template-columns: 16px minmax(0, 1fr) !important;
    column-gap: 4px !important;
    padding-left: 4px !important;
    padding-right: 4px !important;
    overflow: hidden !important;
  }

  .hero.hero--studio .hero-capabilities strong {
    font-size: 8.5px !important;
    letter-spacing: -0.025em !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .hero.hero--studio .hero-capabilities > span:nth-child(4) strong {
    font-size: 8.2px !important;
    letter-spacing: -0.04em !important;
  }

  .hero.hero--studio .hero-benefits--reference {
    bottom: 66px !important;
  }
}

/* =========================================================
   V29 — FLUID HERO LAYOUT
   The desktop composition is kept as one stable layout.
   No absolute positioning for copy/highlights, no fixed hero height.
   Only the photograph is layered behind the normal document flow.
   ========================================================= */

.hero.hero--studio {
  position: relative !important;
  isolation: isolate !important;
  display: grid !important;
  grid-template-columns: minmax(420px, 38%) minmax(0, 62%) !important;
  grid-template-rows: auto !important;
  align-items: start !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 0 !important;
  height: auto !important;
  aspect-ratio: auto !important;
  margin: 0 !important;
  padding: clamp(36px, 3.4vw, 58px) clamp(32px, 3.2vw, 62px) clamp(30px, 2.8vw, 48px) !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  background: #03040a !important;
}

.hero.hero--studio .hero-studio-image {
  position: absolute !important;
  z-index: -2 !important;
  inset: 0 0 0 auto !important;
  width: 74% !important;
  height: 100% !important;
  margin: 0 !important;
  overflow: hidden !important;
  display: block !important;
  pointer-events: none !important;
}

.hero.hero--studio .hero-studio-image img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: right center !important;
  transform: none !important;
  filter: brightness(.82) saturate(.96) contrast(1.02) !important;
}

.hero.hero--studio .hero-studio-overlay {
  position: absolute !important;
  z-index: -1 !important;
  inset: 0 !important;
  display: block !important;
  pointer-events: none !important;
  background:
    linear-gradient(90deg,
      #03040a 0%,
      rgba(3,4,10,.995) 24%,
      rgba(3,4,10,.94) 31%,
      rgba(3,4,10,.72) 38%,
      rgba(3,4,10,.34) 45%,
      rgba(3,4,10,.08) 54%,
      rgba(3,4,10,0) 65%),
    linear-gradient(180deg,
      rgba(3,4,10,.08) 0%,
      rgba(3,4,10,0) 58%,
      rgba(3,4,10,.52) 100%) !important;
}

.hero.hero--studio .hero-copy--studio {
  position: relative !important;
  z-index: 2 !important;
  grid-column: 1 !important;
  grid-row: 1 !important;
  width: 100% !important;
  max-width: 590px !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
}

.hero.hero--studio .eyebrow { margin: 0 0 20px !important; }

.hero.hero--studio h1 {
  width: 100% !important;
  max-width: 590px !important;
  margin: 0 0 22px !important;
  font-size: clamp(46px, 4.35vw, 72px) !important;
  line-height: .98 !important;
  letter-spacing: -.055em !important;
  text-wrap: balance !important;
}

.hero.hero--studio .hero-lead {
  max-width: 550px !important;
  margin: 0 0 22px !important;
  font-size: clamp(16px, 1.18vw, 20px) !important;
  line-height: 1.52 !important;
}

.hero.hero--studio .hero-capabilities {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  width: 100% !important;
  max-width: 570px !important;
  margin: 0 0 20px !important;
  gap: 7px !important;
}

.hero.hero--studio .hero-capabilities > span {
  min-width: 0 !important;
  min-height: 58px !important;
  padding: 7px 5px !important;
  display: grid !important;
  grid-template-columns: 18px minmax(0, 1fr) !important;
  align-items: center !important;
  column-gap: 5px !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.hero.hero--studio .hero-capabilities svg {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
}

.hero.hero--studio .hero-capabilities strong {
  min-width: 0 !important;
  max-width: 100% !important;
  font-size: clamp(8.6px, .66vw, 10.4px) !important;
  line-height: 1.08 !important;
  letter-spacing: -.02em !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

.hero.hero--studio .hero-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin: 0 0 18px !important;
}

.hero.hero--studio .hero-actions .button {
  min-width: 0 !important;
  white-space: nowrap !important;
}

.hero.hero--studio .hero-benefits--reference {
  position: relative !important;
  z-index: 2 !important;
  grid-column: 1 !important;
  grid-row: 2 !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  width: 100% !important;
  max-width: 590px !important;
  margin: 0 !important;
  padding: 16px 0 0 !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px !important;
  border-top: 1px solid rgba(150,83,255,.24) !important;
  transform: none !important;
  background: transparent !important;
}

.hero.hero--studio .hero-benefits--reference article {
  min-width: 0 !important;
  gap: 7px !important;
  align-items: flex-start !important;
}

.hero.hero--studio .hero-benefits--reference strong {
  font-size: clamp(11px, .78vw, 13px) !important;
  line-height: 1.12 !important;
}

.hero.hero--studio .hero-benefits--reference small {
  font-size: clamp(8.5px, .62vw, 10px) !important;
  line-height: 1.24 !important;
}

/* Medium desktop: preserve the same composition and simply tighten it. */
@media (min-width: 901px) and (max-width: 1199px) {
  .hero.hero--studio {
    grid-template-columns: minmax(390px, 44%) minmax(0, 56%) !important;
    padding: 34px 28px 30px !important;
  }

  .hero.hero--studio .hero-studio-image {
    width: 67% !important;
  }

  .hero.hero--studio .hero-studio-overlay {
    background:
      linear-gradient(90deg,
        #03040a 0%,
        rgba(3,4,10,.995) 31%,
        rgba(3,4,10,.92) 39%,
        rgba(3,4,10,.66) 47%,
        rgba(3,4,10,.24) 56%,
        rgba(3,4,10,0) 68%),
      linear-gradient(180deg, rgba(3,4,10,.08), rgba(3,4,10,.48)) !important;
  }

  .hero.hero--studio h1 {
    font-size: clamp(42px, 5.15vw, 58px) !important;
  }

  .hero.hero--studio .hero-capabilities {
    gap: 5px !important;
  }

  .hero.hero--studio .hero-capabilities > span {
    grid-template-columns: 16px minmax(0,1fr) !important;
    column-gap: 4px !important;
    padding-inline: 4px !important;
  }

  .hero.hero--studio .hero-capabilities svg {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
  }

  .hero.hero--studio .hero-capabilities strong {
    font-size: 8.2px !important;
  }

  .hero.hero--studio .hero-benefits--reference {
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    max-width: 470px !important;
    row-gap: 11px !important;
  }
}

/* Mobile/tablet: clean stack in normal flow; no clipping and no overlap. */
@media (max-width: 900px) {
  .hero.hero--studio {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 34px 22px 0 !important;
    overflow: hidden !important;
  }

  .hero.hero--studio .hero-copy--studio {
    order: 1 !important;
    width: 100% !important;
    max-width: 680px !important;
  }

  .hero.hero--studio h1 {
    max-width: 650px !important;
    font-size: clamp(40px, 8.8vw, 60px) !important;
    line-height: 1 !important;
  }

  .hero.hero--studio .hero-capabilities {
    grid-template-columns: repeat(3, minmax(0,1fr)) !important;
    max-width: 620px !important;
  }

  .hero.hero--studio .hero-capabilities strong {
    font-size: 9.5px !important;
  }

  .hero.hero--studio .hero-studio-image {
    order: 2 !important;
    position: relative !important;
    inset: auto !important;
    width: calc(100% + 44px) !important;
    height: auto !important;
    margin: 12px -22px 0 !important;
    overflow: hidden !important;
    aspect-ratio: 1664 / 1024 !important;
  }

  .hero.hero--studio .hero-studio-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    filter: brightness(.9) saturate(.98) !important;
  }

  .hero.hero--studio .hero-studio-overlay {
    display: none !important;
  }

  .hero.hero--studio .hero-benefits--reference {
    order: 3 !important;
    width: calc(100% + 44px) !important;
    max-width: none !important;
    margin: 0 -22px !important;
    padding: 20px 22px 28px !important;
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    background: #03040a !important;
  }
}

@media (max-width: 560px) {
  .hero.hero--studio {
    padding: 28px 16px 0 !important;
  }

  .hero.hero--studio h1 {
    font-size: clamp(36px, 12vw, 50px) !important;
  }

  .hero.hero--studio .hero-capabilities {
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
  }

  .hero.hero--studio .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .hero.hero--studio .hero-actions .button {
    width: 100% !important;
  }

  .hero.hero--studio .hero-studio-image {
    width: calc(100% + 32px) !important;
    margin-left: -16px !important;
    margin-right: -16px !important;
  }

  .hero.hero--studio .hero-benefits--reference {
    width: calc(100% + 32px) !important;
    margin-left: -16px !important;
    margin-right: -16px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}


/* =========================================================
   V32 — clean correction based directly on V29
   Only Hero geometry is changed. V29 colours, gradients,
   buttons, capability cards and product highlights remain.
   ========================================================= */

@media (min-width: 901px) {
  .hero.hero--studio {
    position: relative !important;
    isolation: isolate !important;
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: clamp(500px, 37.2vw, 620px) !important;
    min-height: 0 !important;
    max-height: 620px !important;
    margin: 0 !important;
    padding: clamp(18px, 1.8vw, 28px) clamp(32px, 3.2vw, 52px) clamp(20px, 2vw, 32px) !important;
    overflow: hidden !important;
    background: #03040a !important;
  }

  .hero.hero--studio .hero-studio-image {
    position: absolute !important;
    z-index: 0 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: 60% !important;
    height: 100% !important;
    margin: 0 !important;
    display: block !important;
    overflow: hidden !important;
    transform: none !important;
    pointer-events: none !important;
  }

  .hero.hero--studio .hero-studio-image img {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: none !important;
    clip-path: none !important;
    opacity: 1 !important;
    filter: brightness(.82) saturate(.96) contrast(1.02) !important;
  }

  .hero.hero--studio .hero-studio-overlay {
    position: absolute !important;
    z-index: 1 !important;
    inset: 0 !important;
    display: block !important;
    pointer-events: none !important;
    background:
      linear-gradient(90deg,
        #03040a 0%,
        rgba(3,4,10,1) 27%,
        rgba(3,4,10,.97) 34%,
        rgba(3,4,10,.82) 40%,
        rgba(3,4,10,.52) 46%,
        rgba(3,4,10,.18) 53%,
        rgba(3,4,10,.03) 61%,
        rgba(3,4,10,.06) 86%,
        rgba(3,4,10,.22) 100%),
      linear-gradient(180deg,
        rgba(3,4,10,.16) 0%,
        transparent 24%,
        transparent 76%,
        rgba(3,4,10,.64) 100%) !important;
  }

  .hero.hero--studio .hero-copy--studio {
    position: relative !important;
    z-index: 3 !important;
    width: min(37%, 560px) !important;
    max-width: 560px !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
  }

  .hero.hero--studio .eyebrow {
    margin: 0 0 14px !important;
    min-height: 30px !important;
    padding-inline: 14px !important;
    font-size: 10px !important;
  }

  .hero.hero--studio h1 {
    width: 100% !important;
    max-width: 560px !important;
    margin: 0 0 14px !important;
    font-size: clamp(43px, 3.45vw, 54px) !important;
    line-height: 1.015 !important;
    letter-spacing: -.052em !important;
    text-wrap: normal !important;
  }

  .hero.hero--studio .hero-lead {
    max-width: 520px !important;
    margin: 0 0 16px !important;
    font-size: clamp(15px, 1.08vw, 17px) !important;
    line-height: 1.55 !important;
  }

  .hero.hero--studio .hero-capabilities {
    width: min(100%, 560px) !important;
    max-width: 560px !important;
    margin: 0 0 16px !important;
    gap: 7px !important;
  }

  .hero.hero--studio .hero-capabilities > span {
    min-height: 50px !important;
    padding: 6px 5px !important;
  }

  .hero.hero--studio .hero-actions {
    margin: 0 !important;
    gap: 12px !important;
    flex-wrap: nowrap !important;
  }

  .hero.hero--studio .hero-actions .button {
    min-height: 48px !important;
    padding-inline: 22px !important;
    font-size: 14px !important;
  }

  .hero.hero--studio .hero-benefits--reference {
    position: absolute !important;
    z-index: 3 !important;
    left: clamp(32px, 3.2vw, 52px) !important;
    right: auto !important;
    top: auto !important;
    bottom: clamp(20px, 2vw, 32px) !important;
    width: min(37%, 560px) !important;
    max-width: 560px !important;
    margin: 0 !important;
    padding: 15px 0 0 !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0,1fr)) !important;
    gap: 12px !important;
    border-top: 1px solid rgba(150,83,255,.24) !important;
    transform: none !important;
    background: transparent !important;
  }

  .hero.hero--studio .hero-benefits--reference article {
    min-width: 0 !important;
    grid-template-columns: 24px minmax(0,1fr) !important;
    gap: 7px !important;
  }

  .hero.hero--studio .hero-benefits--reference strong {
    font-size: 11px !important;
    line-height: 1.12 !important;
  }

  .hero.hero--studio .hero-benefits--reference small {
    font-size: 8.7px !important;
    line-height: 1.24 !important;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .hero.hero--studio {
    height: clamp(520px, 44vw, 590px) !important;
    padding-inline: 28px !important;
  }

  .hero.hero--studio .hero-copy--studio,
  .hero.hero--studio .hero-benefits--reference {
    width: 43% !important;
    max-width: 500px !important;
  }

  .hero.hero--studio .hero-benefits--reference {
    left: 28px !important;
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    row-gap: 10px !important;
  }

  .hero.hero--studio h1 {
    font-size: clamp(40px, 4.6vw, 50px) !important;
  }

  .hero.hero--studio .hero-studio-image {
    width: 59% !important;
  }
}

@media (max-width: 900px) {
  .hero.hero--studio h1 br {
    display: none !important;
  }
}

/* V32.1 verified desktop fit — retain every V29 element and gradient. */
@media (min-width: 901px) {
  .hero.hero--studio {
    height: clamp(540px, 37.2vw, 590px) !important;
    max-height: 590px !important;
    padding-top: 18px !important;
    padding-bottom: 22px !important;
  }
  .hero.hero--studio .hero-copy--studio {
    width: 40% !important;
    max-width: 600px !important;
  }
  .hero.hero--studio h1 {
    max-width: 600px !important;
    font-size: clamp(42px, 3.1vw, 50px) !important;
    line-height: 1.02 !important;
    margin-bottom: 12px !important;
  }
  .hero.hero--studio .hero-lead {
    max-width: 535px !important;
    margin-bottom: 12px !important;
    font-size: clamp(15px, 1.04vw, 16.5px) !important;
    line-height: 1.5 !important;
  }
  .hero.hero--studio .hero-capabilities {
    max-width: 560px !important;
    margin-bottom: 12px !important;
  }
  .hero.hero--studio .hero-capabilities > span {
    min-height: 46px !important;
  }
  .hero.hero--studio .hero-benefits--reference {
    left: clamp(32px, 3.2vw, 52px) !important;
    bottom: 22px !important;
    width: 40% !important;
    max-width: 600px !important;
  }
}
