:root {
  --bg: #EBF3FB;
  --blue: #647dff;
  --blue2: #9cafef;
  --deep: #0a1741;
  --ink: #101936;
  --muted: #65718c;
  --white: #fff;
  --line: #d1deed;
  --max: 1400px
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

html:has(.starh-landing),
body:has(.starh-landing),
#app:has(.starh-landing),
.base-container:has(.starh-landing),
main:has(.starh-landing) {
  overflow-x: clip !important;
}

#app:has(.starh-landing),
.base-container:has(.starh-landing),
main:has(.starh-landing) {
  overflow-y: visible !important;
}

img {
  display: block;
  width: 100%
}

.section {
  padding: 110px 0
}

.section-form {
  padding-top: 0;
}

.wrap {
  width: min(calc(100% - 48px), var(--max));
  margin: auto
}

.intro {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 55px
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #5068da;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase
}

.eyebrow:before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--blue)
}

h2 {
  font-size: clamp(43px, 5.1vw, 74px);
  line-height: 1;
  letter-spacing: -.05em;
  margin: 22px 0 0
}

h2 em {
  font-style: normal;
  color: #5b72e8
}

h3 {
  margin: 0
}

p {
  color: var(--muted);
  line-height: 1.75
}

.line-clamp-3 {
  color: #ffffff;
}

.intro>p {
  font-size: 17px;
  margin: 0 0 7px
}

.label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  color: #6072c8;
  text-transform: uppercase
}

.image {
  height: 100%;
  object-fit: cover
}

/* cell */
.cell-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px
}

.cell-photo {
  height: 620px;
  position: relative;
  overflow: hidden;
  border-radius: 28px
}

.cell-photo img {
  height: 100%;
  object-fit: cover
}

.cell-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, #081435e8)
}

.cell-overlay {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 38px;
  color: #fff;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px
}

.cell-overlay h3 {
  font-size: 31px;
  max-width: 460px
}

.cell-overlay p {
  color: #cbd7ee;
  max-width: 420px;
  margin: 10px 0 0
}

.cell-number {
  font-size: 94px;
  font-weight: 800;
  line-height: .8;
  letter-spacing: -.08em;
  color: #aebdff;
  white-space: nowrap
}

.cell-number small {
  font-size: 16px;
  letter-spacing: 0
}

.cell-data {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px
}

.data-card {
  background: #fff;
  border-radius: 28px;
  padding: 38px;
  position: relative;
  overflow: hidden
}

.data-card:before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 40px solid #f0f4ff;
  border-radius: 50%;
  right: -80px;
  top: -80px
}

.data-card strong {
  display: block;
  font-size: 75px;
  letter-spacing: -.07em;
  line-height: 1;
  color: #6078ef;
  margin: 40px 0 10px;
  position: relative
}

.data-card h3 {
  font-size: 24px;
  position: relative
}

.data-card p {
  margin-bottom: 0;
  position: relative
}

.data-card.dark {
  background: var(--deep);
  color: #fff
}

.data-card.dark:before {
  border-color: #ffffff0a
}

.data-card.dark strong {
  color: #a9b9ff
}

.data-card.dark p {
  color: #9daacc
}

/* certification */
.cert-panel {
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  min-height: 520px;
  box-shadow: 0 25px 60px #36557a0e
}

.cert-image {
  position: relative;
  min-height: 520px
}

.cert-image img {
  height: 100%;
  object-fit: cover
}

.cert-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 68%, #fff)
}

.cert-copy {
  padding: 52px 48px 45px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.cert-count {
  font-size: 102px;
  font-weight: 800;
  line-height: .8;
  color: #687fff;
  letter-spacing: -.08em
}

.cert-copy h3 {
  font-size: 29px;
  margin: 25px 0 8px
}

.cert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px
}

.cert-tags span {
  font-size: 10px;
  padding: 8px 10px;
  border: 1px solid #cfdbee;
  color: #63708d;
  background: #f7faff
}

/* operating modes */
.mode-stage {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: 690px
}

.mode-stage>img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover
}

.mode-stage:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #07163ed6 0%, #07163e66 55%, transparent)
}

.mode-copy {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 70px;
  max-width: 650px
}

.mode-copy .eyebrow {
  color: #b6c3ff
}

.mode-copy h2 em {
  color: #b8c5ff
}

.mode-copy>p {
  color: #c2cee3;
  font-size: 17px
}

.mode-cards {
  position: absolute;
  z-index: 2;
  right: 40px;
  bottom: 40px;
  width: 56%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.mode-card {
  background: #ffffffee;
  backdrop-filter: blur(12px);
  padding: 30px;
  border-radius: 20px;
  color: var(--ink);
  box-shadow: 0 18px 45px #08132b3b
}

.mode-card:first-child {
  border-top: 5px solid #637cff
}

.mode-card:last-child {
  border-top: 5px solid #a5b4ee
}

.rate {
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.08em;
  color: #5c75ed
}

.rate small {
  font-size: 28px
}

.mode-card h3 {
  font-size: 21px;
  margin: 18px 0 4px
}

.mode-card p {
  font-size: 13px;
  margin: 0
}

.bar {
  height: 6px;
  background: #e5eafa;
  margin-top: 20px
}

.bar i {
  display: block;
  width: 86%;
  height: 100%;
  background: linear-gradient(90deg, #4e6cff, #a7b7ff)
}

.mode-card:last-child .bar i {
  width: 55%
}

/* control */
.control-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch
}

.control-image {
  min-height: 620px;
  border-radius: 30px;
  overflow: hidden;
  position: relative
}

.control-image img {
  height: 100%;
  object-fit: cover
}

.control-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, #07163dc9)
}

.control-image h3 {
  position: absolute;
  left: 38px;
  bottom: 35px;
  z-index: 1;
  color: #fff;
  font-size: 30px
}

.control-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.control-card {
  background: #fff;
  border-radius: 28px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px
}

.control-card.wide {
  grid-column: 1/-1;
  background: linear-gradient(135deg, #647dff, #8da2fa);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center
}

.control-card strong {
  font-size: 72px;
  line-height: .9;
  letter-spacing: -.07em;
  color: #637bee
}

.control-card strong small {
  font-size: 18px;
  letter-spacing: 0
}

.control-card h3 {
  font-size: 22px;
  margin: 22px 0 5px
}

.control-card p {
  font-size: 13px;
  margin: 0
}

.control-card.wide strong {
  color: #fff;
  font-size: 96px
}

.control-card.wide p {
  color: #edf1ff
}

.steps {
  display: grid;
  gap: 8px
}

.steps span {
  padding: 11px 13px;
  background: #ffffff1a;
  border: 1px solid #ffffff27;
  font-size: 10px;
  display: flex;
  justify-content: space-between
}

.steps b {
  font-weight: 500
}

.steps i {
  font-style: normal
}

/* product */
.product-panel {
  background: var(--deep);
  border-radius: 32px;
  overflow: hidden;
  color: #fff
}

.product-visual {
  height: 540px;
  position: relative
}

.product-visual img {
  height: 100%;
  object-fit: cover
}

.product-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, var(--deep))
}

.product-title {
  position: absolute;
  left: 55px;
  bottom: 35px;
  z-index: 1
}

.product-title h2 {
  font-size: clamp(48px, 6vw, 82px);
  margin: 12px 0
}

.product-title p {
  color: #b8c5dd;
  margin: 0
}

.product-info {
  padding: 0 55px 55px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px
}

.hero-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.hero-numbers div {
  background: #111f50;
  padding: 27px
}

.hero-numbers b {
  font-size: 55px;
  color: #aebdff;
  letter-spacing: -.06em
}

.hero-numbers span {
  display: block;
  font-size: 10px;
  color: #91a0bf;
  letter-spacing: .1em;
  margin-top: 6px
}

.specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #283665
}

.spec {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid #283665;
  font-size: 11px
}

.spec:nth-child(odd) {
  padding-right: 25px
}

.spec:nth-child(even) {
  padding-left: 25px;
  border-left: 1px solid #283665
}

.spec span {
  color: #8493b2
}

.spec b {
  text-align: right;
  font-weight: 500
}

@media(max-width:1000px) {

  .intro,
  .cell-grid,
  .cert-panel,
  .control-grid,
  .product-info {
    grid-template-columns: 1fr
  }

  .cell-data {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto
  }

  .cert-image {
    min-height: 430px
  }

  .cert-copy {
    padding: 45px
  }

  .cert-image:after {
    background: linear-gradient(180deg, transparent 70%, #fff)
  }

  .mode-cards {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: -210px 25px 25px
  }

  .mode-stage {
    padding-bottom: 0
  }

  .control-image {
    min-height: 520px
  }

  .product-info {
    padding-top: 15px
  }
}

@media(max-width:650px) {
  .section {
    padding: 70px 0
  }

  .wrap {
    width: calc(100% - 30px)
  }

  .intro {
    gap: 25px;
    margin-bottom: 35px
  }

  h2 {
    font-size: 40px
  }

  .cell-grid,
  .cell-data,
  .control-side,
  .mode-cards,
  .hero-numbers,
  .specs {
    grid-template-columns: 1fr
  }

  .cell-photo {
    height: 560px
  }

  .cell-overlay {
    left: 25px;
    right: 25px;
    bottom: 25px;
    display: block
  }

  .cell-number {
    font-size: 67px;
    margin-top: 25px
  }

  .data-card {
    padding: 27px
  }

  .cert-panel {
    border-radius: 22px
  }

  .cert-image {
    min-height: 330px
  }

  .cert-copy {
    padding: 30px
  }

  .mode-stage {
    min-height: auto
  }

  .mode-stage>img {
    height: 520px
  }

  .mode-copy {
    padding: 45px 25px;
    min-height: 520px
  }

  .mode-cards {
    margin: -100px 15px 15px
  }

  .control-card.wide {
    grid-template-columns: 1fr
  }

  .control-image {
    min-height: 420px
  }

  .product-visual {
    height: 460px
  }

  .product-title {
    left: 25px;
    bottom: 25px
  }

  .product-info {
    padding: 10px 25px 30px;
    gap: 30px
  }

  .spec:nth-child(n) {
    padding: 13px 0;
    border-left: 0
  }
}

/* Stronger section separation and supplied product artwork */
main {
  counter-reset: section
}

.section {
  counter-increment: section;
  position: relative;
  background: #EBF3FB;
  border-top: 16px solid #fff
}

.section:first-child {
  border-top: 0
}

.section:before {
  content: "0" counter(section);
  position: absolute;
  top: 0;
  left: max(24px, calc((100% - 1400px)/2));
  width: 74px;
  height: 42px;
  background: #6179ef;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  z-index: 5
}

.section:after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(max(24px, calc((100% - 1400px)/2)) + 74px);
  right: max(24px, calc((100% - 1400px)/2));
  height: 1px;
  background: #b8c9df
}

.section>.wrap {
  padding-top: 18px
}

.cell-photo.supplied {
  background: linear-gradient(145deg, #101b4e, #263880)
}

.cell-photo.supplied img {
  object-fit: contain;
  padding: 65px 70px 175px
}

.cell-photo.supplied:after {
  background: linear-gradient(180deg, transparent 48%, #081435f2 78%)
}

.cert-image.logo-art {
  background: linear-gradient(135deg, #f5f9ff, #dfeafa)
}

.cert-image.logo-art img {
  object-fit: contain;
  padding: 90px;
  filter: drop-shadow(0 18px 25px #4a6c9c20)
}

.cert-image.logo-art:after {
  background: linear-gradient(90deg, transparent 72%, #fff)
}

.mode-stage.supplied-banner>img {
  object-position: center
}

.setup-visual {
  background: #fff
}

.setup-visual img {
  object-fit: contain;
  padding: 25px 20px 75px
}

.setup-visual:after {
  background: linear-gradient(180deg, transparent 70%, #07163dd8)
}

.product-visual.spec-visual {
  background: #fff;
  height: 500px
}

.product-visual.spec-visual img {
  object-fit: contain;
  padding: 30px 40px 85px
}

.product-visual.spec-visual:after {
  background: linear-gradient(180deg, transparent 45%, var(--deep))
}

.product-info.with-cutout {
  grid-template-columns: 230px .65fr 1.35fr;
  align-items: center
}

.product-cutout {
  height: 240px;
  object-fit: contain;
  filter: drop-shadow(0 18px 25px #0004)
}

@media(max-width:1000px) {
  .product-info.with-cutout {
    grid-template-columns: 210px 1fr
  }

  .product-info.with-cutout .specs {
    grid-column: 1/-1
  }

  .cert-image.logo-art:after {
    background: linear-gradient(180deg, transparent 78%, #fff)
  }
}

@media(max-width:650px) {
  .section {
    border-top-width: 10px
  }

  .section:before {
    left: 15px
  }

  .section:after {
    left: 89px;
    right: 15px
  }

  .cell-photo.supplied img {
    padding: 35px 25px 190px
  }

  .cert-image.logo-art img {
    padding: 55px
  }

  .setup-visual img {
    padding: 18px 8px 85px
  }

  .product-info.with-cutout {
    grid-template-columns: 1fr
  }

  .product-info.with-cutout .specs {
    grid-column: auto
  }

  .product-cutout {
    height: 210px
  }

  .product-visual.spec-visual {
    height: 390px
  }
}

/* Full-width color bands replace the previous numbered dividers */
main {
  counter-reset: none
}

.section {
  counter-increment: none;
  border: 0;
  position: relative
}

.section:before,
.section:after {
  display: none
}

.section>.wrap {
  padding-top: 0
}

.section:nth-of-type(1) {
  background: #EBF3FB
}

.section:nth-of-type(2) {
  background: #F8FBFF
}

.section:nth-of-type(3) {
  background: #DCEAF8
}

.section:nth-of-type(4) {
  background: #EEF5FC
}

.section:nth-of-type(5) {
  background: #E3EDF8
}

.section:nth-of-type(2) .cert-panel {
  box-shadow: 0 28px 70px #4c6c9317;
  border: 1px solid #e1eaf4
}

.section:nth-of-type(3) .mode-stage {
  box-shadow: 0 30px 70px #36557920
}

.section:nth-of-type(4) .control-image,
.section:nth-of-type(4) .control-card {
  box-shadow: 0 22px 55px #43648614
}

.section:nth-of-type(5) .product-panel {
  box-shadow: 0 30px 75px #263d641f
}

@media(max-width:650px) {
  .section {
    border: 0
  }

  .section>.wrap {
    padding-top: 0
  }
}

.opening {
  background: #EBF3FB
}

.opening-card {
  min-height: 660px;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  background: #0b1b48
}

.opening-card>img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover
}

.opening-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #09173bea 0%, #09173bbd 39%, #09173b20 72%), linear-gradient(180deg, #09173b45, transparent 58%)
}

.opening-copy {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 72px;
  max-width: 700px
}

.opening-copy h1 {
  font-size: clamp(49px, 6.2vw, 88px);
  line-height: .98;
  letter-spacing: -.055em;
  margin: 22px 0
}

.opening-copy h1 em {
  font-style: normal;
  color: #aebdff
}

.opening-copy>p {
  font-size: 18px;
  color: #d2dcf0;
  max-width: 580px
}

.opening-product {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  background: #ffffff12;
  border: 1px solid #ffffff24;
  padding: 14px 17px;
  margin: 18px 0 25px;
  backdrop-filter: blur(12px)
}

.opening-product b {
  font-size: 18px;
  color: #b7c5ff
}

.opening-product span {
  font-size: 13px;
  color: #d3dcef
}

.opening-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 560px
}

.opening-facts span {
  font-size: 11px;
  padding: 12px 14px;
  background: #09173b8f;
  border-left: 3px solid #7188f3
}

.spec-section {
  background: #F8FBFF
}

.spec-sheet {
  background: #fff;
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 26px 65px #36557913
}

.spec-head {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 55px;
  align-items: center;
  margin-bottom: 45px
}

.spec-head img {
  height: 320px;
  object-fit: contain
}

.spec-head h2 {
  font-size: clamp(45px, 5.4vw, 72px)
}

.spec-head p {
  font-size: 16px;
  max-width: 620px
}

.full-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #d5e0eb
}

.table-title {
  grid-column: 1/-1;
  background: #dce5ed;
  color: #33435a;
  padding: 13px 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 12px 20px;
  border-bottom: 1px solid #e2e9f0;
  font-size: 12px
}

.table-row:nth-child(even) {
  border-right: 1px solid #e2e9f0
}

.table-row span {
  color: #718098
}

.table-row b {
  text-align: right;
  font-weight: 600;
  color: #24334b
}

.section:nth-of-type(1) {
  background: #EBF3FB
}

.section:nth-of-type(2) {
  background: #F4F8FD
}

.section:nth-of-type(3) {
  background: #E2EDF8
}

.section:nth-of-type(4) {
  background: #F8FBFF
}

.section:nth-of-type(5) {
  background: #DCEAF8
}

.section:nth-of-type(6) {
  background: #EEF5FC
}

.section:nth-of-type(7) {
  background: #F8FBFF
}

@media(max-width:900px) {
  .spec-head {
    grid-template-columns: 1fr
  }

  .full-table {
    grid-template-columns: 1fr
  }

  .table-row:nth-child(even) {
    border-right: 0
  }

  .opening-copy {
    padding: 50px
  }
}

@media(max-width:650px) {
  .opening-card {
    min-height: 720px
  }

  .opening-card>img {
    object-position: 64% center
  }

  .opening-card:after {
    background: linear-gradient(180deg, #09173be8 0%, #09173ba8 67%, #09173b2b)
  }

  .opening-copy {
    padding: 38px 25px
  }

  .opening-facts {
    grid-template-columns: 1fr
  }

  .spec-sheet {
    padding: 25px
  }

  .spec-head img {
    height: 240px
  }

  .full-table {
    display: block
  }

  .table-title {
    display: block
  }

  .table-row {
    padding: 12px 14px
  }

  .table-row b {
    text-align: left
  }
}

/* Denser content rhythm */
.section {
  padding: 84px 0
}

.opening-product {
  border-radius: 999px;
  padding: 13px 20px
}

.opening-facts span {
  border: 1px solid #ffffff26;
  border-left: 3px solid #7188f3;
  border-radius: 14px;
  background: #09173b80
}

.cell-grid,
.cell-data {
  height: 620px
}

.cell-photo {
  height: 620px
}

.cell-data {
  grid-template-rows: 1fr 1fr
}

.data-card {
  min-height: 0
}

.cert-panel {
  grid-template-columns: .78fr 1.22fr;
  min-height: 390px
}

.cert-image {
  min-height: 390px
}

.cert-image.logo-art img {
  padding: 55px 75px
}

.cert-copy {
  padding: 38px 60px 38px 12px
}

.cert-count {
  font-size: 78px
}

.cert-copy h3 {
  margin: 17px 0 6px
}

.cert-tags {
  margin-top: 15px
}

.mode-stage {
  min-height: 560px
}

.mode-copy {
  padding: 52px;
  max-width: 610px
}

.mode-copy h2 {
  font-size: clamp(42px, 4.5vw, 66px)
}

.mode-cards {
  right: 28px;
  bottom: 28px;
  width: 53%;
  gap: 10px
}

.mode-card {
  padding: 24px
}

.rate {
  font-size: 61px
}

.control-grid {
  height: 520px;
  gap: 16px
}

.control-image {
  min-height: 520px
}

.control-side {
  gap: 16px
}

.control-card {
  min-height: 252px;
  padding: 28px
}

.control-card strong {
  font-size: 62px
}

.control-card.wide {
  min-height: 252px;
  padding: 28px
}

.control-card.wide strong {
  font-size: 78px
}

.spec-sheet {
  padding: 38px 42px
}

.spec-head {
  grid-template-columns: .48fr 1.52fr;
  gap: 35px;
  margin-bottom: 28px
}

.spec-head img {
  height: 225px
}

.spec-head h2 {
  font-size: clamp(42px, 4.8vw, 64px)
}

.table-title {
  padding: 10px 17px
}

.table-row {
  padding: 9px 17px
}

.section:nth-of-type(1) {
  background: #EBF3FB
}

.section:nth-of-type(2) {
  background: #F4F8FD
}

.section:nth-of-type(3) {
  background: #E2EDF8
}

.section:nth-of-type(4) {
  background: #F8FBFF
}

.section:nth-of-type(5) {
  background: #DCEAF8
}

.section:nth-of-type(6) {
  background: #F8FBFF
}

@media(max-width:1000px) {

  .cell-grid,
  .cell-data {
    height: auto
  }

  .cell-photo {
    height: 620px
  }

  .cert-panel {
    grid-template-columns: 1fr
  }

  .cert-image {
    min-height: 340px
  }

  .cert-copy {
    padding: 35px
  }

  .control-grid {
    height: auto
  }

  .control-image {
    min-height: 500px
  }
}

@media(max-width:650px) {
  .section {
    padding: 64px 0
  }

  .opening-product {
    border-radius: 22px;
    flex-wrap: wrap
  }

  .cell-photo {
    height: 560px
  }

  .cert-image.logo-art img {
    padding: 45px
  }

  .cert-copy {
    padding: 28px
  }

  .mode-stage {
    min-height: auto
  }

  .mode-card {
    padding: 22px
  }

  .control-image {
    min-height: 420px
  }

  .control-card,
  .control-card.wide {
    min-height: 240px
  }

  .spec-sheet {
    padding: 24px
  }

  .spec-head {
    gap: 20px;
    margin-bottom: 22px
  }

  .table-row {
    padding: 10px 13px
  }
}

/* Split editorial layout for dual operating modes */
.mode-stage.mode-split {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  min-height: 610px;
  background: #fff;
  border-radius: 30px
}

.mode-stage.mode-split:after {
  display: none
}

.mode-stage.mode-split>img {
  position: static;
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: 610px;
  object-fit: cover;
  object-position: 58% center
}

.mode-stage.mode-split .mode-copy {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  max-width: none;
  padding: 48px 48px 20px;
  color: var(--ink)
}

.mode-stage.mode-split .mode-copy .eyebrow {
  color: #586fd7
}

.mode-stage.mode-split .mode-copy h2 {
  font-size: clamp(40px, 4vw, 59px);
  margin-top: 18px
}

.mode-stage.mode-split .mode-copy h2 em {
  color: #5f76e9
}

.mode-stage.mode-split .mode-copy>p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 0
}

.mode-stage.mode-split .mode-cards {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  right: auto;
  bottom: auto;
  width: auto;
  padding: 0 48px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.mode-stage.mode-split .mode-card {
  padding: 24px;
  border-radius: 18px;
  box-shadow: none
}

.mode-stage.mode-split .mode-card:first-child {
  background: linear-gradient(145deg, #526bea, #7187f3);
  color: #fff;
  border-top: 0
}

.mode-stage.mode-split .mode-card:first-child .rate,
.mode-stage.mode-split .mode-card:first-child p {
  color: #fff
}

.mode-stage.mode-split .mode-card:first-child p {
  opacity: .82
}

.mode-stage.mode-split .mode-card:last-child {
  background: #edf3ff;
  border: 1px solid #d2def4;
  border-top: 0
}

.mode-stage.mode-split .rate {
  font-size: 53px
}

.mode-stage.mode-split .mode-card h3 {
  font-size: 18px;
  margin-top: 13px
}

.mode-stage.mode-split .mode-card p {
  font-size: 12px;
  line-height: 1.5
}

.mode-stage.mode-split .bar {
  margin-top: 16px;
  background: #dce4f7
}

.mode-stage.mode-split .mode-card:first-child .bar {
  background: #ffffff2e
}

.mode-stage.mode-split .mode-card:first-child .bar i {
  background: #fff
}

@media(max-width:1050px) {
  .mode-stage.mode-split {
    grid-template-columns: 1fr
  }

  .mode-stage.mode-split>img {
    grid-column: 1;
    grid-row: 1;
    height: 420px
  }

  .mode-stage.mode-split .mode-copy {
    grid-column: 1;
    grid-row: 2;
    padding: 38px 38px 20px
  }

  .mode-stage.mode-split .mode-cards {
    grid-column: 1;
    grid-row: 3;
    padding: 15px 38px 38px;
    margin: 0
  }
}

@media(max-width:650px) {
  .mode-stage.mode-split>img {
    height: 330px
  }

  .mode-stage.mode-split .mode-copy {
    min-height: 0;
    padding: 30px 24px 15px
  }

  .mode-stage.mode-split .mode-cards {
    grid-template-columns: 1fr;
    padding: 10px 24px 24px;
    margin: 0
  }

  .mode-stage.mode-split .mode-copy h2 {
    font-size: 38px
  }
}

/* Product showcase + grouped specification table */
.spec-sheet {
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 24px;
  background: transparent;
  padding: 0;
  box-shadow: none;
  border-radius: 0
}

.spec-head {
  display: block;
  margin: 0;
  padding: 34px;
  background: linear-gradient(145deg, #fff 0%, #fff 68%, #eef0ff 100%);
  border-radius: 28px;
  align-self: start;
  position: sticky;
  top: 24px;
  overflow: hidden
}

.spec-head:before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border: 55px solid #ffffff0a;
  border-radius: 50%;
  right: -120px;
  top: -110px
}

.spec-head img {
  height: 300px;
  object-fit: contain;
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  position: relative
}

.spec-head>div {
  position: relative
}

.spec-head .eyebrow {
  margin-top: 28px
}

.spec-head h2 {
  color: #fff;
  font-size: 49px;
  margin-top: 15px
}

.spec-head p {
  color: #6d7890;
  font-size: 13px;
  margin-bottom: 25px
}

.spec-mini {
  display: flex;
  gap: 10px
}

.spec-mini span {
  padding: 15px;
  background: #EEF3FF;
  border: 1px solid #EEF3FF;
  border-radius: 13px;
  color: #5c75ed;
  font-size: 9px;
  letter-spacing: .1em
}

.spec-mini b {
  display: block;
  color: #5c75ed;
  font-size: 27px;
  letter-spacing: -.04em;
}

.full-table {
  display: block;
  border: 0;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px #36557913;
}

.table-title {
  display: block;
  background: #eef3ff;
  color: #5369d4;
  padding: 15px 22px 14px;
  border-left: 6px solid #667df0;
  font-size: 10px;
}

.table-title:not(:first-child) {
  border-top: 10px solid #EBF3FB;
}

.table-row {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  padding: 13px 22px;
  border: 0;
  border-bottom: 1px solid #e8edf5;
  font-size: 12px
}

.table-row:nth-child(odd) {
  background: #f8faff
}

.table-row:nth-child(even) {
  border-right: 0
}

.table-row span {
  color: #6d7890
}

.table-row b {
  color: #26334c;
  text-align: left
}

.table-row:hover {
  background: #eef3ff
}

@media(max-width:950px) {
  .spec-sheet {
    grid-template-columns: 1fr
  }

  .spec-head {
    position: relative;
    top: 0;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px
  }

  .spec-head img {
    height: 260px
  }

  .spec-head .eyebrow {
    margin-top: 10px
  }
}

@media(max-width:650px) {
  .spec-head {
    display: block;
    padding: 24px
  }

  .spec-head img {
    height: 240px
  }

  .spec-head h2 {
    font-size: 42px
  }

  .table-row {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 12px 16px
  }

  .table-title {
    padding: 14px 16px
  }

  .full-table {
    border-radius: 20px
  }
}

/* Sticky product card follows the specification table until both bottoms align */
.spec-sheet {
  align-items: start
}

.spec-head {
  position: -webkit-sticky;
  position: sticky;
  top: 24px;
  height: max-content;
  align-self: start;
  z-index: 2
}

@media(min-width:761px) and (max-width:950px) {
  .spec-sheet {
    grid-template-columns: 330px 1fr
  }

  .spec-head {
    position: -webkit-sticky;
    position: sticky;
    top: 18px;
    display: block;
    padding: 27px
  }

  .spec-head img {
    height: 250px
  }

  .spec-head .eyebrow {
    margin-top: 22px
  }

  .spec-head h2 {
    font-size: 42px
  }

  .spec-mini {
    grid-template-columns: 1fr
  }

  .full-table {
    border-radius: 24px
  }
}

@media(max-width:760px) {
  .spec-sheet {
    grid-template-columns: 1fr
  }

  .spec-head {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 24px
  }

  .spec-head img {
    height: 230px
  }
}

@media(max-width:650px) {
  .spec-head {
    display: block
  }
}

/* Sticky requires every ancestor to keep vertical overflow visible */
html,
body {
  overflow-x: hidden;
}

main {
  overflow: visible;
}

.spec-section,
.spec-section>.wrap,
.spec-sheet {
  overflow: visible;
}

.spec-head {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 24px !important;
  height: fit-content !important;
}

@media(max-width:760px) {
  .spec-head {
    position: relative !important;
    top: auto !important;
  }
}

/* Pure CSS follow behavior, constrained by the specification section */
.spec-sheet {
  align-items: start;
  overflow: visible;
}

.spec-head {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 18px !important;
  height: max-content !important;
  align-self: start;
  z-index: 2;
  transform: none !important;
  will-change: auto;
}

.spec-head img {
  height: 230px;
}

.spec-head {
  padding: 28px;
}

.spec-head .eyebrow {
  margin-top: 20px;
}

.spec-head h2 {
  font-size: 32px;
  margin-top: 11px;
  margin-bottom: 20px;
  color: #101936;
}

.spec-head p {
  margin: 10px 0 18px;
}

.spec-mini span {
  padding: 10px 14px;
}

.spec-mini b {
  font-size: 14px;
}

@media(max-width:760px) {
  .spec-head {
    position: relative !important;
    top: auto !important;
  }

  .spec-head img {
    height: 230px;
  }
}