:root {
  --color-bg-main: #020712;
  --color-bg-secondary: #07111f;
  --color-bg-card: rgba(8, 20, 38, 0.72);
  --color-border: rgba(76, 167, 255, 0.22);
  --color-border-strong: rgba(76, 167, 255, 0.45);
  --color-primary: #1e8cff;
  --color-primary-light: #42b7ff;
  --color-cyan: #22d3ee;
  --color-text-main: #f4f8ff;
  --color-text-muted: #9fb3c8;
  --color-text-soft: #6f8499;
  --color-success: #28e0a8;
  --color-danger: #ff5c7a;
  --max-width: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--color-bg-main);
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text-main);
  background:
    radial-gradient(circle at 74% 12%, rgba(30, 140, 255, 0.24), transparent 28rem),
    radial-gradient(circle at 10% 48%, rgba(34, 211, 238, 0.12), transparent 24rem),
    linear-gradient(180deg, #010510 0%, var(--color-bg-main) 38%, #04101d 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(66, 183, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(66, 183, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 72%);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at center, transparent 0%, rgba(2, 7, 18, 0.74) 82%);
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.section-shell {
  width: min(var(--max-width), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(24px, 4.5vw, 64px);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(2, 7, 18, 0.78);
  border-bottom-color: var(--color-border);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  isolation: isolate;
}

.brand-mark {
  flex: 0 0 auto;
  width: 62px;
  height: 46px;
  display: grid;
  place-items: center;
  overflow: visible;
  border-radius: 8px;
  background: transparent;
  box-shadow: 0 0 28px rgba(30, 140, 255, 0.18);
  position: relative;
  z-index: 1;
}

.brand-mark img {
  width: 62px;
  max-width: none;
  height: 40px;
  object-fit: contain;
  object-position: center;
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  padding-left: 2px;
}

.brand-copy strong {
  font-size: 1.45rem;
  letter-spacing: 0;
}

.brand-copy span {
  color: var(--color-text-muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 44px);
  color: rgba(244, 248, 255, 0.88);
  font-size: 0.95rem;
}

.main-nav a,
.footer-columns a {
  transition: color 160ms ease;
}

.main-nav a:hover,
.footer-columns a:hover {
  color: var(--color-primary-light);
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-main);
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.language-switcher {
  position: relative;
  display: inline-flex;
  direction: ltr;
}

.language-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(76, 167, 255, 0.42);
  border-radius: 6px;
  color: var(--color-text-main);
  background: rgba(4, 12, 24, 0.48);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.language-button:hover,
.language-switcher.is-open .language-button {
  border-color: rgba(66, 183, 255, 0.82);
  background: rgba(30, 140, 255, 0.14);
  box-shadow: 0 0 24px rgba(30, 140, 255, 0.14);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  display: grid;
  min-width: 92px;
  padding: 6px;
  border: 1px solid rgba(76, 167, 255, 0.28);
  border-radius: 6px;
  background: rgba(2, 7, 18, 0.96);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.language-switcher.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-menu a {
  display: inline-grid;
  place-items: center;
  min-height: 34px;
  padding-inline: 12px;
  border-radius: 4px;
  color: rgba(244, 248, 255, 0.66);
  font-size: 0.76rem;
  font-weight: 800;
  transition: color 160ms ease, background 160ms ease;
}

.language-menu a:hover,
.language-menu a.is-active {
  color: var(--color-text-main);
  background: rgba(30, 140, 255, 0.2);
}

.globe {
  width: 18px;
  height: 18px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.globe::before,
.globe::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-left: 1px solid currentColor;
  border-right: 1px solid currentColor;
  border-radius: 50%;
}

.globe::after {
  inset: 8px 2px auto;
  height: 1px;
  border: 0;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  color: var(--color-text-main);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #1688ff, #2f9cff);
  box-shadow: 0 16px 42px rgba(30, 140, 255, 0.28);
}

.btn-outline,
.btn-ghost {
  background: rgba(4, 12, 24, 0.48);
  border-color: rgba(244, 248, 255, 0.32);
}

.btn-outline {
  border-color: rgba(66, 183, 255, 0.78);
}

.btn-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.85rem;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: rgba(8, 20, 38, 0.72);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--color-text-main);
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(520px, 1.38fr);
  align-items: center;
  gap: clamp(24px, 4vw, 72px);
  padding-top: 122px;
  position: relative;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-bottom: 22px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--color-primary-light);
  font-size: 0.76rem;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 640px;
  margin-bottom: 28px;
  font-size: clamp(3.25rem, 6.2vw, 5.45rem);
  line-height: 0.99;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 span {
  display: block;
  color: var(--color-primary);
  text-shadow: 0 0 32px rgba(30, 140, 255, 0.34);
}

.hero-text {
  width: min(100%, 555px);
  color: rgba(244, 248, 255, 0.78);
  font-size: 1.14rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(112px, 1fr));
  gap: 18px;
  max-width: 640px;
  margin-top: 46px;
}

.hero-highlights div {
  min-height: 98px;
  padding-inline-end: 14px;
  border-inline-end: 1px solid rgba(76, 167, 255, 0.12);
}

.hero-highlights div:last-child {
  border-inline-end: 0;
}

.hero-highlights p {
  margin: 12px 0 0;
  color: rgba(244, 248, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.35;
}

.feature-icon,
.card-symbol {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--color-primary-light);
  border: 2px solid currentColor;
  border-radius: 8px;
  position: relative;
}

.brain::before,
.chart::before,
.shield::before,
.pulse::before,
.network::before,
.target::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.cube {
  transform: rotate(30deg);
}

.chart::before,
.pulse::before {
  border: 0;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-radius: 0;
  transform: skew(-18deg);
}

.shield {
  border-radius: 14px 14px 18px 18px;
}

.network::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: currentColor;
  border-radius: 50%;
  box-shadow: 10px 5px 0 currentColor, -6px 11px 0 currentColor;
}

.hero-visual {
  position: relative;
  min-height: 640px;
  margin-inline-end: calc((100vw - min(var(--max-width), calc(100vw - 48px))) / -2);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline-start: -24%;
  width: 38%;
  z-index: 1;
  background: linear-gradient(to right, var(--color-bg-main) 10%, rgba(2, 7, 18, 0.74) 55%, transparent);
}

.hero-visual img {
  position: absolute;
  inset-block: 0;
  inset-inline-end: 0;
  width: 112%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.96;
  filter: saturate(1.08) contrast(1.04);
}

.metric-card {
  position: absolute;
  z-index: 2;
  min-width: 150px;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: rgba(7, 17, 31, 0.72);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34), inset 0 0 24px rgba(30, 140, 255, 0.06);
  backdrop-filter: blur(16px);
}

.metric-card span {
  display: block;
  color: rgba(244, 248, 255, 0.7);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.metric-card strong {
  display: block;
  color: var(--color-cyan);
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 4px;
}

.metric-card small {
  color: var(--color-primary-light);
}

.metric-card i {
  display: block;
  height: 32px;
  margin-top: 10px;
  background:
    linear-gradient(135deg, transparent 8%, rgba(34, 211, 238, 0.48) 9% 11%, transparent 12% 24%, rgba(30, 140, 255, 0.7) 25% 28%, transparent 29% 46%, rgba(34, 211, 238, 0.56) 47% 49%, transparent 50%),
    linear-gradient(to top, rgba(66, 183, 255, 0.12), transparent);
  border-bottom: 1px solid rgba(66, 183, 255, 0.35);
}

.health {
  top: 120px;
  inset-inline-start: 10%;
}

.prediction {
  top: 170px;
  inset-inline-end: 9%;
}

.energy {
  inset-inline-end: 8%;
  bottom: 118px;
}

.alarms {
  inset-inline-start: 24%;
  bottom: 84px;
}

.trust-strip {
  padding: 24px clamp(24px, 5vw, 72px);
  background: rgba(7, 17, 31, 0.82);
  border-block: 1px solid rgba(76, 167, 255, 0.12);
  text-align: center;
  box-shadow: inset 0 20px 80px rgba(30, 140, 255, 0.06);
}

.trust-strip p {
  margin-bottom: 18px;
  color: var(--color-text-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trust-strip div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 1px;
  max-width: 1120px;
  margin-inline: auto;
}

.trust-strip span {
  padding: 10px 18px;
  color: rgba(244, 248, 255, 0.52);
  font-size: clamp(0.9rem, 1.3vw, 1.18rem);
  font-weight: 800;
  border-inline-start: 1px solid rgba(76, 167, 255, 0.14);
}

.section-intro {
  text-align: center;
  padding: 76px 0 26px;
}

.section-intro h2,
.section-copy h2,
.cta-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.section-intro > p:not(.eyebrow),
.section-copy > p:not(.eyebrow),
.cta-panel > p:not(.eyebrow) {
  max-width: 760px;
  color: var(--color-text-muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.section-intro > p:not(.eyebrow),
.cta-panel > p:not(.eyebrow) {
  margin-inline: auto;
}

.lifecycle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-bottom: 82px;
}

.lifecycle-card,
.capability-grid article,
.industry-grid article,
.decision-panel article,
.training-grid article,
.cta-panel {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(9, 24, 44, 0.82), rgba(3, 11, 22, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.lifecycle-card {
  position: relative;
  min-height: 252px;
  padding: 28px 22px;
  overflow: hidden;
}

.lifecycle-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background-image: url("assets/platform-lifecycle.png");
  background-size: 210% 210%;
  pointer-events: none;
}

.lifecycle-card:nth-child(1)::before { background-position: left top; }
.lifecycle-card:nth-child(2)::before { background-position: right top; }
.lifecycle-card:nth-child(3)::before { background-position: left bottom; }
.lifecycle-card:nth-child(4)::before { background-position: right bottom; }

.lifecycle-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 12, 24, 0.96) 0%, rgba(4, 12, 24, 0.76) 55%, transparent 100%);
}

.lifecycle-card > * {
  position: relative;
  z-index: 1;
}

.lifecycle-card h3,
.capability-grid h3,
.industry-grid h3,
.decision-panel h3,
.training-grid h3 {
  margin: 18px 0 10px;
  font-size: 1.04rem;
}

.lifecycle-card p,
.capability-grid p,
.industry-grid p,
.decision-panel p,
.training-grid p {
  color: rgba(244, 248, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.62;
}

.lifecycle-card a {
  position: absolute;
  inset-inline-start: 22px;
  bottom: 20px;
  z-index: 1;
  color: var(--color-primary-light);
  font-size: 1.2rem;
}

.split-section,
.decision-section,
.training-section,
.integration-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: 78px 0;
  border-top: 1px solid rgba(76, 167, 255, 0.1);
}

.section-copy {
  position: sticky;
  top: 104px;
}

.capability-grid,
.industry-grid,
.training-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.capability-grid article,
.industry-grid article,
.decision-panel article,
.training-grid article {
  padding: 22px;
}

.capability-grid article {
  min-height: 174px;
}

.capability-list h3 {
  margin: 0;
  overflow-wrap: anywhere;
}

.image-band {
  padding: 10px 0 80px;
}

.image-band img {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42), 0 0 60px rgba(30, 140, 255, 0.14);
}

.industry-grid {
  padding-bottom: 82px;
}

.industry-grid article {
  min-height: 170px;
  background:
    radial-gradient(circle at top right, rgba(30, 140, 255, 0.14), transparent 45%),
    linear-gradient(180deg, rgba(9, 24, 44, 0.78), rgba(3, 11, 22, 0.72));
}

.decision-panel {
  display: grid;
  gap: 14px;
}

.decision-panel article {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 18px;
}

.decision-panel span {
  grid-row: span 2;
  color: rgba(66, 183, 255, 0.54);
  font-weight: 800;
  font-size: 1.25rem;
}

.decision-panel h3 {
  margin-top: 0;
}

.training-grid article:nth-child(3) {
  border-color: var(--color-border-strong);
  box-shadow: inset 0 0 32px rgba(30, 140, 255, 0.08);
}

.integration-section {
  align-items: center;
}

.integration-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.integration-tags span {
  padding: 13px 16px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  color: rgba(244, 248, 255, 0.8);
  background: rgba(8, 20, 38, 0.58);
}

.cta-section {
  padding: 84px 0;
  scroll-margin-top: 96px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  max-width: 950px;
  margin-inline: auto;
  padding: clamp(36px, 6vw, 66px);
  text-align: center;
  box-shadow: 0 0 90px rgba(30, 140, 255, 0.18);
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(66, 183, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(66, 183, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.66;
}

.cta-panel > * {
  position: relative;
  justify-content: center;
}

.contact-panel {
  text-align: start;
}

.contact-panel > p:not(.eyebrow) {
  margin-inline: 0;
}

.contact-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(244, 248, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(76, 167, 255, 0.24);
  border-radius: 6px;
  background: rgba(2, 7, 18, 0.58);
  color: var(--color-text-main);
  font: inherit;
  padding: 14px 15px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px rgba(30, 140, 255, 0.16);
  background: rgba(2, 7, 18, 0.78);
}

.contact-form textarea {
  resize: vertical;
  min-height: 142px;
}

.bot-field {
  position: absolute;
  inset-inline-start: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-footer {
  display: grid;
  grid-template-columns: minmax(180px, 240px) auto;
  align-items: end;
  gap: 16px;
}

.form-footer .btn {
  justify-self: start;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.form-status.is-error {
  color: var(--color-danger);
}

.form-status.is-success {
  color: var(--color-success);
}

.site-footer {
  width: min(var(--max-width), calc(100% - 48px));
  margin-inline: auto;
  padding: 46px 0 34px;
  border-top: 1px solid rgba(76, 167, 255, 0.14);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.footer-note {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--color-text-muted);
  line-height: 1.7;
}

[dir="rtl"] body {
  font-family: Inter, "Segoe UI", Tahoma, Arial, sans-serif;
}

[dir="rtl"] .brand-copy {
  padding-left: 0;
  padding-right: 2px;
}

[dir="rtl"] .language-menu {
  right: auto;
  left: 0;
}

[dir="rtl"] .hero-visual::before {
  background: linear-gradient(to left, var(--color-bg-main) 10%, rgba(2, 7, 18, 0.74) 55%, transparent);
}

[dir="rtl"] .hero-visual img {
  transform: scaleX(-1);
}

[dir="rtl"] .lifecycle-card::after {
  background: linear-gradient(270deg, rgba(4, 12, 24, 0.96) 0%, rgba(4, 12, 24, 0.76) 55%, transparent 100%);
}

[dir="rtl"] .feature-icon,
[dir="rtl"] .card-symbol {
  direction: ltr;
}

.footer-columns h3 {
  font-size: 0.86rem;
  color: var(--color-text-main);
}

.footer-columns a {
  display: block;
  margin-top: 11px;
  color: var(--color-text-soft);
  font-size: 0.9rem;
}

.footer-bottom {
  margin: 34px 0 0;
  color: var(--color-text-soft);
  font-size: 0.82rem;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav,
  .header-actions {
    position: fixed;
    left: 24px;
    right: 24px;
    display: none;
    background: rgba(2, 7, 18, 0.94);
    backdrop-filter: blur(18px);
    border: 1px solid var(--color-border);
  }

  .main-nav {
    top: 86px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px;
    border-radius: 8px 8px 0 0;
  }

  .main-nav a {
    width: 100%;
    padding: 13px 12px;
  }

  .header-actions {
    top: 316px;
    align-items: stretch;
    padding: 14px;
    border-top: 0;
    border-radius: 0 0 8px 8px;
  }

  .site-header.is-open .main-nav,
  .site-header.is-open .header-actions {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 132px;
  }

  .hero-visual {
    min-height: 520px;
    margin-inline: -24px;
  }

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

  .split-section,
  .decision-section,
  .training-section,
  .integration-section {
    grid-template-columns: 1fr;
  }

  .section-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .section-shell,
  .site-footer {
    width: calc(100vw - 32px);
    max-width: var(--max-width);
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) 42px;
    width: 100vw;
    max-width: 100vw;
    padding-inline: 16px;
    gap: 10px;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-copy strong {
    font-size: 1.08rem;
  }

  .brand-copy span {
    font-size: 0.58rem;
  }

  .brand-mark {
    width: 48px;
    height: 38px;
  }

  .brand-mark img {
    width: 48px;
    height: 32px;
  }

  .hero {
    min-height: auto;
    gap: 20px;
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    overflow: hidden;
  }

  .hero-text {
    font-size: 1rem;
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

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

  .btn {
    width: 100%;
  }

  .hero-highlights,
  .lifecycle-grid,
  .capability-grid,
  .industry-grid,
  .training-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .hero-highlights div {
    min-height: auto;
    border-inline-end: 0;
    border-bottom: 1px solid rgba(76, 167, 255, 0.12);
    padding-bottom: 14px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-visual img {
    width: 160%;
    object-position: 64% center;
  }

  .metric-card {
    min-width: 132px;
    padding: 12px;
  }

  .health {
    top: 34px;
    inset-inline-start: 8px;
  }

  .prediction {
    top: 92px;
    inset-inline-end: 12px;
  }

  .energy {
    inset-inline-end: 16px;
    bottom: 38px;
  }

  .alarms {
    inset-inline-start: 16px;
    bottom: 24px;
  }

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

  .trust-strip span {
    border-inline-start: 0;
    border-top: 1px solid rgba(76, 167, 255, 0.12);
  }

  .decision-panel article {
    grid-template-columns: 1fr;
  }

  .decision-panel span {
    grid-row: auto;
    margin-bottom: 10px;
  }

  .form-grid,
  .form-footer {
    grid-template-columns: 1fr;
  }

  .form-footer .btn {
    justify-self: stretch;
  }
}
