:root {
  --cyan: #00cfc1;
  --black: #0d0d0d;
  --graphite: #1a1a1a;
  --white: #ffffff;
  --gray: #888888;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(13, 13, 13, 0.14);
  --header-height: 72px;
  --max-width: 1440px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --display: "Segoe UI", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif;
  --body: "Microsoft YaHei UI", "Microsoft YaHei", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: auto;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

button,
a {
  touch-action: manipulation;
}

::selection {
  color: var(--black);
  background: var(--cyan);
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  color: var(--black);
  background: var(--cyan);
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.shell {
  width: min(calc(100% - 64px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(13, 13, 13, 0.98);
  backdrop-filter: blur(16px);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.site-header.is-solid,
.site-header.force-solid {
  color: var(--white);
  border-color: var(--line-dark);
  background: rgba(13, 13, 13, 0.98);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  width: min(calc(100% - 64px), var(--max-width));
  height: 100%;
  margin-inline: auto;
  grid-template-columns: 240px 1fr 240px;
  align-items: center;
}

.brand {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  justify-self: start;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(26px, 3vw, 54px);
}

.main-nav > a,
.nav-product-trigger {
  position: relative;
  display: grid;
  min-height: 48px;
  place-items: center;
  font-size: 14px;
  font-weight: 500;
}

.main-nav > a::after,
.nav-product-trigger::after {
  position: absolute;
  right: 50%;
  bottom: 4px;
  left: 50%;
  height: 2px;
  background: var(--cyan);
  content: "";
  transition: inset 220ms var(--ease);
}

.main-nav > a:hover::after,
.main-nav > a[aria-current="page"]::after,
.nav-product-trigger:hover::after,
.nav-product-trigger[aria-current="page"]::after,
.nav-product-menu.is-open .nav-product-trigger::after {
  right: 0;
  left: 0;
}

.nav-product-menu {
  position: relative;
  display: flex;
  height: var(--header-height);
  align-items: center;
}

.nav-product-trigger {
  padding: 0;
  cursor: pointer;
  color: inherit;
  border: 0;
  background: transparent;
  grid-template-columns: auto 10px;
  gap: 7px;
}

.nav-product-trigger i {
  width: 6px;
  height: 6px;
  margin-top: -4px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  transition: transform 240ms var(--ease);
}

.nav-product-menu.is-open .nav-product-trigger i,
.nav-product-menu:hover .nav-product-trigger i,
.nav-product-menu:focus-within .nav-product-trigger i {
  margin-top: 3px;
  transform: rotate(225deg);
}

.nav-product-panel {
  position: absolute;
  z-index: 120;
  top: calc(100% - 1px);
  left: 50%;
  width: min(760px, calc(100vw - 64px));
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  color: var(--black);
  border: 1px solid var(--line-light);
  background: var(--white);
  box-shadow: 0 28px 70px rgba(13, 13, 13, 0.22);
  transform: translate(-50%, -10px);
  transform-origin: top center;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    visibility 220ms ease,
    transform 280ms var(--ease);
}

.nav-product-panel::before {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--cyan);
  content: "";
}

.nav-product-menu.is-open .nav-product-panel,
.nav-product-menu:hover .nav-product-panel,
.nav-product-menu:focus-within .nav-product-panel {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.nav-product-panel-head {
  display: flex;
  min-height: 38px;
  padding: 0 4px 12px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-light);
}

.nav-product-panel-head > span {
  color: var(--gray);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.nav-product-panel-head a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
}

.nav-product-panel-head a b,
.nav-product-live-copy em b {
  color: var(--cyan);
  font-weight: 700;
}

.nav-product-live {
  position: relative;
  display: grid;
  min-height: 230px;
  margin-top: 12px;
  padding: 28px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 58%, rgba(0, 207, 193, 0.17), transparent 32%),
    var(--black);
  grid-template-columns: 60px minmax(230px, 0.7fr) minmax(260px, 1.3fr);
  align-items: center;
}

.nav-product-live::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 46%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 18px rgba(0, 207, 193, 0.68);
  content: "";
}

.nav-product-code {
  align-self: start;
  color: var(--cyan);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.nav-product-live-copy {
  position: relative;
  z-index: 2;
}

.nav-product-live-copy small {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.nav-product-live-copy strong {
  display: block;
  margin-top: 8px;
  font-family: var(--display);
  font-size: 29px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.nav-product-live-copy p {
  margin: 10px 0 20px;
  color: var(--gray);
  font-size: 11px;
}

.nav-product-live-copy em {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.nav-product-live img {
  position: relative;
  z-index: 1;
  width: 115%;
  max-width: none;
  margin-left: -6%;
  filter: drop-shadow(0 24px 20px rgba(0, 0, 0, 0.62));
  transition: none;
}

.nav-product-live:hover img {
  transform: none;
}

/* Full-width horizontal product shelf */
.nav-product-panel {
  position: fixed;
  top: var(--header-height);
  right: 0;
  left: 0;
  display: grid;
  width: 100vw;
  padding: 14px max(32px, calc((100vw - 1400px) / 2)) 22px;
  grid-template-columns: minmax(340px, 1.45fr) repeat(4, minmax(150px, 1fr));
  gap: 12px;
  border-right: 0;
  border-left: 0;
  transform: translateY(-12px);
}

.nav-product-menu.is-open .nav-product-panel,
.nav-product-menu:hover .nav-product-panel,
.nav-product-menu:focus-within .nav-product-panel {
  transform: translateY(0);
}

.nav-product-panel-head {
  min-height: 34px;
  padding: 0 4px 10px;
  grid-column: 1 / -1;
}

.nav-product-live {
  min-height: 184px;
  margin-top: 0;
  padding: 22px;
  grid-template-columns: 42px 1fr;
}

.nav-product-live-copy {
  max-width: 210px;
}

.nav-product-live-copy strong {
  font-size: 25px;
}

.nav-product-live-copy p {
  max-width: 150px;
  margin: 8px 0 17px;
}

.nav-product-live img {
  position: absolute;
  z-index: 1;
  right: -22%;
  bottom: -17%;
  width: 84%;
  max-width: none;
  margin: 0;
}

.nav-product-live::after {
  left: 35%;
}

.nav-product-planned {
  display: contents;
}

.nav-product-planned > .future-slot {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 184px;
  padding: 20px;
  overflow: hidden;
  align-content: space-between;
  border: 1px solid var(--line-light);
  background: var(--white);
}

.nav-product-planned > .future-slot::before {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(0, 207, 193, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 207, 193, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 50% 45%, rgba(0, 207, 193, 0.12), transparent 30%);
  background-size: 24px 24px, 24px 24px, auto;
  content: "";
}

.nav-product-planned > .future-slot > * {
  position: relative;
  z-index: 1;
}

.nav-product-planned > .future-slot span {
  color: var(--cyan);
  font-family: var(--display);
  font-weight: 700;
}

.nav-product-planned > .future-slot strong {
  align-self: end;
  font-size: 17px;
  line-height: 1.2;
}

.nav-product-planned > .future-slot small {
  color: var(--gray);
  font-size: 10px;
  line-height: 1.45;
}

.header-cta {
  display: inline-flex;
  min-width: 112px;
  min-height: 44px;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  justify-self: end;
  gap: 10px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease;
}

.site-header.is-solid .header-cta,
.site-header.force-solid .header-cta {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
}

.header-cta:hover {
  color: var(--black);
  border-color: var(--cyan) !important;
  background: var(--cyan);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  cursor: pointer;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 220ms var(--ease);
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.button,
.text-link,
.carousel-dot,
.gallery-thumb,
.studio-tab,
.menu-toggle {
  cursor: pointer;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 220ms var(--ease),
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--black);
  background: var(--cyan);
}

.button-primary:hover {
  background: var(--white);
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.button-outline-light:hover {
  color: var(--black);
  border-color: var(--white);
  background: var(--white);
}

.button-outline-dark {
  color: var(--black);
  border-color: rgba(13, 13, 13, 0.32);
}

.button-outline-dark:hover {
  border-color: var(--cyan);
  background: var(--cyan);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.text-link span {
  transition: transform 220ms var(--ease);
}

.text-link:hover span {
  transform: translateX(5px);
}

.text-link-button {
  appearance: none;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-title {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5.8rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1.05;
}

.section-copy {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--gray);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.section-head {
  display: flex;
  margin-bottom: 64px;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.section-head .section-copy {
  margin: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 800ms var(--ease),
    transform 800ms var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Home: immersive product carousel */
.home-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-slides {
  position: relative;
  height: 100svh;
  min-height: 720px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  opacity: 0;
  pointer-events: none;
  place-items: center;
  overflow: hidden;
  background: var(--black);
  transition: opacity 900ms var(--ease);
}

.hero-slide.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
}

.hero-slide.light-slide {
  color: var(--black);
  background: var(--white);
}

.hero-slide::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 72%, rgba(0, 207, 193, 0.16), transparent 31%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 46%);
  content: "";
}

.light-slide::before {
  background:
    radial-gradient(circle at 65% 65%, rgba(0, 207, 193, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(13, 13, 13, 0.03), transparent 48%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-position: center bottom;
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, transparent 12%, black 68%, transparent);
  transform: perspective(800px) rotateX(61deg) scale(1.8) translateY(28%);
  transform-origin: center bottom;
}

.signal-canvas {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.78;
}

.hero-copy {
  position: absolute;
  z-index: 4;
  top: calc(var(--header-height) + 52px);
  right: 32px;
  left: 32px;
  text-align: center;
}

.hero-copy .eyebrow {
  margin-bottom: 10px;
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1;
}

.hero-copy h1 span {
  font-weight: 300;
}

.hero-tagline {
  margin: 14px 0 22px;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.hero-product {
  position: absolute;
  z-index: 3;
  right: 50%;
  bottom: -18%;
  width: min(82vw, 1480px);
  transform: translate3d(50%, 0, 0);
  transform-origin: center bottom;
  filter: drop-shadow(0 50px 42px rgba(0, 0, 0, 0.55));
  transition:
    transform 1.1s var(--ease),
    opacity 1s var(--ease);
}

.hero-slide:not(.is-active) .hero-product {
  opacity: 0;
  transform: translate3d(50%, 6%, 0) scale(0.94);
}

.hero-product.product-single {
  right: 38%;
  bottom: -20%;
  width: min(88vw, 1560px);
}

.light-slide .hero-product {
  filter: drop-shadow(0 48px 38px rgba(13, 13, 13, 0.22));
}

.hero-spec-cloud {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 7vw;
  display: grid;
  gap: 24px;
  transform: translateY(-20%);
}

.hero-spec-cloud div {
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: baseline;
  gap: 14px;
}

.hero-spec-cloud strong {
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.hero-spec-cloud span {
  color: var(--gray);
  font-size: 12px;
}

.studio-hero-ui {
  position: absolute;
  z-index: 3;
  right: 8vw;
  bottom: -4%;
  left: 8vw;
  height: 60%;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 20px 20px 0 0;
  background: rgba(26, 26, 26, 0.92);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  transform: perspective(1200px) rotateX(8deg);
  transform-origin: center bottom;
}

.studio-hero-ui::before {
  display: block;
  height: 46px;
  border-bottom: 1px solid var(--line-dark);
  background:
    radial-gradient(circle at 22px 50%, var(--cyan) 0 4px, transparent 5px),
    radial-gradient(circle at 42px 50%, var(--gray) 0 4px, transparent 5px),
    radial-gradient(circle at 62px 50%, var(--white) 0 4px, transparent 5px);
  content: "";
}

.studio-ui-body {
  display: grid;
  height: calc(100% - 46px);
  padding: 24px;
  grid-template-columns: 180px 1fr 260px;
  gap: 18px;
}

.studio-ui-panel {
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background: rgba(13, 13, 13, 0.72);
}

.studio-ui-nav {
  padding: 22px 16px;
}

.studio-ui-nav i,
.studio-ui-side i {
  display: block;
  height: 10px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(136, 136, 136, 0.3);
}

.studio-ui-nav i:first-child,
.studio-ui-side i:nth-child(2) {
  width: 74%;
  background: var(--cyan);
}

.studio-ui-chart {
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
}

.studio-ui-chart::after {
  position: absolute;
  right: -5%;
  bottom: 35%;
  left: -5%;
  height: 72px;
  border-top: 3px solid var(--cyan);
  border-radius: 50%;
  content: "";
  transform: rotate(-7deg);
  filter: drop-shadow(0 0 12px rgba(0, 207, 193, 0.8));
}

.studio-ui-side {
  padding: 24px;
}

.carousel-nav {
  position: absolute;
  z-index: 8;
  right: 0;
  bottom: 30px;
  left: 0;
  display: flex;
  width: min(calc(100% - 64px), 1200px);
  margin-inline: auto;
  align-items: end;
  gap: 10px;
}

.carousel-dot {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 58px;
  padding: 0 16px;
  flex: 1;
  align-content: center;
  color: var(--white);
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  background: transparent;
  text-align: left;
}

.carousel-dot span {
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.carousel-dot strong {
  margin-top: 2px;
  font-size: 13px;
}

.carousel-dot::after {
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  content: "";
}

.carousel-dot.is-active::after {
  width: 100%;
  transition: width 7s linear;
}

.carousel-pause {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  cursor: pointer;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(13, 13, 13, 0.28);
}

.carousel-pause::before {
  content: "Ⅱ";
  font-family: var(--display);
  font-size: 11px;
}

.carousel-pause.is-paused::before {
  content: "▶";
}

.brand-strip {
  padding: 34px 0;
  color: var(--white);
  background: var(--graphite);
}

.brand-strip .shell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  text-align: center;
}

.brand-strip strong {
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
}

.brand-strip span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Feature chapters */
.feature-chapter {
  padding: 150px 0;
  overflow: hidden;
  background: var(--white);
}

.feature-showcase {
  display: grid;
  min-height: 680px;
  grid-template-columns: 1.2fr 0.8fr;
  border: 1px solid var(--line-light);
}

.feature-visual {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 48%, rgba(0, 207, 193, 0.22), transparent 35%),
    var(--black);
}

.feature-visual::before {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: radial-gradient(circle, black, transparent 72%);
}

.feature-visual img {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 118%;
  max-width: none;
  transform: translate(-50%, -45%);
  filter: drop-shadow(0 48px 38px rgba(0, 0, 0, 0.55));
  transition: none;
}

.feature-showcase:hover .feature-visual img {
  transform: translate(-50%, -45%);
}

.feature-panel {
  display: flex;
  padding: clamp(42px, 6vw, 86px);
  flex-direction: column;
  justify-content: center;
}

.feature-panel h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 4.8rem);
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.feature-panel > p:not(.eyebrow) {
  margin: 26px 0 36px;
  color: var(--gray);
}

.micro-specs {
  display: grid;
  margin: 0 0 40px;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-light);
}

.micro-specs div {
  padding: 22px 0;
  border-bottom: 1px solid var(--line-light);
}

.micro-specs div:nth-child(odd) {
  padding-right: 18px;
  border-right: 1px solid var(--line-light);
}

.micro-specs div:nth-child(even) {
  padding-left: 18px;
}

.micro-specs strong {
  display: block;
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.micro-specs span {
  color: var(--gray);
  font-size: 12px;
}

.cinema-section {
  position: relative;
  min-height: 92svh;
  padding: 150px 0;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.cinema-image {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -3%;
  width: min(70vw, 1250px);
  transform: translateY(-40%);
  filter: drop-shadow(0 48px 42px rgba(0, 0, 0, 0.62));
}

.cinema-glow {
  position: absolute;
  top: 18%;
  right: 3%;
  width: 62vw;
  height: 62vw;
  max-width: 1000px;
  max-height: 1000px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 207, 193, 0.2), transparent 68%);
}

.cinema-copy {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 68svh;
  max-width: 600px;
  flex-direction: column;
  justify-content: center;
}

.cinema-copy h2 {
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 6.8rem);
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.cinema-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 28px 0 34px;
  color: var(--gray);
}

.spec-band {
  padding: 110px 0;
  background: var(--white);
}

.spec-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.spec-tile {
  min-height: 260px;
  padding: 30px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.spec-tile span {
  color: var(--gray);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.spec-tile strong {
  display: block;
  margin-top: 70px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.spec-tile p {
  margin: 14px 0 0;
  color: var(--gray);
  font-size: 13px;
}

.product-family {
  padding: 150px 0;
  background: var(--white);
}

.family-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 14px;
}

.family-card {
  position: relative;
  min-height: 380px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: var(--white);
  transition:
    transform 300ms var(--ease),
    border-color 300ms ease;
}

.family-card:hover {
  z-index: 2;
  transform: translateY(-8px);
  border-color: var(--cyan);
}

.family-card.is-live {
  min-height: 774px;
  grid-row: span 2;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 65%, rgba(0, 207, 193, 0.22), transparent 36%),
    var(--black);
}

.family-card .family-top {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.family-card .family-code {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.family-card .family-state {
  color: var(--gray);
  font-size: 11px;
}

.family-card h3 {
  position: relative;
  z-index: 3;
  margin: 28px 0 0;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.family-card p {
  position: relative;
  z-index: 3;
  margin: 8px 0 0;
  color: var(--gray);
  font-size: 13px;
}

.family-card.is-live img {
  position: absolute;
  right: -25%;
  bottom: -5%;
  width: 148%;
  max-width: none;
  filter: drop-shadow(0 28px 24px rgba(0, 0, 0, 0.52));
}

.family-silhouette {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  height: 120px;
  opacity: 0.6;
  border: 1px solid var(--line-light);
}

.family-silhouette::before,
.family-silhouette::after {
  position: absolute;
  content: "";
  background: rgba(136, 136, 136, 0.14);
}

.family-silhouette::before {
  inset: 18px;
}

.family-silhouette::after {
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.closing-cta {
  position: relative;
  padding: 150px 0;
  overflow: hidden;
  color: var(--white);
  background: var(--graphite);
}

.closing-cta::after {
  position: absolute;
  top: 50%;
  right: -8%;
  left: 46%;
  height: 100px;
  border-top: 2px solid var(--cyan);
  border-radius: 50%;
  content: "";
  transform: rotate(-8deg);
  filter: drop-shadow(0 0 14px rgba(0, 207, 193, 0.8));
}

.closing-cta .shell {
  position: relative;
  z-index: 2;
}

.closing-cta h2 {
  max-width: 800px;
  margin: 0 0 32px;
  font-size: clamp(2.8rem, 5vw, 5.8rem);
  letter-spacing: -0.06em;
  line-height: 1.02;
}

/* Internal pages */
.page-main {
  padding-top: var(--header-height);
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 68svh;
  padding: 110px 0 90px;
  overflow: hidden;
  place-items: center;
  color: var(--white);
  background: var(--black);
}

.page-hero::after {
  position: absolute;
  right: -18%;
  bottom: 14%;
  width: 70%;
  height: 18%;
  border-top: 2px solid var(--cyan);
  border-radius: 50%;
  content: "";
  transform: rotate(-7deg);
  filter: drop-shadow(0 0 12px rgba(0, 207, 193, 0.7));
}

.page-hero .shell {
  position: relative;
  z-index: 3;
}

.page-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(3.2rem, 6.8vw, 7.8rem);
  letter-spacing: -0.065em;
  line-height: 1;
}

.page-hero p:last-child {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--gray);
  font-size: 1.08rem;
}

.products-hero {
  min-height: 82svh;
}

.products-hero .shell {
  display: grid;
  min-height: 58svh;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 40px;
}

.products-hero-copy {
  position: relative;
  z-index: 3;
}

.products-hero h1 {
  font-size: clamp(3.4rem, 5.6vw, 6.4rem);
}

.products-hero img {
  position: relative;
  z-index: 2;
  width: 138%;
  max-width: none;
  margin: 4% 0 -12% -18%;
  filter: drop-shadow(0 48px 38px rgba(0, 0, 0, 0.58));
}

.products-main {
  padding: 120px 0 160px;
}

.product-feature {
  position: relative;
  min-height: 760px;
  padding: 72px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 65% 56%, rgba(0, 207, 193, 0.2), transparent 34%),
    var(--black);
}

.product-feature-copy {
  position: relative;
  z-index: 4;
  max-width: 540px;
}

.product-feature h2 {
  margin: 12px 0;
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5.8rem);
  letter-spacing: -0.06em;
}

.product-feature-copy > p {
  color: var(--gray);
}

.product-feature .micro-specs {
  margin: 34px 0;
  border-color: var(--line-dark);
}

.product-feature .micro-specs div {
  border-color: var(--line-dark);
}

.product-feature img {
  position: absolute;
  right: -20%;
  bottom: -8%;
  width: 92%;
  max-width: none;
  filter: drop-shadow(0 48px 38px rgba(0, 0, 0, 0.62));
}

.product-list {
  display: grid;
  margin-top: 14px;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.product-placeholder {
  position: relative;
  min-height: 430px;
  padding: 42px;
  overflow: hidden;
  border: 1px solid var(--line-light);
}

.product-placeholder h2 {
  margin: 28px 0 4px;
  font-size: 2.2rem;
}

.product-placeholder p {
  max-width: 380px;
  color: var(--gray);
}

.product-placeholder .family-silhouette {
  height: 150px;
}

.subnav {
  position: sticky;
  z-index: 50;
  top: var(--header-height);
  border-bottom: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
}

.subnav .shell {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 26px;
}

.subnav strong {
  margin-right: auto;
  font-family: var(--display);
}

.subnav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--gray);
  font-size: 13px;
}

.subnav a:hover {
  color: var(--black);
}

.subnav .button-primary {
  color: var(--black);
}

/* Desktop anchor targets align directly beneath both layers of pinned navigation. */
@media (min-width: 861px) {
  .sg-detail-page #specifications {
    scroll-margin-top: calc(var(--header-height) + 58px);
  }

  .support-redesign #product-resources {
    scroll-margin-top: calc(var(--header-height) + 70px);
  }

  .brand-page #company-contact {
    scroll-margin-top: calc(var(--header-height) + 24px);
  }
}

.sg-product-hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 65% 55%, rgba(0, 207, 193, 0.18), transparent 32%),
    var(--black);
}

.sg-product-hero .shell {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: calc(100svh - var(--header-height));
  padding: 100px 0 120px;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
}

.sg-product-copy h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 8rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.sg-product-copy h1 small {
  display: block;
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 0.16em;
  letter-spacing: 0.18em;
}

.sg-product-copy h2 {
  margin: 24px 0 0;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.sg-product-copy > p:not(.eyebrow) {
  max-width: 550px;
  margin: 22px 0 32px;
  color: var(--gray);
}

.sg-product-visual {
  position: relative;
}

.sg-product-visual img {
  width: 138%;
  max-width: none;
  margin-left: -18%;
  filter: drop-shadow(0 48px 38px rgba(0, 0, 0, 0.6));
}

.sg-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(0, 207, 193, 0.34);
  border-radius: 50%;
  transform: translate(-48%, -48%) rotateX(68deg);
  animation: orbit 11s linear infinite;
}

@keyframes orbit {
  to { transform: translate(-48%, -48%) rotateX(68deg) rotateZ(360deg); }
}

.story-block {
  padding: 150px 0;
}

.story-block.dark {
  color: var(--white);
  background: var(--black);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 110px;
  align-items: start;
}

.story-grid.reverse {
  grid-template-columns: 1.28fr 0.72fr;
}

.story-grid.reverse > :first-child {
  order: 2;
}

.story-copy {
  position: sticky;
  top: 170px;
}

.story-copy h2 {
  margin: 0;
  font-size: clamp(2.8rem, 4.6vw, 5.2rem);
  letter-spacing: -0.06em;
  line-height: 1.04;
}

.story-copy p:not(.eyebrow) {
  margin: 26px 0 0;
  color: var(--gray);
}

.mode-cards {
  display: grid;
  gap: 14px;
}

.mode-card {
  position: relative;
  min-height: 360px;
  padding: 40px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: var(--white);
}

.dark .mode-card {
  border-color: var(--line-dark);
  background: var(--graphite);
}

.mode-card span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.mode-card h3 {
  margin: 100px 0 12px;
  font-size: 2rem;
}

.mode-card p {
  max-width: 440px;
  margin: 0;
  color: var(--gray);
}

.mode-card::after {
  position: absolute;
  right: -10%;
  bottom: 12%;
  left: 50%;
  height: 60px;
  border-top: 2px solid var(--cyan);
  border-radius: 50%;
  content: "";
  transform: rotate(-10deg);
}

.gallery-layout {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
}

.gallery-thumbs {
  display: grid;
  align-content: start;
  gap: 10px;
}

.gallery-thumb {
  width: 100%;
  aspect-ratio: 1;
  padding: 4px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: transparent;
}

.gallery-thumb.is-active {
  border-color: var(--cyan);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-main {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background:
    radial-gradient(circle, rgba(0, 207, 193, 0.16), transparent 42%),
    var(--graphite);
}

.gallery-main img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 115%;
  max-width: none;
  transform: translate(-50%, -48%);
  filter: drop-shadow(0 38px 34px rgba(0, 0, 0, 0.56));
  transition:
    opacity 300ms ease,
    transform 500ms var(--ease);
}

.gallery-main.is-changing img {
  opacity: 0;
  transform: translate(-50%, -45%) scale(0.98);
}

.gallery-main.is-document {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 52% 48%, rgba(0, 207, 193, 0.09), transparent 54%),
    var(--black);
  background-size: 40px 40px, 40px 40px, 100% 100%, 100% 100%;
}

.gallery-main.is-document img {
  width: 90%;
  height: 88%;
  opacity: 0.94;
  object-fit: contain;
  transform: translate(-50%, -50%);
  filter: invert(1) hue-rotate(165deg) saturate(1.35) contrast(1.08) brightness(0.92);
  mix-blend-mode: screen;
}

.gallery-main.is-document.is-changing img {
  transform: translate(-50%, -48%) scale(0.985);
}

.gallery-main.is-document::before {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 22px;
  color: var(--cyan);
  content: "ORTHOGRAPHIC / 6-VIEW";
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  pointer-events: none;
}

.gallery-thumb[data-fit="document"] {
  background: var(--black);
}

.gallery-thumb[data-fit="document"] img {
  opacity: 0.92;
  filter: invert(1) hue-rotate(165deg) saturate(1.35) contrast(1.08) brightness(0.92);
  mix-blend-mode: screen;
}

.spec-table {
  border-top: 1px solid var(--line-light);
}

.spec-row {
  display: grid;
  min-height: 82px;
  padding: 16px 0;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line-light);
}

.spec-row span {
  color: var(--gray);
  font-size: 13px;
}

.spec-row strong {
  font-size: 15px;
}

.studio-page-hero {
  min-height: 82svh;
}

.studio-page-hero .shell {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
  align-items: center;
}

.studio-page-hero h1 {
  font-size: clamp(3.2rem, 5.8vw, 7rem);
}

.studio-console {
  min-height: 580px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  background: var(--graphite);
  box-shadow: 0 38px 80px rgba(0, 0, 0, 0.54);
}

.console-bar {
  display: flex;
  height: 46px;
  padding: 0 18px;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line-dark);
}

.console-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray);
}

.console-bar i:first-child {
  background: var(--cyan);
}

.console-body {
  display: grid;
  min-height: 534px;
  grid-template-columns: 150px 1fr;
}

.console-nav {
  padding: 22px 14px;
  border-right: 1px solid var(--line-dark);
}

.studio-tab {
  display: flex;
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  align-items: center;
  color: var(--gray);
  border: 0;
  border-radius: 8px;
  background: transparent;
  font-size: 12px;
  text-align: left;
}

.studio-tab.is-active {
  color: var(--black);
  background: var(--cyan);
}

.console-workspace {
  padding: 24px;
}

.console-readout {
  display: grid;
  margin-bottom: 14px;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.console-readout div {
  padding: 14px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.console-readout span {
  display: block;
  color: var(--gray);
  font-size: 10px;
}

.console-readout strong {
  font-family: var(--display);
  font-size: 1.25rem;
}

.console-chart {
  position: relative;
  height: 350px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}

.console-chart canvas {
  width: 100%;
  height: 100%;
}

.download-list {
  display: grid;
  gap: 12px;
}

.download-row {
  display: grid;
  min-height: 130px;
  padding: 24px;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--line-light);
}

.download-icon {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  color: var(--cyan);
  border: 1px solid var(--cyan);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
}

.download-row h3 {
  margin: 0 0 6px;
}

.download-row p {
  margin: 0;
  color: var(--gray);
  font-size: 13px;
}

.download-row.is-disabled {
  opacity: 0.56;
}

.status-pill {
  padding: 8px 14px;
  color: var(--gray);
  border: 1px solid var(--line-light);
  border-radius: 999px;
  font-size: 11px;
}

.faq-list {
  border-top: 1px solid var(--line-light);
}

.faq-list details {
  border-bottom: 1px solid var(--line-light);
}

.faq-list summary {
  display: flex;
  min-height: 82px;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--cyan);
  font-family: var(--display);
  font-size: 24px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 760px;
  margin: 0;
  padding: 0 0 28px;
  color: var(--gray);
}

.brand-manifesto {
  position: relative;
  min-height: 86svh;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.brand-manifesto .shell {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 86svh;
  padding: 120px 0;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 80px;
  align-items: center;
}

.brand-manifesto img {
  width: 90%;
  opacity: 0.38;
  filter: drop-shadow(0 0 70px rgba(0, 207, 193, 0.3));
}

.brand-manifesto h1 {
  margin: 0;
  font-size: clamp(3.4rem, 6.5vw, 7.5rem);
  letter-spacing: -0.07em;
  line-height: 1;
}

.brand-manifesto p:last-child {
  max-width: 720px;
  color: var(--gray);
  font-size: 1.08rem;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.principle-card {
  min-height: 390px;
  padding: 38px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.principle-card span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
}

.principle-card h3 {
  margin: 120px 0 14px;
  font-size: 1.7rem;
}

.principle-card p {
  color: var(--gray);
}

.company-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
}

.company-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: start;
}

.company-grid dl {
  margin: 0;
  border-top: 1px solid var(--line-dark);
}

.company-grid dl div {
  display: grid;
  min-height: 76px;
  grid-template-columns: 140px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
}

.company-grid dt {
  color: var(--gray);
  font-size: 12px;
}

.company-grid dd {
  margin: 0;
}

.company-grid a {
  color: var(--cyan);
}

.company-wechat {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 12px;
  min-width: 148px;
}

.company-wechat img {
  width: 148px;
  height: 148px;
  object-fit: cover;
  border: 1px solid var(--line-dark);
  background: #fff;
}

.company-wechat figcaption {
  color: var(--gray);
  font-size: 12px;
  letter-spacing: 0.04em;
}

/* Footer */
.site-footer {
  padding: 80px 0 28px;
  color: var(--white);
  background: var(--black);
}

.footer-grid {
  display: grid;
  padding-bottom: 66px;
  grid-template-columns: minmax(260px, 1.35fr) repeat(4, minmax(108px, 0.65fr));
  gap: 32px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-brand .brand {
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 330px;
  margin: 0;
  color: var(--gray);
  font-size: 13px;
}

.footer-column h3 {
  margin: 0 0 18px;
  color: var(--gray);
  font-size: 11px;
  font-weight: 500;
}

.footer-column a,
.footer-column span {
  display: block;
  min-height: 36px;
  font-size: 13px;
}

.footer-column a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  padding-top: 24px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--gray);
  font-size: 11px;
}

.footer-record {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-record:hover,
.footer-record:focus-visible {
  color: var(--cyan);
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: 190px 1fr 160px;
  }

  .main-nav {
    gap: 22px;
  }

  .hero-product {
    width: 110vw;
  }

  .feature-showcase,
  .sg-product-hero .shell,
  .studio-page-hero .shell {
    grid-template-columns: 1fr 1fr;
  }

  .family-grid {
    grid-template-columns: 1fr 1fr;
  }

  .family-card.is-live {
    grid-row: span 2;
  }

  .spec-band-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(2, 0.8fr);
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 64px;
  }

  .shell,
  .header-inner {
    width: min(calc(100% - 36px), 760px);
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    z-index: 80;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    padding: 34px 24px 44px;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    color: var(--white);
    background: rgba(13, 13, 13, 0.98);
    transform: translateY(-16px);
    transition:
      opacity 260ms var(--ease),
      transform 260ms var(--ease),
      visibility 260ms;
  }

  .menu-open .mobile-nav {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-nav a {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line-dark);
    font-size: 1.35rem;
  }

  .mobile-nav a::after {
    color: var(--cyan);
    content: "›";
  }

  .hero-copy {
    top: calc(var(--header-height) + 44px);
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 8vw, 4.6rem);
  }

  .hero-product {
    bottom: -10%;
    width: 140vw;
  }

  .hero-product.product-single {
    right: 50%;
    bottom: -8%;
    width: 155vw;
  }

  .hero-spec-cloud {
    top: 46%;
    left: 24px;
  }

  .hero-spec-cloud div {
    grid-template-columns: 74px 1fr;
  }

  .hero-spec-cloud strong {
    font-size: 1.5rem;
  }

  .studio-hero-ui {
    right: 4vw;
    left: 4vw;
    height: 55%;
  }

  .studio-ui-body {
    grid-template-columns: 120px 1fr;
  }

  .studio-ui-side {
    display: none;
  }

  .carousel-nav {
    width: calc(100% - 36px);
  }

  .carousel-dot {
    min-height: 44px;
    padding: 0 8px;
  }

  .carousel-dot strong {
    display: none;
  }

  .feature-chapter,
  .product-family,
  .story-block {
    padding: 110px 0;
  }

  .feature-showcase {
    grid-template-columns: 1fr;
  }

  .feature-visual {
    min-height: 560px;
  }

  .cinema-image {
    top: 54%;
    right: -28%;
    width: 110vw;
    opacity: 0.72;
  }

  .cinema-copy {
    max-width: 70%;
  }

  .family-grid {
    grid-template-columns: 1fr 1fr;
  }

  .family-card.is-live {
    min-height: 620px;
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .page-hero {
    min-height: 62svh;
  }

  .product-feature {
    min-height: 850px;
    padding: 44px;
  }

  .product-feature img {
    right: -45%;
    bottom: -5%;
    width: 145%;
  }

  .sg-product-hero .shell,
  .studio-page-hero .shell,
  .products-hero .shell,
  .story-grid,
  .story-grid.reverse,
  .brand-manifesto .shell,
  .company-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .company-contact {
    grid-template-columns: 1fr;
    gap: 28px;
    justify-items: start;
  }

  .company-wechat {
    justify-self: start;
  }

  .story-grid.reverse > :first-child {
    order: 0;
  }

  .story-copy {
    position: static;
  }

  .sg-product-hero .shell {
    padding-top: 90px;
  }

  .products-hero {
    min-height: 880px;
  }

  .products-hero img {
    width: 118%;
    margin: -6% 0 -18% -8%;
  }

  .sg-product-visual img {
    width: 120%;
    margin: -8% 0 -16% -10%;
  }

  .studio-page-hero {
    padding-top: 100px;
  }

  .gallery-main {
    min-height: 540px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / 3;
  }

  .brand-manifesto img {
    width: 230px;
    opacity: 0.28;
  }

  .principle-grid {
    grid-template-columns: 1fr;
  }

  .principle-card {
    min-height: 300px;
  }

  .principle-card h3 {
    margin-top: 70px;
  }
}

@media (max-width: 560px) {
  .shell,
  .header-inner {
    width: calc(100% - 28px);
  }

  .brand {
    font-size: 18px;
  }

  .brand img {
    width: 30px;
    height: 30px;
  }

  .hero-slides,
  .hero-slide {
    min-height: 760px;
  }

  .hero-copy {
    right: 16px;
    left: 16px;
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 11vw, 3.7rem);
  }

  .hero-tagline {
    margin: 10px 0 16px;
    font-size: 1rem;
  }

  .hero-actions {
    gap: 8px;
  }

  .button {
    min-height: 44px;
    padding: 0 18px;
    font-size: 12px;
  }

  .hero-product {
    bottom: 0;
    width: 180vw;
  }

  .hero-product.product-single {
    bottom: 2%;
    width: 190vw;
  }

  .hero-spec-cloud {
    top: 40%;
  }

  .hero-spec-cloud div:nth-child(n + 3) {
    display: none;
  }

  .studio-hero-ui {
    right: -22vw;
    bottom: 3%;
    left: 4vw;
    height: 53%;
  }

  .studio-ui-body {
    grid-template-columns: 90px 1fr;
    padding: 12px;
  }

  .carousel-nav {
    bottom: 12px;
    gap: 5px;
  }

  .carousel-dot {
    min-height: 34px;
  }

  .carousel-dot span {
    font-size: 9px;
  }

  .carousel-pause {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .brand-strip .shell {
    flex-direction: column;
    gap: 4px;
  }

  .section-head {
    margin-bottom: 42px;
    align-items: start;
    flex-direction: column;
  }

  .section-title {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .feature-chapter,
  .product-family,
  .story-block,
  .cinema-section {
    padding: 84px 0;
  }

  .feature-visual {
    min-height: 410px;
  }

  .feature-visual img {
    width: 150%;
  }

  .feature-panel {
    padding: 34px 24px 40px;
  }

  .feature-panel h2 {
    font-size: 2.6rem;
  }

  .cinema-section {
    min-height: 780px;
  }

  .cinema-copy {
    min-height: 620px;
    max-width: 92%;
    justify-content: start;
  }

  .cinema-copy h2 {
    font-size: 3.4rem;
  }

  .cinema-image {
    top: auto;
    right: -56%;
    bottom: -5%;
    width: 180vw;
    transform: none;
  }

  .spec-band-grid,
  .family-grid,
  .product-list {
    grid-template-columns: 1fr;
  }

  .family-card.is-live {
    min-height: 560px;
    grid-column: auto;
  }

  .family-card {
    min-height: 320px;
  }

  .page-hero {
    padding: 90px 0 70px;
  }

  .page-hero h1 {
    font-size: 3.4rem;
  }

  .products-hero {
    min-height: 760px;
  }

  .products-hero .shell {
    align-content: center;
    gap: 20px;
  }

  .products-hero h1 {
    font-size: 3.2rem;
  }

  .products-hero img {
    width: 150%;
    margin: -16% 0 -24% -24%;
  }

  .product-feature {
    min-height: 760px;
    padding: 32px 24px;
  }

  .product-feature h2 {
    font-size: 3.2rem;
  }

  .product-feature img {
    right: -68%;
    width: 210%;
  }

  .subnav a:not(.subnav-primary) {
    display: none;
  }

  .sg-product-copy h1 {
    font-size: 4.4rem;
  }

  .gallery-layout {
    grid-template-columns: 1fr;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(4, 1fr);
    order: 2;
  }

  .gallery-main {
    min-height: 430px;
  }

  .mode-card {
    min-height: 310px;
    padding: 28px;
  }

  .mode-card h3 {
    margin-top: 70px;
  }

  .spec-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .studio-page-hero .shell {
    gap: 46px;
  }

  .studio-console {
    min-height: 490px;
  }

  .console-body {
    min-height: 444px;
    grid-template-columns: 1fr;
  }

  .console-nav {
    display: flex;
    padding: 10px;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .studio-tab {
    min-width: 94px;
  }

  .console-workspace {
    padding: 14px;
  }

  .console-chart {
    height: 260px;
  }

  .download-row {
    padding: 22px 18px;
    grid-template-columns: 54px 1fr;
    gap: 16px;
  }

  .download-icon {
    width: 52px;
    height: 52px;
  }

  .download-row .button,
  .download-row .status-pill {
    grid-column: 1 / 3;
    justify-self: start;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    align-items: start;
    flex-direction: column;
  }

  .brand-manifesto h1 {
    font-size: 3.6rem;
  }

  .company-grid dl div {
    padding: 16px 0;
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .signal-canvas {
    display: none;
  }
}

/* =========================================================
   VigorTree Studio + Product Support · 2026-07
   Screenshot-led software story and product-first resources
   ========================================================= */

.studio-redesign,
.support-redesign {
  background: var(--white);
}

.studio-showcase-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 73% 42%, rgba(0, 207, 193, 0.12), transparent 31%),
    var(--black);
}

.studio-showcase-hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent, var(--black) 40%, var(--black));
  content: "";
  pointer-events: none;
}

.studio-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 700px;
  padding: 86px 0 72px;
  grid-template-columns: minmax(340px, 0.68fr) minmax(620px, 1.32fr);
  align-items: center;
  gap: clamp(40px, 5vw, 84px);
}

.studio-hero-copy h1,
.support-hero-copy h1 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(3rem, 4.5vw, 5.4rem);
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.studio-hero-lede {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--gray);
  font-size: 16px;
}

.studio-hero-actions {
  display: flex;
  margin-top: 30px;
  align-items: center;
  gap: 24px;
}

.studio-text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
}

.studio-text-link span {
  color: var(--cyan);
  transition: transform 220ms var(--ease);
}

.studio-text-link:hover span {
  transform: translate(3px, 3px);
}

.studio-hero-facts {
  display: grid;
  margin: 36px 0 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
}

.studio-hero-facts div {
  min-width: 0;
  padding: 16px 16px 0 0;
}

.studio-hero-facts dt {
  color: var(--gray);
  font-size: 10px;
}

.studio-hero-facts dd {
  margin: 2px 0 0;
  font-size: 12px;
  font-weight: 700;
}

.studio-window {
  position: relative;
  margin: 0;
  overflow: hidden;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--graphite);
  box-shadow: 0 42px 96px rgba(0, 0, 0, 0.48);
}

.studio-window-hero {
  transform: perspective(1600px) rotateY(-2deg) rotateX(1deg);
  transform-origin: 50% 50%;
  transition: none;
}

.studio-window-hero:hover {
  transform: perspective(1600px) rotateY(-1.6deg) rotateX(0.8deg);
}

.studio-window-bar {
  display: grid;
  min-height: 42px;
  padding: 0 16px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line-dark);
  background: var(--graphite);
}

.studio-window-bar > strong {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.09em;
}

.studio-window-bar > span:last-child {
  justify-self: end;
  color: var(--gray);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.13em;
}

.studio-window-dots {
  display: flex;
  gap: 6px;
}

.studio-window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gray);
}

.studio-window-dots i:first-child {
  background: var(--cyan);
}

.studio-window-screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--black);
}

.studio-window-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: none;
}

.studio-window:hover .studio-window-screen img {
  transform: none;
}

.studio-scan {
  position: absolute;
  top: -20%;
  right: 0;
  left: 0;
  height: 22%;
  opacity: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 207, 193, 0.13), transparent);
  animation: studio-scan-pass 5.4s ease-in-out 2;
  pointer-events: none;
}

@keyframes studio-scan-pass {
  0%, 26% { opacity: 0; transform: translateY(0); }
  36% { opacity: 1; }
  68% { opacity: 0.68; }
  82%, 100% { opacity: 0; transform: translateY(580%); }
}

.studio-window figcaption {
  display: flex;
  min-height: 54px;
  padding: 0 16px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line-dark);
}

.studio-window figcaption span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 10px;
}

.studio-window figcaption i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(0, 207, 193, 0.86);
}

.studio-window figcaption strong {
  font-size: 11px;
}

.studio-capability-rail {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line-dark);
  background: var(--graphite);
}

.studio-capability-rail .shell {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.studio-capability-rail article {
  min-height: 126px;
  padding: 24px 28px;
  border-left: 1px solid var(--line-dark);
}

.studio-capability-rail article:last-child {
  border-right: 1px solid var(--line-dark);
}

.studio-capability-rail article > span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
}

.studio-capability-rail strong {
  display: block;
  margin-top: 10px;
  font-size: 16px;
}

.studio-capability-rail p {
  margin: 3px 0 0;
  color: var(--gray);
  font-size: 12px;
}

.studio-workflow,
.studio-download-section,
.support-resources,
.support-faq {
  padding: clamp(90px, 9vw, 126px) 0;
}

.studio-section-head,
.support-section-head,
.support-mini-head {
  display: grid;
  margin-bottom: clamp(46px, 5vw, 68px);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  align-items: end;
  gap: clamp(44px, 8vw, 120px);
}

.studio-section-head h2,
.support-section-head h2,
.support-mini-head h2,
.support-faq h2,
.studio-platform-copy h2 {
  margin: 0;
  font-size: clamp(2.45rem, 3.8vw, 4.35rem);
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.studio-section-head > p,
.support-mini-head > p {
  max-width: 580px;
  margin: 0 0 4px;
  color: var(--gray);
  font-size: 15px;
}

.studio-window-feature {
  border-color: var(--black);
  border-radius: 4px;
  box-shadow: 0 32px 90px rgba(13, 13, 13, 0.16);
}

.studio-feature-grid {
  display: grid;
  margin-top: 14px;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.studio-feature-grid article {
  display: grid;
  min-height: 190px;
  padding: 30px;
  grid-template-columns: 54px 1fr;
  align-items: start;
  gap: 18px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition:
    color 240ms ease,
    background 240ms ease;
}

.studio-feature-grid article:hover {
  color: var(--white);
  background: var(--black);
}

.studio-feature-grid h3 {
  margin: 3px 0 8px;
  font-size: 19px;
}

.studio-feature-grid p {
  margin: 0;
  color: var(--gray);
  font-size: 13px;
}

.studio-feature-icon {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  transition: border-color 240ms ease;
}

.studio-feature-grid article:hover .studio-feature-icon {
  border-color: rgba(0, 207, 193, 0.5);
}

.studio-feature-icon i {
  position: absolute;
  display: block;
}

.icon-curve i:first-child {
  top: 28px;
  left: 7px;
  width: 34px;
  height: 14px;
  border-top: 2px solid var(--cyan);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.icon-curve i:nth-child(2),
.icon-curve i:nth-child(3) {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
}

.icon-curve i:nth-child(2) { top: 26px; left: 7px; }
.icon-curve i:nth-child(3) { top: 20px; right: 7px; }

.icon-panel i:first-child {
  inset: 9px;
  border: 1px solid var(--cyan);
}

.icon-panel i:nth-child(2) {
  top: 16px;
  right: 14px;
  left: 14px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 7px 0 rgba(0, 207, 193, 0.65), 0 14px 0 rgba(0, 207, 193, 0.34);
}

.icon-panel i:nth-child(3) {
  top: 12px;
  left: 12px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--cyan);
}

.icon-pulse i:first-child {
  top: 24px;
  right: 7px;
  left: 7px;
  height: 1px;
  background: rgba(0, 207, 193, 0.38);
}

.icon-pulse i:nth-child(2) {
  top: 17px;
  left: 7px;
  width: 34px;
  height: 15px;
  border-bottom: 2px solid var(--cyan);
  transform: skewX(-36deg);
}

.icon-pulse i:nth-child(3) {
  top: 21px;
  left: 22px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  animation: studio-node-pulse 2.2s ease-out 3;
}

@keyframes studio-node-pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 207, 193, 0.6); }
  70%, 100% { box-shadow: 0 0 0 10px rgba(0, 207, 193, 0); }
}

.icon-update i:first-child {
  inset: 10px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  border-left-color: transparent;
}

.icon-update i:nth-child(2) {
  top: 8px;
  right: 7px;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
}

.icon-update i:nth-child(3) {
  top: 19px;
  left: 23px;
  width: 2px;
  height: 12px;
  background: var(--cyan);
  box-shadow: -4px 8px 0 -1px var(--cyan), 4px 8px 0 -1px var(--cyan);
}

.studio-platform {
  padding: clamp(94px, 9vw, 132px) 0;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.studio-platform-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.66fr) minmax(620px, 1.34fr);
  align-items: center;
  gap: clamp(52px, 8vw, 120px);
}

.studio-platform-copy p:not(.eyebrow) {
  max-width: 500px;
  margin: 24px 0 0;
  color: var(--gray);
}

.studio-device-map {
  position: relative;
  display: grid;
  padding: 52px;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
}

.studio-device-map::before {
  position: absolute;
  top: 50%;
  right: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 18px rgba(0, 207, 193, 0.5);
  content: "";
}

.device-map-core,
.device-map-item {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 132px;
  padding: 20px;
  align-content: center;
  border: 1px solid var(--line-dark);
  background: var(--graphite);
}

.device-map-core {
  grid-column: 2;
  grid-row: 1 / span 2;
  text-align: center;
  background: var(--cyan);
  color: var(--black);
}

.device-map-core span {
  font-size: 11px;
}

.device-map-core strong {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: -0.04em;
}

.device-map-core i {
  width: 8px;
  height: 8px;
  margin: 12px auto 0;
  border-radius: 50%;
  background: var(--black);
  box-shadow: 0 0 0 6px rgba(13, 13, 13, 0.14);
}

.device-map-item {
  transition:
    transform 260ms var(--ease),
    border-color 260ms ease;
}

.device-map-item:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
}

.device-map-item > span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
}

.device-map-item strong {
  margin-top: 8px;
  font-size: 15px;
}

.device-map-item small {
  color: var(--gray);
  font-size: 10px;
}

.device-map-item.is-live small {
  color: var(--cyan);
}

.studio-download-board {
  border: 1px solid var(--line-light);
}

.studio-download-primary {
  display: grid;
  min-height: 240px;
  padding: 40px;
  grid-template-columns: 94px 1fr auto;
  align-items: center;
  gap: 34px;
  color: var(--white);
  background: var(--black);
}

.studio-os-mark {
  display: grid;
  width: 82px;
  height: 82px;
  padding: 16px;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border: 1px solid rgba(0, 207, 193, 0.5);
}

.studio-os-mark i {
  background: var(--cyan);
}

.studio-download-primary > div:nth-child(2) > span,
.studio-download-notes article > span,
.support-studio-notice span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.studio-download-primary h3 {
  margin: 8px 0 6px;
  font-size: 30px;
}

.studio-download-primary p {
  max-width: 650px;
  margin: 0;
  color: var(--gray);
  font-size: 13px;
}

.studio-release-status {
  display: grid;
  justify-items: end;
  gap: 8px;
  text-align: right;
}

.studio-release-status .status-pill {
  color: var(--white);
  border-color: var(--line-dark);
}

.studio-release-status small {
  color: var(--gray);
  font-size: 10px;
}

.studio-download-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.studio-download-notes article {
  min-height: 180px;
  padding: 28px 30px;
  border-right: 1px solid var(--line-light);
}

.studio-download-notes article:last-child {
  border-right: 0;
}

.studio-download-notes strong {
  display: block;
  margin-top: 28px;
  font-size: 18px;
}

.studio-download-notes p {
  margin: 8px 0 0;
  color: var(--gray);
  font-size: 12px;
}

.studio-download-notes a {
  display: inline-flex;
  margin-top: 14px;
  gap: 8px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
}

/* Support center */

.support-compact-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.support-compact-hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(90deg, transparent, var(--black) 42%, var(--black));
  content: "";
}

.support-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 520px;
  padding: 74px 0;
  grid-template-columns: minmax(420px, 0.8fr) minmax(620px, 1.2fr);
  align-items: center;
  gap: clamp(60px, 9vw, 140px);
}

.support-hero-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 28px;
  color: var(--gray);
}

.support-file-map {
  position: relative;
  min-height: 360px;
  border: 1px solid var(--line-dark);
  background: rgba(26, 26, 26, 0.72);
}

.support-map-center,
.support-map-file {
  position: absolute;
  z-index: 3;
  display: grid;
  align-content: center;
  border: 1px solid var(--line-dark);
  background: var(--graphite);
}

.support-map-center {
  top: 50%;
  left: 50%;
  width: 190px;
  height: 118px;
  padding: 22px;
  transform: translate(-50%, -50%);
}

.support-map-center > span,
.support-map-file > span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
}

.support-map-center strong {
  font-family: var(--display);
  font-size: 22px;
}

.support-map-center small {
  color: var(--gray);
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.support-map-file {
  width: 170px;
  min-height: 74px;
  padding: 14px 16px;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 8px;
}

.support-map-file > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(0, 207, 193, 0.42);
}

.support-map-file strong,
.support-map-file small {
  display: block;
}

.support-map-file strong {
  font-size: 12px;
}

.studio-release-console {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: var(--white);
  background:
    linear-gradient(rgba(0, 207, 193, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 207, 193, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(0, 207, 193, 0.11), transparent 42%),
    #0b0d0d;
  background-size: 36px 36px, 36px 36px, auto, auto;
}

.studio-release-console-head {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 96px;
  padding: 22px 28px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.22);
}

.studio-release-console-head > div {
  display: grid;
  gap: 6px;
}

.studio-release-console-head span,
.studio-platform-title > span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.studio-release-console-head strong {
  font-family: var(--display);
  font-size: clamp(18px, 1.8vw, 25px);
  letter-spacing: -0.03em;
}

.studio-release-console-head > p {
  display: inline-flex;
  margin: 0;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.studio-release-console-head > p i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 207, 193, 0.9);
}

.studio-platform-downloads {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.studio-platform-download {
  display: grid;
  min-width: 0;
  min-height: 390px;
  padding: 30px;
  grid-template-rows: auto 1fr auto auto;
  gap: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 10, 10, 0.72);
}

.studio-platform-download:last-child {
  border-right: 0;
}

.studio-platform-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(0, 207, 193, 0.42);
  background: rgba(0, 207, 193, 0.055);
}

.studio-platform-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.studio-platform-download.is-windows .studio-platform-icon svg {
  fill: var(--cyan);
  stroke: none;
}

.studio-platform-download.is-macos .studio-platform-icon svg {
  fill: var(--cyan);
  stroke: none;
}

.studio-platform-download.is-linux .studio-platform-icon .linux-beak {
  fill: var(--cyan);
  stroke: var(--cyan);
}

.studio-platform-title h3 {
  margin: 8px 0 8px;
  font-family: var(--display);
  font-size: clamp(26px, 2.3vw, 34px);
  letter-spacing: -0.045em;
}

.studio-platform-title p {
  max-width: 320px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.65;
}

.studio-platform-download dl {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.studio-platform-download dl.is-split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.studio-platform-download dl > div {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
  padding: 14px 10px 14px 0;
}

.studio-platform-download dl > div:not(:first-child) {
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.studio-platform-download dt {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.studio-platform-download dd {
  margin: 0;
  min-width: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.studio-platform-download .studio-download-button {
  width: 100%;
  min-width: 0;
  justify-content: center;
}

.studio-mac-downloads {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.studio-download-variant {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.studio-download-variant-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}

.studio-download-variant-meta > span {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 0;
  color: var(--cyan);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.studio-download-variant-meta > span i {
  color: rgba(255, 255, 255, 0.48);
  font-style: normal;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.studio-download-variant-meta strong {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  min-width: 0;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.studio-download-variant-meta strong small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.studio-download-variant-meta strong b {
  font-weight: 700;
}

.studio-platform-download.is-macos .studio-download-button {
  min-height: 42px;
  padding-inline: 12px;
  font-size: 13px;
}

.studio-platform-download button.studio-download-button {
  appearance: none;
  cursor: pointer;
}

.studio-release-assurances {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.025);
}

.studio-release-assurances > div {
  display: grid;
  min-height: 104px;
  padding: 20px 28px;
  grid-template-columns: 28px 1fr;
  align-content: center;
  column-gap: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.studio-release-assurances > div:last-child {
  border-right: 0;
}

.studio-release-assurances span {
  grid-row: 1 / 3;
  color: var(--cyan);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
}

.studio-release-assurances strong {
  font-size: 13px;
}

.studio-release-assurances p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
}

.support-map-file small {
  color: var(--gray);
  font-size: 9px;
}

.support-map-file.is-ready small {
  color: var(--cyan);
}

.support-map-file:nth-of-type(2) { top: 34px; right: 34px; }
.support-map-file:nth-of-type(3) { right: 34px; bottom: 34px; }
.support-map-file:nth-of-type(4) { bottom: 34px; left: 34px; }

.support-map-line {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 34%;
  height: 1px;
  overflow: hidden;
  background: rgba(0, 207, 193, 0.32);
  transform-origin: left center;
}

.support-map-line::after {
  position: absolute;
  top: 0;
  left: -22%;
  width: 22%;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(0, 207, 193, 0.8);
  content: "";
  animation: support-data-flow 2.8s linear 3;
}

.support-map-line.line-a { transform: rotate(-31deg); }
.support-map-line.line-b { transform: rotate(31deg); }
.support-map-line.line-c { transform: rotate(149deg); }

@keyframes support-data-flow {
  to { left: 116%; }
}

.support-product-index {
  position: sticky;
  z-index: 35;
  top: var(--header-height);
  border-bottom: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
}

.support-product-index .shell {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.support-product-index a,
.support-product-index > .shell > span {
  position: relative;
  display: grid;
  min-height: 88px;
  padding: 16px 22px;
  align-content: center;
  border-left: 1px solid var(--line-light);
}

.support-product-index > .shell > span:last-child {
  border-right: 1px solid var(--line-light);
}

.support-product-index a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--cyan);
  content: "";
}

.support-product-index span > b,
.support-product-index a > span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 9px;
}

.support-product-index strong {
  font-size: 13px;
}

.support-product-index small {
  color: var(--gray);
  font-size: 9px;
}

.support-product-summary {
  display: grid;
  min-height: 150px;
  padding: 16px 22px;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--line-light);
  background: var(--black);
}

.support-product-summary img {
  width: 100%;
  max-height: 118px;
  object-fit: contain;
}

.support-product-summary span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.support-product-summary strong {
  display: block;
  margin: 4px 0 10px;
  color: var(--white);
  font-size: 15px;
}

.support-product-summary a {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
}

.support-studio-index {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 116px;
  padding: 20px 22px;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(90deg, rgba(0, 202, 192, 0.08), transparent 42%),
    var(--black);
}

.support-studio-index::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan));
  content: "";
}

.support-studio-index > img {
  width: 54px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 202, 192, 0.14));
}

.support-studio-index-copy {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.support-studio-index-copy span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.support-studio-index-copy strong {
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(20px, 1.55vw, 27px);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.support-studio-index-copy small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.support-studio-index .button {
  min-width: 122px;
  justify-content: center;
  white-space: nowrap;
}

@media (max-width: 1050px) {
  .studio-platform-download {
    min-height: 360px;
    padding: 24px;
  }

  .studio-release-assurances > div {
    padding-inline: 20px;
  }
}

@media (max-width: 760px) {
  .studio-release-console-head {
    min-height: 0;
    padding: 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .studio-platform-downloads,
  .studio-release-assurances {
    grid-template-columns: minmax(0, 1fr);
  }

  .studio-platform-download {
    min-height: 0;
    padding: 24px 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .studio-mac-downloads {
    gap: 8px;
  }

  .studio-download-variant {
    padding: 10px;
  }

  .studio-platform-download:last-child,
  .studio-release-assurances > div:last-child {
    border-bottom: 0;
  }

  .studio-release-assurances > div {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.support-resource-board {
  border: 1px solid var(--line-light);
}

.support-resource-filter {
  display: flex;
  min-height: 64px;
  padding: 0 22px;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line-light);
  background: var(--white);
}

.support-resource-filter button {
  display: inline-flex;
  min-height: 44px;
  padding: 0;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
}

.support-resource-filter button.is-active {
  color: var(--black);
  font-weight: 700;
}

.support-resource-filter b {
  display: grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 8px;
}

.support-resource-filter .is-active b {
  color: var(--black);
  border-color: var(--cyan);
  background: var(--cyan);
}

.support-resource-row[hidden] {
  display: none;
}

.support-resource-row {
  display: grid;
  min-height: 154px;
  padding: 26px 28px;
  grid-template-columns: 82px 1fr 130px auto;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line-light);
  transition: background 220ms ease;
}

.support-resource-row:last-child {
  border-bottom: 0;
}

.support-resource-row.is-ready:hover {
  background: rgba(0, 207, 193, 0.06);
}

.support-resource-type {
  display: grid;
  width: 72px;
  height: 78px;
  place-items: center;
  align-content: center;
  border: 1px solid var(--line-light);
}

.support-resource-type span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
}

.support-resource-type small {
  color: var(--gray);
  font-family: var(--display);
  font-size: 7px;
  letter-spacing: 0.1em;
}

.support-resource-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.support-resource-meta span {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 700;
}

.support-resource-meta i {
  color: var(--gray);
  font-size: 9px;
  font-style: normal;
}

.support-resource-copy h3 {
  margin: 8px 0 4px;
  font-size: 19px;
}

.support-resource-copy p {
  margin: 0;
  color: var(--gray);
  font-size: 12px;
}

.support-resource-info {
  display: grid;
  justify-items: start;
}

.support-resource-info span {
  color: var(--gray);
  font-size: 9px;
}

.support-resource-info strong {
  font-family: var(--display);
  font-size: 12px;
}

.support-resource-row > .status-pill {
  min-width: 90px;
  text-align: center;
}

.support-resource-row.is-pending {
  color: var(--gray);
}

.support-studio-notice {
  display: flex;
  min-height: 92px;
  margin-top: 14px;
  padding: 20px 26px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  background: var(--graphite);
}

.support-studio-notice strong {
  display: block;
  margin-top: 4px;
  font-size: 14px;
}

.support-studio-notice a {
  display: inline-flex;
  min-height: 44px;
  padding: 0 18px;
  align-items: center;
  gap: 10px;
  color: var(--black);
  background: var(--cyan);
  font-size: 12px;
  font-weight: 700;
}

.support-planned-products {
  padding: clamp(84px, 8vw, 112px) 0;
  color: var(--white);
  background: var(--graphite);
}

.support-planned-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.support-planned-grid article {
  min-height: 178px;
  padding: 26px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.support-planned-grid article > span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
}

.support-planned-grid h3 {
  margin: 42px 0 0;
  font-size: 18px;
}

.support-planned-grid p,
.support-planned-grid small {
  color: var(--gray);
  font-size: 10px;
}

.support-planned-grid p {
  margin: 2px 0 14px;
}

.support-faq-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(620px, 1.3fr);
  align-items: start;
  gap: clamp(60px, 9vw, 140px);
}

@media (max-width: 1180px) {
  .studio-hero-grid,
  .support-hero-grid,
  .studio-platform-grid {
    grid-template-columns: 1fr;
  }

  .studio-hero-grid {
    padding-top: 70px;
  }

  .studio-window-hero {
    transform: none;
  }

  .support-file-map {
    min-height: 330px;
  }

  .studio-feature-grid,
  .support-planned-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .support-resource-row {
    grid-template-columns: 74px 1fr auto;
  }

  .support-resource-info {
    display: none;
  }
}

@media (max-width: 760px) {
  .studio-hero-grid,
  .support-hero-grid {
    min-height: auto;
    padding: 64px 0;
  }

  .studio-hero-copy h1,
  .support-hero-copy h1 {
    font-size: 2.8rem;
  }

  .studio-hero-facts,
  .studio-capability-rail .shell,
  .studio-feature-grid,
  .studio-download-notes,
  .support-product-index .shell,
  .support-planned-grid {
    grid-template-columns: 1fr;
  }

  .studio-capability-rail article,
  .studio-capability-rail article:last-child,
  .support-product-index a,
  .support-product-index > .shell > span,
  .support-product-index > .shell > span:last-child {
    border-right: 1px solid var(--line-dark);
  }

  .studio-section-head,
  .support-section-head,
  .support-mini-head,
  .support-faq-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .studio-feature-grid article {
    min-height: 150px;
  }

  .studio-device-map {
    padding: 18px;
    grid-template-columns: 1fr 1fr;
  }

  .device-map-core {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .studio-download-primary {
    padding: 28px;
    grid-template-columns: 70px 1fr;
  }

  .studio-release-status {
    grid-column: 1 / 3;
    justify-items: start;
    text-align: left;
  }

  .studio-download-notes article {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .support-file-map {
    display: none;
  }

  .support-product-index {
    position: static;
  }

  .support-product-index .shell {
    display: flex;
    overflow-x: auto;
  }

  .support-product-index a,
  .support-product-index > .shell > span {
    min-width: 160px;
  }

  .support-product-summary {
    grid-template-columns: 120px 1fr;
  }

  .support-resource-filter {
    overflow-x: auto;
  }

  .support-resource-row {
    padding: 22px 18px;
    grid-template-columns: 62px 1fr;
    gap: 18px;
  }

  .support-resource-type {
    width: 58px;
    height: 64px;
  }

  .support-resource-row > .button,
  .support-resource-row > .status-pill {
    grid-column: 1 / 3;
    justify-self: start;
  }

  .support-studio-notice {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .studio-scan,
  .icon-pulse i:nth-child(3),
  .support-map-line::after {
    animation: none;
  }
}

/* =========================================================
   VigorTree Refined System · 2026-07
   Compact typography, richer information and one visual voice
   ========================================================= */

body {
  overflow-x: clip;
}

.section-title,
.page-hero h1,
.studio-page-hero h1,
.brand-manifesto h1 {
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.story-block {
  padding-block: clamp(84px, 9vw, 128px);
}

.sg-product-copy h1 {
  font-size: clamp(3.6rem, 5.4vw, 6.2rem);
}

.sg-orbit {
  animation-duration: 14s;
  animation-iteration-count: 1;
}

.closing-cta {
  padding-block: clamp(88px, 9vw, 128px);
}

.closing-cta h2 {
  max-width: 760px;
  font-size: clamp(2.45rem, 4.2vw, 4.65rem);
  line-height: 1.04;
}

[data-reveal] {
  transform: translateY(16px);
  transition:
    opacity 560ms var(--ease),
    transform 560ms var(--ease);
}

.refined-hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.refined-hero-bg,
.refined-hero-shade,
.refined-signal {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.refined-hero-bg {
  object-fit: cover;
  object-position: center 55%;
  opacity: 0.74;
  filter: saturate(0.88) contrast(1.08);
  animation: refined-camera 10s ease-out 1 both;
}

.refined-hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.96) 0%, rgba(13, 13, 13, 0.82) 31%, rgba(13, 13, 13, 0.28) 65%, rgba(13, 13, 13, 0.44) 100%),
    linear-gradient(180deg, rgba(13, 13, 13, 0.7) 0%, transparent 35%, rgba(13, 13, 13, 0.54) 100%);
}

.refined-signal {
  z-index: 2;
  opacity: 0.22;
  mix-blend-mode: screen;
}

.refined-hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 760px;
  padding-top: var(--header-height);
  grid-template-columns: minmax(360px, 0.78fr) minmax(520px, 1.22fr);
  align-items: center;
  gap: clamp(30px, 5vw, 88px);
}

.refined-hero-copy {
  max-width: 570px;
  padding-bottom: 24px;
}

.refined-hero-copy .hero-kicker {
  margin-bottom: 16px;
}

.refined-hero-copy h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.3rem, 5vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.refined-hero-tagline {
  margin: 18px 0 0;
  font-size: clamp(1.5rem, 2.2vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.refined-hero-desc {
  max-width: 510px;
  margin: 20px 0 28px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
}

.refined-actions {
  justify-content: flex-start;
}

.refined-product-stage {
  position: relative;
  min-height: 590px;
  isolation: isolate;
}

.refined-product-stage::before {
  position: absolute;
  z-index: -1;
  right: 5%;
  bottom: 10%;
  width: 70%;
  height: 25%;
  border-radius: 50%;
  background: rgba(0, 207, 193, 0.18);
  filter: blur(48px);
  content: "";
}

.refined-product-stage::after {
  position: absolute;
  z-index: -1;
  right: 3%;
  bottom: 17%;
  width: 78%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 30px rgba(0, 207, 193, 0.92);
  content: "";
}

.refined-product-stage > img {
  position: absolute;
  right: -7%;
  bottom: 2%;
  width: 109%;
  max-width: none;
  filter: drop-shadow(0 48px 38px rgba(0, 0, 0, 0.72));
  animation: refined-product-enter 1.2s var(--ease) both;
}

.stage-index {
  position: absolute;
  top: 9%;
  right: 1%;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.stage-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.35;
}

.stage-note i {
  width: 42px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(0, 207, 193, 0.9);
}

.stage-note small {
  color: var(--gray);
  font-size: 9px;
  font-weight: 500;
}

.stage-note-a {
  top: 28%;
  left: 8%;
}

.stage-note-b {
  right: -2%;
  bottom: 25%;
}

.hero-telemetry {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(13, 13, 13, 0.72);
  backdrop-filter: blur(18px);
}

.hero-telemetry .shell {
  display: grid;
  min-height: 100px;
  grid-template-columns: repeat(4, 1fr) auto;
  align-items: center;
}

.hero-telemetry .shell > div {
  display: grid;
  min-height: 50px;
  padding: 0 28px;
  align-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-telemetry .shell > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-telemetry span {
  color: var(--gray);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-telemetry strong {
  margin-top: 2px;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.04em;
}

.hero-telemetry a {
  display: inline-flex;
  min-height: 48px;
  padding: 0 20px;
  align-items: center;
  gap: 12px;
  color: var(--black);
  background: var(--cyan);
  font-size: 13px;
  font-weight: 700;
}

.hero-telemetry a span {
  color: var(--black);
  font-size: 13px;
}

.brand-rail {
  color: var(--white);
  border-bottom: 1px solid var(--line-dark);
  background: var(--graphite);
}

.brand-rail .shell {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.brand-rail p {
  display: grid;
  min-height: 112px;
  margin: 0;
  padding: 26px 34px;
  align-content: center;
  border-left: 1px solid var(--line-dark);
}

.brand-rail p:last-child {
  border-right: 1px solid var(--line-dark);
}

.brand-rail strong {
  font-size: 18px;
  line-height: 1.2;
}

.brand-rail span {
  margin-top: 5px;
  color: var(--gray);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-intro,
.application-section,
.family-roadmap {
  padding: clamp(90px, 10vw, 138px) 0;
  background: var(--white);
}

.compact-section-head {
  display: grid;
  margin-bottom: clamp(48px, 6vw, 76px);
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: end;
  gap: clamp(40px, 8vw, 130px);
}

.compact-section-head h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1.03;
}

.compact-section-head > p {
  max-width: 570px;
  margin: 0 0 3px;
  color: var(--gray);
  font-size: 16px;
}

.capability-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  grid-template-rows: repeat(3, minmax(210px, auto));
  gap: 12px;
}

.capability-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: var(--white);
}

.capability-card:not(.capability-visual) {
  padding: clamp(26px, 3vw, 40px);
}

.capability-card::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  content: "";
  transition: width 420ms var(--ease);
}

.capability-card:hover::after {
  width: 100%;
}

.capability-visual {
  display: grid;
  grid-row: 1 / span 3;
  grid-template-rows: minmax(480px, 1fr) auto;
  color: var(--white);
  border-color: var(--black);
  background: var(--black);
}

.capability-image {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 55%, rgba(0, 207, 193, 0.17), transparent 37%),
    var(--black);
}

.capability-image::before {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, transparent, black 35%, black);
  content: "";
}

.capability-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 119%;
  max-width: none;
  transform: translate(-50%, -48%);
  filter: drop-shadow(0 44px 32px rgba(0, 0, 0, 0.62));
  transition: none;
}

.capability-visual:hover .capability-image img {
  transform: translate(-50%, -48%);
}

.capability-copy {
  position: relative;
  padding: 32px 36px 36px;
  border-top: 1px solid var(--line-dark);
}

.capability-card .card-index {
  position: absolute;
  top: 28px;
  right: 30px;
  color: var(--gray);
  font-family: var(--display);
  font-size: 11px;
}

.capability-card h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.capability-card > p:last-child,
.capability-copy > p:last-child {
  max-width: 590px;
  margin: 14px 0 0;
  color: var(--gray);
  font-size: 14px;
}

.mode-mini-ui {
  position: relative;
  display: grid;
  margin: 28px 0 18px;
  padding: 18px;
  grid-template-columns: repeat(3, auto);
  gap: 8px;
  border: 1px solid var(--line-light);
  background: rgba(136, 136, 136, 0.07);
}

.mode-mini-ui span {
  padding: 5px 8px;
  color: var(--gray);
  font-size: 10px;
  text-align: center;
}

.mode-mini-ui span.is-on {
  color: var(--black);
  background: var(--cyan);
}

.mode-mini-ui strong {
  margin-top: 8px;
  grid-column: 1 / 4;
  font-family: var(--display);
  font-size: 31px;
  letter-spacing: -0.05em;
}

.mode-mini-ui small {
  margin-left: 5px;
  color: var(--gray);
  font-size: 11px;
}

.mode-mini-ui i {
  position: absolute;
  right: 16px;
  bottom: 24px;
  width: 35%;
  height: 24px;
  border-top: 2px solid var(--cyan);
  border-radius: 50%;
  transform: rotate(-7deg);
}

.connection-diagram {
  display: grid;
  margin: 34px 0 20px;
  grid-template-columns: 40px 1fr auto 1fr auto;
  align-items: center;
  gap: 8px;
}

.connection-diagram b,
.connection-diagram span {
  display: grid;
  min-height: 38px;
  padding: 0 10px;
  place-items: center;
  border: 1px solid var(--line-light);
  font-family: var(--display);
  font-size: 10px;
}

.connection-diagram b {
  color: var(--black);
  border-color: var(--cyan);
  background: var(--cyan);
}

.connection-diagram i {
  height: 1px;
  background: var(--cyan);
}

.connection-diagram em {
  grid-column: 1 / 6;
  color: var(--gray);
  font-family: var(--display);
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.08em;
  text-align: center;
}

.calibration-line {
  position: relative;
  display: flex;
  margin: 42px 0 28px;
  align-items: center;
  justify-content: space-between;
}

.calibration-line::before {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line-light);
  content: "";
}

.calibration-line i {
  position: relative;
  width: 13px;
  height: 13px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 1px var(--cyan);
}

.workbench-story {
  position: relative;
  padding: clamp(100px, 11vw, 150px) 0;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.workbench-grid {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, transparent, black 60%, transparent);
}

.workbench-story .shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(520px, 1.28fr);
  align-items: center;
  gap: clamp(40px, 8vw, 130px);
}

.workbench-copy {
  position: relative;
  z-index: 3;
}

.workbench-copy h2 {
  margin: 0;
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.workbench-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 25px 0 30px;
  color: var(--gray);
}

.workbench-facts {
  display: grid;
  margin-bottom: 26px;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.workbench-facts span {
  display: grid;
  padding: 18px 0;
  color: var(--gray);
  font-size: 11px;
}

.workbench-facts span + span {
  padding-left: 22px;
  border-left: 1px solid var(--line-dark);
}

.workbench-facts strong {
  color: var(--white);
  font-family: var(--display);
  font-size: 19px;
}

.text-link-light {
  color: var(--white);
}

.workbench-product {
  position: relative;
  min-height: 560px;
}

.workbench-product::before {
  position: absolute;
  top: 13%;
  right: 5%;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 207, 193, 0.17), transparent 68%);
  content: "";
}

.workbench-product img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  max-width: none;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 50px 40px rgba(0, 0, 0, 0.7));
}

.dimension-line {
  position: absolute;
  z-index: 2;
  color: var(--gray);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dimension-line::before,
.dimension-line::after {
  position: absolute;
  background: var(--cyan);
  content: "";
}

.dimension-x {
  right: 12%;
  bottom: 7%;
  left: 18%;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 207, 193, 0.62);
  text-align: center;
}

.dimension-y {
  top: 19%;
  right: 3%;
  bottom: 18%;
  display: grid;
  width: 22px;
  place-items: center;
  border-left: 1px solid rgba(0, 207, 193, 0.62);
  writing-mode: vertical-rl;
}

.application-section {
  border-bottom: 1px solid var(--line-light);
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.application-grid article {
  position: relative;
  min-height: 245px;
  padding: 28px;
  overflow: hidden;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition:
    color 260ms ease,
    background 260ms ease;
}

.application-grid article::before {
  position: absolute;
  right: -40px;
  bottom: -72px;
  width: 180px;
  height: 180px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  content: "";
}

.application-grid article:hover {
  color: var(--white);
  background: var(--graphite);
}

.application-grid article > span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 11px;
}

.application-grid h3 {
  margin: 76px 0 6px;
  font-size: 23px;
}

.application-grid p {
  margin: 0;
  color: var(--gray);
  font-size: 13px;
}

.application-grid i {
  position: absolute;
  right: 24px;
  bottom: 20px;
  color: var(--cyan);
  font-style: normal;
}

.family-roadmap {
  background:
    linear-gradient(rgba(13, 13, 13, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 13, 13, 0.025) 1px, transparent 1px),
    var(--white);
  background-size: 64px 64px;
}

.family-heading {
  grid-template-columns: 1fr auto;
}

.roadmap-layout {
  display: grid;
  grid-template-columns: minmax(500px, 1.15fr) minmax(440px, 0.85fr);
  gap: 12px;
}

.roadmap-featured {
  position: relative;
  min-height: 620px;
  padding: 36px;
  overflow: hidden;
  color: var(--white);
  border: 1px solid var(--black);
  background:
    radial-gradient(circle at 55% 62%, rgba(0, 207, 193, 0.18), transparent 34%),
    var(--black);
}

.roadmap-featured::before {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, transparent, black);
  content: "";
}

.roadmap-meta {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
}

.roadmap-meta span,
.roadmap-meta em {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.roadmap-meta em {
  color: var(--gray);
}

.roadmap-featured h3 {
  position: relative;
  z-index: 2;
  margin: 28px 0 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 4rem);
  letter-spacing: -0.06em;
}

.roadmap-featured > p {
  position: relative;
  z-index: 2;
  margin: 5px 0 0;
  color: var(--gray);
}

.roadmap-featured img {
  position: absolute;
  right: -20%;
  bottom: -2%;
  width: 130%;
  max-width: none;
  filter: drop-shadow(0 36px 30px rgba(0, 0, 0, 0.62));
  transition: none;
}

.roadmap-featured:hover img {
  transform: none;
}

.roadmap-featured > b {
  position: absolute;
  z-index: 3;
  bottom: 30px;
  left: 36px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.roadmap-list {
  border-top: 1px solid var(--line-light);
}

.roadmap-list article {
  display: grid;
  min-height: 154px;
  padding: 22px 24px;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 20px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
  background: var(--white);
  transition:
    padding 300ms var(--ease),
    border-color 300ms ease;
}

.roadmap-list article:hover {
  padding-left: 32px;
  border-left-color: var(--cyan);
}

.roadmap-list article > span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.roadmap-list h3 {
  margin: 0;
  font-size: 22px;
}

.roadmap-list p {
  margin: 4px 0 0;
  color: var(--gray);
  font-family: var(--display);
  font-size: 10px;
}

.roadmap-list em {
  color: var(--gray);
  font-size: 11px;
  font-style: normal;
}

.studio-bridge {
  padding: clamp(100px, 11vw, 150px) 0;
  overflow: hidden;
  color: var(--white);
  background: var(--graphite);
}

.studio-bridge .shell {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(600px, 1.28fr);
  align-items: center;
  gap: clamp(50px, 8vw, 128px);
}

.studio-bridge-copy h2 {
  max-width: 600px;
  margin: 0;
  font-size: clamp(2.6rem, 4.2vw, 4.5rem);
  letter-spacing: -0.06em;
  line-height: 1.04;
}

.studio-bridge-copy > p:not(.eyebrow) {
  margin: 24px 0 30px;
  color: var(--gray);
}

.studio-bridge-ui {
  min-height: 490px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--black);
  box-shadow: 0 42px 90px rgba(0, 0, 0, 0.42);
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
  transform-origin: right center;
}

.studio-ui-top {
  display: flex;
  height: 46px;
  padding: 0 16px;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line-dark);
}

.studio-ui-top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gray);
}

.studio-ui-top i:first-child {
  background: var(--cyan);
}

.studio-ui-top span {
  margin-left: auto;
  color: var(--gray);
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.studio-ui-layout {
  display: grid;
  min-height: 444px;
  grid-template-columns: 150px 1fr;
}

.studio-ui-layout nav {
  display: flex;
  padding: 28px 16px;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid var(--line-dark);
}

.studio-ui-layout nav span,
.studio-ui-layout nav b {
  padding: 10px 12px;
  font-size: 10px;
  font-weight: 500;
}

.studio-ui-layout nav b {
  color: var(--black);
  background: var(--cyan);
}

.studio-ui-layout nav span {
  color: var(--gray);
}

.studio-ui-workspace {
  position: relative;
  padding: 42px;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.studio-ui-workspace > small {
  color: var(--gray);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.studio-ui-workspace > strong {
  display: block;
  margin-top: 2px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  letter-spacing: -0.07em;
}

.studio-ui-workspace > strong em {
  color: var(--cyan);
  font-size: 16px;
  font-style: normal;
}

.studio-wave {
  position: relative;
  height: 140px;
  margin-top: 22px;
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.studio-wave::after {
  position: absolute;
  right: -8%;
  bottom: 28%;
  left: -8%;
  height: 80px;
  border-top: 2px solid var(--cyan);
  border-radius: 50%;
  content: "";
  transform: rotate(-5deg);
  filter: drop-shadow(0 0 10px rgba(0, 207, 193, 0.74));
}

.studio-ui-stats {
  display: grid;
  margin-top: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.studio-ui-stats > span {
  display: grid;
  font-family: var(--display);
  font-size: 15px;
}

.studio-ui-stats > span + span {
  padding-left: 16px;
  border-left: 1px solid var(--line-dark);
}

.studio-ui-stats small {
  color: var(--gray);
  font-size: 9px;
}

/* Product catalog */
.catalog-hero {
  position: relative;
  min-height: 590px;
  padding: 110px 0 84px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.catalog-grid {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 72% 50%, black, transparent 62%);
}

.catalog-hero::before {
  position: absolute;
  right: -8%;
  bottom: -20%;
  width: 66vw;
  height: 66vw;
  border: 1px solid rgba(0, 207, 193, 0.28);
  border-radius: 50%;
  content: "";
}

.catalog-hero::after {
  position: absolute;
  right: 4%;
  bottom: 25%;
  width: 46vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 22px rgba(0, 207, 193, 0.84);
  content: "";
  transform: rotate(-7deg);
}

.catalog-hero .shell {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 390px;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 100px;
}

.catalog-heading h1 {
  margin: 0;
  font-size: clamp(3rem, 5.2vw, 5.7rem);
  letter-spacing: -0.065em;
  line-height: 0.99;
}

.catalog-heading > p:last-child {
  max-width: 650px;
  margin: 25px 0 0;
  color: var(--gray);
}

.catalog-status {
  position: relative;
  max-width: 380px;
  padding: 34px;
  justify-self: end;
  border: 1px solid var(--line-dark);
  background: rgba(26, 26, 26, 0.74);
  backdrop-filter: blur(12px);
}

.catalog-status > span,
.catalog-status small {
  color: var(--gray);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.13em;
}

.catalog-status strong {
  display: block;
  margin-top: 20px;
  color: var(--cyan);
  font-family: var(--display);
  font-size: 76px;
  letter-spacing: -0.08em;
  line-height: 1;
}

.catalog-status p {
  margin: 2px 0 22px;
}

.catalog-status i {
  display: block;
  height: 2px;
  margin-bottom: 15px;
  background: linear-gradient(90deg, var(--cyan) 20%, rgba(255, 255, 255, 0.12) 20%);
}

.catalog-live,
.catalog-roadmap {
  padding: clamp(90px, 9vw, 128px) 0;
}

.catalog-section-label {
  display: flex;
  margin-bottom: 28px;
  align-items: center;
  justify-content: space-between;
  color: var(--gray);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.catalog-section-label b {
  color: var(--cyan);
  font-size: 14px;
}

.catalog-product {
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(410px, 0.78fr) minmax(560px, 1.22fr);
  border: 1px solid var(--line-light);
}

.catalog-product-copy {
  display: flex;
  padding: clamp(42px, 5.2vw, 76px);
  flex-direction: column;
  justify-content: center;
}

.catalog-product-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5.4rem);
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.catalog-product-copy h3 {
  margin: 16px 0 0;
  font-size: 23px;
}

.catalog-product-copy > p:not(.eyebrow) {
  margin: 18px 0 28px;
  color: var(--gray);
}

.catalog-specs {
  display: grid;
  margin-bottom: 30px;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-light);
}

.catalog-specs span {
  display: grid;
  padding: 17px 0;
  color: var(--gray);
  border-bottom: 1px solid var(--line-light);
  font-size: 10px;
}

.catalog-specs span:nth-child(odd) {
  padding-right: 16px;
  border-right: 1px solid var(--line-light);
}

.catalog-specs span:nth-child(even) {
  padding-left: 16px;
}

.catalog-specs strong {
  color: var(--black);
  font-family: var(--display);
  font-size: 17px;
}

.catalog-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.catalog-product-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 58%, rgba(0, 207, 193, 0.19), transparent 35%),
    var(--black);
}

.catalog-product-visual::before {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle, black, transparent 70%);
  content: "";
}

.catalog-product-visual img {
  position: absolute;
  top: 53%;
  left: 50%;
  width: 128%;
  max-width: none;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 44px 34px rgba(0, 0, 0, 0.65));
  transition: none;
}

.catalog-product:hover .catalog-product-visual img {
  transform: translate(-50%, -50%);
}

.catalog-product-visual > p {
  position: absolute;
  right: 28px;
  bottom: 21px;
  left: 28px;
  display: flex;
  margin: 0;
  justify-content: space-between;
  color: var(--gray);
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: 0.13em;
}

.catalog-product-visual > p span {
  color: var(--cyan);
}

.visual-axis {
  position: absolute;
  z-index: 3;
  color: var(--gray);
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.axis-x {
  right: 14%;
  bottom: 11%;
  left: 14%;
  padding-top: 7px;
  border-top: 1px solid rgba(0, 207, 193, 0.5);
  text-align: center;
}

.axis-y {
  top: 18%;
  right: 6%;
  bottom: 16%;
  display: grid;
  place-items: center;
  border-left: 1px solid rgba(0, 207, 193, 0.5);
  writing-mode: vertical-rl;
}

.catalog-roadmap {
  border-top: 1px solid var(--line-light);
  background: rgba(136, 136, 136, 0.045);
}

.catalog-roadmap-list {
  border-top: 1px solid var(--line-light);
}

.catalog-roadmap-list article {
  position: relative;
  display: grid;
  min-height: 142px;
  padding: 20px 28px;
  grid-template-columns: 90px minmax(230px, 0.75fr) 1fr auto 50px;
  align-items: center;
  gap: 26px;
  overflow: hidden;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
  background: var(--white);
  transition:
    color 280ms ease,
    background 280ms ease;
}

.catalog-roadmap-list article:hover {
  color: var(--white);
  background: var(--graphite);
}

.catalog-code {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.catalog-roadmap-list article div p {
  margin: 0 0 4px;
  color: var(--gray);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-roadmap-list h3 {
  margin: 0;
  font-size: 25px;
}

.catalog-desc {
  margin: 0;
  color: var(--gray);
  font-size: 13px;
}

.catalog-roadmap-list em {
  color: var(--gray);
  font-size: 11px;
  font-style: normal;
}

.catalog-roadmap-list article > i {
  color: rgba(136, 136, 136, 0.18);
  font-family: var(--display);
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
}

.catalog-principles {
  padding: clamp(95px, 10vw, 145px) 0;
  color: var(--white);
  background: var(--graphite);
}

.catalog-principles .shell {
  display: grid;
  grid-template-columns: minmax(340px, 0.75fr) minmax(520px, 1.25fr);
  align-items: start;
  gap: 90px;
}

.catalog-principles h2 {
  margin: 0;
  font-size: clamp(2.7rem, 4.3vw, 4.7rem);
  letter-spacing: -0.06em;
  line-height: 1.03;
}

.principle-list {
  border-top: 1px solid var(--line-dark);
}

.principle-list article {
  display: grid;
  min-height: 105px;
  padding: 18px 0;
  grid-template-columns: 54px 100px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
}

.principle-list span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 10px;
}

.principle-list h3 {
  margin: 0;
  font-size: 22px;
}

.principle-list p {
  margin: 0;
  color: var(--gray);
  font-size: 13px;
}

.catalog-principles > .shell > .button {
  grid-column: 2;
  justify-self: start;
}

@keyframes refined-camera {
  from { transform: scale(1.015) translate3d(-0.3%, 0, 0); }
  to { transform: scale(1.055) translate3d(0.5%, -0.5%, 0); }
}

@keyframes refined-product-enter {
  from { opacity: 0; transform: translate3d(0, 38px, 0) scale(0.97); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@media (max-width: 1180px) {
  .refined-hero {
    min-height: 820px;
  }

  .refined-hero-layout {
    min-height: 720px;
    grid-template-columns: minmax(330px, 0.8fr) minmax(440px, 1.2fr);
  }

  .refined-product-stage {
    min-height: 520px;
  }

  .stage-note {
    display: none;
  }

  .hero-telemetry .shell > div {
    padding-inline: 18px;
  }

  .roadmap-layout,
  .catalog-product {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .studio-bridge .shell {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 56px;
  }
}

@media (max-width: 960px) {
  .refined-hero {
    min-height: 920px;
  }

  .refined-hero-layout {
    min-height: 815px;
    padding-top: calc(var(--header-height) + 40px);
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    align-items: start;
    gap: 0;
  }

  .refined-hero-copy {
    max-width: 560px;
  }

  .refined-product-stage {
    min-height: 450px;
  }

  .refined-product-stage > img {
    right: -8%;
    bottom: -12%;
    width: 88%;
  }

  .hero-telemetry .shell {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-telemetry a {
    display: none;
  }

  .brand-rail .shell {
    grid-template-columns: 1fr;
  }

  .brand-rail p {
    min-height: 80px;
    padding: 18px 0;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line-dark);
    border-left: 0;
  }

  .compact-section-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .capability-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .capability-visual {
    grid-row: auto;
    grid-column: 1 / 3;
  }

  .capability-calibration {
    grid-column: 1 / 3;
  }

  .workbench-story .shell,
  .studio-bridge .shell,
  .catalog-hero .shell,
  .catalog-principles .shell {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .workbench-product {
    min-height: 520px;
  }

  .application-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .roadmap-layout {
    grid-template-columns: 1fr;
  }

  .roadmap-featured {
    min-height: 580px;
  }

  .studio-bridge-ui {
    transform: none;
  }

  .catalog-status {
    justify-self: start;
  }

  .catalog-product {
    grid-template-columns: 1fr;
  }

  .catalog-product-visual {
    min-height: 570px;
    order: -1;
  }

  .catalog-principles > .shell > .button {
    grid-column: 1;
  }
}

@media (max-width: 720px) {
  .refined-hero {
    min-height: 820px;
  }

  .refined-hero-bg {
    object-position: 63% center;
    opacity: 0.52;
  }

  .refined-hero-shade {
    background:
      linear-gradient(180deg, rgba(13, 13, 13, 0.96) 0%, rgba(13, 13, 13, 0.82) 52%, rgba(13, 13, 13, 0.45) 100%),
      linear-gradient(90deg, rgba(13, 13, 13, 0.72), transparent);
  }

  .refined-hero-layout {
    min-height: 730px;
    padding-top: calc(var(--header-height) + 34px);
  }

  .refined-hero-copy h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .refined-hero-tagline {
    margin-top: 11px;
    font-size: 1.42rem;
  }

  .refined-hero-desc {
    margin: 15px 0 22px;
    font-size: 14px;
  }

  .refined-actions {
    flex-wrap: wrap;
  }

  .refined-product-stage {
    min-height: 320px;
  }

  .refined-product-stage > img {
    right: -28%;
    bottom: -7%;
    width: 125%;
  }

  .stage-index {
    display: none;
  }

  .hero-telemetry .shell {
    min-height: 90px;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-telemetry .shell > div {
    min-height: 38px;
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-telemetry .shell > div:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .hero-telemetry strong {
    font-size: 15px;
  }

  .home-intro,
  .application-section,
  .family-roadmap {
    padding-block: 76px;
  }

  .compact-section-head {
    margin-bottom: 38px;
  }

  .compact-section-head h2,
  .workbench-copy h2,
  .studio-bridge-copy h2,
  .catalog-principles h2 {
    font-size: clamp(2.25rem, 10vw, 3.1rem);
  }

  .compact-section-head > p {
    font-size: 14px;
  }

  .capability-grid {
    display: block;
  }

  .capability-card {
    margin-bottom: 10px;
  }

  .capability-visual {
    display: block;
  }

  .capability-image {
    min-height: 360px;
  }

  .capability-image img {
    width: 145%;
  }

  .workbench-story {
    padding-block: 78px;
  }

  .workbench-story .shell {
    gap: 20px;
  }

  .workbench-product {
    min-height: 340px;
  }

  .workbench-product img {
    width: 140%;
  }

  .workbench-facts {
    grid-template-columns: 1fr;
  }

  .workbench-facts span + span {
    padding-left: 0;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .application-grid {
    grid-template-columns: 1fr;
  }

  .application-grid article {
    min-height: 190px;
  }

  .application-grid h3 {
    margin-top: 50px;
  }

  .family-heading {
    grid-template-columns: 1fr;
  }

  .roadmap-featured {
    min-height: 490px;
    padding: 26px;
  }

  .roadmap-featured img {
    right: -33%;
    width: 150%;
  }

  .roadmap-featured > b {
    bottom: 24px;
    left: 26px;
  }

  .roadmap-list article {
    min-height: 124px;
    padding: 18px;
    grid-template-columns: 48px 1fr;
  }

  .roadmap-list em {
    display: none;
  }

  .studio-bridge {
    padding-block: 78px;
  }

  .studio-bridge .shell {
    gap: 42px;
  }

  .studio-bridge-ui {
    min-height: 390px;
  }

  .studio-ui-layout {
    min-height: 344px;
    grid-template-columns: 1fr;
  }

  .studio-ui-layout nav {
    display: flex;
    padding: 10px;
    flex-direction: row;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .studio-ui-layout nav span,
  .studio-ui-layout nav b {
    min-width: 82px;
    white-space: nowrap;
  }

  .studio-ui-workspace {
    padding: 24px;
  }

  .studio-wave {
    height: 90px;
  }

  .catalog-hero {
    min-height: 510px;
    padding: 82px 0 64px;
  }

  .catalog-heading h1 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .catalog-status {
    width: 100%;
    padding: 24px;
  }

  .catalog-status strong {
    font-size: 56px;
  }

  .catalog-live,
  .catalog-roadmap {
    padding-block: 76px;
  }

  .catalog-product-visual {
    min-height: 390px;
  }

  .catalog-product-visual img {
    width: 156%;
  }

  .catalog-product-copy {
    padding: 30px 24px 36px;
  }

  .catalog-product-copy h2 {
    font-size: 3rem;
  }

  .catalog-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-roadmap-list article {
    min-height: 120px;
    padding: 18px;
    grid-template-columns: 46px 1fr auto;
    gap: 14px;
  }

  .catalog-desc,
  .catalog-roadmap-list article > i {
    display: none;
  }

  .catalog-roadmap-list h3 {
    font-size: 20px;
  }

  .principle-list article {
    grid-template-columns: 38px 76px 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .refined-hero-bg,
  .refined-product-stage > img {
    animation: none;
  }
}

/* =========================================================
   Homepage after-hero architecture · Product → Brand → Studio
   ========================================================= */

.product-glance,
.home-usecases,
.home-studio {
  padding: clamp(88px, 8vw, 118px) 0;
  background: var(--white);
}

.home-studio {
  padding: clamp(64px, 6vw, 84px) 0;
}

.home-section-head,
.home-studio-heading {
  display: grid;
  margin-bottom: 46px;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  align-items: end;
  gap: clamp(48px, 8vw, 120px);
}

.home-section-head h2,
.home-studio-heading h2,
.brand-focus-copy h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.45rem, 3.55vw, 3.85rem);
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.home-section-intro > p,
.home-studio-heading > div:last-child > p {
  max-width: 560px;
  margin: 0 0 18px;
  color: rgba(13, 13, 13, 0.62);
  font-size: 15px;
}

.product-glance-grid {
  display: grid;
  min-height: 430px;
  grid-template-columns: minmax(360px, 1.65fr) repeat(4, minmax(175px, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.product-glance-featured,
.product-glance-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.product-glance-featured {
  min-height: 430px;
  padding: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 67% 62%, rgba(0, 207, 193, 0.17), transparent 34%),
    var(--black);
}

.product-glance-featured::before {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent, black);
  content: "";
}

.glance-card-top {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 22px;
  align-items: center;
  justify-content: space-between;
  color: var(--cyan);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.glance-card-top em {
  color: var(--gray);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0;
}

.glance-featured-copy {
  position: relative;
  z-index: 3;
  max-width: 270px;
  margin-top: 34px;
}

.glance-featured-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.15rem, 3vw, 3.2rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.glance-featured-copy > p {
  margin: 8px 0 18px;
  color: var(--gray);
  font-size: 14px;
}

.glance-featured-copy ul {
  display: grid;
  margin: 0 0 22px;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.glance-featured-copy li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.glance-featured-copy li::before {
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
}

.glance-featured-copy .button {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 12px;
}

html[lang="en"] .glance-featured-copy {
  max-width: 154px;
}

html[lang="en"] .glance-featured-copy h3 {
  width: max-content;
  max-width: none;
  white-space: nowrap;
}

html[lang="en"] .glance-featured-copy > p,
html[lang="en"] .glance-featured-copy li {
  overflow-wrap: break-word;
  line-height: 1.4;
}

html[lang="en"] .glance-featured-copy li {
  align-items: flex-start;
}

html[lang="en"] .glance-featured-copy .button {
  padding-inline: 14px;
  white-space: nowrap;
}

.product-glance-featured > img {
  position: absolute;
  z-index: 2;
  right: -30%;
  bottom: -8%;
  width: 126%;
  max-width: none;
  filter: drop-shadow(0 28px 24px rgba(0, 0, 0, 0.62));
  transition: none;
}

.product-glance-featured:hover > img {
  transform: none;
}

.product-glance-card {
  display: grid;
  min-height: 430px;
  padding: 24px 20px 22px;
  grid-template-rows: auto 110px 1fr auto;
  background: var(--white);
  transition:
    color 260ms ease,
    background 260ms ease;
}

.product-glance-card:hover {
  color: var(--white);
  background: var(--graphite);
}

.instrument-icon {
  width: 76px;
  height: 76px;
  margin: 24px auto 10px;
  align-self: center;
  color: var(--black);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition:
    color 260ms ease,
    transform 360ms var(--ease);
}

.product-glance-card:hover .instrument-icon {
  color: var(--cyan);
  transform: none;
}

.icon-trace {
  stroke: var(--cyan);
  stroke-dasharray: 42;
  stroke-dashoffset: 0;
}

.product-glance-card:hover .icon-trace,
.usecase-icon-grid article:hover .icon-trace,
.brand-focus-list article:hover .icon-trace {
  animation: icon-trace-draw 680ms var(--ease) 1;
}

.product-glance-card > div:nth-of-type(2) small {
  color: var(--gray);
  font-family: var(--display);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.product-glance-card h3 {
  margin: 7px 0 10px;
  font-size: 20px;
  letter-spacing: -0.035em;
}

.product-glance-card p {
  margin: 0;
  color: var(--gray);
  font-size: 12px;
  line-height: 1.6;
}

.glance-status {
  display: inline-flex;
  width: max-content;
  min-height: 28px;
  padding: 0 10px;
  align-items: center;
  color: var(--gray);
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 9px;
}

.home-usecases {
  padding-top: 0;
}

.usecase-heading {
  display: flex;
  margin-bottom: 30px;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}

.usecase-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  letter-spacing: -0.045em;
}

.usecase-heading > p {
  max-width: 470px;
  margin: 0;
  color: rgba(13, 13, 13, 0.62);
  font-size: 14px;
}

.usecase-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.usecase-icon-grid article {
  display: grid;
  min-height: 184px;
  padding: 24px;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 20px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition:
    color 240ms ease,
    background 240ms ease;
}

.usecase-icon-grid article:hover {
  color: var(--white);
  background: var(--graphite);
}

.usecase-icon-grid svg {
  width: 68px;
  height: 68px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.usecase-icon-grid .icon-pulse {
  fill: var(--cyan);
  stroke: var(--cyan);
  transform-origin: center;
}

.usecase-icon-grid article:hover .icon-pulse {
  animation: icon-pulse-once 720ms var(--ease) 1;
}

.usecase-icon-grid h3 {
  margin: 0 0 7px;
  font-size: 18px;
}

.usecase-icon-grid p {
  margin: 0;
  color: var(--gray);
  font-size: 11px;
}

.home-brand-focus {
  position: relative;
  padding: clamp(92px, 9vw, 126px) 0;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.brand-focus-grid {
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, black 55%, transparent);
}

.home-brand-focus .shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px, 0.83fr) minmax(540px, 1.17fr);
  align-items: center;
  gap: clamp(70px, 9vw, 142px);
}

.brand-focus-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 28px;
  color: var(--gray);
  font-size: 15px;
}

.brand-focus-list {
  border-top: 1px solid var(--line-dark);
}

.brand-focus-list article {
  display: grid;
  min-height: 142px;
  padding: 20px 0;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line-dark);
}

.brand-focus-list svg {
  width: 50px;
  height: 50px;
  color: var(--cyan);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 340ms var(--ease);
}

.brand-focus-list article:hover svg {
  transform: translateX(5px);
}

.brand-focus-list span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.brand-focus-list h3 {
  margin: 5px 0 4px;
  font-size: 21px;
}

.brand-focus-list p {
  margin: 0;
  color: var(--gray);
  font-size: 12px;
}

.home-studio-heading {
  margin-bottom: 34px;
  grid-template-columns: minmax(300px, 0.62fr) minmax(520px, 1.38fr);
  gap: clamp(44px, 6vw, 84px);
}

.home-studio-heading h2 {
  font-size: clamp(30px, 2.5vw, 40px);
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.home-studio-heading > div:last-child > p {
  max-width: 680px;
  margin-bottom: 16px;
  font-size: 14px;
}

.home-studio-layout {
  display: grid;
  grid-template-columns: minmax(680px, 1.5fr) minmax(270px, 0.5fr);
  gap: 14px;
  align-items: stretch;
}

.home-studio-console {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  background: var(--black);
  box-shadow: none;
}

.home-studio-bar {
  display: flex;
  height: 44px;
  padding: 0 16px;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--line-dark);
}

.home-studio-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gray);
}

.home-studio-bar i:first-child {
  background: var(--cyan);
}

.home-studio-bar span {
  margin-left: auto;
  color: var(--gray);
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.home-studio-screen {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--black);
}

.home-studio-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: none;
}

.home-studio-console figcaption {
  display: flex;
  min-height: 46px;
  padding: 0 16px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line-dark);
  font-size: 10px;
}

.home-studio-console figcaption span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
}

.home-studio-console figcaption i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--cyan);
}

.home-studio-console figcaption strong {
  font-size: 11px;
}

.home-studio-body {
  display: grid;
  min-height: 466px;
  grid-template-columns: 92px 1fr;
}

.home-studio-body nav {
  display: flex;
  padding: 20px 12px;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid var(--line-dark);
}

.home-studio-body nav span,
.home-studio-body nav b {
  display: grid;
  min-height: 48px;
  place-items: center;
  color: var(--gray);
  border: 1px solid var(--line-dark);
  font-family: var(--display);
  font-size: 10px;
}

.home-studio-body nav b {
  color: var(--black);
  border-color: var(--cyan);
  background: var(--cyan);
}

.home-studio-work {
  position: relative;
  padding: 34px;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.studio-work-head {
  display: flex;
  justify-content: space-between;
  font-family: var(--display);
}

.studio-work-head small {
  color: var(--gray);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.studio-work-head em {
  color: var(--cyan);
  font-size: 9px;
  font-style: normal;
}

.home-studio-work > strong {
  display: block;
  margin: 30px 0 0;
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5.3rem);
  letter-spacing: -0.07em;
  line-height: 1;
}

.home-studio-work > strong small {
  color: var(--cyan);
  font-size: 15px;
}

.studio-signal-chart {
  position: relative;
  height: 160px;
  margin-top: 18px;
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.studio-signal-chart i {
  position: absolute;
  right: -5%;
  bottom: 30%;
  left: -5%;
  height: 84px;
  border-top: 2px solid var(--cyan);
  border-radius: 50%;
  transform: rotate(-6deg);
  filter: drop-shadow(0 0 10px rgba(0, 207, 193, 0.7));
}

.studio-work-foot {
  display: grid;
  margin-top: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.studio-work-foot span {
  display: grid;
  font-size: 13px;
}

.studio-work-foot span + span {
  padding-left: 16px;
  border-left: 1px solid var(--line-dark);
}

.studio-work-foot small {
  color: var(--gray);
  font-size: 9px;
}

.home-studio-values {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
}

.home-studio-values article {
  position: relative;
  display: grid;
  min-height: 0;
  padding: 22px 126px 22px 24px;
  overflow: hidden;
  grid-template-columns: 1fr;
  align-content: center;
  gap: 8px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.home-studio-values article > span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.home-studio-values h3 {
  margin: 0 0 4px;
  font-size: 17px;
}

.home-studio-values p {
  margin: 0;
  color: var(--gray);
  font-size: 12px;
}

.home-studio-ghost {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 104px;
  height: 84px;
  fill: none;
  stroke: rgba(13, 13, 13, 0.13);
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translateY(-50%);
  pointer-events: none;
}

.home-studio-ghost .ghost-accent {
  stroke: rgba(0, 207, 193, 0.68);
}

.home-studio-ghost .ghost-node {
  fill: rgba(0, 207, 193, 0.12);
}

@keyframes icon-trace-draw {
  from { stroke-dashoffset: 42; }
  to { stroke-dashoffset: 0; }
}

@keyframes icon-pulse-once {
  0% { opacity: 1; transform: scale(1); }
  45% { opacity: 0.35; transform: scale(2.6); }
  100% { opacity: 1; transform: scale(1); }
}

@media (max-width: 1180px) {
  .product-glance-grid {
    grid-template-columns: minmax(360px, 1.4fr) repeat(2, minmax(190px, 1fr));
  }

  .product-glance-featured {
    grid-row: span 2;
  }

  .product-glance-card {
    min-height: 300px;
    grid-template-rows: auto 76px 1fr auto;
  }

  .instrument-icon {
    width: 60px;
    height: 60px;
    margin-block: 10px 4px;
  }

  .usecase-icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-studio-layout {
    grid-template-columns: 1fr;
  }

  .home-studio-values {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: none;
  }

  .home-studio-values article {
    min-height: 150px;
  }
}

@media (max-width: 760px) {
  .home-section-head,
  .home-studio-heading,
  .home-brand-focus .shell {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-glance-grid,
  .usecase-icon-grid,
  .home-studio-values {
    grid-template-columns: 1fr;
  }

  .product-glance-featured {
    grid-row: auto;
  }

  .usecase-heading {
    align-items: start;
    flex-direction: column;
    gap: 14px;
  }

  .home-studio-console {
    min-height: 0;
  }

  .home-studio-body {
    min-height: 386px;
    grid-template-columns: 64px 1fr;
  }

  .home-studio-work {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-glance-card:hover .icon-trace,
  .usecase-icon-grid article:hover .icon-trace,
  .brand-focus-list article:hover .icon-trace,
  .usecase-icon-grid article:hover .icon-pulse {
    animation: none;
  }
}

/* Desktop first-screen lock · hero + telemetry + brand rail fill the viewport */
@media (min-width: 961px) {
  .refined-hero {
    min-height: max(860px, calc(100vh - 112px));
    min-height: max(860px, calc(100svh - 112px));
  }

  .refined-hero-layout {
    min-height: max(760px, calc(100vh - 212px));
    min-height: max(760px, calc(100svh - 212px));
  }
}

/* Studio workspace · compact screenshot with right-aligned capability icons */
@media (min-width: 761px) {
  .studio-workflow .studio-section-head,
  .studio-workflow .studio-window-feature,
  .studio-workflow .studio-feature-grid {
    width: min(100%, 1080px);
    margin-right: auto;
    margin-left: auto;
  }

  .studio-workflow .studio-section-head {
    margin-bottom: 30px;
  }

  .studio-workflow .studio-window-feature {
    box-shadow: 0 24px 64px rgba(13, 13, 13, 0.14);
  }

  .studio-workflow .studio-feature-grid {
    margin-top: 16px;
  }

  .studio-workflow .studio-feature-grid article {
    min-height: 128px;
    padding: 20px 18px 20px 22px;
    grid-template-columns: minmax(0, 1fr) 42px;
    align-items: center;
    gap: 16px;
  }

  .studio-workflow .studio-feature-grid article > div {
    grid-row: 1;
    grid-column: 1;
  }

  .studio-workflow .studio-feature-icon {
    grid-row: 1;
    grid-column: 2;
    justify-self: end;
  }
}

/* Material-diversified redesign · document preview and local control UI */
.support-file-product {
  min-height: 196px;
  padding-right: 190px;
  background:
    linear-gradient(90deg, transparent 0 66%, rgba(0, 207, 193, 0.045) 66% 100%),
    var(--graphite);
}

.support-file-product::after {
  position: absolute;
  right: 168px;
  bottom: 32px;
  width: 58px;
  height: 1px;
  opacity: 0.55;
  background: var(--cyan);
  content: "";
  pointer-events: none;
}

.support-file-product .support-file-copy {
  max-width: 100%;
}

.support-file-product .support-file-copy > strong {
  margin-top: 20px;
}

.support-file-counts {
  display: flex;
  margin-top: 20px;
  gap: 26px;
}

.support-file-product .support-file-counts > span {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 7px;
  color: var(--white);
}

.support-file-product .support-file-counts b {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 16px;
}

.support-file-product .support-file-counts small {
  margin: 0;
  color: var(--gray);
  font-size: 9px;
}

.support-manual-preview {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 24px;
  bottom: 15px;
  display: grid;
  width: 132px;
  overflow: hidden;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--white);
  grid-template-rows: 24px 1fr 28px;
  transition:
    border-color 220ms ease,
    background 220ms ease;
}

.support-manual-preview:hover {
  border-color: var(--cyan);
}

.support-file-product .support-manual-preview > span {
  display: flex;
  padding: 0 9px;
  align-items: center;
  color: var(--cyan);
  background: var(--black);
  font-size: 7px;
  letter-spacing: 0.12em;
}

.support-file-product .support-manual-preview img {
  position: static;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 13%;
  pointer-events: none;
  transition: none;
}

.support-file-product .support-manual-preview > strong {
  display: flex;
  margin: 0;
  padding: 0 9px;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: var(--black);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.09em;
}

.support-manual-preview i {
  color: var(--cyan);
  font-style: normal;
}

.workflow-product-stage {
  display: grid;
  padding: 26px;
  place-items: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(0, 207, 193, 0.08), transparent 58%),
    var(--black);
  background-size: 36px 36px, 36px 36px, 100% 100%, 100% 100%;
}

.workflow-local-ui {
  width: min(100%, 430px);
  overflow: hidden;
  color: var(--white);
  border: 1px solid rgba(0, 207, 193, 0.42);
  background: rgba(13, 13, 13, 0.94);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
}

.local-ui-head {
  display: grid;
  min-height: 38px;
  padding: 0 14px;
  grid-template-columns: 1fr auto 7px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: 0.11em;
}

.local-ui-head b {
  color: var(--gray);
  font-size: 7px;
  font-weight: 500;
}

.local-ui-head i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 207, 193, 0.8);
}

.local-ui-body {
  display: grid;
  min-height: 132px;
  grid-template-columns: minmax(0, 1.45fr) minmax(110px, 0.55fr);
}

.local-ui-value,
.local-ui-mode {
  display: grid;
  padding: 18px;
  align-content: center;
}

.local-ui-value {
  border-right: 1px solid var(--line-dark);
}

.local-ui-value > span,
.local-ui-mode > span,
.local-ui-mode > small,
.local-ui-quick small {
  color: var(--gray);
  font-family: var(--display);
  font-size: 7px;
  letter-spacing: 0.11em;
}

.local-ui-value > span {
  color: var(--cyan);
}

.local-ui-value strong {
  margin-top: 9px;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.local-ui-value strong small {
  color: var(--cyan);
  font-size: 12px;
}

.local-ui-mode strong {
  margin: 9px 0 6px;
  font-family: var(--display);
  font-size: 14px;
}

.local-ui-quick {
  display: grid;
  min-height: 62px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.local-ui-quick > span {
  display: grid;
  padding: 10px 12px;
  align-content: center;
  gap: 3px;
}

.local-ui-quick > span + span {
  border-left: 1px solid var(--line-dark);
}

.local-ui-quick b {
  font-size: 10px;
}

.local-ui-terminals {
  display: grid;
  min-height: 38px;
  padding: 0 14px;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  gap: 5px;
}

.local-ui-terminals span {
  display: grid;
  min-height: 19px;
  place-items: center;
  color: var(--gray);
  border: 1px solid var(--line-dark);
  font-family: var(--display);
  font-size: 6px;
}

@media (max-width: 760px) {
  .support-file-product {
    min-height: 210px;
    padding: 22px 152px 22px 20px;
  }

  .support-file-product::after {
    display: none;
  }

  .support-manual-preview {
    right: 16px;
    width: 116px;
  }

  .workflow-product-stage {
    padding: 16px;
  }

  .local-ui-body {
    grid-template-columns: 1fr;
  }

  .local-ui-mode {
    display: none;
  }

  .local-ui-value {
    border-right: 0;
  }
}

/* =========================================================
   Compact inner-page governance · 2026-07-28
   Functional headings, bounded type scale, higher density
   ========================================================= */

.studio-redesign,
.support-redesign,
.sg-modes-compact,
.sg-specs-compact {
  --inner-h1: clamp(40px, 3.2vw, 52px);
  --inner-h2: clamp(30px, 2.5vw, 40px);
  --inner-h3: clamp(17px, 1.3vw, 20px);
  --inner-section-space: clamp(64px, 6vw, 84px);
}

/* Studio */

.studio-hero-grid {
  min-height: 548px;
  padding: 48px 0 46px;
  grid-template-columns: minmax(300px, 0.54fr) minmax(660px, 1.46fr);
  gap: clamp(36px, 4vw, 64px);
}

.studio-hero-copy {
  max-width: 470px;
}

.studio-hero-copy h1 {
  max-width: none;
  font-size: var(--inner-h1);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.studio-hero-copy h1 span,
.support-hero-copy h1 span {
  display: block;
  font-family: var(--display);
}

.studio-hero-copy h1 small,
.support-hero-copy h1 small {
  display: block;
  margin-top: 9px;
  color: var(--gray);
  font-family: var(--body);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4;
}

.studio-hero-lede {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.7;
}

.studio-hero-actions {
  margin-top: 22px;
}

.studio-hero-facts {
  margin-top: 26px;
}

.studio-hero-facts div {
  padding-top: 12px;
}

.studio-window {
  border-radius: 4px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.34);
}

.studio-window-hero {
  transform: none;
}

.studio-window-hero:hover {
  transform: none;
}

.studio-window figcaption {
  min-height: 46px;
}

.studio-capability-rail article {
  min-height: 90px;
  padding: 16px 22px;
}

.studio-capability-rail strong {
  margin-top: 4px;
  font-size: 14px;
}

.studio-capability-rail p {
  font-size: 11px;
}

/* Keep the complete Studio hero dark and flush with the first viewport. */
@media (min-width: 1181px) {
  .studio-showcase-hero {
    display: grid;
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100svh - var(--header-height));
    grid-template-rows: minmax(548px, 1fr) auto;
  }
}

.studio-workflow,
.studio-download-section,
.support-resources,
.support-faq {
  padding: var(--inner-section-space) 0;
}

.studio-section-head,
.support-section-head,
.support-mini-head {
  margin-bottom: 34px;
  grid-template-columns: minmax(320px, 0.72fr) minmax(440px, 1.28fr);
  gap: clamp(36px, 6vw, 88px);
}

.studio-section-head h2,
.support-section-head h2,
.support-mini-head h2,
.support-faq h2,
.studio-platform-copy h2 {
  font-size: var(--inner-h2);
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.studio-section-head > p,
.support-mini-head > p {
  font-size: 14px;
}

.studio-feature-grid article {
  min-height: 138px;
  padding: 22px;
  grid-template-columns: 44px 1fr;
  gap: 14px;
}

.studio-feature-grid h3 {
  margin-top: 1px;
  font-size: 17px;
}

.studio-feature-icon {
  width: 42px;
  height: 42px;
}

.studio-platform {
  padding: var(--inner-section-space) 0;
}

.studio-platform-grid {
  grid-template-columns: minmax(300px, 0.58fr) minmax(650px, 1.42fr);
  gap: clamp(42px, 6vw, 88px);
}

.studio-platform-copy p:not(.eyebrow) {
  margin-top: 16px;
  font-size: 14px;
}

.studio-device-map {
  padding: 28px;
}

.device-map-core,
.device-map-item {
  min-height: 96px;
  padding: 15px;
}

.device-map-core strong {
  font-size: 22px;
}

.studio-download-primary {
  min-height: 174px;
  padding: 28px 32px;
  grid-template-columns: 72px 1fr auto;
  gap: 26px;
}

.studio-os-mark {
  width: 62px;
  height: 62px;
  padding: 12px;
}

.studio-download-primary h3 {
  font-size: 23px;
}

.studio-download-notes article {
  min-height: 136px;
  padding: 22px 26px;
}

.studio-download-notes strong {
  margin-top: 16px;
  font-size: 16px;
}

/* Product support */

.support-compact-hero {
  min-height: 402px;
}

.support-hero-grid {
  min-height: 402px;
  padding: 48px 0;
  grid-template-columns: minmax(360px, 0.68fr) minmax(620px, 1.32fr);
  gap: clamp(48px, 7vw, 104px);
}

.support-hero-copy h1 {
  max-width: 520px;
  font-size: var(--inner-h1);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.support-hero-copy > p:not(.eyebrow) {
  margin: 18px 0 22px;
  font-size: 14px;
}

.support-file-map {
  min-height: 278px;
}

.support-map-center {
  width: 168px;
  height: 96px;
  padding: 18px;
}

.support-map-center strong {
  font-size: 19px;
}

.support-map-file {
  width: 150px;
  min-height: 64px;
  padding: 10px 12px;
}

.support-map-file:nth-of-type(2) { top: 26px; right: 26px; }
.support-map-file:nth-of-type(3) { right: 26px; bottom: 26px; }
.support-map-file:nth-of-type(4) { bottom: 26px; left: 26px; }

.support-product-index a,
.support-product-index > .shell > span {
  min-height: 70px;
  padding: 12px 18px;
}

.support-product-summary {
  min-height: 116px;
  grid-template-columns: 150px 1fr;
}

.support-product-summary img {
  max-height: 90px;
}

.support-resource-filter {
  min-height: 56px;
}

.support-resource-row {
  min-height: 118px;
  padding: 18px 24px;
  grid-template-columns: 66px 1fr 112px auto;
  gap: 22px;
}

.support-resource-type {
  width: 58px;
  height: 62px;
}

.support-resource-copy h3 {
  margin-top: 5px;
  font-size: 17px;
}

.support-studio-notice {
  min-height: 76px;
  padding: 16px 22px;
}

.support-planned-products {
  padding: var(--inner-section-space) 0;
}

.support-planned-grid article {
  min-height: 132px;
  padding: 20px;
}

.support-planned-grid h3 {
  margin-top: 24px;
  font-size: 16px;
}

.support-faq-grid {
  grid-template-columns: minmax(300px, 0.58fr) minmax(660px, 1.42fr);
}

.support-faq .faq-list summary {
  min-height: 66px;
  font-size: 14px;
}

/* SG1224 details */

.sg-modes-compact,
.sg-specs-compact {
  padding: var(--inner-section-space) 0;
  background: var(--white);
}

.sg-compact-head {
  display: grid;
  margin-bottom: 32px;
  grid-template-columns: minmax(300px, 0.62fr) minmax(520px, 1.38fr);
  align-items: end;
  gap: clamp(40px, 7vw, 100px);
}

.sg-compact-head h2 {
  margin: 0;
  font-size: var(--inner-h2);
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.sg-compact-head > p {
  max-width: 670px;
  margin: 0 0 2px;
  color: var(--gray);
  font-size: 14px;
}

.sg-mode-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.sg-mode-grid article {
  min-height: 228px;
  padding: 26px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition:
    color 220ms ease,
    background 220ms ease;
}

.sg-mode-grid article:hover {
  color: var(--white);
  background: var(--black);
}

.sg-mode-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sg-mode-top span,
.sg-mode-top strong {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.sg-mode-grid h3 {
  margin: 34px 0 7px;
  font-size: var(--inner-h3);
}

.sg-mode-grid > article > p {
  max-width: 360px;
  margin: 0;
  color: var(--gray);
  font-size: 13px;
}

.sg-mode-grid dl {
  display: grid;
  margin: 24px 0 0;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-light);
}

.sg-mode-grid article:hover dl {
  border-color: var(--line-dark);
}

.sg-mode-grid dl div {
  padding-top: 12px;
}

.sg-mode-grid dt {
  color: var(--gray);
  font-size: 9px;
}

.sg-mode-grid dd {
  margin: 1px 0 0;
  font-size: 11px;
  font-weight: 700;
}

.sg-specs-compact {
  border-top: 1px solid var(--line-light);
}

.sg-spec-grid {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.sg-spec-grid > div {
  display: grid;
  min-height: 78px;
  padding: 16px 22px;
  grid-template-columns: 128px 1fr;
  align-items: center;
  gap: 20px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.sg-spec-grid dt {
  color: var(--gray);
  font-size: 12px;
}

.sg-spec-grid dd {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.sg-spec-grid > .spec-identity {
  grid-column: 1 / -1;
  min-height: 62px;
  grid-template-columns: 128px 1fr;
  background: linear-gradient(90deg, rgba(0, 202, 192, 0.08), rgba(0, 202, 192, 0));
}

.sg-spec-grid > .spec-identity dt {
  color: var(--accent);
  font-weight: 700;
}

.sg-spec-grid > .spec-identity dd {
  font-size: 15px;
  letter-spacing: 0.01em;
}

.sg-spec-grid > .spec-identity dd span {
  margin: 0 12px;
  color: var(--accent);
  font-weight: 400;
}

.sg-spec-grid dd small {
  display: inline-block;
  margin-left: 8px;
  color: var(--gray);
  font-size: 11px;
  font-weight: 400;
}

.sg-spec-grid > .spec-final {
  grid-column: 1 / -1;
}

.page-main .story-block {
  padding: clamp(72px, 7vw, 96px) 0;
}

.page-main .section-title,
.page-main .story-copy h2,
.page-main .closing-cta h2 {
  font-size: clamp(32px, 3vw, 44px);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.page-main .gallery-main {
  min-height: 520px;
}

.page-main .closing-cta {
  padding: clamp(68px, 7vw, 92px) 0;
}

.page-main .closing-cta h2 {
  margin-bottom: 24px;
}

@media (max-width: 1180px) {
  .studio-hero-grid,
  .support-hero-grid,
  .studio-platform-grid {
    grid-template-columns: 1fr;
  }

  .sg-mode-grid {
    grid-template-columns: 1fr;
  }

  .sg-mode-grid article {
    min-height: 190px;
  }
}

@media (max-width: 760px) {
  .studio-hero-copy h1,
  .support-hero-copy h1 {
    font-size: 38px;
  }

  .studio-hero-copy h1 small,
  .support-hero-copy h1 small {
    font-size: 15px;
  }

  .sg-compact-head,
  .sg-spec-grid {
    grid-template-columns: 1fr;
  }

  .sg-compact-head {
    gap: 18px;
  }

  .sg-spec-grid > div {
    grid-template-columns: 96px 1fr;
  }

  .page-main .gallery-main {
    min-height: 430px;
  }
}

/* Product directory density */

.catalog-hero {
  min-height: 360px;
  padding: 58px 0 48px;
}

.catalog-hero .shell {
  min-height: 254px;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 68px;
}

.catalog-heading h1 {
  font-size: clamp(40px, 3.2vw, 52px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.catalog-heading > p:last-child {
  max-width: 720px;
  margin-top: 18px;
  font-size: 14px;
}

.catalog-status {
  width: 100%;
  max-width: 330px;
  padding: 22px 26px;
}

.catalog-status strong {
  margin-top: 10px;
  font-size: 46px;
}

.catalog-status p {
  margin-bottom: 12px;
  font-size: 13px;
}

.catalog-live,
.catalog-roadmap {
  padding: clamp(64px, 6vw, 84px) 0;
}

.catalog-product {
  min-height: 470px;
  grid-template-columns: minmax(390px, 0.72fr) minmax(560px, 1.28fr);
}

.catalog-product-copy {
  padding: clamp(34px, 4vw, 52px);
}

.catalog-product-copy h2 {
  font-size: clamp(44px, 4vw, 62px);
}

.catalog-product-copy h3 {
  margin-top: 12px;
  font-size: 20px;
}

.catalog-product-copy > p:not(.eyebrow) {
  margin: 14px 0 22px;
  font-size: 14px;
}

.catalog-specs {
  margin-bottom: 22px;
}

.catalog-specs span {
  padding: 12px 0;
}

.catalog-product-visual {
  min-height: 470px;
}

.catalog-roadmap .compact-section-head {
  margin-bottom: 34px;
}

.catalog-roadmap .compact-section-head h2,
.catalog-principles h2 {
  font-size: clamp(30px, 2.5vw, 40px);
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.catalog-roadmap-list article {
  min-height: 98px;
  padding: 14px 22px;
}

.catalog-roadmap-list h3 {
  font-size: 19px;
}

.catalog-roadmap-list article > i {
  font-size: 28px;
}

.catalog-principles {
  padding: clamp(64px, 6vw, 84px) 0;
}

.catalog-principles .shell {
  grid-template-columns: minmax(300px, 0.65fr) minmax(560px, 1.35fr);
  gap: 72px;
}

.principle-list article {
  min-height: 76px;
  padding: 12px 0;
}

.principle-list h3 {
  font-size: 18px;
}

@media (max-width: 960px) {
  .catalog-hero .shell,
  .catalog-product,
  .catalog-principles .shell {
    grid-template-columns: 1fr;
  }

  .catalog-status {
    justify-self: start;
  }

  .catalog-product-visual {
    min-height: 420px;
  }
}

/* Brand page uses the same bounded inner-page scale */

.brand-page .brand-manifesto,
.brand-page .brand-manifesto .shell {
  min-height: 520px;
}

.brand-page .brand-manifesto .shell {
  padding: 72px 0 58px;
}

.brand-page .brand-manifesto h1 {
  font-size: clamp(40px, 3.4vw, 56px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.brand-page .brand-manifesto p:last-child {
  max-width: 650px;
  font-size: 14px;
}

.brand-page .brand-manifesto img {
  max-width: 360px;
  max-height: 360px;
}

.brand-page .story-block {
  padding: clamp(64px, 6vw, 84px) 0;
}

.brand-page .section-title,
.brand-page .story-copy h2,
.brand-page .closing-cta h2 {
  font-size: clamp(30px, 2.6vw, 40px);
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.brand-page .principle-card {
  min-height: 218px;
  padding: 28px;
}

.brand-page .principle-card h3 {
  margin-top: 48px;
  font-size: 20px;
}

.brand-page .story-grid {
  grid-template-columns: minmax(300px, 0.58fr) minmax(650px, 1.42fr);
  gap: 80px;
}

.brand-page .story-copy {
  position: static;
}

.brand-page .mode-card {
  min-height: 148px;
  padding: 26px;
}

.brand-page .mode-card h3 {
  margin: 30px 0 6px;
  font-size: 20px;
}

.brand-page .company-grid {
  gap: 76px;
}

.brand-page .closing-cta {
  padding: clamp(64px, 6vw, 84px) 0;
}

@media (max-width: 960px) {
  .brand-page .story-grid {
    grid-template-columns: 1fr;
  }
}

/* Brand workflow · real device to real desktop interface */

.brand-page .brand-workflow-section {
  padding: clamp(64px, 6vw, 84px) 0;
}

.brand-workflow-head {
  display: grid;
  margin-bottom: 34px;
  grid-template-columns: minmax(320px, 0.78fr) minmax(520px, 1.22fr);
  align-items: end;
  gap: clamp(52px, 7vw, 100px);
}

.brand-workflow-head h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(30px, 2.6vw, 40px);
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.brand-workflow-head > p {
  max-width: 680px;
  margin: 0;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.8;
}

.brand-workflow-board {
  display: grid;
  min-height: 430px;
  grid-template-columns: minmax(340px, 0.9fr) 116px minmax(520px, 1.1fr);
  border: 1px solid var(--line-dark);
  background: var(--black);
}

.workflow-endpoint {
  display: grid;
  min-width: 0;
  padding: 24px;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
}

.workflow-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.workflow-label span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.workflow-label strong {
  font-size: 15px;
}

.workflow-product-stage,
.workflow-screen {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--graphite);
}

.workflow-product-stage {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(0, 207, 193, 0.08), transparent 58%),
    var(--black);
  background-size: 36px 36px, 36px 36px, 100% 100%, 100% 100%;
}

.workflow-product-stage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: none;
}

.workflow-screen {
  aspect-ratio: 16 / 9;
}

.workflow-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: none;
}

.workflow-endpoint > p {
  margin: 0;
  color: var(--gray);
  font-size: 12px;
  line-height: 1.7;
}

.workflow-link {
  display: flex;
  padding: 28px 12px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-right: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
  color: var(--white);
  background: var(--graphite);
  font-family: var(--display);
  text-align: center;
}

.workflow-link span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.workflow-link i {
  position: relative;
  width: 1px;
  height: 84px;
  background: var(--cyan);
}

.workflow-link i::before,
.workflow-link i::after {
  position: absolute;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
  transform: translateX(-50%);
}

.workflow-link i::before {
  top: 0;
}

.workflow-link i::after {
  bottom: 0;
}

.workflow-link small {
  color: var(--gray);
  font-size: 8px;
  letter-spacing: 0.08em;
}

/* Studio device center · connected product plus release queue */

.studio-platform-head {
  display: grid;
  margin-bottom: 34px;
  grid-template-columns: minmax(300px, 0.68fr) minmax(560px, 1.32fr);
  align-items: end;
  gap: clamp(52px, 7vw, 100px);
}

.studio-platform-head h2 {
  margin: 0;
  font-size: clamp(30px, 2.6vw, 40px);
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.studio-platform-head > p {
  max-width: 680px;
  margin: 0;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.8;
}

.studio-family-console {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--black);
}

.studio-family-topbar {
  display: flex;
  min-height: 44px;
  padding: 0 18px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--gray);
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: 0.11em;
}

.studio-family-topbar strong {
  color: var(--white);
  font-size: 9px;
  font-weight: 600;
}

.studio-family-topbar i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 207, 193, 0.8);
}

.studio-family-rail {
  display: grid;
  grid-template-columns: minmax(600px, 1.3fr) minmax(420px, 0.7fr);
}

.studio-family-live {
  position: relative;
  display: block;
  min-height: 330px;
  padding: 34px;
  overflow: hidden;
  color: var(--white);
  border-right: 1px solid var(--line-dark);
  background:
    linear-gradient(90deg, var(--black) 0%, var(--black) 46%, rgba(13, 13, 13, 0.58) 70%, rgba(13, 13, 13, 0.12) 100%),
    radial-gradient(circle at 78% 62%, rgba(0, 207, 193, 0.14), transparent 34%),
    var(--black);
  transition: box-shadow 220ms ease;
}

.studio-family-live::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--cyan);
  content: "";
}

.studio-family-live-copy {
  position: relative;
  z-index: 2;
  width: 48%;
}

.studio-family-live-copy > span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.studio-family-live-copy h3 {
  margin: 56px 0 10px;
  font-family: var(--display);
  font-size: clamp(27px, 2.2vw, 34px);
  letter-spacing: -0.045em;
}

.studio-family-live-copy p {
  margin: 0;
  color: var(--gray);
  font-size: 12px;
  line-height: 1.7;
}

.studio-family-live-copy > strong {
  display: inline-flex;
  margin-top: 28px;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.studio-family-live-copy b {
  color: var(--cyan);
}

.studio-family-live img {
  position: absolute;
  right: -3%;
  bottom: -14%;
  width: 58%;
  height: 116%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  transition: none;
}

.studio-family-live:hover img {
  transform: none;
}

.studio-family-live:hover {
  box-shadow: inset 0 0 0 1px rgba(0, 207, 193, 0.42);
}

.studio-family-planned {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.studio-family-planned article {
  display: grid;
  min-height: 165px;
  padding: 22px;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line-dark);
  background: var(--graphite);
}

.studio-family-planned article:nth-child(odd) {
  border-right: 1px solid var(--line-dark);
}

.studio-family-planned article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.studio-family-planned article > span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.studio-family-planned h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.studio-family-planned p {
  margin: 0;
  color: var(--gray);
  font-size: 10px;
}

.studio-family-footer {
  display: grid;
  min-height: 48px;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
}

.studio-family-footer span {
  display: flex;
  padding: 0 18px;
  align-items: center;
  gap: 9px;
  color: var(--gray);
  font-size: 9px;
}

.studio-family-footer span + span {
  border-left: 1px solid var(--line-dark);
}

.studio-family-footer b {
  color: var(--white);
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: 0.09em;
}

@media (max-width: 1120px) {
  .brand-workflow-board,
  .studio-family-rail {
    grid-template-columns: 1fr;
  }

  .workflow-link {
    padding: 18px 24px;
    flex-direction: row;
    border-top: 1px solid var(--line-dark);
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
    border-left: 0;
  }

  .workflow-link i {
    width: 88px;
    height: 1px;
  }

  .workflow-link i::before,
  .workflow-link i::after {
    top: 50%;
    left: auto;
    transform: translateY(-50%);
  }

  .workflow-link i::before {
    left: 0;
  }

  .workflow-link i::after {
    right: 0;
    bottom: auto;
  }

  .studio-family-live {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }
}

@media (max-width: 760px) {
  .brand-workflow-head,
  .studio-platform-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .workflow-endpoint {
    padding: 18px;
  }

  .workflow-product-stage {
    min-height: 250px;
  }

  .studio-family-live {
    min-height: 310px;
    padding: 24px;
  }

  .studio-family-live-copy {
    width: 64%;
  }

  .studio-family-live img {
    right: -16%;
    width: 72%;
    opacity: 0.72;
  }

  .studio-family-planned,
  .studio-family-footer {
    grid-template-columns: 1fr 1fr;
  }

  .studio-family-planned article:nth-child(2) {
    border-right: 0;
  }

  .studio-family-footer span:nth-child(3) {
    border-left: 0;
  }

  .studio-family-footer span {
    min-height: 44px;
    border-bottom: 1px solid var(--line-dark);
  }
}

/* Support hero · concrete file status instead of an abstract connection map */

.support-file-board {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--black);
}

.support-file-product {
  position: relative;
  display: flex;
  min-height: 196px;
  padding: 26px 190px 26px 26px;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
  background:
    linear-gradient(90deg, transparent 0 66%, rgba(0, 207, 193, 0.045) 66% 100%),
    var(--graphite);
}

.support-file-product > div {
  position: relative;
  z-index: 2;
  max-width: 54%;
}

.support-file-product span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.support-file-product strong,
.support-file-product small {
  display: block;
}

.support-file-product strong {
  margin-top: 34px;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.04em;
}

.support-file-product small {
  margin-top: 6px;
  color: var(--gray);
  font-size: 10px;
}

.support-file-product img {
  position: absolute;
  right: -4%;
  bottom: -24%;
  width: 52%;
  height: 142%;
  object-fit: contain;
  pointer-events: none;
  transition: none;
}

.support-file-status {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.support-file-status > a,
.support-file-status > div {
  display: grid;
  min-height: 96px;
  padding: 16px;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 10px;
  color: var(--white);
  border-right: 1px solid var(--line-dark);
  background: var(--black);
}

.support-file-status > :last-child {
  border-right: 0;
}

.support-file-status > a {
  transition:
    background 220ms ease,
    box-shadow 220ms ease;
}

.support-file-status > a:hover {
  background: var(--graphite);
  box-shadow: inset 0 -2px 0 var(--cyan);
}

.support-file-status > * > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(0, 207, 193, 0.42);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
}

.support-file-status strong,
.support-file-status small {
  display: block;
}

.support-file-status strong {
  font-size: 12px;
}

.support-file-status small {
  margin-top: 3px;
  color: var(--gray);
  font-size: 8px;
}

.support-file-status b {
  grid-column: 2;
  color: var(--gray);
  font-size: 8px;
  font-weight: 500;
}

.support-file-status .is-ready b {
  color: var(--cyan);
}

/* Support product directory · auto-fitting product families */

.support-product-index .shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  overflow: visible;
}

.support-index-label {
  display: grid;
  min-height: 70px;
  padding: 12px 18px;
  align-content: center;
  border-left: 1px solid var(--line-light);
}

.support-index-label span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.support-index-label strong {
  margin-top: 3px;
  font-size: 13px;
}

.support-index-label small {
  color: var(--gray);
  font-size: 8px;
}

.support-index-items {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.support-product-index .support-index-items > a,
.support-product-index .support-index-items > span {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 70px;
  padding: 12px 16px;
  align-content: center;
  border-left: 1px solid var(--line-light);
  border-right: 0;
  border-bottom: 1px solid var(--line-light);
}

.support-product-index .support-index-items > :last-child {
  border-right: 1px solid var(--line-light);
}

.support-product-index .support-index-items > a::after {
  height: 2px;
}

.support-product-index .support-index-items > a:hover {
  background: rgba(0, 207, 193, 0.045);
}

.support-index-items > span > b,
.support-index-items > a > span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 8px;
  font-weight: 700;
}

.support-index-items strong {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.support-index-items small {
  color: var(--gray);
  font-size: 8px;
}

@media (max-width: 920px) {
  .support-product-index {
    position: static;
  }

  .support-product-index .shell {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .support-index-label {
    min-height: 58px;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
  }

  .support-index-items {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

@media (max-width: 620px) {
  .support-file-status,
  .support-index-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .support-file-status > a,
  .support-file-status > div {
    border-bottom: 1px solid var(--line-dark);
  }

  .support-file-status > :nth-child(2) {
    border-right: 0;
  }

  .support-file-status > :last-child {
    border-right: 1px solid var(--line-dark);
  }
}

/* Resource hub · product-agnostic support visual */

.resource-hub {
  display: grid;
  overflow: hidden;
  color: var(--white);
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    var(--black);
  background-size: 32px 32px;
  grid-template-rows: auto 1fr auto;
}

.resource-hub-head {
  display: flex;
  min-height: 74px;
  padding: 16px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(26, 26, 26, 0.9);
}

.resource-hub-head > div {
  display: grid;
  gap: 6px;
}

.resource-hub-head span,
.resource-module > div > span,
.resource-hub-footer span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.resource-hub-head strong {
  font-size: 15px;
}

.resource-hub-head p {
  display: flex;
  margin: 0;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 9px;
}

.resource-hub-head p b {
  color: var(--white);
  font-family: var(--display);
  font-size: 12px;
}

.resource-hub-head p i {
  width: 1px;
  height: 12px;
  margin: 0 4px;
  background: var(--line-dark);
}

.resource-hub-grid {
  display: grid;
  min-height: 158px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Support hero · non-interactive engineering resource signal */
.support-signal-visual {
  position: relative;
  min-height: 320px;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 48%, rgba(0, 207, 193, 0.09), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.025), transparent 42%),
    #0b0d0d;
}

.signal-visual-head,
.signal-visual-foot,
.signal-visual-label {
  position: absolute;
  z-index: 2;
  font-family: var(--display);
}

.signal-visual-head {
  top: 18px;
  right: 20px;
  left: 20px;
  display: flex;
  justify-content: space-between;
  color: var(--cyan);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.signal-visual-head b {
  color: rgba(255,255,255,0.42);
  font-size: 7px;
  font-weight: 500;
}

.support-signal-visual svg {
  position: absolute;
  inset: 34px 0 34px;
  width: 100%;
  height: calc(100% - 68px);
}

.signal-orbit,
.signal-pulse,
.signal-document path,
.signal-package path,
.signal-core circle,
.signal-core path {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.signal-orbit {
  stroke: rgba(0, 207, 193, 0.22);
  stroke-width: 1;
  stroke-dasharray: 3 7;
}

.signal-orbit-secondary {
  stroke: rgba(255, 181, 31, 0.14);
}

.signal-pulse {
  stroke: url(#resource-line);
  stroke-width: 1.4;
  stroke-dasharray: 12 7;
  animation: supportSignalFlow 8s linear infinite;
}

.signal-document path,
.signal-package path {
  stroke: rgba(255,255,255,0.72);
  stroke-width: 1.35;
}

.signal-document circle,
.signal-nodes circle {
  fill: var(--cyan);
  filter: url(#resource-glow);
}

.signal-core > circle:first-child {
  fill: rgba(0,207,193,0.035);
  stroke: rgba(0,207,193,0.32);
  stroke-dasharray: 2 5;
}

.signal-core > circle:nth-child(2) {
  fill: #0b0d0d;
  stroke: rgba(255,255,255,0.32);
}

.signal-core path {
  stroke: var(--cyan);
  stroke-width: 1.4;
}

.signal-core-dot {
  fill: var(--cyan);
  filter: url(#resource-glow);
  animation: supportSignalPulse 2.4s ease-in-out infinite;
}

.signal-visual-label {
  bottom: 54px;
  display: grid;
  gap: 4px;
  color: rgba(255,255,255,0.84);
  font-size: 10px;
}

.signal-visual-label span {
  color: var(--cyan);
  font-size: 7px;
  letter-spacing: 0.12em;
}

.signal-label-left { left: 19%; }
.signal-label-right { right: 14%; text-align: right; }

.signal-visual-foot {
  right: 18px;
  bottom: 0;
  left: 18px;
  display: flex;
  height: 34px;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.48);
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 7px;
  letter-spacing: 0.12em;
}

.signal-visual-foot i {
  width: 24px;
  height: 1px;
  background: rgba(0,207,193,0.45);
}

.signal-visual-foot b {
  margin-left: auto;
  color: var(--cyan);
  font-size: 7px;
  font-weight: 500;
}

.support-download-placeholder:disabled {
  min-width: 148px;
  color: #6f7475;
  border-color: #c9cdce;
  background: #f3f5f5;
  opacity: 1;
  cursor: not-allowed;
  filter: saturate(0.45);
}

/* Launch detail pass · readable telemetry, stable future slots and live download */
.hero-telemetry span {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.045em;
  text-transform: none;
}

.hero-telemetry strong {
  margin-top: 6px;
  font-size: 19px;
  letter-spacing: -0.025em;
}

.studio-family-planned article {
  position: relative;
  display: flex;
  min-width: 0;
  padding: 44px 20px 22px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.studio-family-planned article > span {
  position: absolute;
  top: 16px;
  left: 18px;
  font-size: 9px;
}

.studio-family-planned article > div {
  min-width: 0;
}

.studio-family-planned h3 {
  font-size: 16px;
  line-height: 1.35;
}

.studio-family-planned p {
  font-size: 11px;
  line-height: 1.45;
}

.studio-download-button {
  min-width: 154px;
  justify-content: center;
}

.brand-manifesto h1 {
  max-width: 900px;
  font-size: clamp(3rem, 5.2vw, 6.4rem);
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.brand-manifesto h1 span {
  display: block;
}

.brand-manifesto h1 span + span {
  margin-top: 0.08em;
}

.brand-manifesto-subtitle {
  margin-bottom: 18px;
  font-size: 12px;
  letter-spacing: 0.18em;
}

@media (max-width: 760px) {
  .hero-telemetry span { font-size: 10px; }
  .hero-telemetry strong { font-size: 16px; }
  .studio-family-planned article { min-height: 136px; }
  .brand-manifesto h1 { font-size: clamp(2.7rem, 13vw, 4.3rem); }
}

/* Home first-screen instrument dock · telemetry and brand principles share one system */
.home-page .brand-rail {
  counter-reset: home-principle;
  border-top: 1px solid rgba(0, 207, 193, 0.2);
  border-bottom: 0;
  background:
    linear-gradient(90deg, rgba(0, 207, 193, 0.045), transparent 32%, rgba(0, 207, 193, 0.025)),
    rgba(16, 18, 18, 0.98);
}

.home-page .brand-rail p {
  grid-template-columns: 34px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 14px;
  counter-increment: home-principle;
}

.home-page .brand-rail p::before {
  display: flex;
  width: 24px;
  height: 24px;
  grid-row: 1 / 3;
  align-items: center;
  align-self: center;
  justify-content: center;
  color: var(--cyan);
  border: 1px solid rgba(0, 207, 193, 0.34);
  border-radius: 50%;
  content: "0" counter(home-principle);
  font-family: var(--display);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.home-page .brand-rail strong,
.home-page .brand-rail span {
  grid-column: 2;
}

.home-page .brand-rail strong {
  font-size: 16px;
  letter-spacing: -0.02em;
}

.home-page .brand-rail span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 8px;
  letter-spacing: 0.12em;
}

@media (min-width: 961px) {
  .home-page .refined-hero {
    height: 100vh;
    height: 100svh;
    min-height: 780px;
  }

  .home-page .refined-hero-layout {
    height: 100%;
    min-height: 0;
    padding-top: var(--header-height);
    padding-bottom: 172px;
  }

  .home-page .refined-product-stage {
    min-height: clamp(500px, 61vh, 590px);
  }

  .home-page .hero-telemetry {
    bottom: 84px;
    background:
      linear-gradient(90deg, rgba(8, 10, 10, 0.96), rgba(12, 18, 18, 0.9) 72%, rgba(8, 10, 10, 0.96));
    backdrop-filter: blur(20px);
  }

  .home-page .hero-telemetry .shell {
    min-height: 88px;
    grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(132px, 0.72fr);
  }

  .home-page .hero-telemetry .shell > div {
    min-height: 44px;
  }

  .home-page .hero-telemetry .shell > div > span::before {
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 10px rgba(0, 207, 193, 0.82);
    content: "";
    vertical-align: 1px;
  }

  .home-page .hero-telemetry a {
    min-height: 44px;
    justify-content: center;
    color: var(--white);
    border: 1px solid rgba(0, 207, 193, 0.4);
    background: rgba(0, 207, 193, 0.1);
  }

  .home-page .hero-telemetry a span {
    color: var(--cyan);
  }

  .home-page .brand-rail {
    position: absolute;
    z-index: 6;
    right: 0;
    bottom: 0;
    left: 0;
    height: 84px;
  }

  .home-page .brand-rail .shell {
    height: 100%;
  }

  .home-page .brand-rail p {
    min-height: 84px;
    padding: 14px 28px;
  }
}

@media (max-width: 960px) {
  .home-page .brand-rail {
    position: relative;
    z-index: 5;
  }
}

@media (max-width: 560px) {
  .home-page .brand-rail p:nth-child(n + 3) {
    display: grid;
  }

  .home-page .brand-rail p {
    min-height: 64px;
    padding: 10px 14px;
  }

  .home-page .brand-rail strong {
    font-size: 13px;
  }
}

@keyframes supportSignalFlow {
  to { stroke-dashoffset: -152; }
}

@keyframes supportSignalPulse {
  0%, 100% { opacity: 0.45; transform: scale(0.72); }
  50% { opacity: 1; transform: scale(1); }
}

@media (max-width: 760px) {
  .support-signal-visual { min-height: 260px; }
  .signal-visual-head b { display: none; }
  .signal-visual-label { bottom: 46px; font-size: 9px; }
  .signal-label-left { left: 8%; }
  .signal-label-right { right: 8%; }
}

@media (prefers-reduced-motion: reduce) {
  .signal-pulse,
  .signal-core-dot { animation: none; }
}

.resource-module {
  position: relative;
  display: grid;
  min-width: 0;
  padding: 20px 16px;
  grid-template-columns: 46px minmax(0, 1fr);
  align-content: center;
  align-items: center;
  gap: 8px 12px;
  color: var(--white);
  border-right: 1px solid var(--line-dark);
  background: rgba(13, 13, 13, 0.72);
}

.resource-module:last-child {
  border-right: 0;
}

a.resource-module {
  transition:
    background 220ms ease,
    box-shadow 220ms ease;
}

a.resource-module:hover,
a.resource-module:focus-visible {
  background: var(--graphite);
  box-shadow: inset 0 -2px 0 var(--cyan);
}

.resource-module > div {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.resource-module strong {
  font-size: 12px;
}

.resource-module small {
  overflow: hidden;
  color: var(--gray);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.resource-module > b {
  grid-column: 2;
  color: var(--gray);
  font-size: 8px;
  font-weight: 500;
}

.resource-module.is-ready > b {
  color: var(--cyan);
}

.resource-glyph {
  position: relative;
  display: grid;
  width: 42px;
  height: 46px;
  grid-row: 1 / span 2;
  place-items: center;
  color: var(--cyan);
}

.resource-glyph-document {
  width: 34px;
  height: 42px;
  margin-left: 4px;
  border: 1px solid rgba(0, 207, 193, 0.7);
}

.resource-glyph-document::before {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 11px;
  height: 11px;
  border-bottom: 1px solid rgba(0, 207, 193, 0.7);
  border-left: 1px solid rgba(0, 207, 193, 0.7);
  background: var(--black);
  content: "";
}

.resource-glyph-document span {
  width: 15px;
  height: 1px;
  margin-top: 7px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor, 0 12px 0 currentColor;
}

.resource-glyph-firmware::before,
.resource-glyph-firmware::after {
  position: absolute;
  content: "";
}

.resource-glyph-firmware::before {
  inset: 8px;
  border: 1px solid rgba(0, 207, 193, 0.72);
  background:
    linear-gradient(90deg, transparent 45%, rgba(0, 207, 193, 0.22) 45% 55%, transparent 55%),
    linear-gradient(transparent 45%, rgba(0, 207, 193, 0.22) 45% 55%, transparent 55%);
}

.resource-glyph-firmware::after {
  inset: 3px 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 4px, currentColor 4px 6px, transparent 6px 10px) top / 100% 1px no-repeat,
    repeating-linear-gradient(90deg, transparent 0 4px, currentColor 4px 6px, transparent 6px 10px) bottom / 100% 1px no-repeat,
    repeating-linear-gradient(0deg, transparent 0 4px, currentColor 4px 6px, transparent 6px 10px) left / 1px 100% no-repeat,
    repeating-linear-gradient(0deg, transparent 0 4px, currentColor 4px 6px, transparent 6px 10px) right / 1px 100% no-repeat;
  opacity: 0.75;
}

.resource-glyph-driver::before {
  width: 27px;
  height: 17px;
  border: 1px solid rgba(0, 207, 193, 0.72);
  border-radius: 2px 2px 7px 7px;
  content: "";
}

.resource-glyph-driver::after {
  position: absolute;
  top: 17px;
  width: 13px;
  height: 9px;
  border: 1px solid rgba(0, 207, 193, 0.72);
  border-bottom: 0;
  content: "";
}

.resource-glyph-driver span {
  position: absolute;
  top: 20px;
  width: 3px;
  height: 3px;
  border: 1px solid currentColor;
  box-shadow: 7px 0 0 -1px var(--black), 7px 0 0 0 currentColor;
}

.resource-hub-footer {
  display: flex;
  min-height: 34px;
  padding: 0 20px;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line-dark);
  background: rgba(26, 26, 26, 0.88);
}

.resource-hub-footer i {
  height: 1px;
  flex: 1;
  opacity: 0.45;
  background: var(--cyan);
}

.resource-hub-footer small {
  color: var(--gray);
  font-size: 8px;
}

/* Instrument family · device-side ecosystem visual */

.family-system-stage {
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 50% 100%, rgba(0, 207, 193, 0.09), transparent 52%),
    var(--black);
  background-size: 30px 30px, 30px 30px, 100% 100%, 100% 100%;
}

.family-system {
  width: min(100%, 460px);
  overflow: hidden;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(13, 13, 13, 0.94);
}

.family-system-head {
  display: flex;
  min-height: 38px;
  padding: 0 14px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--display);
  font-size: 7px;
  letter-spacing: 0.11em;
}

.family-system-head b {
  color: var(--cyan);
  font-size: 7px;
  font-weight: 600;
}

.family-modules {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.family-module {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 112px;
  padding: 15px 10px 13px;
  align-content: center;
  gap: 6px;
  border-right: 1px solid var(--line-dark);
}

.family-module:last-child {
  border-right: 0;
}

.family-module::after {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gray);
  content: "";
}

.family-module.is-live {
  background: rgba(0, 207, 193, 0.055);
  box-shadow: inset 0 -2px 0 var(--cyan);
}

.family-module.is-live::after {
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(0, 207, 193, 0.72);
}

.family-module b {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.04em;
}

.family-module span {
  overflow: hidden;
  font-size: 10px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.family-module small {
  color: var(--gray);
  font-size: 7px;
}

.family-control-rail {
  display: grid;
  min-height: 72px;
  padding: 12px 14px;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  border-top: 1px solid var(--line-dark);
  background: var(--graphite);
}

.family-control-rail > div {
  display: grid;
  gap: 4px;
}

.family-control-rail > div span {
  color: var(--gray);
  font-family: var(--display);
  font-size: 7px;
  letter-spacing: 0.12em;
}

.family-control-rail > div strong {
  font-size: 11px;
}

.family-control-rail > i {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 207, 193, 0.56);
  border-radius: 50%;
  place-items: center;
}

.family-control-rail > i::before {
  position: absolute;
  width: 26px;
  height: 26px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  content: "";
}

.family-control-rail > i span {
  position: absolute;
  top: 5px;
  width: 1px;
  height: 10px;
  background: var(--cyan);
  transform: rotate(32deg);
  transform-origin: 50% 15px;
}

.family-control-rail > b {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: 0.1em;
}

@media (max-width: 760px) {
  .resource-hub-grid {
    grid-template-columns: 1fr;
  }

  .resource-module {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .resource-module:last-child {
    border-bottom: 0;
  }

  .family-modules {
    grid-template-columns: repeat(3, 1fr);
  }

  .family-module {
    min-height: 92px;
    border-bottom: 1px solid var(--line-dark);
  }

  .family-module:nth-child(3) {
    border-right: 0;
  }
}

/* Global header and navigation motion governance */

.brand-page {
  padding-top: var(--header-height);
}

.home-page {
  background: var(--black);
}

@media (min-width: 961px) {
  .home-page .refined-hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .home-page .refined-hero-layout {
    min-height: max(760px, calc(100vh - 100px));
    min-height: max(760px, calc(100svh - 100px));
  }
}

@media (max-width: 1040px) {
  .catalog-product,
  .catalog-principles .shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .catalog-product-visual {
    order: -1;
  }

  .catalog-principles > .shell > .button {
    grid-column: 1;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition:
    opacity 360ms ease-out,
    transform 420ms var(--ease);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal].is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* SG1224 detail — integrated calibration-bench hero */

.sg-detail-page {
  background: var(--black);
}

.sg-detail-nav {
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(13, 13, 13, 0.94);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}

.sg-detail-nav .shell {
  min-height: 58px;
}

.sg-detail-nav strong {
  color: var(--white);
  font-size: 14px;
  letter-spacing: -0.01em;
}

.sg-detail-nav a {
  color: rgba(255, 255, 255, 0.56);
}

.sg-detail-nav a:hover,
.sg-detail-nav a:focus-visible {
  color: var(--white);
}

.sg-detail-nav .button-primary,
.sg-detail-nav .button-primary:hover,
.sg-detail-nav .button-primary:focus-visible {
  color: var(--black);
}

.sg-product-hero {
  display: grid;
  min-height: calc(100vh - var(--header-height) - 58px);
  min-height: calc(100svh - var(--header-height) - 58px);
  isolation: isolate;
  grid-template-rows: minmax(560px, 1fr) auto;
  background:
    radial-gradient(circle at 68% 47%, rgba(22, 184, 184, 0.13), transparent 27%),
    linear-gradient(112deg, #090c0d 0%, #0b1011 58%, #071416 100%);
}

.sg-product-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent 6%, #000 54%, #000 92%, transparent);
  content: "";
  pointer-events: none;
}

.sg-product-hero .signal-canvas {
  opacity: 0.26;
}

.sg-hero-blueprint {
  position: absolute;
  z-index: 0;
  top: 2%;
  right: -3%;
  width: min(62vw, 1050px);
  height: 86%;
  opacity: 0.76;
  pointer-events: none;
}

.sg-hero-blueprint svg {
  width: 100%;
  height: 100%;
}

.sg-blueprint-grid,
.sg-blueprint-device,
.sg-blueprint-axis {
  fill: none;
  stroke: rgba(116, 230, 226, 0.11);
  stroke-width: 1;
}

.sg-blueprint-device {
  stroke: rgba(116, 230, 226, 0.16);
  stroke-dasharray: 5 9;
}

.sg-blueprint-axis {
  stroke: rgba(255, 255, 255, 0.15);
}

.sg-blueprint-trace,
.sg-blueprint-glow {
  fill: none;
  stroke: url("#sgTrace");
  stroke-width: 1.5;
}

.sg-blueprint-glow {
  stroke-width: 3;
  opacity: 0.18;
}

.sg-product-hero .sg-hero-stage {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 0;
  padding: clamp(52px, 5.2vh, 72px) 0 clamp(38px, 4.2vh, 58px);
  grid-template-columns: minmax(420px, 0.8fr) minmax(620px, 1.2fr);
  align-items: center;
  gap: clamp(34px, 4vw, 76px);
}

.sg-product-copy {
  max-width: 560px;
}

.sg-product-copy h1 {
  margin-top: 14px;
  font-size: clamp(58px, 5vw, 84px);
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.sg-product-copy h1 small {
  margin-bottom: 14px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.2;
}

.sg-product-copy h2 {
  margin-top: 27px;
  font-size: clamp(26px, 2vw, 34px);
  letter-spacing: -0.035em;
}

.sg-product-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.78;
}

.sg-hero-path {
  display: flex;
  max-width: 480px;
  margin-top: 24px;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.sg-hero-path i {
  position: relative;
  height: 1px;
  margin: 0 12px;
  flex: 1;
  overflow: hidden;
  background: rgba(116, 230, 226, 0.2);
}

.sg-hero-path i::after {
  position: absolute;
  top: 0;
  left: -35%;
  width: 35%;
  height: 100%;
  background: var(--cyan);
  content: "";
  animation: sg-path-pulse 3.8s var(--ease) infinite;
}

@keyframes sg-path-pulse {
  0%, 16% { transform: translateX(0); opacity: 0; }
  32% { opacity: 1; }
  72%, 100% { transform: translateX(390%); opacity: 0; }
}

.sg-product-copy .hero-actions {
  margin-top: 26px;
}

.sg-product-visual {
  min-height: 480px;
}

.sg-product-visual::before {
  position: absolute;
  right: 4%;
  bottom: 6%;
  left: 2%;
  height: 25%;
  border: 1px solid rgba(116, 230, 226, 0.16);
  background:
    linear-gradient(90deg, transparent, rgba(22, 184, 184, 0.08), transparent),
    rgba(255, 255, 255, 0.018);
  box-shadow: 0 0 64px rgba(22, 184, 184, 0.07);
  content: "";
  transform: perspective(560px) rotateX(67deg);
  transform-origin: center bottom;
}

.sg-product-visual img {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 49%;
  width: min(108%, 820px);
  max-width: none;
  margin: 0;
  filter: drop-shadow(0 42px 32px rgba(0, 0, 0, 0.56));
  transform: translate(-50%, -47%);
}

.sg-product-visual:hover img {
  transform: translate(-50%, -47%);
}

.sg-product-bench {
  position: absolute;
  z-index: 4;
  inset: 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  pointer-events: none;
}

.sg-bench-mark {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.sg-bench-mark::before {
  width: 42px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(116, 230, 226, 0.35);
  content: "";
}

.sg-bench-mark-top {
  top: 23%;
  left: 0;
}

.sg-bench-mark-side {
  right: 0;
  bottom: 18%;
  flex-direction: row-reverse;
}

.sg-bench-index {
  position: absolute;
  top: 5%;
  right: 2%;
  color: rgba(255, 255, 255, 0.35);
}

.sg-hero-capabilities {
  position: relative;
  z-index: 5;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(14, 18, 19, 0.9);
  backdrop-filter: blur(12px);
}

.sg-product-hero .sg-hero-capabilities .shell {
  display: grid;
  min-height: 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
}

.sg-hero-capabilities article {
  display: flex;
  min-height: 94px;
  padding: 20px 26px;
  align-items: center;
  gap: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.sg-hero-capabilities article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sg-hero-capabilities svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--cyan);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
}

.sg-hero-capabilities span,
.sg-hero-capabilities strong {
  display: block;
}

.sg-hero-capabilities span {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.sg-hero-capabilities strong {
  color: var(--white);
  font-family: var(--display);
  font-size: 14px;
}

@media (min-width: 1181px) and (max-height: 820px) {
  .sg-product-hero {
    grid-template-rows: minmax(520px, 1fr) auto;
  }

  .sg-product-hero .sg-hero-stage {
    padding-block: 32px;
  }

  .sg-product-copy h1 {
    font-size: clamp(56px, 4.6vw, 70px);
  }

  .sg-product-copy h2 {
    margin-top: 22px;
  }

  .sg-product-copy .hero-actions,
  .sg-hero-path {
    margin-top: 20px;
  }

  .sg-product-visual {
    min-height: 430px;
  }

  .sg-product-visual img {
    width: min(96%, 690px);
  }
}

@media (max-width: 1180px) {
  .sg-product-hero {
    grid-template-rows: auto auto;
  }

  .sg-product-hero .sg-hero-stage {
    grid-template-columns: 1fr;
  }

  .sg-product-copy {
    padding-top: 26px;
  }

  .sg-product-visual {
    min-height: 520px;
  }

  .sg-product-visual img {
    width: min(104%, 760px);
  }
}

@media (max-width: 760px) {
  .sg-detail-nav .shell {
    gap: 14px;
    overflow-x: auto;
  }

  .sg-detail-nav strong {
    position: sticky;
    left: 0;
    padding-right: 12px;
    background: #0d0d0d;
  }

  .sg-detail-nav .subnav-primary {
    display: none;
  }

  .sg-product-hero .sg-hero-stage {
    padding-top: 54px;
  }

  .sg-product-copy h1 {
    font-size: 52px;
  }

  .sg-product-visual {
    min-height: 400px;
  }

  .sg-bench-mark-top {
    top: 18%;
  }

  .sg-hero-capabilities .shell {
    grid-template-columns: repeat(2, 1fr);
  }

  .sg-hero-capabilities article:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .sg-hero-capabilities article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sg-hero-path i::after {
    animation: none;
  }
}

/* Unified language and store actions */

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 8px;
}

.header-language {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  transition:
    color 200ms var(--ease),
    border-color 200ms var(--ease),
    background 200ms var(--ease);
}

.header-language {
  min-width: 72px;
  padding: 0 15px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: transparent;
  cursor: pointer;
}

.header-language svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.header-language:hover,
.header-language:focus-visible {
  color: var(--white);
  border-color: rgba(116, 230, 226, 0.72);
  background: rgba(116, 230, 226, 0.08);
}

html[lang="en"] .main-nav {
  gap: clamp(22px, 2.3vw, 42px);
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: 180px 1fr 180px;
  }

  .header-language {
    min-width: 62px;
    padding-inline: 12px;
  }

}

@media (max-width: 860px) {
  .header-actions {
    margin-left: auto;
  }

  .header-language {
    min-width: 44px;
    width: 44px;
    padding: 0;
  }

}

/* Stability pass: fixed typography metrics, non-mutating navigation and text-safe reveals */

.site-header,
.site-header.is-solid,
.site-header.force-solid,
.sg-detail-nav {
  backdrop-filter: none;
}

.site-header {
  isolation: isolate;
  transition: none;
}

.nav-product-anchor {
  padding-right: 15px;
}

.nav-product-anchor::before {
  position: absolute;
  top: 50%;
  right: 1px;
  width: 5px;
  height: 5px;
  margin-top: -4px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform 180ms var(--ease);
}

.nav-product-anchor.is-menu-open::before {
  margin-top: -1px;
  transform: rotate(225deg);
}

.nav-product-panel-global.is-open {
  visibility: visible;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.nav-product-panel-global {
  transform: none;
  transition:
    opacity 180ms ease-out,
    visibility 180ms ease-out;
}

@media (max-width: 1120px) {
  .nav-product-panel-global {
    max-width: 100vw;
    padding-inline: 24px;
    overflow: hidden;
    grid-template-columns: minmax(250px, 1.3fr) repeat(4, minmax(105px, 1fr));
    gap: 10px;
  }

  .support-faq-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .support-faq-grid > * {
    width: 100%;
    max-width: none;
    min-width: 0;
  }
}

@media (max-width: 860px) {
  .nav-product-panel-global,
  .nav-product-anchor::before {
    display: none;
  }

  .nav-product-anchor {
    padding-right: 0;
  }
}

@media (max-width: 960px) {
  .brand-workflow-head,
  .sg-compact-head,
  .support-faq-grid,
  .studio-section-head,
  .support-section-head,
  .support-mini-head,
  .home-brand-focus > .shell,
  .home-studio-heading {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .brand-workflow-head > p,
  .sg-compact-head > p,
  .support-faq-grid > * {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .studio-family-live {
    overflow: hidden;
  }
}

[data-reveal] {
  opacity: 0;
  transform: none;
  transition: opacity 300ms ease-out;
  will-change: auto;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .nav-product-anchor::before,
  [data-reveal] {
    transition: none;
  }
}

/* SG1224 industrial-design showcase */

.product-showcase {
  padding: clamp(72px, 7vw, 96px) 0;
  color: var(--white);
  background: var(--black);
}

.product-showcase-head {
  display: grid;
  margin-bottom: 40px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  align-items: end;
  gap: 72px;
}

.product-showcase-head h2 {
  margin: 10px 0 0;
  font-family: var(--display);
  font-size: clamp(34px, 3vw, 46px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.product-showcase-head > p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.8;
}

.product-stage {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    radial-gradient(circle at 50% 43%, rgba(0, 207, 193, 0.07), transparent 46%),
    #0b0d0e;
  background-size: 48px 48px, 48px 48px, 100% 100%, 100% 100%;
}

.product-stage::after {
  position: absolute;
  z-index: 1;
  right: 14%;
  bottom: 106px;
  left: 14%;
  height: 1px;
  opacity: 0.54;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  content: "";
}

.product-stage-heading {
  position: absolute;
  z-index: 5;
  top: 28px;
  left: 30px;
}

.product-stage-heading span {
  display: block;
  color: var(--cyan);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.product-stage-heading strong {
  display: block;
  margin-top: 8px;
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: -0.035em;
}

.product-stage-count {
  position: absolute;
  z-index: 5;
  top: 32px;
  right: 30px;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.product-stage-count b {
  color: var(--white);
}

.product-stage-visual {
  position: absolute;
  z-index: 2;
  inset: 64px 176px 108px;
  overflow: hidden;
}

.product-stage-halo {
  position: absolute;
  z-index: 1;
  bottom: 2%;
  left: 50%;
  width: 82%;
  height: 36%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 207, 193, 0.2), transparent 68%);
  transform: translateX(-50%) rotateX(63deg);
}

.product-stage-image {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(88%, 920px);
  max-width: none;
  margin-left: var(--product-shift-x, -1.6%);
  opacity: 1;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 34px 32px rgba(0, 0, 0, 0.62));
  transition: opacity 250ms ease;
}

.product-stage-image.is-changing {
  opacity: 0;
}

.product-callout {
  position: absolute;
  z-index: 5;
  min-width: 150px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.45;
}

.product-callout strong,
.product-callout span {
  display: block;
}

.product-callout strong {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 14px;
}

.product-callout::before {
  position: absolute;
  top: 10px;
  width: 42px;
  height: 1px;
  background: var(--cyan);
  content: "";
}

.product-callout-left {
  top: 45%;
  left: 30px;
  padding-left: 56px;
}

.product-callout-left::before {
  left: 0;
}

.product-callout-right-top,
.product-callout-right-bottom {
  right: 30px;
  padding-right: 56px;
  text-align: right;
}

.product-callout-right-top {
  top: 34%;
}

.product-callout-right-bottom {
  top: 54%;
}

.product-callout-right-top::before,
.product-callout-right-bottom::before {
  right: 0;
}

.product-view-track {
  position: absolute;
  z-index: 6;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.product-view-tab {
  position: relative;
  display: grid;
  min-height: 82px;
  padding: 12px 14px 11px 84px;
  overflow: hidden;
  align-content: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line-dark);
  background: rgba(17, 20, 21, 0.96);
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease;
}

.product-view-tab:hover,
.product-view-tab:focus-visible {
  border-color: rgba(0, 207, 193, 0.55);
  background: #111918;
}

.product-view-tab img {
  position: absolute;
  top: 9px;
  left: 10px;
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.product-view-tab span,
.product-view-tab strong,
.product-view-tab small {
  display: block;
}

.product-view-tab strong {
  color: var(--white);
  font-size: 13px;
  line-height: 1.25;
}

.product-view-tab small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  line-height: 1.35;
}

.product-view-tab.is-active {
  border-color: var(--cyan);
  background: #10201e;
}

.product-view-tab i {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
}

.product-view-tab.is-active i {
  animation: productTrackProgress 4.8s linear;
}

.product-showcase.is-paused .product-view-tab.is-active i {
  animation-play-state: paused;
}

@keyframes productTrackProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (max-width: 1100px) {
  .product-stage-visual {
    inset-inline: 136px;
  }

  .product-callout {
    min-width: 128px;
  }
}

@media (max-width: 950px) {
  .product-showcase-head {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .product-showcase-head > p {
    max-width: none;
  }

  .product-stage {
    min-height: 600px;
  }

  .product-stage-visual {
    inset: 74px 22px 112px;
  }

  .product-callout {
    display: none;
  }
}

@media (max-width: 680px) {
  .product-stage {
    min-height: 720px;
  }

  .product-stage-visual {
    inset: 80px 8px 292px;
  }

  .product-stage::after {
    bottom: 290px;
  }

  .product-stage-heading {
    top: 22px;
    left: 20px;
  }

  .product-stage-count {
    top: 26px;
    right: 20px;
  }

  .product-view-track {
    right: 14px;
    bottom: 14px;
    left: 14px;
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
  }

  .product-view-tab {
    min-height: 78px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-stage-image {
    transition: none;
  }

  .product-view-tab.is-active i {
    animation: none;
    transform: scaleX(1);
  }
}

/* Mobile optimization layer: <= 860px only */
@media (max-width: 860px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  body {
    font-size: 14px;
  }

  main,
  section,
  .shell,
  .header-inner,
  .footer-grid,
  .footer-bottom,
  .refined-hero-layout,
  .product-glance-grid,
  .home-studio-layout,
  .catalog-hero .shell,
  .catalog-product,
  .sg-hero-stage,
  .studio-hero-grid,
  .support-hero-grid,
  .brand-manifesto .shell {
    min-width: 0;
  }

  h1,
  h2,
  h3,
  p,
  a,
  strong,
  span,
  dd {
    overflow-wrap: anywhere;
  }

  .site-header {
    height: 64px;
  }

  .header-inner {
    width: calc(100% - 24px);
    height: 64px;
    gap: 8px;
  }

  .brand {
    min-width: 0;
    flex: 0 1 auto;
    font-size: 18px;
  }

  .brand img {
    width: 30px;
    height: 30px;
  }

  .brand span {
    white-space: nowrap;
  }

  .header-actions {
    gap: 6px;
  }

  .header-language,
  .menu-toggle {
    display: inline-flex;
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
  }

  .header-language span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .header-language svg {
    display: none;
  }

  .header-language span {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    font-size: 11px;
    font-weight: 700;
  }

  .menu-toggle {
    margin-left: 0;
  }

  .mobile-nav {
    top: 64px;
    padding: 18px 20px 30px;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .mobile-nav a {
    min-height: 56px;
    font-size: 18px;
  }

  .button {
    min-height: 44px;
  }

  .refined-hero {
    min-height: max(760px, 100svh);
    padding-top: 64px;
  }

  .refined-hero-layout {
    min-height: max(690px, calc(100svh - 64px));
    padding: 54px 0 176px;
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
  }

  .refined-hero-copy {
    position: relative;
    z-index: 4;
    max-width: min(620px, 100%);
  }

  .refined-hero-copy h1 {
    font-size: clamp(48px, 12vw, 72px);
    line-height: 0.96;
  }

  .refined-hero-tagline {
    font-size: clamp(22px, 5.6vw, 30px);
  }

  .refined-hero-desc {
    max-width: 590px;
    font-size: 14px;
    line-height: 1.72;
  }

  .refined-actions {
    display: grid;
    max-width: 420px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .refined-actions .button {
    padding-inline: 12px;
    justify-content: center;
  }

  .refined-product-stage {
    position: absolute;
    right: -8%;
    bottom: 84px;
    width: min(82vw, 540px);
    height: 43%;
  }

  .refined-product-stage > img {
    top: 50%;
    width: 118%;
  }

  .stage-note {
    display: none;
  }

  .hero-telemetry {
    bottom: 0;
  }

  .hero-telemetry .shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-telemetry .shell > div {
    min-height: 72px;
    padding: 12px 14px;
  }

  .hero-telemetry a {
    display: none;
  }

  .brand-rail .shell,
  .home-section-head,
  .home-studio-heading,
  .usecase-heading,
  .home-brand-focus .shell,
  .home-studio-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .brand-rail .shell {
    gap: 0;
  }

  .brand-rail p {
    min-height: 74px;
    padding: 16px 0;
  }

  .product-glance,
  .home-usecases,
  .home-brand-focus,
  .home-studio {
    padding: 78px 0;
  }

  .home-section-head,
  .home-studio-heading,
  .usecase-heading {
    gap: 20px;
  }

  .home-section-head h2,
  .home-studio-heading h2,
  .usecase-heading h2,
  .brand-focus-copy h2 {
    font-size: clamp(34px, 7vw, 50px);
  }

  .product-glance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-glance-featured {
    min-height: 560px;
    grid-column: 1 / -1;
  }

  .product-glance-featured > img {
    right: -8%;
    bottom: -7%;
    width: min(74vw, 570px);
  }

  .product-glance-card {
    min-height: 300px;
  }

  .usecase-icon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-brand-focus .shell,
  .home-studio-layout {
    gap: 34px;
  }

  .brand-focus-list article,
  .home-studio-values article {
    min-height: 0;
  }

  .home-studio-console {
    width: 100%;
  }

  .home-studio-console figcaption {
    gap: 10px;
    flex-wrap: wrap;
  }

  .home-studio-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-hero {
    min-height: 0;
    padding: 118px 0 68px;
  }

  .catalog-hero .shell {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.72fr);
    gap: 32px;
  }

  .catalog-heading h1 {
    font-size: clamp(38px, 7vw, 54px);
  }

  .catalog-live,
  .catalog-roadmap {
    padding: 72px 0;
  }

  .catalog-product {
    grid-template-columns: minmax(0, 1fr);
  }

  .catalog-product-copy {
    padding: 38px 30px;
  }

  .catalog-product-visual {
    min-height: 460px;
    order: -1;
  }

  .catalog-product-visual img {
    width: min(112%, 720px);
  }

  .catalog-roadmap-list article {
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 14px;
  }

  .catalog-desc {
    grid-column: 2 / -1;
  }

  .catalog-principles .shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .sg-detail-nav {
    top: 64px;
  }

  .sg-detail-nav .shell {
    width: 100%;
    padding-left: 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .sg-detail-nav .shell::-webkit-scrollbar {
    display: none;
  }

  .sg-detail-nav strong,
  .sg-detail-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .sg-product-hero .sg-hero-stage {
    min-height: 760px;
    padding-top: 94px;
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
  }

  .sg-product-copy {
    max-width: 680px;
  }

  .sg-product-copy h1 {
    font-size: clamp(54px, 10vw, 76px);
  }

  .sg-product-copy h2 {
    font-size: clamp(28px, 5vw, 38px);
  }

  .sg-product-visual {
    position: absolute;
    right: 0;
    bottom: 54px;
    left: 28%;
    height: 45%;
  }

  .sg-product-visual img {
    width: min(115%, 700px);
  }

  .sg-hero-capabilities .shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sg-mode-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .sg-mode-grid article {
    min-height: 0;
  }

  .sg-spec-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .studio-hero-grid,
  .studio-platform-grid,
  .studio-download-board,
  .support-hero-grid,
  .support-faq-grid,
  .brand-workflow-head,
  .brand-page .story-grid,
  .brand-page .company-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .studio-showcase-hero,
  .studio-workflow,
  .studio-download-section,
  .support-compact-hero,
  .support-resources,
  .support-faq,
  .brand-page .story-block {
    padding-block: 76px;
  }

  .studio-hero-grid,
  .support-hero-grid {
    gap: 38px;
  }

  .studio-window-hero,
  .studio-window-hero:hover {
    transform: none;
  }

  .studio-hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .studio-capability-rail,
  .studio-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .studio-family-console,
  .studio-device-map {
    max-width: 100%;
    overflow: hidden;
  }

  .support-product-index .shell {
    width: 100%;
    padding-inline: 18px;
    overflow: hidden;
  }

  .support-index-items {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .support-index-items > * {
    min-width: 190px;
    scroll-snap-align: start;
  }

  .support-resource-row {
    grid-template-columns: 64px minmax(0, 1fr) auto;
  }

  .support-planned-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-page .brand-manifesto,
  .brand-page .brand-manifesto .shell {
    min-height: 0;
  }

  .brand-page .brand-manifesto .shell {
    padding-block: 76px;
    gap: 34px;
  }

  .brand-page .brand-manifesto img {
    width: min(220px, 42vw);
    max-height: 220px;
  }

  .brand-workflow-board {
    overflow-x: auto;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 560px) {
  .shell {
    width: calc(100% - 28px);
  }

  .refined-hero {
    min-height: 790px;
  }

  .refined-hero-layout {
    min-height: 720px;
    padding: 36px 0 238px;
  }

  .refined-hero-copy h1 {
    font-size: clamp(44px, 13vw, 58px);
  }

  .refined-hero-tagline {
    font-size: clamp(20px, 6.5vw, 27px);
  }

  .refined-actions {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .refined-actions .button {
    font-size: 11px;
  }

  .refined-product-stage {
    right: auto;
    bottom: 119px;
    left: 50%;
    width: 100vw;
    height: 34%;
    transform: translateX(-50%);
  }

  .refined-product-stage > img {
    right: auto;
    left: 50%;
    width: min(118vw, 520px);
    animation: none;
    transform: translateX(-50%);
  }

  .hero-telemetry .shell {
    width: 100%;
  }

  .hero-telemetry .shell > div {
    min-height: 58px;
    padding: 9px 14px;
  }

  .hero-telemetry span {
    font-size: 8px;
  }

  .hero-telemetry strong {
    font-size: 15px;
  }

  .brand-rail p:nth-child(n + 3) {
    display: none;
  }

  .product-glance,
  .home-usecases,
  .home-brand-focus,
  .home-studio,
  .catalog-live,
  .catalog-roadmap {
    padding: 64px 0;
  }

  .home-section-head h2,
  .home-studio-heading h2,
  .usecase-heading h2,
  .brand-focus-copy h2,
  .catalog-heading h1,
  .catalog-roadmap .compact-section-head h2,
  .catalog-principles h2,
  .studio-hero-copy h1,
  .support-hero-copy h1,
  .brand-page .brand-manifesto h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.06;
  }

  .product-glance-grid,
  .usecase-icon-grid,
  .home-studio-values,
  .studio-capability-rail,
  .studio-feature-grid,
  .support-planned-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-glance-featured {
    min-height: 520px;
  }

  .product-glance-featured > img {
    right: -22%;
    width: 118vw;
  }

  .product-glance-card {
    min-height: 250px;
  }

  .usecase-icon-grid article {
    min-height: 128px;
  }

  .home-studio-console figcaption strong {
    width: 100%;
  }

  .catalog-hero {
    padding: 106px 0 58px;
  }

  .catalog-hero .shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
  }

  .catalog-status {
    min-height: 190px;
    padding: 28px 24px;
  }

  .catalog-product-visual {
    min-height: 330px;
  }

  .catalog-product-copy {
    padding: 30px 22px 36px;
  }

  .catalog-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-roadmap-list article {
    padding: 22px 18px;
    grid-template-columns: 48px minmax(0, 1fr) auto;
  }

  .catalog-roadmap-list article > i {
    display: none;
  }

  .sg-detail-nav .shell {
    min-height: 58px;
    padding-left: 14px;
  }

  .sg-detail-nav strong {
    margin-right: 6px;
  }

  .sg-detail-nav a:not(.subnav-primary) {
    display: none;
  }

  .sg-detail-nav .subnav-primary {
    margin-left: auto;
    margin-right: 12px;
  }

  .sg-product-hero .sg-hero-stage {
    display: block;
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    min-height: 0;
    padding: 92px 0 28px;
    justify-self: center;
  }

  .sg-product-hero {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }

  .sg-product-copy {
    width: 100%;
    max-width: 100%;
  }

  .sg-product-copy h1 {
    font-size: clamp(48px, 14vw, 64px);
  }

  .sg-product-copy h1 small {
    font-size: 11px;
  }

  .sg-product-copy > p:not(.eyebrow) {
    max-width: none;
    font-size: 14px;
  }

  .sg-hero-path {
    display: grid;
    overflow-x: auto;
    grid-template-columns: repeat(3, minmax(108px, 1fr));
    gap: 6px;
    scrollbar-width: none;
  }

  .sg-hero-path i {
    display: none;
  }

  .sg-hero-path span {
    min-height: 38px;
    padding: 10px 8px;
    border: 1px solid var(--line-dark);
    text-align: center;
  }

  .sg-product-copy .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sg-product-copy .hero-actions .button {
    padding-inline: 10px;
    justify-content: center;
  }

  .sg-product-visual {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    height: 310px;
    min-height: 310px;
    margin-top: 22px;
  }

  .sg-product-visual img {
    top: 50%;
    left: 50%;
    width: min(132%, 560px);
    transform: translate(-50%, -50%);
  }

  .sg-product-visual:hover img {
    transform: translate(-50%, -50%);
  }

  .sg-bench-mark,
  .sg-bench-index {
    display: none;
  }

  .sg-product-hero .sg-hero-capabilities .shell {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sg-hero-capabilities article {
    min-height: 74px;
    padding: 12px 14px;
  }

  .sg-modes-compact,
  .sg-specs-compact,
  .product-showcase {
    padding: 64px 0;
  }

  .sg-compact-head,
  .product-showcase-head {
    gap: 16px;
    margin-bottom: 28px;
  }

  .sg-compact-head h2,
  .product-showcase-head h2 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .product-stage {
    min-height: 560px;
  }

  .product-stage-visual {
    inset: 78px 8px 136px;
  }

  .product-stage::after {
    bottom: 134px;
  }

  .product-stage-image {
    width: min(116%, 620px);
  }

  .product-view-track {
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    overflow-x: auto;
    gap: 7px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .product-view-track::-webkit-scrollbar {
    display: none;
  }

  .product-view-tab {
    min-width: min(78vw, 280px);
    min-height: 88px;
    flex: 0 0 min(78vw, 280px);
    scroll-snap-align: start;
  }

  .sg-spec-grid > div {
    padding: 18px 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
  }

  .studio-showcase-hero,
  .studio-workflow,
  .studio-download-section,
  .support-compact-hero,
  .support-resources,
  .support-faq,
  .brand-page .story-block {
    padding-block: 64px;
  }

  .studio-hero-facts {
    grid-template-columns: minmax(0, 1fr);
  }

  .studio-hero-actions,
  .studio-download-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .studio-window {
    min-width: 0;
  }

  .studio-window img,
  .home-studio-screen img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .studio-family-rail,
  .studio-family-live,
  .studio-family-planned {
    grid-template-columns: minmax(0, 1fr);
  }

  .support-file-board {
    min-height: 0;
  }

  .support-file-product,
  .support-file-status {
    grid-template-columns: minmax(0, 1fr);
  }

  .support-file-product {
    min-height: 190px;
    padding: 24px;
  }

  .support-file-product img {
    display: none;
  }

  .support-file-status > a,
  .support-file-status > div {
    min-height: 108px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .support-index-label {
    display: none;
  }

  .support-product-index .shell {
    padding: 0;
  }

  .support-index-items {
    padding-inline: 14px;
  }

  .support-index-items > * {
    min-width: 180px;
  }

  .support-section-head,
  .support-mini-head {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .support-product-summary {
    min-height: 0;
    padding: 18px;
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .support-studio-index {
    min-height: 0;
    padding: 16px;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
  }

  .support-studio-index > img {
    width: 42px;
    height: 46px;
  }

  .support-studio-index .button {
    width: 100%;
    grid-column: 1 / -1;
  }

  .support-resource-filter {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .support-resource-filter button {
    flex: 0 0 auto;
  }

  .support-resource-row {
    padding: 20px 16px;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
  }

  .support-resource-info,
  .support-resource-row > .button,
  .support-resource-row > .status-pill {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .support-studio-notice {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .brand-page .brand-manifesto .shell {
    padding-block: 58px;
    gap: 24px;
  }

  .brand-page .brand-manifesto img {
    width: min(160px, 42vw);
    max-height: 160px;
  }

  .brand-page .section-title,
  .brand-page .story-copy h2,
  .brand-page .closing-cta h2,
  .brand-workflow-head h2 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .brand-page .principle-card,
  .brand-page .mode-card {
    min-height: 0;
    padding: 26px 22px;
  }

  .brand-page .principle-card h3,
  .brand-page .mode-card h3 {
    margin-top: 32px;
  }

  .site-footer {
    padding-top: 58px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 18px;
  }
}

/* Mobile density refinement v2 */
@media (max-width: 860px) {
  .menu-toggle {
    color: var(--white);
    flex-direction: column;
    gap: 5px;
  }

  .menu-toggle span {
    width: 18px;
    margin: 0;
    background: var(--white);
  }

  .refined-hero {
    min-height: max(760px, 100svh);
    padding-top: 64px;
  }

  .refined-hero-layout {
    min-height: calc(100svh - 64px);
    padding: 44px 0 96px;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 26px;
  }

  .refined-hero-copy h1 {
    font-size: clamp(50px, 7.4vw, 64px);
  }

  .refined-hero-tagline {
    font-size: clamp(25px, 3.7vw, 31px);
  }

  .refined-product-stage {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    height: clamp(360px, 52vw, 450px);
    min-height: 0;
  }

  .refined-product-stage > img {
    top: 50%;
    right: auto;
    bottom: auto;
    left: 50%;
    width: 100%;
    max-height: 100%;
    object-fit: contain;
    animation: none;
    transform: translate(-50%, -50%);
  }

  .sg-product-hero .sg-hero-stage {
    min-height: calc(100svh - 122px);
    padding: 50px 0 44px;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 24px;
  }

  .sg-product-copy {
    max-width: 440px;
  }

  .sg-product-copy h1 {
    font-size: clamp(50px, 7.2vw, 62px);
  }

  .sg-product-copy h2 {
    font-size: clamp(27px, 3.8vw, 33px);
  }

  .sg-product-copy > p:not(.eyebrow) {
    font-size: 13.5px;
    line-height: 1.7;
  }

  .sg-hero-path {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .sg-hero-path i {
    display: none;
  }

  .sg-hero-path span {
    min-height: 38px;
    padding: 9px 6px;
    border: 1px solid var(--line-dark);
    text-align: center;
  }

  .sg-product-visual {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    height: clamp(360px, 50vw, 430px);
    min-height: 0;
  }

  .sg-product-visual img {
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: translate(-50%, -50%);
  }

  .sg-product-visual:hover img {
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 380px) {
  .header-inner {
    width: calc(100% - 16px);
    gap: 4px;
  }

  .brand {
    font-size: 16px;
  }

  .brand img {
    width: 28px;
    height: 28px;
  }

  .header-actions {
    gap: 4px;
  }

  .header-language,
  .menu-toggle {
    width: 42px;
    min-width: 42px;
    flex-basis: 42px;
  }

  .refined-actions,
  .sg-product-copy .hero-actions,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .refined-actions .button,
  .sg-product-copy .hero-actions .button {
    width: 100%;
  }

  .refined-hero {
    min-height: 850px;
  }

  .refined-hero-layout {
    min-height: 780px;
  }

  .product-view-tab {
    min-width: 84vw;
    flex-basis: 84vw;
  }
}

/* Brand manifesto option B · single-line premium wordmark */
.brand-page .brand-manifesto .shell {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.72fr);
  gap: clamp(60px, 7vw, 112px);
}

.brand-page .brand-manifesto .shell > div {
  min-width: 0;
}

.brand-page .brand-manifesto img {
  width: min(100%, 330px);
  justify-self: center;
  opacity: 0.42;
}

.brand-page .brand-manifesto h1 {
  position: relative;
  display: inline-block;
  width: max-content;
  max-width: 100%;
  margin: 0;
  padding-bottom: 22px;
  font-size: clamp(34px, 3.15vw, 48px);
  font-weight: 600;
  letter-spacing: -0.042em;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-page .brand-manifesto h1::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 72%;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), rgba(0, 207, 193, 0.22) 68%, transparent);
  box-shadow: 0 0 14px rgba(0, 207, 193, 0.32);
  content: "";
}

.brand-page .brand-manifesto-subtitle {
  margin-bottom: 16px;
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35;
}

.brand-page .brand-manifesto p:last-child {
  margin-top: 22px;
}

@media (max-width: 1100px) and (min-width: 861px) {
  .brand-page .brand-manifesto .shell {
    grid-template-columns: minmax(230px, 0.62fr) minmax(0, 1.58fr);
    gap: 48px;
  }

  .brand-page .brand-manifesto h1 {
    font-size: clamp(30px, 3.45vw, 38px);
  }
}

@media (max-width: 860px) {
  .brand-page .brand-manifesto .shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .brand-page .brand-manifesto img {
    width: min(58vw, 220px);
    height: auto;
    max-width: 220px;
    max-height: none;
    aspect-ratio: 702 / 729;
    object-fit: contain;
    justify-self: center;
  }

  .brand-page .brand-manifesto h1 {
    display: block;
    width: auto;
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.06;
    white-space: normal;
  }

  .brand-page .brand-manifesto h1::after {
    width: min(220px, 62%);
  }
}

/* Shared product-center calls to action */
.nav-product-panel-head .nav-product-center-button,
.home-product-center-button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--black);
  border: 1px solid var(--cyan);
  background: var(--cyan);
  box-shadow: 0 12px 30px rgba(0, 207, 193, 0.16);
  font-size: 13px;
  font-weight: 700;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.nav-product-panel-head .nav-product-center-button:hover,
.nav-product-panel-head .nav-product-center-button:focus-visible,
.home-product-center-button:hover,
.home-product-center-button:focus-visible {
  color: var(--black);
  border-color: #22ded2;
  background: #22ded2;
  box-shadow: 0 14px 34px rgba(0, 207, 193, 0.26);
}

.nav-product-panel-head .nav-product-center-button b,
.home-product-center-button span {
  color: currentColor;
  font-size: 14px;
}

.home-product-center-button {
  min-width: 168px;
  min-height: 52px;
  justify-self: start;
}

@media (max-width: 560px) {
  .home-product-center-button {
    width: min(100%, 240px);
    margin-inline: auto;
    justify-self: center;
  }
}

/* Home command deck · asymmetrical first-screen information architecture */
.hero-command-deck {
  position: absolute;
  z-index: 7;
  bottom: 24px;
  left: 50%;
  display: grid;
  overflow: hidden;
  width: min(calc(100% - 64px), var(--max-width));
  min-height: 150px;
  grid-template-columns: minmax(290px, 1.18fr) minmax(560px, 2.35fr) minmax(142px, 0.58fr);
  grid-template-rows: 102px 48px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 11, 11, 0.9);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
  transform: translateX(-50%);
  backdrop-filter: blur(22px);
}

.hero-command-deck::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 207, 193, 0.85) 32%, rgba(0, 207, 193, 0.18) 72%, transparent);
  content: "";
}

.hero-deck-brand {
  position: relative;
  display: grid;
  min-width: 0;
  padding: 21px 27px;
  grid-row: 1 / 3;
  align-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(135deg, rgba(0, 207, 193, 0.14), rgba(0, 207, 193, 0.025) 58%, transparent),
    rgba(255, 255, 255, 0.018);
}

.hero-deck-brand::before {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 0;
  width: 2px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(0, 207, 193, 0.68);
  content: "";
}

.hero-deck-brand > span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.hero-deck-brand > strong {
  display: block;
  max-width: 300px;
  margin-top: 10px;
  font-family: var(--display);
  font-size: clamp(17px, 1.25vw, 21px);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.hero-deck-brand > p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  font-weight: 600;
}

.hero-deck-metrics {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hero-deck-metrics > div {
  position: relative;
  display: grid;
  min-width: 0;
  padding: 18px 20px;
  align-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-deck-metrics > div::before {
  display: none;
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(0, 207, 193, 0.82);
  content: "";
}

.hero-deck-metrics span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-left: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.hero-deck-metrics span::before {
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(0, 207, 193, 0.82);
  content: "";
}

.hero-deck-metrics strong {
  margin-top: 9px;
  font-family: var(--display);
  font-size: clamp(16px, 1.25vw, 20px);
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.hero-deck-metrics strong.metric-pair,
.sg-hero-capabilities strong.metric-pair {
  display: grid;
  gap: 3px;
  white-space: normal;
}

.hero-deck-metrics .metric-pair small,
.sg-hero-capabilities .metric-pair small {
  display: block;
  color: inherit;
  font: inherit;
  font-size: 0.86em;
  letter-spacing: 0;
  line-height: 1.25;
  white-space: nowrap;
}

.hero-deck-principles {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.018);
}

.hero-deck-principles p {
  display: flex;
  min-width: 0;
  margin: 0;
  padding: 0 20px;
  align-items: center;
  gap: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-deck-principles i {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-deck-principles span {
  overflow: hidden;
  font-size: 11px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-deck-action {
  position: relative;
  display: flex;
  overflow: hidden;
  padding: 18px;
  grid-column: 3;
  grid-row: 1 / 3;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  border-left: 1px solid rgba(0, 207, 193, 0.32);
  background: linear-gradient(145deg, rgba(0, 207, 193, 0.17), rgba(0, 207, 193, 0.045));
  transition: background-color 180ms ease, border-color 180ms ease;
}

.hero-deck-action::before {
  position: absolute;
  width: 120px;
  height: 1px;
  background: rgba(0, 207, 193, 0.28);
  content: "";
  transform: rotate(-42deg);
}

.hero-deck-action span,
.hero-deck-action strong,
.hero-deck-action i {
  position: relative;
  z-index: 1;
}

.hero-deck-action span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.hero-deck-action strong {
  margin-top: 6px;
  font-size: 14px;
}

.hero-deck-action i {
  margin-top: 14px;
  color: var(--cyan);
  font-size: 17px;
  font-style: normal;
}

.hero-deck-action:hover,
.hero-deck-action:focus-visible {
  border-color: rgba(0, 207, 193, 0.72);
  background-color: rgba(0, 207, 193, 0.1);
}

@media (min-width: 961px) {
  .home-page .refined-hero-layout {
    padding-bottom: 184px;
  }
}

@media (max-width: 1200px) and (min-width: 861px) {
  .hero-command-deck {
    grid-template-columns: minmax(250px, 1fr) minmax(480px, 2fr) 128px;
  }

  .hero-deck-metrics > div,
  .hero-deck-principles p {
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero-deck-metrics > div::before {
    left: 14px;
  }
}

@media (max-width: 860px) {
  .hero-command-deck {
    position: relative;
    bottom: auto;
    left: auto;
    width: min(calc(100% - 40px), 720px);
    min-height: 0;
    margin: 0 auto 20px;
    grid-template-columns: minmax(0, 1fr) 128px;
    grid-template-rows: auto auto auto;
    transform: none;
  }

  .hero-deck-brand {
    min-height: 112px;
    grid-column: 1;
    grid-row: 1;
  }

  .hero-deck-metrics {
    grid-column: 1 / 3;
    grid-row: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-deck-principles {
    grid-column: 1 / 3;
    grid-row: 3;
    min-height: 48px;
  }

  .hero-deck-action {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (max-width: 560px) {
  .hero-command-deck {
    width: calc(100% - 24px);
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto auto;
  }

  .hero-deck-brand {
    min-height: 104px;
    padding: 18px;
    grid-column: 1;
    grid-row: 1;
  }

  .hero-deck-brand > strong {
    font-size: 16px;
  }

  .hero-deck-metrics {
    grid-column: 1;
    grid-row: 3;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-deck-metrics > div {
    min-height: 76px;
    padding: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero-deck-metrics > div::before {
    top: 16px;
    left: 14px;
  }

  .hero-deck-metrics strong {
    font-size: 16px;
  }

  .hero-deck-principles {
    grid-column: 1;
    grid-row: 4;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-deck-principles p {
    min-height: 42px;
    padding: 0 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .hero-deck-principles span {
    white-space: normal;
  }

  .hero-deck-action {
    min-height: 58px;
    padding: 12px 18px;
    grid-column: 1;
    grid-row: 2;
    flex-direction: row;
    gap: 10px;
    border-top: 1px solid rgba(0, 207, 193, 0.24);
    border-left: 0;
  }

  .hero-deck-action strong,
  .hero-deck-action i {
    margin-top: 0;
  }
}

/* Final precedence: keep the complete command deck inside the desktop first screen. */
@media (min-width: 961px) {
  .home-page .refined-hero {
    height: 100vh;
    height: 100svh;
    min-height: 780px;
  }

  .home-page .refined-hero-layout {
    height: 100%;
    min-height: 0;
    padding-top: var(--header-height);
    padding-bottom: 184px;
  }
}

/* Launch state · one public instrument, four anonymous future slots */
.future-product-slot {
  isolation: isolate;
  overflow: hidden;
  color: var(--black);
  background:
    linear-gradient(145deg, rgba(0, 207, 193, 0.035), transparent 42%),
    var(--white);
}

.future-product-slot::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.48;
  background-image:
    linear-gradient(rgba(13, 13, 13, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 13, 13, 0.045) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, transparent 12%, #000 45%, transparent 88%);
  content: "";
}

.future-product-slot:hover {
  color: var(--black);
  background:
    linear-gradient(145deg, rgba(0, 207, 193, 0.06), transparent 42%),
    var(--white);
}

.future-slot-mark {
  position: relative;
  width: 74px;
  height: 74px;
  margin: 24px auto 10px;
  align-self: center;
  border: 1px solid rgba(13, 13, 13, 0.2);
  border-radius: 50%;
}

.future-slot-mark::before,
.future-slot-mark::after,
.future-slot-mark i {
  position: absolute;
  content: "";
}

.future-slot-mark::before {
  inset: 9px;
  border: 1px dashed rgba(0, 207, 193, 0.7);
  border-radius: 50%;
}

.future-slot-mark::after {
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(0, 207, 193, 0.12);
  transform: translate(-50%, -50%);
}

.future-slot-mark i:nth-child(1) {
  top: 50%;
  left: -10px;
  width: 28px;
  height: 1px;
  background: rgba(13, 13, 13, 0.24);
}

.future-slot-mark i:nth-child(2) {
  top: 50%;
  right: -10px;
  width: 28px;
  height: 1px;
  background: rgba(13, 13, 13, 0.24);
}

.future-slot-mark i:nth-child(3) {
  top: 8px;
  left: 50%;
  width: 1px;
  height: 16px;
  background: var(--cyan);
}

.future-roadmap-list article,
.catalog-roadmap-list article,
.support-planned-grid article,
.studio-family-planned article,
.nav-product-planned > .future-slot,
.family-module.future-module {
  background-image: linear-gradient(135deg, rgba(0, 207, 193, 0.025), transparent 48%);
}

.future-roadmap-list article > span,
.catalog-code,
.studio-family-planned article > span,
.support-planned-grid article > span,
.support-index-items > span > b,
.nav-product-planned > .future-slot span,
.family-module.future-module b {
  font-size: 10px;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.catalog-roadmap-list article::before,
.support-planned-grid article::before,
.studio-family-planned article::before {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0, 207, 193, 0.62);
  box-shadow: 0 0 0 5px rgba(0, 207, 193, 0.06);
  content: "";
}

.support-planned-grid article,
.studio-family-planned article {
  position: relative;
}

.nav-product-planned > .future-slot:hover {
  color: inherit;
  border-color: var(--line-light);
  background-color: rgba(0, 207, 193, 0.025);
}

.family-module.future-module {
  opacity: 0.72;
}

.family-module.future-module b {
  font-size: 8px;
}

@media (max-width: 860px) {
  .future-slot-mark {
    width: 50px;
    height: 50px;
    margin: 4px auto;
  }

  .future-slot-mark::before {
    inset: 7px;
  }

  .future-product-slot::before {
    background-size: 18px 18px;
  }
}

@media (max-width: 560px) {
  .menu-toggle {
    color: var(--white);
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
  }

  .menu-toggle span {
    width: 16px;
    margin: 0;
    background: var(--white);
  }

  #overview,
  #work-modes,
  #gallery,
  #specifications {
    scroll-margin-top: 138px;
  }

  /* Home hero: one centered instrument composition, fully inside the flow. */
  .refined-hero {
    min-height: 0;
    padding-top: 64px;
  }

  .refined-hero-layout {
    display: flex;
    min-height: 0;
    padding: 38px 0 0;
    flex-direction: column;
    align-items: stretch;
  }

  .refined-hero-copy {
    width: 100%;
    max-width: 390px;
    margin-inline: auto;
    padding: 0;
    text-align: center;
  }

  .refined-hero-copy .hero-kicker {
    margin-bottom: 12px;
  }

  .refined-hero-copy h1 {
    font-size: clamp(42px, 12.8vw, 56px);
    line-height: 0.98;
  }

  .refined-hero-tagline {
    margin-top: 14px;
    font-size: clamp(22px, 6.4vw, 27px);
  }

  .refined-hero-desc {
    max-width: 360px;
    margin: 15px auto 20px;
    font-size: 13.5px;
    line-height: 1.7;
  }

  .refined-actions {
    max-width: 370px;
    margin-inline: auto;
  }

  .refined-product-stage {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    height: clamp(245px, 68vw, 292px);
    min-height: 0;
    margin-top: 12px;
    transform: none;
  }

  .refined-product-stage::before {
    right: 12%;
    bottom: 8%;
    width: 76%;
  }

  .refined-product-stage::after {
    right: 8%;
    bottom: 18%;
    width: 84%;
  }

  .refined-product-stage > img {
    top: auto;
    right: auto;
    bottom: -2%;
    left: 50%;
    width: min(104%, 430px);
    max-height: 100%;
    object-fit: contain;
    object-position: center bottom;
    transform: translateX(-50%);
  }

  .hero-telemetry {
    position: relative;
    bottom: auto;
  }

  .hero-telemetry .shell > div {
    min-height: 62px;
    padding: 10px 16px;
  }

  .home-section-head,
  .home-studio-heading,
  .usecase-heading {
    text-align: center;
  }

  .home-section-intro,
  .home-studio-heading > p,
  .usecase-heading > p {
    max-width: 390px;
    margin-inline: auto;
  }

  /* Product family: dense 2 × 2 technical tiles instead of four tall panels. */
  .product-glance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--line-light);
  }

  .product-glance-featured {
    min-height: 440px;
    grid-column: 1 / -1;
  }

  .product-glance-card {
    display: grid;
    height: 190px;
    min-height: 0;
    padding: 14px;
    grid-template-rows: auto 48px minmax(0, 1fr);
    gap: 8px;
    border: 0;
    background: var(--white);
  }

  .product-glance-card .instrument-icon {
    width: 48px;
    height: 48px;
    margin: 0;
    justify-self: center;
  }

  .product-glance-card > div:last-of-type {
    align-self: end;
  }

  .product-glance-card small {
    display: none;
  }

  .product-glance-card h3 {
    margin: 0 0 5px;
    font-size: clamp(17px, 4.7vw, 20px);
    letter-spacing: -0.04em;
  }

  .product-glance-card p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    font-size: 11px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .product-glance-card .glance-card-top {
    font-size: 9px;
  }

  .glance-status {
    display: none;
  }

  /* Product directory roadmap uses the same compact, extensible matrix. */
  .catalog-roadmap-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    border: 0;
    background: var(--line-light);
  }

  .catalog-roadmap-list article {
    min-height: 142px;
    padding: 15px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-content: space-between;
    align-items: start;
    gap: 8px;
    border: 0;
  }

  .catalog-roadmap-list article div,
  .catalog-roadmap-list .catalog-desc {
    grid-column: 1 / -1;
  }

  .catalog-roadmap-list h3 {
    font-size: 19px;
  }

  .catalog-roadmap-list em {
    justify-self: end;
  }

  /* SG hero: centered hierarchy, compact path and a fully visible product. */
  .sg-product-hero .sg-hero-stage {
    padding: 42px 0 18px;
  }

  .sg-product-copy {
    margin-inline: auto;
    text-align: center;
  }

  .sg-product-copy .eyebrow {
    text-align: center;
  }

  .sg-product-copy h1 {
    font-size: clamp(44px, 12.5vw, 58px);
    line-height: 0.98;
  }

  .sg-product-copy h1 small {
    margin-bottom: 14px;
  }

  .sg-product-copy h2 {
    margin-top: 16px;
    font-size: clamp(24px, 7vw, 30px);
  }

  .sg-product-copy > p:not(.eyebrow) {
    max-width: 370px;
    margin: 15px auto 0;
    font-size: 13.5px;
    line-height: 1.72;
  }

  .sg-hero-path {
    width: 100%;
    max-width: 380px;
    margin: 22px auto 0;
  }

  .sg-product-copy .hero-actions {
    width: 100%;
    max-width: 370px;
    margin-inline: auto;
  }

  .sg-product-visual {
    width: 100%;
    height: clamp(240px, 67vw, 286px);
    min-height: 0;
    margin-top: 8px;
  }

  .sg-product-visual img {
    width: min(100%, 430px);
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
  }

  .sg-product-hero .sg-hero-capabilities .shell {
    gap: 1px;
    background: var(--line-dark);
  }

  .sg-hero-capabilities article {
    min-height: 78px;
    justify-content: center;
    border: 0;
  }

  /* Specifications: two-column data sheet with full-width long records. */
  .sg-specs-compact {
    padding: 52px 0;
  }

  .sg-specs-compact .sg-compact-head {
    text-align: center;
  }

  .sg-specs-compact .sg-compact-head > p {
    max-width: 340px;
    margin-inline: auto;
  }

  .sg-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    border: 0;
  }

  .sg-spec-grid > div {
    display: block;
    min-height: 0;
    padding: 14px;
    border: 1px solid var(--line-light);
    background: rgba(136, 136, 136, 0.035);
  }

  .sg-spec-grid > .spec-wide,
  .sg-spec-grid > .spec-final {
    grid-column: 1 / -1;
  }

  .sg-spec-grid dt {
    margin-bottom: 8px;
    color: var(--gray);
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .sg-spec-grid dd {
    font-size: 13px;
    line-height: 1.48;
  }
}

@media (max-width: 380px) {
  .refined-actions,
  .sg-product-copy .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .refined-actions .button,
  .sg-product-copy .hero-actions .button {
    width: auto;
    padding-inline: 8px;
    font-size: 10.5px;
  }

  .product-glance-card {
    height: 184px;
    padding: 12px;
  }
}

/* Support resource actions · one aligned right-side control system */
.support-resource-row {
  grid-template-columns: 66px minmax(0, 1fr) 120px 164px;
}

.support-resource-info {
  width: 120px;
  min-height: 48px;
  align-content: center;
  justify-self: end;
}

.support-resource-info span {
  line-height: 1.25;
}

.support-resource-info strong {
  margin-top: 3px;
  line-height: 1.25;
}

.support-resource-row > .button {
  width: 148px;
  min-width: 148px;
  min-height: 48px;
  padding: 0 18px;
  justify-content: center;
  justify-self: end;
  line-height: 1;
}

.support-extension-button {
  appearance: none;
  cursor: pointer;
}

.support-extension-button:active {
  transform: translateY(1px);
}

@media (max-width: 1100px) {
  .support-resource-row {
    grid-template-columns: 64px minmax(0, 1fr) 148px;
  }

  .support-resource-info {
    display: none;
  }
}

@media (max-width: 760px) {
  .support-resource-row {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .support-resource-row > .button {
    width: min(100%, 200px);
    min-width: 0;
    grid-column: 1 / -1;
    justify-self: start;
  }
}

/* Final home typography pass: equal section scale and a single-line Studio name. */
.home-section-head h2,
.usecase-heading h2,
.brand-focus-copy h2 {
  font-size: clamp(32px, 2.7vw, 44px);
  line-height: 1.08;
}

.home-studio-heading h2 {
  font-size: clamp(30px, 2.3vw, 38px);
  line-height: 1.08;
  white-space: nowrap;
}

@media (max-width: 860px) {
  .home-section-head h2,
  .usecase-heading h2,
  .brand-focus-copy h2 {
    font-size: clamp(28px, 7vw, 36px);
  }

  .home-studio-heading h2 {
    font-size: clamp(23px, 6vw, 29px);
  }
}

/* Resource center foundation: category -> model -> files. */
.support-resource-hub {
  padding: 82px 0 104px;
  background:
    linear-gradient(rgba(13, 13, 13, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 13, 13, 0.025) 1px, transparent 1px),
    #f6f8f7;
  background-size: 48px 48px;
}

.support-hub-heading {
  display: grid;
  margin-bottom: 28px;
  grid-template-columns: minmax(320px, 0.76fr) minmax(560px, 1.24fr);
  align-items: end;
  gap: clamp(44px, 7vw, 100px);
}

.support-hub-title h2 {
  margin: 0;
  font-size: clamp(32px, 3vw, 44px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.support-hub-title > p:last-child {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(13, 13, 13, 0.58);
  font-size: 14px;
  line-height: 1.75;
}

.support-studio-gateway {
  position: relative;
  display: grid;
  min-height: 128px;
  padding: 22px 24px;
  overflow: hidden;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  color: var(--white);
  border: 1px solid rgba(0, 207, 193, 0.45);
  background:
    linear-gradient(90deg, rgba(0, 207, 193, 0.09), transparent 38%),
    var(--black);
}

.support-studio-gateway::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan));
  content: "";
}

.support-studio-gateway > img {
  width: 56px;
  height: 60px;
  object-fit: contain;
}

.support-studio-gateway > div {
  display: grid;
  gap: 3px;
}

.support-studio-gateway span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.support-studio-gateway strong {
  font-family: var(--display);
  font-size: 25px;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.support-studio-gateway small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
}

.support-studio-gateway > b {
  display: inline-flex;
  min-height: 42px;
  padding: 0 18px;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  color: var(--black);
  background: var(--cyan);
  font-size: 12px;
  white-space: nowrap;
}

.support-studio-gateway > b i {
  font-style: normal;
  transition: transform 220ms var(--ease);
}

.support-studio-gateway:hover > b i {
  transform: translate(2px, -2px);
}

.support-hierarchy {
  border: 1px solid rgba(13, 13, 13, 0.16);
  background: var(--white);
  box-shadow: 0 28px 70px rgba(13, 13, 13, 0.06);
}

.support-level + .support-level {
  border-top: 1px solid rgba(13, 13, 13, 0.14);
}

.support-level > header {
  display: grid;
  min-height: 78px;
  padding: 16px 22px;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  background: #fbfcfc;
}

.support-level > header > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(0, 207, 193, 0.55);
  border-radius: 50%;
  color: var(--cyan);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
}

.support-level > header small {
  display: block;
  margin-bottom: 2px;
  color: var(--cyan);
  font-family: var(--display);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.support-level > header h3 {
  margin: 0;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.support-category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(13, 13, 13, 0.12);
}

.support-category-grid button {
  position: relative;
  display: grid;
  min-height: 134px;
  padding: 20px;
  align-content: start;
  text-align: left;
  border: 0;
  border-right: 1px solid rgba(13, 13, 13, 0.12);
  color: var(--black);
  background: var(--white);
  font: inherit;
}

.support-category-grid button:last-child {
  border-right: 0;
}

.support-category-grid button svg {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  fill: none;
  stroke: rgba(13, 13, 13, 0.32);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.support-category-grid button > span {
  margin-bottom: 26px;
  color: var(--cyan);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.support-category-grid button strong {
  font-size: 16px;
}

.support-category-grid button small {
  margin-top: 5px;
  color: var(--gray);
  font-size: 10px;
}

.support-category-grid button.is-active {
  color: var(--white);
  background:
    radial-gradient(circle at 84% 30%, rgba(0, 207, 193, 0.16), transparent 34%),
    var(--black);
}

.support-category-grid button.is-active::after {
  position: absolute;
  right: 20px;
  bottom: 0;
  left: 20px;
  height: 2px;
  background: var(--cyan);
  content: "";
}

.support-category-grid button.is-active svg {
  stroke: var(--cyan);
}

.support-category-grid button.is-active small {
  color: rgba(255, 255, 255, 0.54);
}

.support-category-grid button:disabled {
  cursor: default;
}

.support-category-grid button:disabled::before {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image: linear-gradient(135deg, transparent 49.6%, rgba(0, 207, 193, 0.12) 50%, transparent 50.4%);
  content: "";
  pointer-events: none;
}

.support-model-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(13, 13, 13, 0.12);
  background: #f2f5f4;
}

.support-model-track button {
  position: relative;
  display: grid;
  min-height: 108px;
  padding: 18px 20px;
  align-content: center;
  text-align: left;
  border: 0;
  border-right: 1px solid rgba(13, 13, 13, 0.12);
  color: var(--black);
  background: transparent;
  font: inherit;
}

.support-model-track button:last-child {
  border-right: 0;
}

.support-model-track button > span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.support-model-track button strong {
  margin-top: 7px;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.035em;
}

.support-model-track button small {
  margin-top: 2px;
  color: var(--gray);
  font-size: 10px;
}

.support-model-track button i {
  position: absolute;
  top: 17px;
  right: 17px;
  color: var(--gray);
  font-size: 9px;
  font-style: normal;
}

.support-model-track button.is-active {
  background: rgba(0, 207, 193, 0.08);
  box-shadow: inset 0 -2px var(--cyan);
}

.support-model-track button.is-active i {
  color: var(--cyan);
}

.support-model-track button:disabled {
  cursor: default;
}

.support-model-track .support-model-add {
  place-content: center;
  text-align: center;
}

.support-model-track .support-model-add > span {
  font-size: 22px;
  font-weight: 400;
}

.support-files-layout {
  display: grid;
  grid-template-columns: 278px minmax(0, 1fr);
  border-top: 1px solid rgba(13, 13, 13, 0.12);
}

.support-selected-model {
  position: relative;
  padding: 30px 26px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 12%, rgba(0, 207, 193, 0.2), transparent 33%),
    var(--black);
}

.support-selected-model::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(0, 207, 193, 0.24);
  border-radius: 50%;
  content: "";
}

.support-selected-model > span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.support-selected-model > strong {
  display: block;
  margin-top: 12px;
  font-family: var(--display);
  font-size: 31px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.support-selected-model > p {
  min-height: 44px;
  margin: 10px 0 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.6;
}

.support-selected-model dl {
  display: grid;
  margin: 0 0 22px;
  gap: 0;
}

.support-selected-model dl div {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  gap: 14px;
}

.support-selected-model dt,
.support-selected-model dd {
  margin: 0;
  font-size: 9px;
}

.support-selected-model dt {
  color: rgba(255, 255, 255, 0.42);
}

.support-selected-model dd {
  font-weight: 700;
}

.support-selected-model > a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
}

.support-resource-hub .support-resource-board {
  min-width: 0;
  border: 0;
}

.support-resource-hub .support-resource-filter {
  min-height: 64px;
  padding-inline: 22px;
  overflow-x: auto;
  border-bottom: 1px solid rgba(13, 13, 13, 0.13);
  background: #fbfcfc;
}

.support-resource-hub .support-resource-row {
  min-height: 110px;
  grid-template-columns: 58px minmax(0, 1fr) 110px 146px;
  gap: 20px;
  background: var(--white);
}

.support-resource-hub .support-resource-row.is-ready:hover {
  background: rgba(0, 207, 193, 0.035);
}

.support-resource-hub .support-resource-type {
  width: 58px;
  height: 58px;
}

.support-resource-hub .support-resource-copy h3 {
  font-size: 17px;
}

.support-resource-hub .support-resource-copy p {
  max-width: 560px;
}

.support-resource-hub .support-resource-info {
  width: 110px;
}

.support-resource-hub .support-resource-row > .button {
  width: 138px;
  min-width: 138px;
}

@media (max-width: 1180px) {
  .support-hub-heading {
    grid-template-columns: minmax(280px, 0.7fr) minmax(480px, 1.3fr);
    gap: 34px;
  }

  .support-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .support-category-grid button:nth-child(3) {
    border-right: 0;
  }

  .support-category-grid button:nth-child(n + 4) {
    border-top: 1px solid rgba(13, 13, 13, 0.12);
  }

  .support-model-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-model-track button:nth-child(2) {
    border-right: 0;
  }

  .support-model-track button:nth-child(n + 3) {
    border-top: 1px solid rgba(13, 13, 13, 0.12);
  }

  .support-files-layout {
    grid-template-columns: 230px minmax(0, 1fr);
  }

  .support-resource-hub .support-resource-row {
    grid-template-columns: 58px minmax(0, 1fr) 138px;
  }

  .support-resource-hub .support-resource-info {
    display: none;
  }
}

@media (max-width: 860px) {
  .support-resource-hub {
    padding: 62px 0 78px;
  }

  .support-hub-heading {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .support-studio-gateway {
    min-height: 116px;
  }

  .support-files-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .support-selected-model {
    display: grid;
    padding: 24px;
    grid-template-columns: minmax(0, 1fr) minmax(230px, 0.8fr);
    align-items: end;
    column-gap: 30px;
  }

  .support-selected-model dl {
    margin: 0;
    grid-column: 2;
    grid-row: 1 / span 4;
  }
}

@media (max-width: 620px) {
  .support-resource-hub {
    padding: 52px 0 64px;
  }

  .support-hub-title {
    text-align: center;
  }

  .support-hub-title > p:last-child {
    margin-inline: auto;
  }

  .support-studio-gateway {
    padding: 18px;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;
  }

  .support-studio-gateway > img {
    width: 46px;
    height: 50px;
  }

  .support-studio-gateway strong {
    font-size: 21px;
  }

  .support-studio-gateway > b {
    width: 100%;
    min-height: 40px;
    grid-column: 1 / -1;
    justify-content: center;
  }

  .support-level > header {
    min-height: 70px;
    padding: 14px 16px;
  }

  .support-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-category-grid button {
    min-height: 116px;
    padding: 16px;
  }

  .support-category-grid button:nth-child(odd) {
    border-right: 1px solid rgba(13, 13, 13, 0.12);
  }

  .support-category-grid button:nth-child(even) {
    border-right: 0;
  }

  .support-category-grid button:nth-child(n + 3) {
    border-top: 1px solid rgba(13, 13, 13, 0.12);
  }

  .support-category-grid button svg {
    top: 14px;
    right: 14px;
    width: 28px;
    height: 28px;
  }

  .support-model-track {
    display: grid;
    padding: 1px;
    overflow-x: auto;
    grid-auto-columns: 205px;
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 1px;
    scroll-snap-type: x proximity;
  }

  .support-model-track button,
  .support-model-track button:nth-child(n) {
    min-height: 102px;
    border: 0;
    background: var(--white);
    scroll-snap-align: start;
  }

  .support-model-track button.is-active {
    background: rgba(0, 207, 193, 0.08);
  }

  .support-selected-model {
    display: block;
  }

  .support-selected-model dl {
    margin: 0 0 18px;
  }

  .support-resource-hub .support-resource-filter {
    min-height: 58px;
    padding-inline: 14px;
  }

  .support-resource-hub .support-resource-row {
    padding: 18px;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
  }

  .support-resource-hub .support-resource-row > .button {
    width: min(100%, 210px);
    min-width: 0;
    grid-column: 1 / -1;
    justify-self: start;
  }

  .support-resource-hub .support-resource-type {
    width: 54px;
    height: 54px;
  }
}

/* Compact resource catalog for large product families. */
.support-resource-hub {
  padding: 56px 0 82px;
  background:
    linear-gradient(rgba(13, 13, 13, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 13, 13, 0.022) 1px, transparent 1px),
    #f7f8f8;
  background-size: 40px 40px;
}

.support-hub-heading {
  margin-bottom: 20px;
  grid-template-columns: minmax(300px, 1fr) minmax(460px, 0.82fr);
  gap: 48px;
}

.support-hub-title h2 {
  font-size: clamp(27px, 2.25vw, 34px);
  letter-spacing: -0.035em;
}

.support-hub-title > p:last-child {
  max-width: 560px;
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.65;
}

.support-studio-gateway {
  min-height: 82px;
  padding: 13px 16px;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 13px;
}

.support-studio-gateway > img {
  width: 38px;
  height: 42px;
}

.support-studio-gateway strong {
  font-size: 19px;
}

.support-studio-gateway small {
  font-size: 9px;
}

.support-studio-gateway > b {
  min-height: 36px;
  padding: 0 14px;
  font-size: 10px;
}

.support-hierarchy {
  display: grid;
  grid-template-columns: 202px 224px minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  border-color: rgba(13, 13, 13, 0.18);
  box-shadow: 0 18px 48px rgba(13, 13, 13, 0.045);
}

.support-level,
.support-level + .support-level {
  min-width: 0;
  border-top: 0;
  border-right: 1px solid rgba(13, 13, 13, 0.13);
}

.support-level:last-child {
  border-right: 0;
}

.support-level > header {
  display: grid;
  min-height: 54px;
  padding: 9px 12px;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  gap: 9px;
  border-bottom: 1px solid rgba(13, 13, 13, 0.12);
  background: #f7f9f8;
}

.support-level > header > span {
  width: 22px;
  height: 22px;
  font-size: 7px;
}

.support-level > header small {
  margin: 0;
  font-size: 6px;
  letter-spacing: 0.14em;
}

.support-level > header h3 {
  margin-top: 2px;
  font-size: 12px;
  letter-spacing: 0;
}

.support-level > header em {
  color: rgba(13, 13, 13, 0.42);
  font-size: 8px;
  font-style: normal;
  white-space: nowrap;
}

.support-category-search {
  display: grid;
  height: 34px;
  margin: 10px;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: center;
  border: 1px solid rgba(13, 13, 13, 0.14);
  background: #fff;
}

.support-category-search svg {
  width: 14px;
  height: 14px;
  margin-left: 9px;
  fill: none;
  stroke: rgba(13, 13, 13, 0.46);
  stroke-linecap: round;
  stroke-width: 1.5;
}

.support-category-search input {
  width: 100%;
  height: 100%;
  padding: 0 9px 0 2px;
  border: 0;
  outline: 0;
  color: var(--black);
  background: transparent;
  font: inherit;
  font-size: 10px;
}

.support-category-search:focus-within {
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px rgba(0, 207, 193, 0.08);
}

.support-category-grid {
  display: block;
  max-height: 444px;
  overflow: auto;
  border-top: 1px solid rgba(13, 13, 13, 0.1);
  scrollbar-color: rgba(0, 207, 193, 0.65) transparent;
  scrollbar-width: thin;
}

.support-category-grid button,
.support-category-grid button:nth-child(n) {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 54px;
  padding: 7px 10px;
  grid-template-columns: 24px 32px minmax(0, 1fr);
  grid-template-rows: 1fr 1fr;
  align-items: center;
  align-content: center;
  column-gap: 7px;
  border: 0;
  border-bottom: 1px solid rgba(13, 13, 13, 0.095);
  background: #fff;
}

.support-category-grid button:last-child {
  border-bottom: 0;
}

.support-category-grid button svg {
  position: static;
  width: 20px;
  height: 20px;
  grid-column: 1;
  grid-row: 1 / 3;
  stroke: rgba(13, 13, 13, 0.38);
}

.support-category-grid button > span {
  margin: 0;
  grid-column: 2;
  grid-row: 1 / 3;
  font-size: 8px;
  letter-spacing: 0.08em;
}

.support-category-grid button strong {
  align-self: end;
  grid-column: 3;
  grid-row: 1;
  font-size: 11px;
  line-height: 1.2;
}

.support-category-grid button small {
  margin: 1px 0 0;
  align-self: start;
  grid-column: 3;
  grid-row: 2;
  font-size: 8px;
  line-height: 1.2;
}

.support-category-grid button.is-active {
  color: #fff;
  background: #111615;
}

.support-category-grid button.is-active::after {
  inset: 8px auto 8px 0;
  width: 2px;
  height: auto;
}

.support-category-grid button:disabled::before {
  display: none;
}

.support-category-grid button:disabled {
  opacity: 0.67;
}

.support-model-track {
  display: block;
  max-height: 488px;
  overflow: auto;
  border-top: 0;
  background: #fbfcfc;
  scrollbar-color: rgba(0, 207, 193, 0.65) transparent;
  scrollbar-width: thin;
}

.support-model-track button,
.support-model-track button:nth-child(n) {
  display: grid;
  width: 100%;
  min-height: 72px;
  padding: 12px 14px;
  border: 0;
  border-bottom: 1px solid rgba(13, 13, 13, 0.1);
  background: transparent;
}

.support-model-track button > span {
  font-size: 7px;
}

.support-model-track button strong {
  margin-top: 4px;
  font-size: 15px;
  letter-spacing: -0.015em;
}

.support-model-track button small {
  margin-top: 2px;
  font-size: 8px;
}

.support-model-track button i {
  top: 12px;
  right: 12px;
  font-size: 7px;
}

.support-model-track button.is-active {
  box-shadow: inset 2px 0 var(--cyan);
}

.support-model-track .support-model-add {
  min-height: 62px;
  place-content: center start;
  text-align: left;
}

.support-model-track .support-model-add > span {
  font-size: 15px;
}

.support-files-layout {
  display: block;
  border-top: 0;
}

.support-selected-model {
  display: grid;
  min-height: 86px;
  padding: 13px 16px;
  grid-template-columns: 185px minmax(270px, 1fr) auto;
  grid-template-rows: auto auto auto;
  align-items: center;
  column-gap: 18px;
  background:
    linear-gradient(90deg, rgba(0, 207, 193, 0.08), transparent 34%),
    var(--black);
}

.support-selected-model::after {
  display: none;
}

.support-selected-model > span {
  grid-column: 1;
  grid-row: 1;
  font-size: 6px;
}

.support-selected-model > strong {
  margin-top: 2px;
  grid-column: 1;
  grid-row: 2;
  font-size: 21px;
}

.support-selected-model > p {
  min-height: 0;
  margin: 2px 0 0;
  grid-column: 1;
  grid-row: 3;
  font-size: 8px;
}

.support-selected-model dl {
  display: grid;
  margin: 0;
  grid-column: 2;
  grid-row: 1 / 4;
  grid-template-columns: repeat(3, minmax(80px, 1fr));
}

.support-selected-model dl div {
  display: grid;
  min-height: 42px;
  padding: 4px 14px;
  align-content: center;
  justify-content: start;
  border-top: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  gap: 3px;
}

.support-selected-model dt,
.support-selected-model dd {
  font-size: 7px;
}

.support-selected-model dd {
  font-size: 9px;
}

.support-selected-model > a {
  min-height: 34px;
  padding: 0 13px;
  grid-column: 3;
  grid-row: 1 / 4;
  border: 1px solid rgba(0, 207, 193, 0.5);
  font-size: 9px;
  white-space: nowrap;
}

.support-resource-hub .support-resource-filter {
  min-height: 46px;
  padding-inline: 14px;
  gap: 18px;
}

.support-resource-hub .support-resource-filter button {
  min-height: 45px;
  font-size: 9px;
}

.support-resource-hub .support-resource-row {
  min-height: 84px;
  padding: 12px 14px;
  grid-template-columns: 44px minmax(0, 1fr) 86px 116px;
  gap: 13px;
}

.support-resource-hub .support-resource-type {
  width: 44px;
  height: 44px;
}

.support-resource-hub .support-resource-type span {
  font-size: 13px;
}

.support-resource-hub .support-resource-type small,
.support-resource-hub .support-resource-meta,
.support-resource-hub .support-resource-info span {
  font-size: 6px;
}

.support-resource-hub .support-resource-copy h3 {
  margin-top: 3px;
  font-size: 13px;
}

.support-resource-hub .support-resource-copy p {
  margin-top: 3px;
  font-size: 8px;
  line-height: 1.45;
}

.support-resource-hub .support-resource-info {
  width: 86px;
}

.support-resource-hub .support-resource-info strong {
  font-size: 9px;
}

.support-resource-hub .support-resource-row > .button {
  width: 110px;
  min-width: 110px;
  min-height: 36px;
  padding-inline: 12px;
  font-size: 9px;
}

@media (max-width: 1180px) {
  .support-hub-heading {
    grid-template-columns: minmax(280px, 1fr) minmax(400px, 0.9fr);
    gap: 28px;
  }

  .support-hierarchy {
    grid-template-columns: 186px 198px minmax(0, 1fr);
  }

  .support-selected-model {
    grid-template-columns: 160px minmax(230px, 1fr) auto;
  }

  .support-resource-hub .support-resource-row {
    grid-template-columns: 44px minmax(0, 1fr) 108px;
  }
}

@media (max-width: 900px) {
  .support-hub-heading {
    grid-template-columns: minmax(0, 1fr);
  }

  .support-hierarchy {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .support-files-level {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(13, 13, 13, 0.13);
  }

  .support-category-grid,
  .support-model-track {
    max-height: 300px;
  }
}

/* Resource list overflow. */
.support-resource-hub .support-resource-list {
  max-height: 376px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: rgba(0, 207, 193, 0.68) transparent;
  scrollbar-width: thin;
}

@media (max-width: 620px) {
  .support-resource-hub {
    padding: 46px 0 62px;
  }

  .support-hub-title {
    text-align: left;
  }

  .support-studio-gateway {
    grid-template-columns: 38px minmax(0, 1fr) auto;
  }

  .support-studio-gateway > b {
    width: auto;
    grid-column: auto;
  }

  .support-hierarchy {
    display: block;
  }

  .support-level,
  .support-level + .support-level {
    border-right: 0;
    border-top: 1px solid rgba(13, 13, 13, 0.13);
  }

  .support-category-grid {
    display: block;
    max-height: 242px;
  }

  .support-model-track {
    display: grid;
    max-height: none;
    padding: 0;
    grid-auto-columns: 180px;
    grid-auto-flow: column;
    overflow-x: auto;
  }

  .support-selected-model {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .support-selected-model dl {
    display: none;
  }

  .support-selected-model > a {
    grid-column: 2;
  }

  .support-resource-hub .support-resource-row {
    padding: 14px;
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .support-resource-hub .support-resource-row > .button {
    width: 126px;
    grid-column: 2;
  }
}

/* Final resource catalog type scale and balanced category/model columns. */
.support-hub-title h2 { font-size: clamp(34px, 2.65vw, 42px); }
.support-hub-title > p:last-child { font-size: 14px; }
.support-studio-gateway span { font-size: 11px; }
.support-studio-gateway strong { font-size: 24px; }
.support-studio-gateway small { font-size: 11px; }
.support-studio-gateway > b { font-size: 12px; }
.support-level > header small { font-size: 8px; }
.support-level > header h3 { font-size: 16px; }
.support-level > header em { font-size: 10px; }
.support-category-search input { font-size: 12px; }
.support-category-grid button > span { font-size: 10px; }
.support-category-grid button strong { font-size: 15px; }
.support-category-grid button small { font-size: 10px; }
.support-model-track button > span { font-size: 9px; }
.support-model-track button strong { font-size: 19px; }
.support-model-track button small { font-size: 10px; }
.support-model-track button i { font-size: 9px; }
.support-selected-model > span { font-size: 8px; }
.support-selected-model > strong { font-size: 26px; }
.support-selected-model > p { font-size: 10px; }
.support-selected-model dt { font-size: 9px; }
.support-selected-model dd { font-size: 12px; }
.support-selected-model > a { font-size: 11px; }
.support-resource-hub .support-resource-filter button { font-size: 11px; }
.support-resource-hub .support-resource-meta,
.support-resource-hub .support-resource-info span { font-size: 8px; }
.support-resource-hub .support-resource-copy h3 { font-size: 17px; }
.support-resource-hub .support-resource-copy p { font-size: 10px; }
.support-resource-hub .support-resource-info strong { font-size: 12px; }
.support-resource-hub .support-resource-row > .button { font-size: 11px; }

.support-selected-model dl {
  grid-template-columns: repeat(2, minmax(100px, 1fr));
}

.support-hierarchy {
  grid-template-columns: 220px 220px minmax(0, 1fr);
}

.support-category-grid button,
.support-category-grid button:nth-child(n),
.support-model-track button,
.support-model-track button:nth-child(n) {
  min-height: 68px;
  padding: 10px 12px;
}

.support-category-grid button > span,
.support-model-track button > span {
  font-size: 9px;
  letter-spacing: 0.08em;
}

.support-category-grid button strong,
.support-model-track button strong {
  margin-top: 0;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.support-category-grid button small,
.support-model-track button small {
  margin-top: 2px;
  font-size: 10px;
  line-height: 1.25;
}

.support-model-track button i {
  font-size: 9px;
}

.download-endpoint-notice {
  position: fixed;
  z-index: 1000;
  right: 24px;
  bottom: 24px;
  max-width: min(360px, calc(100vw - 32px));
  padding: 14px 18px;
  border: 1px solid rgba(0, 207, 193, 0.55);
  background: #0d1111;
  color: #fff;
  font-size: 13px;
  line-height: 1.5;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 240ms cubic-bezier(.2,.8,.2,1);
}

.download-endpoint-notice.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-glance-grid--single {
  min-height: 410px;
  grid-template-columns: minmax(0, 1fr);
}

.product-glance-grid--single .product-glance-featured {
  min-height: 410px;
  padding-inline: clamp(28px, 4vw, 58px);
}

.product-glance-grid--single .glance-featured-copy {
  max-width: 420px;
}

html[lang="en"] .product-glance-grid--single .glance-featured-copy {
  max-width: 330px;
}

.product-glance-grid--single .product-glance-featured > img {
  right: 1%;
  bottom: -20%;
  width: min(64%, 760px);
}

.studio-family-rail--single {
  grid-template-columns: minmax(0, 1fr);
}

.studio-family-rail--single .studio-family-live {
  border-right: 0;
}

.family-modules--single {
  grid-template-columns: minmax(0, 1fr);
}

.family-modules--single .family-module {
  min-height: 128px;
  padding-inline: 22px;
  border-right: 0;
}

@media (max-width: 700px) {
  .product-glance-grid--single .product-glance-featured {
    min-height: 600px;
  }

  .product-glance-grid--single .product-glance-featured > img {
    right: -24%;
    bottom: -5%;
    width: 126%;
  }
}

@media (max-width: 1180px) {
  .support-hierarchy {
    grid-template-columns: 200px 200px minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .support-hierarchy {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Localized Studio captures use the native 1920 × 1040 viewport ratio. */
.studio-window-screen,
.home-studio-screen,
.workflow-screen {
  aspect-ratio: 24 / 13;
}

.studio-window-screen img,
.home-studio-screen img,
.workflow-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* Coming soon · manual placeholder */
.coming-soon-page {
  min-height: calc(100svh - var(--header-height));
  color: var(--white);
  background: var(--black);
}

.coming-soon-hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - var(--header-height));
  place-items: center;
  padding: clamp(72px, 10vw, 120px) 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 50% 18%, rgba(0, 207, 193, 0.14), transparent 58%),
    linear-gradient(180deg, #121212 0%, var(--black) 72%);
}

.coming-soon-glow {
  position: absolute;
  inset: auto 12% 18% 12%;
  height: 28%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 207, 193, 0.16), transparent 70%);
  filter: blur(18px);
  pointer-events: none;
  animation: coming-soon-pulse 5.6s var(--ease) infinite alternate;
}

.coming-soon-stage {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 18px;
}

.coming-soon-stage .eyebrow {
  margin: 0;
  color: var(--cyan);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.coming-soon-mark {
  width: clamp(72px, 12vw, 108px);
  height: auto;
  margin: 8px 0 4px;
  filter: drop-shadow(0 12px 28px rgba(0, 207, 193, 0.18));
  animation: coming-soon-rise 900ms var(--ease) both;
}

.coming-soon-stage h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 5.6rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.coming-soon-stage > p {
  max-width: 34rem;
  margin: 0;
  color: var(--gray);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
}

.coming-soon-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

@keyframes coming-soon-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes coming-soon-pulse {
  from {
    opacity: 0.55;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1.04);
  }
}

@media (max-width: 640px) {
  .coming-soon-actions {
    width: 100%;
  }

  .coming-soon-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .coming-soon-mark,
  .coming-soon-glow {
    animation: none;
  }
}
