/* PEK Technologies page v223 */
.technologies-page {
  --tech-bg: #f3f0e9;
  --tech-paper: #faf9f6;
  --tech-ink: #080808;
  --tech-muted: rgba(8, 8, 8, .54);
  --tech-line: rgba(8, 8, 8, .14);
  --tech-gold: #b89b5e;
  --tech-shell: 1280px;
  background: var(--tech-bg);
}

.technologies-main {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100vh;
  background:
    radial-gradient(circle at 88% 8%, rgba(184, 155, 94, .14), transparent 24%),
    linear-gradient(180deg, #f8f6f1 0%, var(--tech-bg) 100%);
  color: var(--tech-ink);
}

.technologies-main::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: .42;
  background-image:
    linear-gradient(rgba(8, 8, 8, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 8, 8, .035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.65), transparent 78%);
}

.technologies-index {
  padding: clamp(138px, 15vh, 182px) 0 clamp(92px, 10vw, 150px);
}

.technologies-shell {
  width: min(var(--tech-shell), calc(100% - clamp(44px, 9vw, 128px)));
  margin-inline: auto;
}

.technologies-header {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, .34fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: end;
  padding-bottom: clamp(42px, 5.5vw, 72px);
}

.technologies-eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 0 22px;
  color: var(--tech-gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.technologies-eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  background: currentColor;
}

.technologies-title {
  margin: 0;
  max-width: 930px;
  font-size: clamp(66px, 8.1vw, 126px);
  font-weight: 900;
  line-height: .79;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.technologies-title span {
  display: block;
}

.technologies-title span:last-child {
  color: var(--tech-gold);
}

.technologies-count {
  position: relative;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 0 28px;
  border-left: 1px solid var(--tech-line);
}


.technologies-count span,
.technologies-count small {
  position: relative;
  z-index: 1;
  display: block;
  text-transform: uppercase;
}

.technologies-count span {
  color: var(--tech-ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}

.technologies-count small {
  margin-top: 8px;
  color: var(--tech-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
}

.technologies-list-wrap {
  position: relative;
  border-top: 1px solid var(--tech-line);
}

.technologies-list-wrap::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: clamp(82px, 9vw, 132px);
  height: 3px;
  background: var(--tech-gold);
}

.technologies-accordion {
  display: grid;
}

.tech-accordion-item {
  position: relative;
  border-bottom: 1px solid var(--tech-line);
  background: rgba(255, 255, 255, .28);
  transition: background-color .35s ease, box-shadow .35s ease;
}

.tech-accordion-item::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--tech-gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}

.tech-accordion-item:hover,
.tech-accordion-item.is-open {
  background: var(--tech-ink);
}

.tech-accordion-item.is-open {
  box-shadow: 0 26px 70px rgba(8, 8, 8, .12);
}

.tech-accordion-item:hover::before,
.tech-accordion-item.is-open::before {
  transform: scaleY(1);
}

.tech-accordion-toggle {
  appearance: none;
  width: 100%;
  min-height: clamp(68px, 5.7vw, 84px);
  display: grid;
  grid-template-columns: clamp(42px, 5.2vw, 68px) minmax(0, 1fr) 48px;
  align-items: center;
  gap: clamp(14px, 2.3vw, 30px);
  padding: 0 clamp(18px, 2.7vw, 36px);
  border: 0;
  background: transparent;
  color: var(--tech-ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color .3s ease;
}

.tech-accordion-item:hover .tech-accordion-toggle,
.tech-accordion-item.is-open .tech-accordion-toggle {
  color: #fff;
}

.tech-accordion-toggle:focus-visible {
  outline: 2px solid var(--tech-gold);
  outline-offset: -5px;
}

.tech-number {
  color: var(--tech-gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
}

.tech-title {
  font-size: clamp(19px, 2vw, 31px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.tech-control {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  justify-self: end;
  border: 1px solid rgba(8, 8, 8, .2);
  border-radius: 50%;
  transition: border-color .3s ease, background-color .3s ease, transform .3s ease;
}

.tech-accordion-item:hover .tech-control,
.tech-accordion-item.is-open .tech-control {
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .06);
}

.tech-control svg {
  width: 18px;
  height: 18px;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}

.tech-accordion-item.is-open .tech-control svg {
  transform: rotate(45deg);
}

.tech-accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  color: #fff;
  transition:
    grid-template-rows .45s cubic-bezier(.2,.8,.2,1),
    opacity .32s ease;
}

.tech-accordion-item.is-open .tech-accordion-panel {
  grid-template-rows: 1fr;
  opacity: 1;
}

.tech-accordion-panel-inner {
  min-height: 0;
  overflow: hidden;
}

.tech-content-slot {
  position: relative;
  min-height: clamp(96px, 8vw, 126px);
  margin: 0 clamp(18px, 2.7vw, 36px) clamp(24px, 2.8vw, 34px) calc(clamp(18px, 2.7vw, 36px) + clamp(56px, 7.5vw, 96px));
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.tech-content-slot::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 0;
  width: 72px;
  height: 2px;
  background: var(--tech-gold);
}

.tech-content-slot::after {
  content: "CONTENT AREA";
  position: absolute;
  top: 22px;
  left: 92px;
  color: rgba(255, 255, 255, .36);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
}

@media (max-width: 980px) {
  .technologies-header {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .technologies-count {
    min-height: 0;
    width: min(100%, 420px);
    padding: 18px 0 0;
    border-top: 1px solid var(--tech-line);
    border-left: 0;
  }

}

@media (max-width: 760px) {
  .technologies-main::before {
    background-size: 44px 44px;
  }

  .technologies-index {
    padding: 112px 0 76px;
  }

  .technologies-shell {
    width: calc(100% - 36px);
  }

  .technologies-header {
    padding-bottom: 34px;
  }

  .technologies-eyebrow {
    margin-bottom: 17px;
    font-size: 9px;
  }

  .technologies-eyebrow::before {
    width: 30px;
  }

  .technologies-title {
    font-size: clamp(48px, 15vw, 72px);
    line-height: .82;
    letter-spacing: -.065em;
  }

  .technologies-count {
    padding-top: 14px;
  }

  .technologies-count span {
    font-size: 10px;
  }

  .technologies-count small {
    font-size: 8px;
  }

  .tech-accordion-toggle {
    min-height: 68px;
    grid-template-columns: 30px minmax(0, 1fr) 34px;
    gap: 9px;
    padding: 0 12px;
  }

  .tech-number {
    font-size: 9px;
  }

  .tech-title {
    font-size: clamp(15px, 4.6vw, 19px);
    line-height: 1.05;
  }

  .tech-control {
    width: 32px;
    height: 32px;
  }

  .tech-control svg {
    width: 14px;
    height: 14px;
  }

  .tech-content-slot {
    min-height: 92px;
    margin: 0 12px 22px 51px;
  }

  .tech-content-slot::before {
    top: 23px;
    width: 42px;
  }

  .tech-content-slot::after {
    top: 19px;
    left: 55px;
    font-size: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tech-accordion-item,
  .tech-accordion-item::before,
  .tech-control,
  .tech-control svg,
  .tech-accordion-panel {
    transition: none !important;
  }
}


/* v225 - guaranteed clear space between technology buttons and footer */
body.technologies-page .technologies-main {
  overflow: visible;
}

body.technologies-page .technologies-index {
  padding-bottom: 0;
}

body.technologies-page .technologies-footer-clearance {
  display: block;
  width: 100%;
  height: clamp(150px, 11vw, 190px);
  min-height: 150px;
  background: transparent;
  pointer-events: none;
}

body.technologies-page .site-footer {
  position: relative !important;
  z-index: 2;
  clear: both;
  margin-top: 0 !important;
}

@media (max-width: 760px) {
  body.technologies-page .technologies-footer-clearance {
    height: 96px;
    min-height: 96px;
  }
}


/* v226 - populated technology content */
.tech-content-slot.tech-content-filled {
  min-height: 0;
  padding: clamp(30px, 3.2vw, 44px) 0 clamp(34px, 3.8vw, 52px);
}

.tech-content-slot.tech-content-filled::before,
.tech-content-slot.tech-content-filled::after {
  display: none;
}

.tech-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(240px, .55fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: end;
}

.tech-content-copy {
  max-width: 850px;
}

.tech-content-copy p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: clamp(14px, 1.15vw, 17px);
  font-weight: 500;
  line-height: 1.75;
}

.tech-content-copy p + p {
  margin-top: 16px;
}

.tech-content-copy .tech-content-lead {
  position: relative;
  padding-top: 22px;
  color: #fff;
  font-size: clamp(18px, 1.65vw, 25px);
  font-weight: 650;
  line-height: 1.42;
  letter-spacing: -.02em;
}

.tech-content-copy .tech-content-lead::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 2px;
  background: var(--tech-gold);
}

.tech-content-action {
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .045);
}

.tech-content-action-label {
  color: rgba(255, 255, 255, .45);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.tech-external-button {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px 0 20px;
  border: 1px solid var(--tech-gold);
  background: var(--tech-gold);
  color: var(--tech-ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .11em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color .25s ease, color .25s ease, transform .25s ease;
}

.tech-external-button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  transition: transform .25s ease;
}

.tech-external-button:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
}

.tech-external-button:hover svg {
  transform: translate(3px, -3px);
}

.tech-external-button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .tech-content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .tech-content-action {
    min-height: 0;
    max-width: 420px;
  }
}

@media (max-width: 760px) {
  .tech-content-slot.tech-content-filled {
    padding: 24px 0 28px;
  }

  .tech-content-copy p {
    font-size: 13px;
    line-height: 1.65;
  }

  .tech-content-copy p + p {
    margin-top: 13px;
  }

  .tech-content-copy .tech-content-lead {
    padding-top: 18px;
    font-size: 17px;
    line-height: 1.45;
  }

  .tech-content-copy .tech-content-lead::before {
    width: 46px;
  }

  .tech-content-action {
    gap: 20px;
    padding: 18px;
  }

  .tech-external-button {
    min-height: 48px;
    font-size: 10px;
  }
}


/* v227 - inactive CTA placeholder for links added later */
.tech-external-button.is-pending,
.tech-external-button.is-pending:hover {
  border-color: rgba(190, 155, 88, .52);
  background: rgba(190, 155, 88, .16);
  color: rgba(255, 255, 255, .58);
  cursor: default;
  transform: none;
}

.tech-external-button.is-pending svg,
.tech-external-button.is-pending:hover svg {
  opacity: .55;
  transform: none;
}

/* v229 - stable natural-height accordion and uncropped page flow */
body.technologies-page main#main-content > section.technologies-index {
  height: auto !important;
  min-height: 100svh !important;
  min-height: 100dvh !important;
  max-height: none !important;
  overflow: visible !important;
}

body.technologies-page .technologies-main,
body.technologies-page .technologies-index,
body.technologies-page .technologies-shell,
body.technologies-page .technologies-list-wrap,
body.technologies-page .technologies-accordion {
  overflow: visible !important;
}

/* Replace the fragile CSS-grid 0fr/1fr animation with a JS-driven height. */
body.technologies-page .tech-accordion-panel,
body.technologies-page .tech-accordion-item.is-open .tech-accordion-panel {
  display: block;
  height: 0;
  grid-template-rows: none;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  color: #fff;
  transition:
    height .46s cubic-bezier(.2,.8,.2,1),
    opacity .28s ease,
    visibility 0s linear .46s;
}

body.technologies-page .tech-accordion-item.is-open .tech-accordion-panel {
  opacity: 1;
  visibility: visible;
  transition:
    height .46s cubic-bezier(.2,.8,.2,1),
    opacity .28s ease,
    visibility 0s linear 0s;
}

body.technologies-page .tech-accordion-panel-inner {
  min-height: 0;
  overflow: visible;
}

body.technologies-page .tech-accordion-item.is-animating .tech-accordion-toggle {
  pointer-events: none;
}

/* Keep the expanded content comfortably separated from the next row. */
body.technologies-page .tech-content-slot.tech-content-filled {
  box-sizing: border-box;
  width: auto;
}

@media (max-width: 760px) {
  body.technologies-page main#main-content > section.technologies-index {
    min-height: 100svh !important;
    min-height: 100dvh !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.technologies-page .tech-accordion-panel,
  body.technologies-page .tech-accordion-item.is-open .tech-accordion-panel {
    transition: none !important;
  }
}


/* v230 - buttons below text, no explore label, stronger CTA */
body.technologies-page .tech-content-grid {
  display: block;
}

body.technologies-page .tech-content-copy {
  max-width: 880px;
}

body.technologies-page .tech-content-action {
  min-height: 0;
  display: block;
  gap: 0;
  margin-top: 26px;
  padding: 0;
  border: 0;
  background: transparent;
}

body.technologies-page .tech-content-action-label {
  display: none !important;
}

body.technologies-page .tech-external-button,
body.technologies-page .tech-external-button.is-pending,
body.technologies-page .tech-external-button.is-pending:hover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid var(--tech-gold);
  background: var(--tech-gold);
  color: var(--tech-ink);
  box-shadow: 0 12px 30px rgba(184, 155, 94, .22);
  cursor: pointer;
  opacity: 1;
}

body.technologies-page .tech-external-button span {
  line-height: 1;
}

body.technologies-page .tech-external-button:hover {
  background: #ccb277;
  border-color: #ccb277;
  color: var(--tech-ink);
  transform: translateY(-2px);
}

body.technologies-page .tech-external-button:hover svg {
  transform: translate(3px, -3px);
}

body.technologies-page .tech-external-button.is-pending:hover {
  background: #ccb277;
  border-color: #ccb277;
  color: var(--tech-ink);
}

body.technologies-page .tech-external-button.is-pending svg {
  opacity: 1;
}

@media (max-width: 760px) {
  body.technologies-page .tech-content-action {
    margin-top: 22px;
  }

  body.technologies-page .tech-external-button,
  body.technologies-page .tech-external-button.is-pending,
  body.technologies-page .tech-external-button.is-pending:hover {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
  }
}


/* v231 - R-Wave 2D MP Radar modal */
body.tech-modal-open {
  overflow: hidden !important;
}

.technology-modal[hidden] {
  display: none !important;
}

.technology-modal {
  position: fixed;
  z-index: 100000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(12px, 2vw, 28px);
}

.technology-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity .28s ease;
}

.technology-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1320px, 96vw);
  max-height: calc(100dvh - clamp(24px, 4vw, 56px));
  overflow: hidden;
  background: #090909;
  color: #fff;
  border: 1px solid rgba(184, 155, 94, .46);
  box-shadow: 0 34px 120px rgba(0, 0, 0, .58);
  opacity: 0;
  transform: translateY(22px) scale(.985);
  transition: opacity .3s ease, transform .3s cubic-bezier(.2,.8,.2,1);
}

.technology-modal.is-visible .technology-modal-backdrop,
.technology-modal.is-visible .technology-modal-dialog {
  opacity: 1;
}

.technology-modal.is-visible .technology-modal-dialog {
  transform: translateY(0) scale(1);
}

.technology-modal-scroll {
  max-height: calc(100dvh - clamp(24px, 4vw, 56px));
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--tech-gold) rgba(255,255,255,.08);
}

.technology-modal-scroll::-webkit-scrollbar {
  width: 9px;
}

.technology-modal-scroll::-webkit-scrollbar-track {
  background: rgba(255,255,255,.05);
}

.technology-modal-scroll::-webkit-scrollbar-thumb {
  background: var(--tech-gold);
}

.technology-modal-close {
  position: absolute;
  z-index: 5;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: rgba(9,9,9,.72);
  color: #fff;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.technology-modal-close:hover {
  border-color: var(--tech-gold);
  background: var(--tech-gold);
  color: #080808;
  transform: rotate(90deg);
}

.technology-modal-close svg {
  width: 20px;
  height: 20px;
}

.technology-modal-close:focus-visible,
.radar-contact-button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.radar-modal-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(88px, 8vw, 132px) clamp(28px, 7vw, 96px) clamp(58px, 6vw, 82px);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(184,155,94,.22), transparent 27%),
    linear-gradient(135deg, #111 0%, #070707 70%);
}

.radar-modal-hero::before {
  content: "02";
  position: absolute;
  top: 34px;
  right: clamp(72px, 9vw, 130px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.08);
  font-size: clamp(160px, 23vw, 340px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.08em;
}

.radar-modal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .3;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.radar-modal-brand,
.radar-modal-hero h2,
.radar-modal-tagline,
.radar-modal-intro {
  position: relative;
  z-index: 1;
}

.radar-modal-brand {
  margin-bottom: 18px;
  color: var(--tech-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .24em;
}

.radar-modal-hero h2 {
  margin: 0;
  font-size: clamp(62px, 8.5vw, 132px);
  font-weight: 900;
  line-height: .79;
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.radar-modal-hero h2 span {
  display: block;
}

.radar-modal-hero h2 span:last-child {
  color: var(--tech-gold);
}

.radar-modal-tagline {
  margin: 32px 0 0;
  color: #fff;
  font-size: clamp(14px, 1.5vw, 19px);
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.radar-modal-intro {
  max-width: 880px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.68);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 500;
  line-height: 1.72;
}

.radar-modal-section,
.radar-benefits-section {
  display: grid;
  grid-template-columns: minmax(250px, .65fr) minmax(0, 1.35fr);
  gap: clamp(40px, 7vw, 96px);
  padding: clamp(66px, 7vw, 104px) clamp(28px, 7vw, 96px);
  border-top: 1px solid rgba(255,255,255,.12);
}

.radar-section-heading span {
  display: block;
  margin-bottom: 17px;
  color: var(--tech-gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.radar-section-heading h3 {
  margin: 0;
  font-size: clamp(38px, 5vw, 74px);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.05em;
  text-transform: uppercase;
}

.radar-section-copy {
  max-width: 800px;
}

.radar-section-copy p {
  margin: 0;
  color: rgba(255,255,255,.67);
  font-size: clamp(15px, 1.22vw, 18px);
  line-height: 1.78;
}

.radar-section-copy p + p {
  margin-top: 18px;
}

.radar-section-copy strong {
  color: #fff;
}

.radar-section-copy h4 {
  margin: 42px 0 15px;
  color: #fff;
  font-size: clamp(18px, 1.8vw, 25px);
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.radar-modal-highlight {
  padding: clamp(46px, 5vw, 70px) clamp(28px, 7vw, 96px);
  background: var(--tech-gold);
  color: #080808;
}

.radar-modal-highlight span {
  display: block;
  font-size: clamp(27px, 4vw, 54px);
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.radar-modal-highlight p {
  margin: 13px 0 0;
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 700;
}

.radar-modal-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: clamp(50px, 5.5vw, 78px) clamp(28px, 7vw, 96px);
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: #111;
}

.radar-modal-contact span {
  color: var(--tech-gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.radar-modal-contact h3 {
  max-width: 720px;
  margin: 14px 0 0;
  font-size: clamp(25px, 3vw, 43px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.radar-contact-button {
  min-width: 184px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 22px 0 26px;
  background: var(--tech-gold);
  border: 1px solid var(--tech-gold);
  color: #080808;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.radar-contact-button:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
}

.radar-contact-button svg {
  width: 20px;
  height: 20px;
}

.radar-benefits-section {
  grid-template-columns: 1fr;
  gap: 44px;
  background: #0c0c0c;
}

.radar-benefits-heading {
  max-width: 760px;
}

.radar-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.14);
  border-left: 1px solid rgba(255,255,255,.14);
}

.radar-benefit-card {
  min-height: 250px;
  padding: clamp(28px, 3.5vw, 48px);
  border-right: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
  transition: background-color .25s ease;
}

.radar-benefit-card:hover {
  background: rgba(184,155,94,.1);
}

.radar-benefit-card > span {
  color: var(--tech-gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .2em;
}

.radar-benefit-card h4 {
  margin: 45px 0 16px;
  font-size: clamp(21px, 2.1vw, 31px);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.radar-benefit-card p {
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 820px) {
  .technology-modal {
    padding: 0;
  }

  .technology-modal-dialog,
  .technology-modal-scroll {
    width: 100%;
    max-height: 100dvh;
  }

  .technology-modal-dialog {
    border: 0;
  }

  .technology-modal-close {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
  }

  .radar-modal-hero {
    min-height: 470px;
    padding-top: 94px;
  }

  .radar-modal-hero::before {
    top: 80px;
    right: 28px;
  }

  .radar-modal-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .radar-modal-contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .radar-contact-button {
    min-width: 0;
    width: 100%;
  }

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

  .radar-benefit-card {
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .radar-modal-hero h2 {
    font-size: clamp(54px, 20vw, 78px);
  }

  .radar-modal-tagline {
    letter-spacing: .1em;
  }

  .radar-section-heading h3 {
    font-size: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .technology-modal-backdrop,
  .technology-modal-dialog,
  .technology-modal-close,
  .radar-contact-button {
    transition: none !important;
  }
}


/* v232 - R-Wave 2D modal imagery */
.radar-modal-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.66fr);
  align-items: end;
  gap: clamp(30px, 5vw, 72px);
}

.radar-modal-hero-content {
  position: relative;
  z-index: 1;
}

.radar-modal-hero-figure {
  position: relative;
  z-index: 1;
  margin: 0;
  justify-self: end;
  width: min(100%, 390px);
  aspect-ratio: 1 / 1;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.03);
  box-shadow: 0 34px 70px rgba(0,0,0,.34);
}

.radar-modal-hero-figure::before {
  content: "Sensor detail";
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(7,7,7,.62);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.radar-modal-hero-figure img,
.radar-inline-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.radar-inline-visual {
  margin: 0 0 28px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  box-shadow: 0 28px 54px rgba(0,0,0,.28);
}

.radar-inline-visual img {
  aspect-ratio: 16 / 9;
}

@media (max-width: 980px) {
  .radar-modal-hero-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .radar-modal-hero-figure {
    justify-self: start;
    width: min(100%, 360px);
  }
}

@media (max-width: 760px) {
  .radar-modal-hero-figure {
    width: 100%;
    max-width: 100%;
    border-radius: 22px;
  }

  .radar-inline-visual {
    margin-bottom: 22px;
    border-radius: 20px;
  }
}


/* v233 - remove outer frame around radar sensor image */
body.technologies-page .radar-modal-hero-figure {
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}


/* v234 - sensor shown as standalone transparent PNG */
body.technologies-page .radar-modal-hero-figure {
  border: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
  background: transparent !important;
  box-shadow: none !important;
  clip-path: none !important;
}

body.technologies-page .radar-modal-hero-figure::before {
  display: none !important;
  content: none !important;
}

body.technologies-page .radar-modal-hero-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}


/* v235 - R-Wave RTK technology modal */
.rtk-modal-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding: clamp(92px, 8vw, 132px) clamp(28px, 7vw, 96px) clamp(60px, 6vw, 86px);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(184,155,94,.2), transparent 30%),
    linear-gradient(135deg, #111 0%, #070707 72%);
}

.rtk-modal-hero::before {
  content: "RTK";
  position: absolute;
  top: 38px;
  right: 3%;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.07);
  font-size: clamp(150px, 22vw, 330px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.08em;
}

.rtk-modal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

.rtk-modal-hero-layout {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .75fr);
  align-items: end;
  gap: clamp(36px, 6vw, 88px);
}

.rtk-modal-hero-content {
  position: relative;
  z-index: 1;
}

.rtk-modal-hero h2 {
  margin: 0;
  font-size: clamp(58px, 7.8vw, 118px);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.068em;
  text-transform: uppercase;
}

.rtk-modal-hero h2 span {
  display: block;
}

.rtk-modal-hero h2 span:last-child {
  color: var(--tech-gold);
}

.rtk-modal-kicker {
  margin: 34px 0 0;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.rtk-modal-intro {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(255,255,255,.7);
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 550;
  line-height: 1.68;
}

.rtk-modal-hero-figure {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 34px 76px rgba(0,0,0,.36);
}

.rtk-modal-hero-figure::after {
  content: "Vehicle antenna";
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(7,7,7,.66);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.rtk-modal-hero-figure img,
.rtk-key-card img,
.rtk-system-diagram img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rtk-key-section {
  padding: clamp(66px, 7vw, 104px) clamp(28px, 7vw, 96px);
  border-top: 1px solid rgba(255,255,255,.12);
  background: #0b0b0b;
}

.rtk-section-heading {
  max-width: 760px;
  margin-bottom: clamp(38px, 5vw, 62px);
}

.rtk-key-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.14);
  border-left: 1px solid rgba(255,255,255,.14);
}

.rtk-key-card {
  display: grid;
  grid-template-columns: minmax(160px, .78fr) minmax(0, 1fr);
  min-height: 300px;
  border-right: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.018);
  transition: background-color .25s ease;
}

.rtk-key-card:hover {
  background: rgba(184,155,94,.09);
}

.rtk-key-card figure {
  margin: 0;
  min-height: 100%;
  overflow: hidden;
  background: #050505;
}

.rtk-key-card img {
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}

.rtk-key-card:hover img {
  transform: scale(1.035);
}

.rtk-key-card > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 3vw, 42px);
}

.rtk-key-card span {
  color: var(--tech-gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .2em;
}

.rtk-key-card h4 {
  margin: 38px 0 14px;
  font-size: clamp(21px, 2.1vw, 31px);
  font-weight: 850;
  line-height: 1.06;
  letter-spacing: -.035em;
}

.rtk-key-card p {
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 14px;
  line-height: 1.68;
}

.rtk-how-section {
  align-items: start;
}

.rtk-system-diagram {
  margin: 0 0 34px;
  padding: clamp(20px, 3vw, 36px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  background: #000;
}

.rtk-system-diagram img {
  height: auto;
  object-fit: contain;
}

.rtk-modal-highlight span {
  max-width: 980px;
}

@media (max-width: 980px) {
  .rtk-modal-hero-layout {
    grid-template-columns: 1fr;
  }

  .rtk-modal-hero-figure {
    width: min(100%, 680px);
  }

  .rtk-key-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .rtk-modal-hero {
    min-height: 0;
    padding-top: 94px;
  }

  .rtk-modal-hero h2 {
    font-size: clamp(52px, 18vw, 78px);
  }

  .rtk-modal-hero-figure {
    border-radius: 21px;
  }

  .rtk-key-card {
    grid-template-columns: 1fr;
  }

  .rtk-key-card figure {
    min-height: 220px;
    aspect-ratio: 16 / 9;
  }

  .rtk-key-card > div {
    min-height: 220px;
  }

  .rtk-system-diagram {
    border-radius: 20px;
  }
}

/* v236 - prevent RTK hero title from colliding with image */
body.technologies-page .rtk-modal-hero-layout {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, .68fr);
  gap: clamp(54px, 6.5vw, 104px);
}

body.technologies-page .rtk-modal-hero-content {
  min-width: 0;
}

body.technologies-page .rtk-modal-hero h2 {
  max-width: 680px;
  font-size: clamp(54px, 6.35vw, 94px);
  line-height: .84;
  letter-spacing: -.062em;
}

body.technologies-page .rtk-modal-hero-figure {
  width: min(100%, 440px);
  justify-self: end;
}

@media (max-width: 1080px) {
  body.technologies-page .rtk-modal-hero-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  body.technologies-page .rtk-modal-hero h2 {
    max-width: 760px;
  }

  body.technologies-page .rtk-modal-hero-figure {
    width: min(100%, 620px);
    justify-self: start;
  }
}

@media (max-width: 700px) {
  body.technologies-page .rtk-modal-hero h2 {
    font-size: clamp(46px, 15vw, 70px);
  }
}


/* v237 - R-Wave RPower modal */
.rpower-modal-hero {
  position: relative;
  min-height: 540px;
  padding: clamp(88px, 8vw, 132px) clamp(28px, 7vw, 96px) clamp(58px, 6vw, 82px);
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 16%, rgba(184,155,94,.18), transparent 26%),
    linear-gradient(135deg, #101010 0%, #060606 74%);
}

.rpower-modal-hero::before {
  content: "04";
  position: absolute;
  top: 28px;
  right: clamp(52px, 8vw, 110px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.07);
  font-size: clamp(160px, 23vw, 340px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.08em;
}

.rpower-modal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
  opacity: .32;
}

.rpower-modal-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .82fr);
  gap: clamp(44px, 6vw, 90px);
  align-items: end;
}

.rpower-modal-hero-content {
  min-width: 0;
}

.rpower-modal-hero h2 {
  margin: 0;
  font-size: clamp(56px, 8.4vw, 122px);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.rpower-modal-hero h2 span {
  display: block;
}

.rpower-modal-hero h2 span:last-child {
  color: var(--tech-gold);
}

.rpower-modal-kicker {
  margin: 30px 0 0;
  color: #fff;
  font-size: clamp(13px, 1.35vw, 18px);
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.rpower-modal-intro {
  max-width: 700px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.7);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 500;
  line-height: 1.72;
}

.rpower-modal-hero-figure {
  position: relative;
  margin: 0;
  padding: 16px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 28px 60px rgba(0,0,0,.35);
}

.rpower-modal-hero-figure::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 132px;
  height: 132px;
  background: radial-gradient(circle, rgba(184,155,94,.42), transparent 70%);
  filter: blur(12px);
  opacity: .62;
  pointer-events: none;
}

.rpower-modal-hero-figure img,
.rpower-modal-hero-figure picture,
.rpower-advantages-figure img,
.rpower-component-card figure img,
.rpower-battery-pack-main img,
.rpower-battery-pack-secondary img {
  display: block;
  width: 100%;
  height: auto;
}

.rpower-modal-hero-figure img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 26px;
}

.rpower-modal-hero-figure figcaption {
  position: absolute;
  left: 34px;
  bottom: 26px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  background: rgba(184,155,94,.94);
  color: #090909;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.rpower-advantages-section,
.rpower-components-section,
.rpower-battery-pack-section {
  padding: clamp(66px, 7vw, 104px) clamp(28px, 7vw, 96px);
  border-top: 1px solid rgba(255,255,255,.12);
}

.rpower-section-heading {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.rpower-advantages-layout {
  display: grid;
  grid-template-columns: minmax(320px, .85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 4.5vw, 64px);
  align-items: stretch;
}

.rpower-advantages-figure {
  margin: 0;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  overflow: hidden;
}

.rpower-advantages-figure img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.rpower-advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.rpower-adv-card,
.rpower-component-card,
.rpower-summary-section {
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.022));
}

.rpower-adv-card {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 22px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.rpower-adv-card:hover,
.rpower-component-card:hover,
.rpower-summary-section:hover {
  transform: translateY(-3px);
  border-color: rgba(184,155,94,.42);
  background: linear-gradient(180deg, rgba(184,155,94,.14), rgba(255,255,255,.03));
}

.rpower-adv-card span,
.rpower-component-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--tech-gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
}

.rpower-adv-card h4,
.rpower-component-card h4 {
  margin: 0;
  color: #fff;
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.rpower-components-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.rpower-component-card {
  display: grid;
  grid-template-columns: minmax(180px, .92fr) minmax(0, 1.08fr);
  gap: 0;
  overflow: hidden;
  min-width: 0;
}

.rpower-component-card figure {
  margin: 0;
  min-width: 0;
  background: #101010;
}

.rpower-component-card figure img {
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.rpower-component-card > div {
  min-width: 0;
  padding: 22px 22px 24px;
}

.rpower-component-card p,
.rpower-battery-pack-copy p,
.rpower-battery-list li,
.rpower-summary-copy p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.72;
}

.rpower-component-card p {
  margin-top: 4px;
}

.rpower-component-card-wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
}

.rpower-battery-pack-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .92fr);
  gap: clamp(28px, 4.5vw, 64px);
  align-items: start;
}

.rpower-battery-subblock {
  margin: 28px 0;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.025);
}

.rpower-battery-subblock h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.rpower-battery-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 12px;
}

.rpower-battery-pack-media {
  display: grid;
  gap: 18px;
}

.rpower-battery-pack-main,
.rpower-battery-pack-secondary {
  margin: 0;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  overflow: hidden;
}

.rpower-battery-pack-main img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.rpower-battery-pack-secondary img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.rpower-summary-section {
  display: grid;
  grid-template-columns: minmax(230px, .62fr) minmax(0, 1.38fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
  margin: clamp(66px, 7vw, 104px) clamp(28px, 7vw, 96px);
  padding: clamp(28px, 4vw, 42px);
}

.rpower-summary-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 18px;
  background: rgba(184,155,94,.12);
  color: var(--tech-gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.rpower-summary-copy .rpower-section-heading {
  margin-bottom: 18px;
}

@media (max-width: 1180px) {
  .rpower-modal-hero-layout,
  .rpower-advantages-layout,
  .rpower-battery-pack-layout,
  .rpower-summary-section {
    grid-template-columns: 1fr;
  }

  .rpower-components-grid {
    grid-template-columns: 1fr;
  }

  .rpower-component-card,
  .rpower-component-card-wide {
    grid-template-columns: minmax(220px, .85fr) minmax(0, 1.15fr);
  }
}

@media (max-width: 760px) {
  .rpower-modal-hero {
    min-height: 0;
    padding: 88px 20px 30px;
  }

  .rpower-modal-hero::before {
    top: 36px;
    right: 16px;
    font-size: clamp(120px, 36vw, 180px);
  }

  .rpower-modal-hero h2 {
    font-size: clamp(46px, 17vw, 76px);
  }

  .rpower-modal-kicker {
    margin-top: 20px;
    font-size: 11px;
    letter-spacing: .12em;
  }

  .rpower-modal-intro {
    font-size: 14px;
    line-height: 1.66;
  }

  .rpower-modal-hero-figure {
    padding: 12px;
    border-radius: 24px;
  }

  .rpower-modal-hero-figure img {
    border-radius: 18px;
  }

  .rpower-modal-hero-figure figcaption {
    left: 24px;
    bottom: 20px;
    min-height: 30px;
    padding: 0 12px;
    font-size: 9px;
  }

  .rpower-advantages-section,
  .rpower-components-section,
  .rpower-battery-pack-section {
    padding: 42px 20px;
  }

  .rpower-advantages-grid {
    grid-template-columns: 1fr;
  }

  .rpower-adv-card {
    min-height: 108px;
    padding: 18px;
  }

  .rpower-component-card,
  .rpower-component-card-wide {
    grid-template-columns: 1fr;
  }

  .rpower-component-card figure img {
    min-height: 180px;
  }

  .rpower-component-card > div {
    padding: 18px 18px 20px;
  }

  .rpower-battery-subblock {
    margin: 22px 0;
    padding: 18px;
  }

  .rpower-summary-section {
    margin: 42px 20px;
    padding: 22px;
  }

  .rpower-summary-badge {
    min-height: 50px;
    justify-content: flex-start;
    text-align: left;
  }
}


/* v239 - final RPower battery and summary image placement */
body.technologies-page .rpower-battery-pack-media {
  display: block;
}

body.technologies-page .rpower-battery-pack-main {
  margin: 0;
  border: 0;
  background: transparent;
}

body.technologies-page .rpower-battery-pack-main img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

body.technologies-page .rpower-battery-pack-secondary {
  display: none !important;
}

body.technologies-page .rpower-summary-section {
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
  align-items: center;
  overflow: hidden;
}

body.technologies-page .rpower-summary-media {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: #080808;
}

body.technologies-page .rpower-summary-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

body.technologies-page .rpower-summary-copy {
  min-width: 0;
}

body.technologies-page .rpower-summary-copy .rpower-summary-badge {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 26px;
}

@media (max-width: 1180px) {
  body.technologies-page .rpower-summary-section {
    grid-template-columns: 1fr;
  }

  body.technologies-page .rpower-summary-media img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 760px) {
  body.technologies-page .rpower-battery-pack-main img {
    aspect-ratio: 1 / 1;
  }

  body.technologies-page .rpower-summary-media img {
    aspect-ratio: 4 / 3;
  }
}


/* v240 - keep the RPower summary heading inside its column */
body.technologies-page .rpower-summary-section {
  grid-template-columns: minmax(330px, .82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 3.4vw, 48px);
}

body.technologies-page .rpower-summary-copy .radar-section-heading h3 {
  max-width: 100%;
  font-size: clamp(40px, 4.15vw, 62px);
  line-height: .94;
  letter-spacing: -.055em;
  overflow-wrap: normal;
  word-break: normal;
}

@media (max-width: 1180px) {
  body.technologies-page .rpower-summary-section {
    grid-template-columns: 1fr;
  }

  body.technologies-page .rpower-summary-copy .radar-section-heading h3 {
    font-size: clamp(40px, 7vw, 64px);
  }
}

@media (max-width: 760px) {
  body.technologies-page .rpower-summary-copy .radar-section-heading h3 {
    font-size: clamp(34px, 11vw, 50px);
    line-height: .96;
  }
}

/* v241 - TeroAir modal */
.teroair-modal-hero {
  position: relative;
  padding: clamp(36px, 4vw, 64px) clamp(28px, 4vw, 64px) clamp(24px, 3vw, 36px);
  background: linear-gradient(180deg, #080808 0%, #090909 100%);
  border-bottom: 1px solid rgba(184, 155, 94, .2);
}

.teroair-modal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(184,155,94,.14), rgba(184,155,94,0) 38%),
    linear-gradient(180deg, rgba(255,255,255,.03), transparent 50%);
  pointer-events: none;
}

.teroair-modal-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.teroair-modal-hero h2 {
  margin: 0;
  font-size: clamp(3.5rem, 7.4vw, 6.2rem);
  line-height: .92;
  text-transform: uppercase;
  letter-spacing: -.05em;
}

.teroair-modal-lead {
  margin: 1.4rem 0 0;
  max-width: 1050px;
  font-size: clamp(1.28rem, 2.2vw, 2rem);
  line-height: 1.24;
  font-weight: 700;
  color: #fff;
}

.teroair-modal-copy {
  margin: 1rem 0 0;
  max-width: 880px;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.72;
  color: rgba(255,255,255,.76);
}

.teroair-gallery-section,
.teroair-gallery-stack,
.teroair-gallery-item {
  background: #fff;
}

.teroair-gallery-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.teroair-gallery-item {
  margin: 0;
  width: 100%;
}

.teroair-gallery-item + .teroair-gallery-item {
  border-top: 1px solid rgba(0,0,0,.06);
}

.teroair-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #fff;
}

@media (max-width: 760px) {
  .teroair-modal-hero {
    padding: 72px 20px 20px;
  }

  .teroair-modal-hero h2 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .teroair-modal-lead {
    font-size: clamp(1.08rem, 5vw, 1.45rem);
  }

  .teroair-modal-copy {
    font-size: 1rem;
    line-height: 1.6;
  }
}


/* v242 - smaller TeroAir modal for sharper source images */
#teroair-modal .technology-modal-dialog {
  width: min(1100px, 88vw);
}

@media (max-width: 760px) {
  #teroair-modal .technology-modal-dialog {
    width: min(100%, 100vw);
  }
}



/* v243 - R-Wave Weather Station modal */
.weather-modal-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding: clamp(92px, 8vw, 132px) clamp(28px, 7vw, 96px) clamp(58px, 6vw, 82px);
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 18%, rgba(184,155,94,.24), transparent 25%),
    radial-gradient(circle at 10% 84%, rgba(62,100,78,.2), transparent 30%),
    linear-gradient(135deg, #111 0%, #070707 76%);
}

.weather-modal-hero::before {
  content: "06";
  position: absolute;
  top: 34px;
  right: clamp(72px, 9vw, 130px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.075);
  font-size: clamp(160px, 23vw, 340px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.08em;
}

.weather-modal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 84%);
  opacity: .34;
}

.weather-modal-hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 1040px);
}

.weather-modal-hero h2 {
  margin: 0;
  font-size: clamp(62px, 8.4vw, 128px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.weather-modal-hero h2 span {
  display: block;
}

.weather-modal-hero h2 span:last-child {
  color: var(--tech-gold);
}

.weather-modal-tagline {
  margin: 30px 0 0;
  color: #fff;
  font-size: clamp(14px, 1.5vw, 19px);
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.weather-modal-intro {
  max-width: 900px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.7);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 500;
  line-height: 1.72;
}

.weather-modal-intro strong {
  color: #fff;
}

.weather-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.weather-hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.82);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.weather-overview-section,
.weather-components-section,
.weather-data-section,
.weather-teroair-section {
  padding: clamp(66px, 7vw, 104px) clamp(28px, 7vw, 96px);
  border-top: 1px solid rgba(255,255,255,.12);
}

.weather-overview-section {
  display: grid;
  grid-template-columns: minmax(250px, .65fr) minmax(0, 1.35fr);
  gap: clamp(40px, 7vw, 96px);
}

.weather-overview-copy p,
.weather-data-intro,
.weather-data-card p,
.weather-component-card p,
.weather-teroair-copy p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.72;
}

.weather-overview-copy p + p,
.weather-teroair-copy p + p {
  margin-top: 18px;
}

.weather-components-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.weather-component-card {
  min-width: 0;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.weather-component-card:hover,
.weather-data-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184,155,94,.44);
  background: linear-gradient(180deg, rgba(184,155,94,.13), rgba(255,255,255,.025));
}

.weather-component-visual {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background:
    radial-gradient(circle at 72% 30%, rgba(184,155,94,.28), transparent 30%),
    linear-gradient(145deg, #151515, #0b0b0b);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.weather-component-visual span {
  color: #fff;
  font-size: clamp(58px, 6vw, 88px);
  font-weight: 900;
  line-height: .78;
  letter-spacing: -.06em;
}

.weather-component-visual small {
  margin-top: 12px;
  color: var(--tech-gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.weather-component-visual-multi {
  background:
    radial-gradient(circle at 72% 30%, rgba(76,116,99,.3), transparent 31%),
    linear-gradient(145deg, #151515, #0b0b0b);
}

.weather-component-visual-app span {
  font-size: clamp(46px, 4.7vw, 70px);
}

.weather-component-card > div:last-child {
  padding: 24px;
}

.weather-card-number {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--tech-gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
}

.weather-component-card h4,
.weather-data-card h4,
.weather-teroair-heading h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.025em;
  text-transform: uppercase;
}

.weather-component-card p {
  margin-top: 12px;
}

.weather-data-intro {
  max-width: 820px;
  margin: -12px 0 36px;
}

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

.weather-data-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.weather-data-code {
  display: block;
  margin-bottom: auto;
  color: var(--tech-gold);
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.045em;
}

.weather-data-card p {
  margin-top: 12px;
}

.weather-contact-primary,
.weather-contact-secondary {
  border-top-color: rgba(184,155,94,.38);
}

.weather-teroair-section {
  background:
    radial-gradient(circle at 84% 24%, rgba(184,155,94,.14), transparent 26%),
    linear-gradient(135deg, #101010, #080808);
}

.weather-teroair-heading span {
  display: block;
  margin-bottom: 14px;
  color: var(--tech-gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.weather-teroair-heading h3 {
  font-size: clamp(42px, 6vw, 82px);
  line-height: .9;
}

.weather-teroair-content {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
  margin-top: 38px;
}

.weather-teroair-features {
  display: grid;
  gap: 12px;
}

.weather-teroair-features > div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 4px 14px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.035);
}

.weather-teroair-features span {
  grid-row: 1 / span 2;
  color: var(--tech-gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}

.weather-teroair-features strong {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.weather-teroair-features small {
  color: rgba(255,255,255,.56);
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .weather-overview-section,
  .weather-teroair-content {
    grid-template-columns: 1fr;
  }

  .weather-components-grid,
  .weather-data-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .weather-modal-hero {
    min-height: 0;
    padding: 92px 20px 38px;
  }

  .weather-modal-hero::before {
    top: 44px;
    right: 18px;
    font-size: clamp(112px, 38vw, 170px);
  }

  .weather-modal-hero h2 {
    font-size: clamp(46px, 16vw, 72px);
  }

  .weather-modal-tagline {
    margin-top: 24px;
    font-size: 12px;
  }

  .weather-hero-meta {
    gap: 7px;
    margin-top: 22px;
  }

  .weather-hero-meta span {
    min-height: 32px;
    padding: 0 10px;
    font-size: 8px;
  }

  .weather-overview-section,
  .weather-components-section,
  .weather-data-section,
  .weather-teroair-section {
    padding: 44px 20px;
  }

  .weather-components-grid,
  .weather-data-grid {
    grid-template-columns: 1fr;
  }

  .weather-component-visual {
    min-height: 156px;
  }

  .weather-data-card {
    min-height: 210px;
  }

  .weather-data-intro {
    margin-bottom: 26px;
  }

  .weather-teroair-heading h3 {
    font-size: clamp(38px, 12vw, 56px);
  }
}

/* v244 - Weather Station imagery */
.weather-modal-hero-layout {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .82fr);
  gap: clamp(38px, 5vw, 76px);
  align-items: end;
}

.weather-modal-hero-content {
  width: 100%;
  min-width: 0;
}

.weather-modal-hero-figure {
  position: relative;
  margin: 0;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  overflow: hidden;
  box-shadow: 0 28px 64px rgba(0,0,0,.34);
}

.weather-modal-hero-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.weather-component-image {
  margin: 0;
  min-height: 190px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f5f5f3;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.weather-component-image img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.weather-component-image-phone {
  background: #edf1f4;
}

.weather-component-image-phone img {
  object-fit: contain;
  padding: 10px;
}

.weather-teroair-content {
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, .88fr);
  align-items: center;
}

.weather-teroair-features {
  margin-top: 28px;
}

.weather-teroair-phone {
  position: relative;
  margin: 0;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.weather-teroair-phone::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,155,94,.24), transparent 68%);
  filter: blur(10px);
}

.weather-teroair-phone img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 360px);
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 26px 42px rgba(0,0,0,.42));
}

@media (max-width: 980px) {
  .weather-modal-hero-layout {
    grid-template-columns: 1fr;
  }

  .weather-modal-hero-figure {
    width: min(100%, 680px);
  }
}

@media (max-width: 760px) {
  .weather-modal-hero-layout {
    gap: 28px;
  }

  .weather-modal-hero-figure img {
    aspect-ratio: 4 / 3;
  }

  .weather-component-image,
  .weather-component-image img {
    min-height: 170px;
    height: 170px;
  }

  .weather-teroair-phone {
    min-height: 410px;
    margin-top: 20px;
  }

  .weather-teroair-phone img {
    width: min(100%, 290px);
    max-height: 430px;
  }
}


/* v245 - more space below Weather Station data heading */
.weather-data-section .weather-data-intro {
  max-width: 820px;
  margin: clamp(26px, 2.8vw, 42px) 0 clamp(40px, 4vw, 56px);
}

@media (max-width: 760px) {
  .weather-data-section .weather-data-intro {
    margin: 22px 0 32px;
  }
}


/* v246 - R-Wave Autonomous modal */
.autonomous-modal-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding: clamp(92px, 8vw, 132px) clamp(28px, 7vw, 96px) clamp(58px, 6vw, 82px);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(184,155,94,.2), transparent 28%),
    radial-gradient(circle at 10% 84%, rgba(50,98,82,.17), transparent 30%),
    linear-gradient(135deg, #111 0%, #070707 76%);
}

.autonomous-modal-hero::before {
  content: "07";
  position: absolute;
  top: 34px;
  right: clamp(72px, 9vw, 130px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.07);
  font-size: clamp(160px, 23vw, 340px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.08em;
}

.autonomous-modal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 84%);
  opacity: .34;
}

.autonomous-modal-hero-layout {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, .94fr);
  gap: clamp(38px, 5vw, 76px);
  align-items: end;
}

.autonomous-modal-hero-content {
  min-width: 0;
}

.autonomous-modal-hero-layout-text-only {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
}

.autonomous-modal-hero-layout-text-only .autonomous-modal-hero-content {
  max-width: 780px;
}

.autonomous-modal-hero h2 {
  margin: 0;
  font-size: clamp(62px, 8.8vw, 130px);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.autonomous-modal-hero h2 span {
  display: block;
}

.autonomous-modal-tagline {
  margin: 28px 0 0;
  color: var(--tech-gold);
  font-size: clamp(14px, 1.5vw, 19px);
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.autonomous-modal-intro,
.autonomous-modal-summary,
.autonomous-how-copy p,
.autonomous-element-card p,
.autonomous-benefit-card p,
.autonomous-usecase-copy p {
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.72;
}

.autonomous-modal-intro {
  max-width: 860px;
  margin-top: 18px;
}

.autonomous-modal-intro strong {
  color: #fff;
}

.autonomous-modal-summary {
  margin-top: 18px;
  color: rgba(255,255,255,.82);
  font-weight: 700;
}

.autonomous-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.autonomous-hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.82);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.autonomous-modal-hero-figure,
.autonomous-how-figure,
.autonomous-usecase-figure,
.autonomous-element-image {
  margin: 0;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  overflow: hidden;
  box-shadow: 0 24px 54px rgba(0,0,0,.25);
}

.autonomous-modal-hero-figure img,
.autonomous-how-figure img,
.autonomous-usecase-figure img,
.autonomous-element-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.autonomous-modal-hero-figure img {
  aspect-ratio: 4 / 5;
  object-position: center;
}

.autonomous-how-section,
.autonomous-elements-section,
.autonomous-benefits-section,
.autonomous-usecase-section {
  padding: clamp(66px, 7vw, 104px) clamp(28px, 7vw, 96px);
  border-top: 1px solid rgba(255,255,255,.12);
}

.autonomous-section-heading {
  margin-bottom: 36px;
}

.autonomous-how-layout,
.autonomous-usecase-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.autonomous-how-copy p + p,
.autonomous-usecase-copy p + p {
  margin-top: 18px;
}

.autonomous-how-figure {
  padding: clamp(10px, 1.2vw, 16px);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
}

.autonomous-how-figure img {
  object-fit: contain;
  aspect-ratio: 16 / 8;
  background: #020202;
}

.autonomous-elements-grid,
.autonomous-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.autonomous-element-card,
.autonomous-benefit-card {
  min-width: 0;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.autonomous-element-card:hover,
.autonomous-benefit-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184,155,94,.44);
  background: linear-gradient(180deg, rgba(184,155,94,.12), rgba(255,255,255,.025));
}

.autonomous-element-image {
  min-height: 250px;
  box-shadow: none;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.autonomous-element-image-light {
  background: #f4f4f2;
}

.autonomous-element-image-light img {
  object-fit: contain;
  padding: 20px;
}

.autonomous-element-card > div,
.autonomous-benefit-card {
  padding: 24px;
}

.autonomous-element-card h4,
.autonomous-benefit-card h4,
.autonomous-usecase-section h4 {
  margin: 0;
  color: #fff;
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.025em;
  text-transform: uppercase;
}

.autonomous-element-card p,
.autonomous-benefit-card p {
  margin-top: 12px;
}

.autonomous-benefit-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--tech-gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
}

.autonomous-plantation-section {
  background:
    radial-gradient(circle at 84% 24%, rgba(184,155,94,.12), transparent 24%),
    linear-gradient(135deg, #101010, #080808);
}

.autonomous-usecase-visuals {
  display: grid;
  gap: 18px;
}

.autonomous-usecase-figure img {
  aspect-ratio: 4 / 3;
}

.autonomous-usecase-diagram {
  padding: 12px;
}

.autonomous-usecase-diagram img {
  object-fit: contain;
  aspect-ratio: 16 / 7;
  background: #020202;
}

@media (max-width: 980px) {
  .autonomous-modal-hero-layout,
  .autonomous-how-layout,
  .autonomous-usecase-layout {
    grid-template-columns: 1fr;
  }

  .autonomous-elements-grid,
  .autonomous-benefits-grid {
    grid-template-columns: 1fr;
  }

  .autonomous-modal-hero-figure {
    width: min(100%, 680px);
  }
}

@media (max-width: 760px) {
  .autonomous-modal-hero {
    min-height: 0;
    padding: 92px 20px 38px;
  }

  .autonomous-modal-hero::before {
    top: 44px;
    right: 18px;
    font-size: clamp(112px, 38vw, 170px);
  }

  .autonomous-modal-hero-layout {
    gap: 28px;
  }

  .autonomous-modal-hero h2 {
    font-size: clamp(46px, 16vw, 72px);
  }

  .autonomous-modal-tagline {
    margin-top: 24px;
    font-size: 12px;
  }

  .autonomous-hero-meta {
    gap: 7px;
    margin-top: 22px;
  }

  .autonomous-hero-meta span {
    min-height: 32px;
    padding: 0 10px;
    font-size: 8px;
  }

  .autonomous-how-section,
  .autonomous-elements-section,
  .autonomous-benefits-section,
  .autonomous-usecase-section {
    padding: 44px 20px;
  }

  .autonomous-element-image {
    min-height: 190px;
  }

  .autonomous-modal-hero-figure img,
  .autonomous-usecase-figure img {
    aspect-ratio: 4 / 3;
  }

  .autonomous-how-figure img,
  .autonomous-usecase-diagram img {
    aspect-ratio: 16 / 10;
  }
}


/* v247 - autonomous layout alignment refinements */
.autonomous-elements-stack {
  display: grid;
  gap: 18px;
}

.autonomous-element-split-card {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(240px, .98fr);
  min-height: 278px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,.02);
}

.autonomous-element-split-card-reverse {
  grid-template-columns: minmax(240px, .98fr) minmax(0, 1.02fr);
}

.autonomous-element-copy-panel {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 30px 34px;
  background: #b89753;
  overflow: hidden;
}

.autonomous-element-copy-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(transparent 0 0),
    radial-gradient(circle at 32% 20%, rgba(255,255,255,.11) 0 1px, transparent 1.2px),
    linear-gradient(90deg, rgba(255,255,255,.26) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px);
  background-size: auto, 18px 18px, 140px 140px, 140px 140px;
  background-position: 0 0, 118px 26px, 0 0, 0 0;
  opacity: .16;
}

.autonomous-element-copy-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(transparent calc(100% - 2px), rgba(255,255,255,.32) 0),
    linear-gradient(90deg, transparent calc(100% - 2px), rgba(255,255,255,.28) 0);
  background-size: 180px 48px, 48px 180px;
  opacity: .08;
  mix-blend-mode: screen;
}

.autonomous-element-copy-inner {
  position: relative;
  z-index: 1;
  max-width: 360px;
}

.autonomous-element-split-card .weather-card-number,
.autonomous-element-split-card h4,
.autonomous-element-split-card p {
  position: relative;
  z-index: 1;
}

.autonomous-element-split-card .weather-card-number {
  color: rgba(255,255,255,.95);
}

.autonomous-element-split-card h4 {
  margin: 0;
  color: #273145;
  font-size: clamp(19px, 1.5vw, 28px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.02em;
  text-transform: none;
}

.autonomous-element-split-card p {
  margin: 10px 0 0;
  color: rgba(255,255,255,.92);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
}

.autonomous-element-photo {
  margin: 0;
  min-height: 278px;
  background: #111;
}

.autonomous-element-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.autonomous-element-photo-light {
  background: #f4f4f2;
}

.autonomous-element-photo-light img {
  object-fit: contain;
  padding: 22px;
}

.autonomous-usecase-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 30%, rgba(184,155,94,.12), transparent 26%),
    radial-gradient(circle at 88% 74%, rgba(184,155,94,.07), transparent 24%),
    linear-gradient(135deg, #101010, #060606 78%);
}

.autonomous-usecase-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: radial-gradient(circle at 50% 38%, #000, transparent 82%);
  opacity: .45;
  pointer-events: none;
}

.autonomous-usecase-stage {
  position: relative;
  z-index: 1;
}

.autonomous-usecase-top {
  display: grid;
  grid-template-columns: minmax(360px, 1.1fr) minmax(0, .9fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: start;
}

.autonomous-usecase-diagram-stage {
  margin: 0;
}

.autonomous-usecase-diagram-stage img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.autonomous-usecase-top-copy {
  padding-top: 18px;
}

.autonomous-usecase-heading {
  margin-bottom: 28px;
}

.autonomous-usecase-top-copy p,
.autonomous-usecase-bottom-copy p {
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.72;
}

.autonomous-usecase-top-copy p + p,
.autonomous-usecase-bottom-copy p + p {
  margin-top: 18px;
}

.autonomous-usecase-bottom-copy {
  max-width: 920px;
  margin: 44px auto 0;
  text-align: center;
}

@media (max-width: 980px) {
  .autonomous-element-split-card,
  .autonomous-element-split-card-reverse {
    grid-template-columns: 1fr 1fr;
  }

  .autonomous-usecase-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .autonomous-usecase-top-copy {
    padding-top: 0;
  }

  .autonomous-usecase-bottom-copy {
    max-width: 100%;
    margin-top: 28px;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .autonomous-elements-stack {
    gap: 16px;
  }

  .autonomous-element-split-card,
  .autonomous-element-split-card-reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 0;
    border-radius: 10px;
  }

  .autonomous-element-copy-panel {
    padding: 20px 18px;
  }

  .autonomous-element-copy-inner {
    max-width: none;
  }

  .autonomous-element-split-card h4 {
    font-size: 16px;
    line-height: 1.1;
  }

  .autonomous-element-split-card p {
    font-size: 11px;
    line-height: 1.45;
  }

  .autonomous-element-photo,
  .autonomous-element-photo img {
    min-height: 0;
    height: 100%;
  }

  .autonomous-element-photo img {
    aspect-ratio: 1 / 1;
  }

  .autonomous-usecase-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .autonomous-usecase-top-copy p,
  .autonomous-usecase-bottom-copy p {
    font-size: 14px;
  }
}


/* v248 - autonomous reference-matched layout; reference screenshots are not embedded */
#autonomous-modal .autonomous-elements-section {
  background: #f3f1ec;
  color: #1d2432;
}

#autonomous-modal .autonomous-elements-section .radar-section-heading span {
  color: #8e7134;
}

#autonomous-modal .autonomous-elements-section .radar-section-heading h3 {
  color: #171c27;
}

#autonomous-modal .autonomous-elements-stack {
  width: min(100%, 1080px);
  margin-inline: auto;
  gap: 18px;
}

#autonomous-modal .autonomous-element-split-card,
#autonomous-modal .autonomous-element-split-card-reverse {
  grid-template-columns: minmax(0, 58%) minmax(0, 42%);
  min-height: 292px;
  border: 0;
  border-radius: 9px;
  background: #b99752;
  box-shadow: none;
}

#autonomous-modal .autonomous-element-split-card-reverse {
  grid-template-columns: minmax(0, 42%) minmax(0, 58%);
}

#autonomous-modal .autonomous-element-copy-panel {
  min-height: 292px;
  padding: clamp(28px, 4vw, 54px);
  background: #b99752;
}

#autonomous-modal .autonomous-element-copy-panel::before {
  opacity: .28;
  background-image:
    radial-gradient(circle at 22% 20%, rgba(255,255,255,.2) 0 2px, transparent 2.4px),
    linear-gradient(110deg, transparent 0 18%, rgba(255,255,255,.22) 18.2% 18.7%, transparent 18.9% 100%),
    linear-gradient(0deg, transparent 0 48%, rgba(255,255,255,.19) 48.2% 48.7%, transparent 48.9% 100%);
  background-size: 34px 34px, 220px 110px, 240px 90px;
  background-position: 68px 36px, center, center;
}

#autonomous-modal .autonomous-element-copy-panel::after {
  opacity: .14;
  background-image:
    linear-gradient(90deg, transparent 0 14%, rgba(255,255,255,.4) 14.2% 14.8%, transparent 15% 100%),
    linear-gradient(0deg, transparent 0 62%, rgba(255,255,255,.35) 62.2% 62.8%, transparent 63% 100%);
  background-size: 170px 120px, 220px 100px;
  background-position: 68% 30%, 42% 72%;
}

#autonomous-modal .autonomous-element-copy-inner {
  max-width: 430px;
}

#autonomous-modal .autonomous-element-split-card .weather-card-number {
  display: none;
}

#autonomous-modal .autonomous-element-split-card h4 {
  color: #263048;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 800;
  line-height: 1.08;
}

#autonomous-modal .autonomous-element-split-card p {
  max-width: 420px;
  color: #fff;
  font-size: clamp(12px, 1.1vw, 15px);
  line-height: 1.5;
}

#autonomous-modal .autonomous-element-photo {
  min-height: 292px;
  background: #ecebe7;
}

#autonomous-modal .autonomous-element-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#autonomous-modal .autonomous-element-photo-light img {
  padding: 0;
  object-fit: cover;
}

#autonomous-modal .autonomous-usecase-section {
  min-height: 720px;
  padding-top: clamp(72px, 8vw, 118px);
  padding-bottom: clamp(72px, 8vw, 118px);
  background:
    radial-gradient(ellipse at 18% 82%, rgba(255,255,255,.055) 0 22%, transparent 22.5%),
    radial-gradient(ellipse at 62% 110%, rgba(255,255,255,.04) 0 30%, transparent 30.5%),
    linear-gradient(135deg, #151515 0%, #070707 72%);
}

#autonomous-modal .autonomous-usecase-section::before {
  opacity: .28;
  background-image:
    linear-gradient(90deg, transparent 0 18%, rgba(255,255,255,.16) 18.1% 18.4%, transparent 18.5% 100%),
    linear-gradient(0deg, transparent 0 42%, rgba(255,255,255,.13) 42.1% 42.4%, transparent 42.5% 100%),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.13) 0 3px, transparent 3.5px);
  background-size: 260px 180px, 220px 160px, 62px 62px;
  background-position: center, center, center;
  mask-image: linear-gradient(to bottom, #000, rgba(0,0,0,.72));
}

#autonomous-modal .autonomous-usecase-stage {
  width: min(100%, 1160px);
  margin-inline: auto;
}

#autonomous-modal .autonomous-usecase-top {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: center;
}

#autonomous-modal .autonomous-usecase-diagram-stage {
  align-self: center;
}

#autonomous-modal .autonomous-usecase-diagram-stage img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}

#autonomous-modal .autonomous-usecase-heading span {
  color: #fff;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

#autonomous-modal .autonomous-usecase-heading h3 {
  margin-top: 8px;
  color: #b99752;
  font-size: clamp(18px, 1.8vw, 28px);
  font-weight: 500;
  letter-spacing: .02em;
}

#autonomous-modal .autonomous-usecase-heading::before {
  display: none;
}

#autonomous-modal .autonomous-usecase-top-copy p,
#autonomous-modal .autonomous-usecase-bottom-copy p {
  color: rgba(255,255,255,.94);
  font-size: clamp(13px, 1.15vw, 16px);
  line-height: 1.68;
}

#autonomous-modal .autonomous-usecase-bottom-copy {
  max-width: 980px;
  margin-top: clamp(52px, 7vw, 92px);
}

@media (max-width: 980px) {
  #autonomous-modal .autonomous-element-split-card,
  #autonomous-modal .autonomous-element-split-card-reverse {
    grid-template-columns: 1fr 1fr;
  }

  #autonomous-modal .autonomous-usecase-top {
    grid-template-columns: 1fr;
  }

  #autonomous-modal .autonomous-usecase-top-copy {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  #autonomous-modal .autonomous-elements-section {
    padding-inline: 7px;
    background: #f3f1ec;
  }

  #autonomous-modal .autonomous-elements-section .radar-section-heading {
    padding-inline: 13px;
  }

  #autonomous-modal .autonomous-elements-stack {
    gap: 15px;
  }

  #autonomous-modal .autonomous-element-split-card,
  #autonomous-modal .autonomous-element-split-card-reverse {
    grid-template-columns: 58% 42%;
    min-height: 288px;
    border-radius: 8px;
  }

  #autonomous-modal .autonomous-element-split-card-reverse {
    grid-template-columns: 42% 58%;
  }

  #autonomous-modal .autonomous-element-copy-panel,
  #autonomous-modal .autonomous-element-photo {
    min-height: 288px;
  }

  #autonomous-modal .autonomous-element-copy-panel {
    padding: 20px 18px;
  }

  #autonomous-modal .autonomous-element-split-card h4 {
    font-size: 16px;
  }

  #autonomous-modal .autonomous-element-split-card p {
    font-size: 10.5px;
    line-height: 1.45;
  }

  #autonomous-modal .autonomous-usecase-section {
    min-height: 0;
    padding: 54px 20px 64px;
  }

  #autonomous-modal .autonomous-usecase-diagram-stage img {
    max-height: none;
  }

  #autonomous-modal .autonomous-usecase-bottom-copy {
    margin-top: 38px;
    text-align: left;
  }
}
