/*
Theme Name: Over Technology
Theme URI: https://www.over-technology.it/
Author: Over Technology
Description: Tema leggero per Solution Architecture, sviluppo software, AI, digital twin e ricerca applicata.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.2
Text Domain: over-technology
*/

:root {
  --ot-bg: #14201d;
  --ot-bg-soft: #e6f0eb;
  --ot-panel: #20342f;
  --ot-panel-2: #29443d;
  --ot-text: #f5f8f7;
  --ot-muted: #d7e5df;
  --ot-line: rgba(255, 255, 255, .16);
  --ot-green: #35d39d;
  --ot-green-deep: #0ea879;
  --ot-cyan: #147f68;
  --ot-warm: #d9e8df;
  --ot-shadow: 0 24px 80px rgba(0, 0, 0, .34);
  --ot-paper: #edf4f0;
  --ot-paper-soft: #f3f7f4;
  --ot-paper-ink: #1b332d;
  --ot-paper-muted: #536c64;
  --ot-paper-line: rgba(23, 51, 43, .13);
  --ot-radius: 8px;
  --ot-wrap: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ot-paper);
  color: var(--ot-paper-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.admin-bar .ot-site-header {
  top: 32px;
}

a {
  color: var(--ot-green-deep);
  text-decoration: none;
}

a:hover {
  color: #075f49;
}

img {
  height: auto;
  max-width: 100%;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.ot-wrap {
  margin: 0 auto;
  max-width: var(--ot-wrap);
  padding: 0 28px;
}

.ot-site-header {
  background: rgba(20, 32, 29, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--ot-line);
  left: 0;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 50;
}

.ot-header-inner {
  align-items: center;
  display: flex;
  gap: 24px;
  min-height: 76px;
  justify-content: space-between;
}

.ot-brand {
  color: #fff;
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 190px;
}

.ot-brand-name {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.ot-brand-payoff {
  color: var(--ot-muted);
  font-size: .78rem;
  margin-top: 5px;
}

.ot-menu-toggle {
  display: none;
}

.ot-nav {
  align-items: center;
  display: flex;
  justify-content: flex-end;
}

.ot-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ot-nav-list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 6px;
  justify-content: flex-end;
}

.ot-nav-item {
  position: relative;
}

.ot-nav a {
  border-radius: 6px;
  color: rgba(255, 255, 255, .78);
  display: block;
  font-size: .8rem;
  font-weight: 720;
  line-height: 1.2;
  padding: 10px 9px;
}

.ot-nav-has-children > a {
  align-items: center;
  display: inline-flex;
  gap: 7px;
}

.ot-nav-has-children > a:after {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  height: 6px;
  margin-top: -3px;
  opacity: .72;
  transform: rotate(45deg);
  width: 6px;
}

.ot-submenu {
  background:
    radial-gradient(circle at 90% 18%, rgba(53, 211, 157, .16), transparent 28%),
    rgba(16, 28, 25, .98);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .35);
  display: grid;
  gap: 4px;
  left: 50%;
  min-width: 330px;
  opacity: 0;
  padding: 10px;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 12px);
  transform: translateX(-50%) translateY(8px);
  transition: opacity .22s ease, transform .22s ease;
}

.ot-submenu:before {
  content: "";
  height: 16px;
  left: 0;
  position: absolute;
  right: 0;
  top: -16px;
}

.ot-nav-has-children:hover .ot-submenu,
.ot-nav-has-children:focus-within .ot-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.ot-submenu a {
  background: rgba(255, 255, 255, .04);
  border: 1px solid transparent;
  padding: 13px 14px;
}

.ot-submenu a:hover {
  background: rgba(53, 211, 157, .1);
  border-color: rgba(53, 211, 157, .24);
}

.ot-submenu strong,
.ot-submenu span {
  display: block;
}

.ot-submenu strong {
  color: #fff;
  font-size: .9rem;
  margin-bottom: 4px;
}

.ot-submenu span {
  color: rgba(215, 229, 223, .72);
  font-size: .78rem;
  font-weight: 560;
  line-height: 1.4;
}

.ot-nav-cta > a {
  background: var(--ot-green);
  color: #07100d;
  font-weight: 860;
  padding-left: 13px;
  padding-right: 13px;
}

.ot-nav-cta > a:hover {
  background: #58e2b5;
  color: #07100d;
}

.ot-nav .current-menu-item > a,
.ot-nav .current_page_item > a,
.ot-nav a:hover {
  background: rgba(53, 211, 157, .13);
  color: #fff;
}

.ot-hero a,
.ot-site-header a,
.ot-footer a,
.ot-page-cta a {
  color: #fff;
}

.ot-hero a:hover,
.ot-site-header a:hover,
.ot-footer a:hover,
.ot-page-cta a:hover {
  color: #fff;
}

.ot-site-header .ot-nav-cta > a,
.ot-site-header .ot-nav-cta > a:hover {
  background: var(--ot-green);
  color: #07100d;
}

.ot-site-header .ot-nav-cta > a:hover {
  background: #58e2b5;
}

.ot-main {
  min-height: 70vh;
}

.ot-hero {
  background:
    linear-gradient(90deg, rgba(20, 32, 29, .88), rgba(20, 32, 29, .58) 42%, rgba(20, 32, 29, .12)),
    var(--ot-bg);
  min-height: 78vh;
  overflow: hidden;
  position: relative;
}

.ot-motion-grid {
  background-image:
    linear-gradient(rgba(53, 211, 157, .18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 211, 157, .16) 1px, transparent 1px);
  background-size: 56px 56px;
  bottom: -20%;
  height: 64%;
  left: 0;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.75), transparent 72%);
  opacity: .26;
  position: absolute;
  right: 0;
  transform: perspective(640px) rotateX(58deg);
  transform-origin: bottom;
  z-index: 1;
  animation: ot-grid-drift 18s linear infinite;
}

@keyframes ot-grid-drift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 112px 56px, 112px 56px; }
}

.ot-hero:before {
  animation: ot-hero-breathe 22s ease-in-out infinite alternate;
  background-image: var(--ot-hero-image);
  background-position: center;
  background-size: cover;
  content: "";
  filter: saturate(.9) contrast(1.05);
  inset: 0;
  opacity: .72;
  position: absolute;
}

@keyframes ot-hero-breathe {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.035);
  }
}

.ot-hero:after {
  background:
    radial-gradient(circle at 22% 30%, rgba(53, 211, 157, .34), transparent 25%),
    linear-gradient(120deg, rgba(14, 168, 121, .18), transparent 45%),
    linear-gradient(0deg, var(--ot-bg), transparent 34%);
  content: "";
  inset: 0;
  position: absolute;
}

.ot-hero-inner {
  align-items: flex-end;
  animation: ot-content-rise .8s ease-out both;
  display: grid;
  min-height: 78vh;
  padding-bottom: clamp(64px, 12vh, 128px);
  padding-top: 120px;
  position: relative;
  z-index: 1;
}

@keyframes ot-content-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ot-hero-inner {
  z-index: 2;
}

.ot-kicker {
  color: var(--ot-green);
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .14em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.ot-hero h1 {
  color: #fff;
  font-size: clamp(3rem, 8vw, 6.8rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: .92;
  margin: 0;
  max-width: 980px;
  text-transform: uppercase;
}

.ot-hero-subtitle {
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  line-height: 1.5;
  margin: 24px 0 0;
  max-width: 780px;
}

.ot-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.ot-hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  max-width: 960px;
}

.ot-hero-metrics a {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(53, 211, 157, .22), rgba(237, 244, 240, .06) 42%, rgba(8, 20, 17, .34)),
    rgba(18, 33, 29, .44);
  border: 1px solid rgba(119, 243, 199, .28);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .2),
    inset 0 -12px 24px rgba(4, 18, 14, .2),
    0 12px 34px rgba(0, 0, 0, .18);
  color: rgba(255,255,255,.9);
  display: inline-flex;
  font-size: .84rem;
  font-weight: 820;
  gap: 10px;
  min-height: 48px;
  overflow: hidden;
  padding: 11px 18px 11px 16px;
  position: relative;
  text-decoration: none;
  transition: background .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.ot-hero-metrics a:before {
  background:
    radial-gradient(circle, rgba(89, 255, 196, .9) 0 28%, rgba(89, 255, 196, .26) 29% 52%, transparent 54%),
    rgba(53, 211, 157, .14);
  border: 1px solid rgba(135, 255, 213, .38);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(53, 211, 157, .34);
  content: "";
  flex: 0 0 auto;
  height: 12px;
  width: 12px;
}

.ot-hero-metrics a:after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .38), transparent);
  content: "";
  height: 100%;
  left: -70%;
  position: absolute;
  top: 0;
  transform: skewX(-18deg);
  transition: left .5s ease;
  width: 44%;
}

.ot-hero-metrics a:hover,
.ot-hero-metrics a:focus-visible {
  background:
    linear-gradient(135deg, rgba(53, 211, 157, .34), rgba(237, 244, 240, .1) 44%, rgba(8, 20, 17, .22)),
    rgba(15, 45, 36, .58);
  border-color: rgba(105, 255, 200, .62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .24),
    inset 0 -16px 26px rgba(4, 18, 14, .18),
    0 16px 42px rgba(0, 0, 0, .24),
    0 0 24px rgba(53, 211, 157, .18);
  color: #ffffff;
  outline: none;
  transform: translateY(-3px);
}

.ot-hero-metrics a:hover:after,
.ot-hero-metrics a:focus-visible:after {
  left: 126%;
}

.ot-hero-metrics a:focus-visible {
  box-shadow: 0 0 0 3px rgba(53, 211, 157, .22);
}

.ot-button {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  font-size: .94rem;
  font-weight: 820;
  justify-content: center;
  min-height: 46px;
  padding: 12px 17px;
  transition: background .22s ease, border-color .22s ease, color .22s ease, transform .22s ease;
}

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

.ot-button-primary {
  background: var(--ot-green);
  border-color: var(--ot-green);
  color: #07100d;
}

.ot-button:hover {
  border-color: rgba(255,255,255,.42);
  color: #fff;
}

.ot-button-primary:hover {
  background: #58e2b5;
  color: #07100d;
}

.ot-button-secondary {
  background: rgba(10, 38, 31, .62);
  border-color: rgba(119, 243, 199, .44);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
  color: #fff;
}

.ot-button-secondary:hover {
  background: rgba(119, 243, 199, .18);
  border-color: rgba(119, 243, 199, .72);
  box-shadow:
    0 0 28px rgba(53, 211, 157, .12),
    inset 0 0 0 1px rgba(255, 255, 255, .1);
  color: #fff;
}

.ot-page-cta .ot-button-secondary,
.ot-page-cta .ot-button-secondary:hover,
.ot-page-cta .ot-button-secondary:focus-visible {
  color: #fff !important;
}

.ot-section {
  padding: clamp(58px, 8vw, 108px) 0;
  background:
    linear-gradient(135deg, rgba(53, 211, 157, .055), transparent 34%),
    var(--ot-paper);
  color: var(--ot-paper-ink);
}

.ot-section-alt {
  background: linear-gradient(180deg, #dfeee7, #edf4f0);
  border-bottom: 1px solid var(--ot-paper-line);
  border-top: 1px solid var(--ot-paper-line);
}

.ot-section-head {
  max-width: 820px;
}

.ot-split {
  align-items: start;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
}

.ot-copy {
  background: rgba(255,255,255,.42);
  border: 1px solid var(--ot-paper-line);
  border-radius: var(--ot-radius);
  box-shadow: 0 16px 46px rgba(16, 67, 51, .07);
  padding: clamp(22px, 3vw, 34px);
}

.ot-copy h2:first-child {
  display: none;
}

.ot-section h2,
.ot-content h1,
.ot-content h2 {
  color: var(--ot-paper-ink);
  font-size: clamp(1.85rem, 3.4vw, 3.05rem);
  letter-spacing: 0;
  line-height: 1.06;
  margin: 0 0 22px;
}

.ot-section p,
.ot-content p,
.ot-content li {
  color: var(--ot-paper-muted);
}

.ot-grid {
  counter-reset: ot-card;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.ot-card {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, .88), rgba(228, 239, 232, .78) 58%, rgba(211, 228, 219, .72)),
    var(--ot-paper-soft);
  border: 1px solid rgba(23, 51, 43, .12);
  border-radius: var(--ot-radius);
  box-shadow:
    0 18px 46px rgba(16, 67, 51, .09),
    inset 0 1px 0 rgba(255, 255, 255, .78);
  counter-increment: ot-card;
  min-height: 100%;
  padding: 30px 26px 26px;
  position: relative;
  overflow: hidden;
  transition: border-color .26s ease, box-shadow .26s ease, transform .26s ease, background .26s ease;
}

.ot-card:before {
  background:
    linear-gradient(90deg, rgba(53, 211, 157, .9), rgba(20, 127, 104, .22) 58%, transparent),
    linear-gradient(90deg, rgba(255, 255, 255, .62), transparent);
  content: "";
  height: 4px;
  left: 22px;
  position: absolute;
  right: 52px;
  top: 18px;
  width: auto;
}

.ot-card:after {
  background:
    radial-gradient(circle at 82% 18%, rgba(53, 211, 157, .2), transparent 24%),
    linear-gradient(120deg, transparent 14%, rgba(255,255,255,.38) 34%, transparent 56%),
    repeating-linear-gradient(135deg, rgba(18, 46, 38, .035) 0 1px, transparent 1px 12px);
  content: "";
  inset: 0;
  opacity: .46;
  pointer-events: none;
  position: absolute;
  transform: translateX(-18%);
  transition: opacity .28s ease, transform .48s ease;
}

.ot-card:nth-child(2n) {
  background:
    linear-gradient(150deg, rgba(250, 253, 250, .9), rgba(222, 237, 230, .78) 58%, rgba(232, 238, 226, .72)),
    var(--ot-paper-soft);
}

.ot-card:nth-child(3n):before {
  background: linear-gradient(90deg, rgba(18, 127, 104, .88), rgba(187, 210, 132, .36) 60%, transparent);
}

.ot-card:nth-child(4n) {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, .88), rgba(224, 238, 236, .78) 55%, rgba(212, 229, 224, .72)),
    var(--ot-paper-soft);
}

.ot-card h3:before {
  color: rgba(14, 168, 121, .7);
  content: "0" counter(ot-card);
  display: block;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1;
  margin-bottom: 18px;
}

.ot-card:hover {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, .94), rgba(218, 237, 228, .86) 62%, rgba(199, 224, 212, .74)),
    var(--ot-paper-soft);
  border-color: rgba(14, 168, 121, .38);
  box-shadow:
    0 30px 72px rgba(16, 67, 51, .16),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  transform: translateY(-6px);
}

.ot-card:hover:after {
  opacity: .8;
  transform: translateX(7%);
}

.ot-card h3 {
  color: var(--ot-paper-ink);
  font-size: 1.12rem;
  line-height: 1.2;
  margin: 0 0 12px;
}

.ot-card p {
  font-size: .97rem;
  margin: 0;
}

.ot-card a {
  color: var(--ot-green-deep);
  display: inline-block;
  font-weight: 800;
  margin-top: 18px;
  position: relative;
  z-index: 1;
}

.ot-card a:after {
  color: var(--ot-green-deep);
  content: " /";
  transition: padding-left .22s ease;
}

.ot-card a:hover:after {
  padding-left: 4px;
}

.ot-home-trust {
  align-items: stretch;
  display: grid;
  gap: clamp(26px, 5vw, 58px);
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
}

.ot-trust-panel {
  background:
    radial-gradient(circle at 82% 14%, rgba(53, 211, 157, .18), transparent 30%),
    linear-gradient(145deg, rgba(20, 32, 29, .96), rgba(23, 55, 47, .92) 58%, rgba(10, 22, 19, .98));
  border: 1px solid rgba(119, 243, 199, .22);
  border-radius: var(--ot-radius);
  box-shadow:
    0 28px 70px rgba(16, 67, 51, .18),
    inset 0 1px 0 rgba(255, 255, 255, .06);
  display: grid;
  gap: 1px;
  overflow: hidden;
  position: relative;
}

.ot-trust-panel:before {
  background-image:
    linear-gradient(rgba(53, 211, 157, .1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 211, 157, .08) 1px, transparent 1px);
  background-size: 30px 30px;
  content: "";
  inset: 0;
  opacity: .22;
  pointer-events: none;
  position: absolute;
}

.ot-trust-line {
  background: linear-gradient(90deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .02));
  display: grid;
  gap: 12px;
  grid-template-columns: 44px minmax(0, .7fr) minmax(0, 1.2fr);
  padding: clamp(18px, 2.5vw, 26px);
  position: relative;
  z-index: 1;
}

.ot-trust-line + .ot-trust-line {
  border-top: 1px solid rgba(119, 243, 199, .13);
}

.ot-trust-line span {
  align-items: center;
  background: rgba(53, 211, 157, .12);
  border: 1px solid rgba(119, 243, 199, .32);
  border-radius: 999px;
  color: var(--ot-green);
  display: inline-flex;
  font-size: .72rem;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  letter-spacing: .08em;
  width: 34px;
}

.ot-trust-line strong {
  color: #fff;
  font-size: 1.02rem;
  line-height: 1.25;
}

.ot-trust-line p {
  color: rgba(232, 244, 238, .78);
  font-size: .95rem;
  line-height: 1.55;
  margin: 0;
}

.ot-proof-strip {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(26px, 4vw, 42px);
}

.ot-proof-strip a {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .78), rgba(226, 239, 233, .72)),
    radial-gradient(circle at 90% 12%, rgba(53, 211, 157, .14), transparent 28%);
  border: 1px solid rgba(23, 51, 43, .12);
  border-radius: var(--ot-radius);
  box-shadow: 0 16px 42px rgba(16, 67, 51, .07);
  display: block;
  min-height: 166px;
  padding: 22px;
  transition: border-color .24s ease, box-shadow .24s ease, transform .24s ease;
}

.ot-proof-strip a:hover {
  border-color: rgba(14, 168, 121, .34);
  box-shadow: 0 26px 60px rgba(16, 67, 51, .13);
  transform: translateY(-3px);
}

.ot-proof-strip strong,
.ot-proof-strip span {
  display: block;
}

.ot-proof-strip strong {
  color: var(--ot-paper-ink);
  font-size: 1.04rem;
  line-height: 1.25;
  margin-bottom: 10px;
}

.ot-proof-strip span {
  color: var(--ot-paper-muted);
  font-size: .94rem;
  line-height: 1.55;
}

.ot-path-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.ot-path-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .82), rgba(224, 238, 231, .7)),
    radial-gradient(circle at 88% 14%, rgba(53, 211, 157, .16), transparent 34%);
  border: 1px solid rgba(23, 51, 43, .13);
  border-radius: var(--ot-radius);
  box-shadow: 0 16px 42px rgba(16, 67, 51, .08);
  color: var(--ot-paper-ink);
  display: grid;
  gap: 12px;
  min-height: 230px;
  overflow: hidden;
  padding: 24px;
  position: relative;
  transition: border-color .24s ease, box-shadow .24s ease, transform .24s ease;
}

.ot-path-card:after {
  background:
    linear-gradient(90deg, rgba(53, 211, 157, .62), transparent 70%),
    repeating-linear-gradient(135deg, rgba(18, 46, 38, .04) 0 1px, transparent 1px 12px);
  content: "";
  inset: auto 0 0;
  height: 5px;
  opacity: .86;
  position: absolute;
}

.ot-path-card:hover {
  border-color: rgba(14, 168, 121, .38);
  box-shadow: 0 26px 64px rgba(16, 67, 51, .15);
  color: var(--ot-paper-ink);
  transform: translateY(-5px);
}

.ot-path-card span {
  color: rgba(14, 168, 121, .68);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.ot-path-card strong {
  color: var(--ot-paper-ink);
  font-size: 1.08rem;
  line-height: 1.18;
}

.ot-path-card em {
  color: var(--ot-paper-muted);
  font-size: .96rem;
  font-style: normal;
  line-height: 1.5;
}

.ot-content-shell {
  background:
    linear-gradient(135deg, rgba(53, 211, 157, .045), transparent 28%),
    var(--ot-paper);
  padding: clamp(56px, 7vw, 92px) 0;
}

.ot-featured {
  background: #14201d;
  height: clamp(360px, 34vw, 560px);
  overflow: hidden;
  position: relative;
}

.ot-featured:before {
  animation: ot-featured-scan 12s ease-in-out infinite alternate;
  background:
    linear-gradient(110deg, transparent 0 35%, rgba(53, 211, 157, .13) 48%, transparent 62%),
    radial-gradient(circle at 74% 46%, rgba(53, 211, 157, .12), transparent 28%);
  content: "";
  inset: -12%;
  opacity: .65;
  pointer-events: none;
  position: absolute;
  transform: translateX(-8%);
  z-index: 1;
}

.ot-featured:after {
  background:
    linear-gradient(90deg, rgba(9, 23, 19, .34), rgba(9, 23, 19, .06) 45%, rgba(9, 23, 19, .14)),
    linear-gradient(0deg, rgba(9, 23, 19, .2), transparent 38%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 2;
}

@keyframes ot-featured-scan {
  from {
    transform: translateX(-10%) translateY(0);
  }
  to {
    transform: translateX(8%) translateY(-2%);
  }
}

.ot-featured img {
  display: block;
  filter: saturate(1.04) contrast(1.05) brightness(1.1);
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

.ot-content {
  max-width: 920px;
}

.ot-content h1 {
  margin-bottom: 30px;
}

.ot-content h2,
.ot-content h3,
.ot-content h4 {
  color: var(--ot-paper-ink);
  letter-spacing: 0;
  line-height: 1.15;
  margin-top: 2em;
}

.ot-content h3 {
  font-size: clamp(1.32rem, 2vw, 1.75rem);
}

.ot-content h4 {
  color: #235a49;
  font-size: 1.05rem;
}

.ot-content ul {
  display: grid;
  gap: 18px;
  list-style: none;
  margin: 1.6em 0 2.2em;
  padding: 0;
}

.ot-content li {
  background:
    radial-gradient(circle at 92% 8%, rgba(53, 211, 157, .16), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, .84), rgba(231, 241, 235, .72) 58%, rgba(220, 235, 228, .66)),
    var(--ot-paper-soft);
  border: 1px solid rgba(23, 51, 43, .13);
  border-radius: var(--ot-radius);
  box-shadow:
    0 18px 44px rgba(16, 67, 51, .08),
    inset 0 1px 0 rgba(255, 255, 255, .72);
  overflow: hidden;
  padding: 24px 24px 24px 62px;
  position: relative;
  transition: background .24s ease, border-color .24s ease, box-shadow .24s ease, transform .24s ease;
}

.ot-content li:before {
  background:
    radial-gradient(circle, rgba(255, 255, 255, .88) 0 16%, rgba(76, 239, 178, .86) 17% 43%, rgba(53, 211, 157, .22) 44% 66%, transparent 68%),
    rgba(53, 211, 157, .14);
  border: 1px solid rgba(14, 168, 121, .26);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(53, 211, 157, .24);
  content: "";
  height: 14px;
  left: 26px;
  position: absolute;
  top: 31px;
  width: 14px;
  z-index: 1;
}

.ot-content li:after {
  background:
    linear-gradient(90deg, rgba(53, 211, 157, .72), rgba(20, 127, 104, .2) 58%, transparent),
    linear-gradient(90deg, rgba(255, 255, 255, .62), transparent);
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.ot-content li:hover {
  background:
    radial-gradient(circle at 90% 6%, rgba(53, 211, 157, .24), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(230, 242, 236, .8) 58%, rgba(214, 234, 224, .72)),
    var(--ot-paper-soft);
  border-color: rgba(14, 168, 121, .28);
  box-shadow:
    0 24px 56px rgba(16, 67, 51, .13),
    0 0 34px rgba(53, 211, 157, .08),
    inset 0 1px 0 rgba(255, 255, 255, .78);
  transform: translateY(-2px);
}

.ot-inline-visual {
  background:
    radial-gradient(circle at 80% 16%, rgba(53, 211, 157, .16), transparent 30%),
    rgba(20, 32, 29, .96);
  border: 1px solid rgba(23, 51, 43, .16);
  border-radius: var(--ot-radius);
  box-shadow: 0 28px 70px rgba(16, 67, 51, .18);
  margin: clamp(26px, 4vw, 44px) 0;
  overflow: hidden;
  padding: 8px;
}

.ot-inline-visual img {
  border-radius: 6px;
  display: block;
  width: 100%;
}

.ot-content a {
  color: #08765c;
  box-shadow: inset 0 -1px 0 rgba(14, 168, 121, .34);
}

.ot-content a:hover {
  color: #064f3d;
  box-shadow: inset 0 -2px 0 var(--ot-green);
}

.ot-case-highlight {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(28px, 4vw, 48px) 0;
}

.ot-case-highlight > div {
  background:
    radial-gradient(circle at 86% 14%, rgba(53, 211, 157, .2), transparent 28%),
    linear-gradient(145deg, rgba(20, 32, 29, .96), rgba(24, 54, 46, .92) 58%, rgba(11, 24, 21, .98));
  border: 1px solid rgba(119, 243, 199, .22);
  border-radius: var(--ot-radius);
  box-shadow: 0 22px 54px rgba(16, 67, 51, .16);
  color: #fff;
  overflow: hidden;
  padding: 24px;
  position: relative;
}

.ot-case-highlight > div:after {
  background-image:
    linear-gradient(rgba(53, 211, 157, .13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 211, 157, .11) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  inset: 0;
  opacity: .2;
  pointer-events: none;
  position: absolute;
}

.ot-case-highlight span,
.ot-case-topline span {
  color: var(--ot-green);
  display: block;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .16em;
  margin-bottom: 13px;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.ot-case-highlight strong {
  color: #fff;
  display: block;
  font-size: 1.12rem;
  line-height: 1.2;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.ot-case-highlight p {
  color: rgba(232, 244, 238, .8);
  font-size: .95rem;
  line-height: 1.55;
  margin: 0;
  position: relative;
  z-index: 1;
}

.ot-case-grid {
  display: grid;
  gap: 22px;
  margin: clamp(28px, 4vw, 52px) 0;
}

.ot-case-card {
  background:
    radial-gradient(circle at 92% 12%, rgba(53, 211, 157, .18), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(231, 241, 235, .76) 58%, rgba(217, 235, 226, .7)),
    var(--ot-paper-soft);
  border: 1px solid rgba(23, 51, 43, .13);
  border-radius: var(--ot-radius);
  box-shadow:
    0 22px 58px rgba(16, 67, 51, .1),
    inset 0 1px 0 rgba(255, 255, 255, .78);
  overflow: hidden;
  padding: clamp(24px, 4vw, 36px);
  position: relative;
}

.ot-case-card:before {
  background:
    linear-gradient(90deg, rgba(53, 211, 157, .88), rgba(20, 127, 104, .22) 62%, transparent),
    linear-gradient(90deg, rgba(255, 255, 255, .58), transparent);
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.ot-case-card:after {
  background:
    linear-gradient(120deg, transparent 12%, rgba(255, 255, 255, .42) 34%, transparent 56%),
    repeating-linear-gradient(135deg, rgba(18, 46, 38, .04) 0 1px, transparent 1px 12px);
  content: "";
  inset: 0;
  opacity: .32;
  pointer-events: none;
  position: absolute;
  transform: translateX(-16%);
  transition: opacity .28s ease, transform .5s ease;
}

.ot-case-card:hover:after {
  opacity: .58;
  transform: translateX(5%);
}

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

.ot-case-topline {
  align-items: baseline;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.ot-case-topline span {
  margin: 0;
}

.ot-case-topline em {
  color: rgba(35, 90, 73, .78);
  font-size: .9rem;
  font-style: normal;
  font-weight: 780;
}

.ot-case-card h4 {
  color: var(--ot-paper-ink);
  font-size: clamp(1.38rem, 2.2vw, 2rem);
  line-height: 1.12;
  margin: 0 0 18px;
}

.ot-case-card p {
  margin-bottom: 20px;
}

.ot-case-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
}

.ot-case-card li {
  background: rgba(255, 255, 255, .55);
  border-radius: 6px;
  box-shadow: none;
  padding: 16px 16px 16px 42px;
}

.ot-case-card li:before {
  height: 10px;
  left: 18px;
  top: 23px;
  width: 10px;
}

.ot-case-card li:after {
  display: none;
}

.ot-proof-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: clamp(26px, 4vw, 46px) 0;
}

.ot-proof-grid div {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .78), rgba(226, 239, 233, .72)),
    radial-gradient(circle at 92% 12%, rgba(53, 211, 157, .13), transparent 28%);
  border: 1px solid rgba(23, 51, 43, .12);
  border-radius: var(--ot-radius);
  box-shadow: 0 16px 42px rgba(16, 67, 51, .07);
  min-height: 142px;
  padding: 22px;
}

.ot-proof-grid strong,
.ot-proof-grid span {
  display: block;
}

.ot-proof-grid strong {
  color: var(--ot-paper-ink);
  font-size: 1.05rem;
  line-height: 1.25;
  margin-bottom: 10px;
}

.ot-proof-grid span {
  color: var(--ot-paper-muted);
  font-size: .95rem;
  line-height: 1.55;
}

.ot-rd-board,
.ot-deliverable-board {
  background:
    radial-gradient(circle at 14% 18%, rgba(53, 211, 157, .24), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(119, 243, 199, .16), transparent 30%),
    linear-gradient(145deg, rgba(10, 24, 20, .98), rgba(18, 48, 39, .96) 54%, rgba(7, 17, 15, .98));
  border: 1px solid rgba(119, 243, 199, .24);
  border-radius: var(--ot-radius);
  box-shadow:
    0 30px 76px rgba(11, 47, 36, .18),
    inset 0 1px 0 rgba(255, 255, 255, .12);
  color: #fff;
  margin: clamp(30px, 5vw, 58px) 0;
  overflow: hidden;
  padding: clamp(26px, 4vw, 42px);
  position: relative;
}

.ot-rd-board:before,
.ot-deliverable-board:before {
  background-image:
    linear-gradient(rgba(119, 243, 199, .1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119, 243, 199, .08) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(115deg, transparent 8%, #000 34%, #000 68%, transparent 94%);
  opacity: .38;
  pointer-events: none;
  position: absolute;
}

.ot-rd-board:after,
.ot-deliverable-board:after {
  background:
    linear-gradient(100deg, transparent 0 18%, rgba(119, 243, 199, .2) 32%, transparent 48%),
    linear-gradient(90deg, rgba(53, 211, 157, .42), transparent 68%);
  content: "";
  height: 1px;
  left: 0;
  opacity: .82;
  position: absolute;
  right: 0;
  top: 0;
}

.ot-rd-board > *,
.ot-deliverable-board > * {
  position: relative;
  z-index: 1;
}

.ot-board-kicker {
  color: var(--ot-green);
  display: block;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .18em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.ot-rd-board h3,
.ot-deliverable-board h3 {
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.75rem);
  line-height: 1.06;
  margin: 0 0 16px;
  max-width: 920px;
}

.ot-rd-board p,
.ot-deliverable-board p {
  color: rgba(232, 244, 238, .82);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.62;
  margin-bottom: 0;
  max-width: 900px;
}

.ot-rd-lane,
.ot-deliverable-grid {
  display: grid;
  gap: 14px;
  margin-top: clamp(26px, 4vw, 38px);
}

.ot-rd-lane {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
}

.ot-rd-lane:before {
  background: linear-gradient(90deg, transparent, rgba(89, 255, 196, .5), transparent);
  content: "";
  height: 2px;
  left: 8%;
  opacity: .6;
  position: absolute;
  right: 8%;
  top: 28px;
}

.ot-rd-step,
.ot-deliverable-item {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .045)),
    rgba(11, 31, 26, .66);
  border: 1px solid rgba(119, 243, 199, .22);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  overflow: hidden;
  padding: 18px;
  position: relative;
}

.ot-rd-step:before,
.ot-deliverable-item:before {
  align-items: center;
  background:
    radial-gradient(circle, rgba(255, 255, 255, .92) 0 13%, rgba(89, 255, 196, .92) 14% 42%, rgba(89, 255, 196, .2) 43% 66%, transparent 68%),
    rgba(53, 211, 157, .12);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(53, 211, 157, .22);
  color: #06271f;
  content: attr(data-step);
  display: flex;
  font-size: .72rem;
  font-weight: 900;
  height: 22px;
  justify-content: center;
  margin-bottom: 16px;
  width: 22px;
}

.ot-rd-step strong,
.ot-deliverable-item strong {
  color: #fff;
  display: block;
  font-size: 1rem;
  line-height: 1.18;
  margin-bottom: 9px;
}

.ot-rd-step span,
.ot-deliverable-item span {
  color: rgba(232, 244, 238, .68);
  display: block;
  font-size: .9rem;
  line-height: 1.45;
}

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

.ot-audit-console,
.ot-food-model {
  background:
    radial-gradient(circle at 16% 18%, rgba(53, 211, 157, .24), transparent 28%),
    radial-gradient(circle at 86% 10%, rgba(119, 243, 199, .14), transparent 30%),
    linear-gradient(145deg, rgba(8, 20, 17, .98), rgba(17, 48, 39, .97) 52%, rgba(6, 15, 13, .98));
  border: 1px solid rgba(119, 243, 199, .24);
  border-radius: var(--ot-radius);
  box-shadow:
    0 30px 76px rgba(11, 47, 36, .18),
    inset 0 1px 0 rgba(255, 255, 255, .12);
  color: #fff;
  margin: clamp(30px, 5vw, 58px) 0;
  overflow: hidden;
  padding: clamp(24px, 4vw, 40px);
  position: relative;
}

.ot-audit-console:before,
.ot-food-model:before {
  background-image:
    linear-gradient(rgba(119, 243, 199, .1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119, 243, 199, .08) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(115deg, transparent 8%, #000 34%, #000 68%, transparent 94%);
  opacity: .38;
  pointer-events: none;
  position: absolute;
}

.ot-audit-console > *,
.ot-food-model > * {
  position: relative;
  z-index: 1;
}

.ot-audit-kicker,
.ot-food-kicker {
  color: var(--ot-green);
  display: block;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .18em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.ot-audit-console h3,
.ot-food-model h3 {
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.75rem);
  line-height: 1.06;
  margin: 0 0 16px;
  max-width: 900px;
}

.ot-audit-console p,
.ot-food-model p {
  color: rgba(232, 244, 238, .82);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.62;
  margin-bottom: 0;
  max-width: 900px;
}

.ot-audit-workspace {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  margin-top: clamp(26px, 4vw, 38px);
}

.ot-audit-query,
.ot-audit-answer {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .045)),
    rgba(11, 31, 26, .66);
  border: 1px solid rgba(119, 243, 199, .22);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  overflow: hidden;
  padding: 20px;
}

.ot-audit-query strong,
.ot-audit-answer strong {
  color: #fff;
  display: block;
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 14px;
}

.ot-audit-question {
  background: rgba(255, 255, 255, .92);
  border-radius: 6px;
  color: #15382f;
  font-size: 1.02rem;
  font-weight: 820;
  line-height: 1.35;
  padding: 18px;
}

.ot-audit-answer ul,
.ot-food-model ul {
  display: grid;
  gap: 12px;
  margin: 0;
}

.ot-audit-answer li,
.ot-food-model li {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(119, 243, 199, .16);
  border-radius: 6px;
  box-shadow: none;
  color: rgba(232, 244, 238, .78);
  padding: 14px 14px 14px 42px;
}

.ot-audit-answer li:hover,
.ot-audit-answer li:focus-within,
.ot-food-model li:hover,
.ot-food-model li:focus-within {
  background:
    linear-gradient(145deg, rgba(53, 211, 157, .14), rgba(255, 255, 255, .055)),
    rgba(11, 31, 26, .72);
  border-color: rgba(119, 243, 199, .28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .1),
    0 16px 34px rgba(6, 28, 22, .18);
  color: rgba(244, 255, 250, .92);
  transform: translateY(-1px);
}

.ot-audit-answer li:before,
.ot-food-model li:before {
  height: 10px;
  left: 18px;
  top: 20px;
  width: 10px;
}

.ot-audit-answer li:after,
.ot-food-model li:after {
  display: none;
}

.ot-food-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(26px, 4vw, 38px);
}

.ot-food-grid div {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .045)),
    rgba(11, 31, 26, .66);
  border: 1px solid rgba(119, 243, 199, .22);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  min-height: 150px;
  padding: 18px;
}

.ot-food-grid strong {
  color: #fff;
  display: block;
  font-size: 1rem;
  line-height: 1.18;
  margin-bottom: 10px;
}

.ot-food-grid span {
  color: rgba(232, 244, 238, .68);
  display: block;
  font-size: .9rem;
  line-height: 1.45;
}

.ot-scenario-panel,
.ot-knowledge-panel {
  background:
    radial-gradient(circle at 12% 18%, rgba(53, 211, 157, .26), transparent 30%),
    radial-gradient(circle at 86% 12%, rgba(119, 243, 199, .16), transparent 32%),
    linear-gradient(145deg, rgba(10, 24, 20, .98), rgba(18, 48, 39, .96) 54%, rgba(7, 17, 15, .98));
  border: 1px solid rgba(119, 243, 199, .24);
  border-radius: var(--ot-radius);
  box-shadow:
    0 30px 76px rgba(11, 47, 36, .2),
    inset 0 1px 0 rgba(255, 255, 255, .12);
  color: #fff;
  margin: clamp(30px, 5vw, 58px) 0;
  overflow: hidden;
  padding: clamp(26px, 4vw, 42px);
  position: relative;
}

.ot-scenario-panel:before,
.ot-knowledge-panel:before {
  background-image:
    linear-gradient(rgba(119, 243, 199, .1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119, 243, 199, .08) 1px, transparent 1px);
  background-size: 36px 36px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(115deg, transparent 7%, #000 36%, #000 66%, transparent 94%);
  opacity: .42;
  pointer-events: none;
  position: absolute;
  transform: translate3d(-18px, -14px, 0);
}

.ot-scenario-panel:before {
  animation: otDataGridDrift 18s linear infinite;
}

.ot-scenario-panel:after,
.ot-knowledge-panel:after {
  background:
    linear-gradient(100deg, transparent 0 18%, rgba(119, 243, 199, .18) 32%, transparent 48%),
    linear-gradient(90deg, rgba(53, 211, 157, .42), transparent 68%);
  content: "";
  height: 1px;
  left: 0;
  opacity: .82;
  position: absolute;
  right: 0;
  top: 0;
}

.ot-digital-twin-scenario {
  background:
    radial-gradient(circle at 20% 28%, rgba(53, 211, 157, .28), transparent 30%),
    radial-gradient(circle at 76% 18%, rgba(119, 243, 199, .18), transparent 34%),
    radial-gradient(circle at 50% 115%, rgba(53, 211, 157, .2), transparent 32%),
    linear-gradient(145deg, rgba(8, 20, 17, .98), rgba(17, 48, 39, .97) 48%, rgba(6, 15, 13, .98));
}

.ot-scenario-panel > *,
.ot-knowledge-panel > * {
  position: relative;
  z-index: 1;
}

.ot-scenario-kicker,
.ot-knowledge-kicker {
  color: var(--ot-green);
  display: block;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .18em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.ot-scenario-panel h3,
.ot-knowledge-panel h3 {
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  line-height: 1.06;
  margin: 0 0 16px;
  max-width: 880px;
}

.ot-scenario-panel p,
.ot-knowledge-panel p {
  color: rgba(232, 244, 238, .82);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.62;
  margin-bottom: 0;
  max-width: 900px;
}

.ot-scenario-flow {
  align-items: stretch;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: clamp(26px, 4vw, 38px);
  position: relative;
}

.ot-scenario-flow:before {
  background:
    linear-gradient(90deg, transparent, rgba(89, 255, 196, .58), rgba(89, 255, 196, .16), transparent);
  content: "";
  height: 2px;
  left: 8%;
  opacity: .72;
  position: absolute;
  right: 8%;
  top: 27px;
  transform: translateY(-50%);
}

.ot-scenario-flow:after {
  animation: otSignalTravel 5.8s ease-in-out infinite;
  background:
    radial-gradient(circle, rgba(255, 255, 255, .9) 0 15%, rgba(89, 255, 196, .92) 17% 42%, rgba(89, 255, 196, .2) 43% 66%, transparent 68%);
  border-radius: 999px;
  box-shadow: 0 0 30px rgba(89, 255, 196, .34);
  content: "";
  height: 22px;
  left: 8%;
  position: absolute;
  top: 16px;
  width: 22px;
  z-index: 2;
}

.ot-scenario-node,
.ot-knowledge-node {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .045)),
    rgba(11, 31, 26, .64);
  border: 1px solid rgba(119, 243, 199, .22);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  overflow: hidden;
  padding: 18px;
  position: relative;
}

.ot-scenario-node {
  animation: otNodeBreathe 7s ease-in-out infinite;
}

.ot-scenario-node:nth-child(2) {
  animation-delay: .35s;
}

.ot-scenario-node:nth-child(3) {
  animation-delay: .7s;
}

.ot-scenario-node:nth-child(4) {
  animation-delay: 1.05s;
}

.ot-scenario-node:nth-child(5) {
  animation-delay: 1.4s;
}

.ot-scenario-node:after {
  background:
    linear-gradient(115deg, transparent 0 22%, rgba(255, 255, 255, .12) 38%, transparent 54%),
    linear-gradient(90deg, rgba(89, 255, 196, .22), transparent 76%);
  content: "";
  inset: 0;
  opacity: .28;
  pointer-events: none;
  position: absolute;
  transform: translateX(-35%);
}

.ot-scenario-node:before,
.ot-knowledge-node:before {
  background:
    radial-gradient(circle, rgba(89, 255, 196, .78) 0 28%, rgba(89, 255, 196, .18) 29% 58%, transparent 60%),
    rgba(53, 211, 157, .1);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(53, 211, 157, .22);
  content: "";
  display: block;
  height: 18px;
  margin-bottom: 16px;
  width: 18px;
}

.ot-scenario-node strong,
.ot-knowledge-node strong {
  color: #fff;
  display: block;
  font-size: 1rem;
  line-height: 1.18;
  margin-bottom: 9px;
}

.ot-scenario-node span,
.ot-knowledge-node span {
  color: rgba(232, 244, 238, .68);
  display: block;
  font-size: .9rem;
  line-height: 1.45;
}

.ot-knowledge-layout {
  display: grid;
  gap: clamp(18px, 3vw, 30px);
  grid-template-columns: minmax(0, 1fr) minmax(260px, .62fr);
  margin-top: clamp(26px, 4vw, 40px);
}

.ot-knowledge-stack {
  display: grid;
  gap: 12px;
}

.ot-knowledge-orbit {
  align-items: center;
  aspect-ratio: 1;
  background:
    radial-gradient(circle, rgba(53, 211, 157, .26) 0 10%, transparent 11%),
    radial-gradient(circle, transparent 0 33%, rgba(119, 243, 199, .18) 34% 35%, transparent 36% 54%, rgba(119, 243, 199, .14) 55% 56%, transparent 57%),
    linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
  border: 1px solid rgba(119, 243, 199, .2);
  border-radius: 50%;
  display: grid;
  justify-items: center;
  min-height: 260px;
  overflow: hidden;
  padding: 28px;
  position: relative;
}

.ot-knowledge-orbit:before {
  animation: otOrbitSweep 8s linear infinite;
  background: conic-gradient(from 0deg, transparent 0 64%, rgba(89, 255, 196, .28), transparent 76% 100%);
  content: "";
  inset: -18%;
  position: absolute;
}

.ot-knowledge-orbit strong {
  color: #fff;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1;
  max-width: 220px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.ot-knowledge-orbit span {
  color: rgba(232, 244, 238, .7);
  display: block;
  font-size: .9rem;
  line-height: 1.45;
  margin-top: 12px;
}

.ot-industrial-cockpit {
  background:
    radial-gradient(circle at 16% 16%, rgba(53, 211, 157, .24), transparent 30%),
    radial-gradient(circle at 86% 8%, rgba(119, 243, 199, .14), transparent 32%),
    linear-gradient(145deg, rgba(8, 20, 17, .98), rgba(17, 48, 39, .97) 52%, rgba(6, 15, 13, .98));
  border: 1px solid rgba(119, 243, 199, .24);
  border-radius: var(--ot-radius);
  box-shadow:
    0 30px 76px rgba(11, 47, 36, .18),
    inset 0 1px 0 rgba(255, 255, 255, .12);
  color: #fff;
  margin: clamp(30px, 5vw, 58px) 0;
  overflow: hidden;
  padding: clamp(26px, 4vw, 42px);
  position: relative;
}

.ot-industrial-cockpit:before {
  animation: otDataGridDrift 20s linear infinite;
  background-image:
    linear-gradient(rgba(119, 243, 199, .1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119, 243, 199, .08) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(115deg, transparent 6%, #000 32%, #000 72%, transparent 96%);
  opacity: .38;
  pointer-events: none;
  position: absolute;
  transform: translate3d(-18px, -14px, 0);
}

.ot-industrial-cockpit:after {
  background:
    linear-gradient(100deg, transparent 0 18%, rgba(119, 243, 199, .2) 32%, transparent 48%),
    linear-gradient(90deg, rgba(53, 211, 157, .42), transparent 68%);
  content: "";
  height: 1px;
  left: 0;
  opacity: .82;
  position: absolute;
  right: 0;
  top: 0;
}

.ot-industrial-cockpit > * {
  position: relative;
  z-index: 1;
}

.ot-cockpit-kicker {
  color: var(--ot-green);
  display: block;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .18em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.ot-industrial-cockpit h3 {
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.75rem);
  line-height: 1.06;
  margin: 0 0 16px;
  max-width: 940px;
}

.ot-industrial-cockpit p {
  color: rgba(232, 244, 238, .82);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.62;
  margin-bottom: 0;
  max-width: 900px;
}

.ot-energy-simulator {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.3fr);
  margin-top: clamp(26px, 4vw, 40px);
}

.ot-energy-panel,
.ot-machine-value-panel,
.ot-predictive-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .045)),
    rgba(11, 31, 26, .66);
  border: 1px solid rgba(119, 243, 199, .22);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  overflow: hidden;
  padding: 20px;
  position: relative;
}

.ot-energy-panel strong,
.ot-machine-value-panel strong,
.ot-predictive-panel strong {
  color: #fff;
  display: block;
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 14px;
}

.ot-energy-panel span,
.ot-machine-value-panel span,
.ot-predictive-panel span {
  color: rgba(232, 244, 238, .68);
  display: block;
  font-size: .9rem;
  line-height: 1.45;
}

.ot-energy-meters,
.ot-predictive-signals {
  display: grid;
  gap: 13px;
}

.ot-energy-meter,
.ot-predictive-signal {
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(119, 243, 199, .15);
  border-radius: 8px;
  padding: 14px;
}

.ot-energy-meter b,
.ot-predictive-signal b {
  color: rgba(244, 255, 250, .94);
  display: flex;
  font-size: .88rem;
  justify-content: space-between;
  line-height: 1.25;
  margin-bottom: 10px;
}

.ot-energy-bar,
.ot-predictive-bar {
  background: rgba(244, 255, 250, .12);
  border-radius: 999px;
  height: 9px;
  overflow: hidden;
  position: relative;
}

.ot-energy-bar i,
.ot-predictive-bar i {
  animation: otMeterPulse 5.8s ease-in-out infinite;
  background: linear-gradient(90deg, rgba(53, 211, 157, .82), rgba(119, 243, 199, .96));
  border-radius: inherit;
  box-shadow: 0 0 24px rgba(89, 255, 196, .2);
  display: block;
  height: 100%;
  width: var(--ot-meter, 62%);
}

.ot-energy-meter:nth-child(2) .ot-energy-bar i,
.ot-predictive-signal:nth-child(2) .ot-predictive-bar i {
  animation-delay: .8s;
}

.ot-energy-meter:nth-child(3) .ot-energy-bar i,
.ot-predictive-signal:nth-child(3) .ot-predictive-bar i {
  animation-delay: 1.6s;
}

.ot-simulation-chain,
.ot-machine-chain,
.ot-predictive-chain {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ot-simulation-chain,
.ot-machine-chain,
.ot-predictive-chain {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ot-simulation-step,
.ot-machine-step,
.ot-predictive-step {
  animation: otNodeBreathe 7s ease-in-out infinite;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .045)),
    rgba(11, 31, 26, .62);
  border: 1px solid rgba(119, 243, 199, .22);
  border-radius: 8px;
  min-height: 148px;
  padding: 18px;
  position: relative;
}

.ot-simulation-step:nth-child(2),
.ot-machine-step:nth-child(2),
.ot-predictive-step:nth-child(2) {
  animation-delay: .45s;
}

.ot-simulation-step:nth-child(3),
.ot-machine-step:nth-child(3),
.ot-predictive-step:nth-child(3) {
  animation-delay: .9s;
}

.ot-simulation-step:nth-child(4),
.ot-machine-step:nth-child(4),
.ot-predictive-step:nth-child(4) {
  animation-delay: 1.35s;
}

.ot-simulation-step:before,
.ot-machine-step:before,
.ot-predictive-step:before {
  background:
    radial-gradient(circle, rgba(255, 255, 255, .92) 0 13%, rgba(89, 255, 196, .92) 14% 42%, rgba(89, 255, 196, .2) 43% 66%, transparent 68%),
    rgba(53, 211, 157, .12);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(53, 211, 157, .22);
  content: "";
  display: block;
  height: 20px;
  margin-bottom: 15px;
  width: 20px;
}

.ot-simulation-step strong,
.ot-machine-step strong,
.ot-predictive-step strong {
  color: #fff;
  display: block;
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.18;
  margin-bottom: 9px;
}

.ot-simulation-step span,
.ot-machine-step span,
.ot-predictive-step span {
  color: rgba(232, 244, 238, .7);
  display: block;
  font-size: .92rem;
  line-height: 1.48;
}

.ot-machine-canvas,
.ot-predictive-canvas {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.4fr);
  margin-top: clamp(26px, 4vw, 40px);
}

.ot-machine-unit {
  align-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(119, 243, 199, .16), transparent 31%),
    radial-gradient(circle at 50% 50%, rgba(53, 211, 157, .08) 0 24%, transparent 25%),
    linear-gradient(145deg, rgba(13, 39, 32, .92), rgba(8, 24, 20, .96));
  border: 1px solid rgba(119, 243, 199, .2);
  border-radius: 8px;
  display: grid;
  justify-items: center;
  min-height: 300px;
  overflow: hidden;
  padding: 24px;
  position: relative;
}

.ot-machine-unit:before {
  background:
    linear-gradient(90deg, transparent, rgba(89, 255, 196, .2), transparent),
    linear-gradient(180deg, transparent, rgba(89, 255, 196, .36), transparent);
  content: "";
  height: 64%;
  left: 50%;
  opacity: .34;
  position: absolute;
  top: 18%;
  transform: translateX(-50%);
  width: 2px;
}

.ot-machine-unit:after {
  animation: otOrbitSweep 9s linear infinite;
  background:
    conic-gradient(from 0deg, transparent 0 58%, rgba(89, 255, 196, .32), rgba(255, 255, 255, .12), transparent 78% 100%);
  border: 1px solid rgba(119, 243, 199, .2);
  border-radius: 50%;
  content: "";
  height: min(220px, 72%);
  opacity: .88;
  position: absolute;
  width: min(220px, 72%);
}

.ot-machine-core {
  background:
    linear-gradient(145deg, rgba(235, 255, 247, .96), rgba(198, 238, 221, .9) 58%, rgba(157, 218, 193, .84));
  border: 1px solid rgba(255, 255, 255, .54);
  border-radius: 999px;
  box-shadow:
    0 24px 54px rgba(0, 0, 0, .22),
    0 0 34px rgba(89, 255, 196, .18),
    inset 0 1px 0 rgba(255, 255, 255, .78);
  color: #102d25;
  display: inline-flex;
  font-size: clamp(.74rem, .95vw, .86rem);
  font-weight: 900;
  justify-content: center;
  letter-spacing: .07em;
  line-height: 1.15;
  max-width: 92%;
  min-width: min(82%, 310px);
  padding: 16px 38px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 1;
}

.ot-machine-core:before,
.ot-machine-core:after {
  background:
    radial-gradient(circle, rgba(255, 255, 255, .92) 0 14%, rgba(53, 211, 157, .9) 15% 44%, rgba(53, 211, 157, .22) 45% 68%, transparent 70%);
  border-radius: 50%;
  content: "";
  height: 13px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
}

.ot-machine-core:before {
  left: 17px;
}

.ot-machine-core:after {
  right: 17px;
}

.ot-asset-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(26px, 4vw, 38px);
}

.ot-asset-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .045)),
    rgba(11, 31, 26, .66);
  border: 1px solid rgba(119, 243, 199, .22);
  border-radius: 8px;
  min-height: 142px;
  overflow: hidden;
  padding: 18px;
  position: relative;
}

.ot-asset-card:before {
  background: linear-gradient(90deg, rgba(53, 211, 157, .62), rgba(119, 243, 199, .14), transparent);
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.ot-asset-card strong {
  color: #fff;
  display: block;
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 9px;
}

.ot-asset-card span {
  color: rgba(232, 244, 238, .68);
  display: block;
  font-size: .9rem;
  line-height: 1.45;
}

@keyframes otMeterPulse {
  0%, 100% {
    opacity: .74;
    transform: scaleX(.94);
    transform-origin: left center;
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes otOrbitSweep {
  to {
    transform: rotate(360deg);
  }
}

@keyframes otDataGridDrift {
  to {
    transform: translate3d(18px, 14px, 0);
  }
}

@keyframes otSignalTravel {
  0%, 100% {
    left: 8%;
    opacity: .25;
  }

  12% {
    opacity: 1;
  }

  88% {
    opacity: 1;
  }

  50% {
    transform: translateX(-50%) scale(1.08);
  }

  100% {
    left: calc(92% - 22px);
  }
}

@keyframes otNodeBreathe {
  0%, 100% {
    border-color: rgba(119, 243, 199, .2);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .08),
      0 0 0 rgba(53, 211, 157, 0);
    transform: translateY(0);
  }

  42% {
    border-color: rgba(119, 243, 199, .34);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .12),
      0 18px 36px rgba(53, 211, 157, .08);
    transform: translateY(-2px);
  }
}

.ot-related {
  border-top: 1px solid var(--ot-paper-line);
  margin-top: clamp(42px, 6vw, 72px);
  padding-top: 32px;
}

.ot-industrial-questions {
  background:
    radial-gradient(circle at 9% 12%, rgba(53, 211, 157, .18), transparent 28%),
    radial-gradient(circle at 92% 22%, rgba(20, 127, 104, .12), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, .66), rgba(222, 237, 230, .76));
  border: 1px solid rgba(23, 51, 43, .12);
  border-radius: var(--ot-radius);
  box-shadow:
    0 22px 62px rgba(16, 67, 51, .1),
    inset 0 1px 0 rgba(255, 255, 255, .74);
  margin-top: 56px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 46px);
  position: relative;
}

.ot-industrial-questions:before {
  background-image:
    linear-gradient(rgba(14, 168, 121, .1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 168, 121, .08) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(120deg, transparent 18%, rgba(0, 0, 0, .72), transparent 78%);
  opacity: .48;
  pointer-events: none;
  position: absolute;
}

.ot-industrial-questions > * {
  position: relative;
  z-index: 1;
}

.ot-question-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.ot-question-card {
  background:
    linear-gradient(150deg, rgba(20, 32, 29, .96), rgba(24, 53, 45, .9) 62%, rgba(13, 31, 26, .96)),
    var(--ot-bg);
  border: 1px solid rgba(119, 243, 199, .22);
  border-radius: var(--ot-radius);
  box-shadow:
    0 18px 42px rgba(11, 47, 36, .16),
    inset 0 1px 0 rgba(255, 255, 255, .11);
  color: #fff;
  display: block;
  min-height: 178px;
  overflow: hidden;
  padding: 24px 24px 22px;
  position: relative;
  transition: border-color .24s ease, box-shadow .24s ease, transform .24s ease;
}

.ot-question-card:before {
  background:
    radial-gradient(circle, rgba(89, 255, 196, .82) 0 26%, rgba(89, 255, 196, .2) 28% 56%, transparent 58%),
    rgba(53, 211, 157, .12);
  border: 1px solid rgba(135, 255, 213, .34);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(53, 211, 157, .26);
  content: "";
  height: 16px;
  position: absolute;
  right: 22px;
  top: 22px;
  width: 16px;
}

.ot-question-card:after {
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent),
    repeating-linear-gradient(135deg, rgba(119, 243, 199, .07) 0 1px, transparent 1px 11px);
  content: "";
  inset: 0;
  opacity: .42;
  pointer-events: none;
  position: absolute;
  transform: translateX(-24%);
  transition: opacity .3s ease, transform .52s ease;
}

.ot-question-card:hover,
.ot-question-card:focus-visible {
  border-color: rgba(119, 243, 199, .52);
  box-shadow:
    0 26px 62px rgba(11, 47, 36, .22),
    0 0 28px rgba(53, 211, 157, .12),
    inset 0 1px 0 rgba(255, 255, 255, .16);
  color: #fff;
  outline: none;
  transform: translateY(-5px);
}

.ot-question-card:hover:after,
.ot-question-card:focus-visible:after {
  opacity: .72;
  transform: translateX(10%);
}

.ot-question-card strong,
.ot-question-card span {
  display: block;
  position: relative;
  z-index: 1;
}

.ot-question-card strong {
  color: #fff;
  font-size: 1.12rem;
  line-height: 1.25;
  margin: 0 34px 14px 0;
}

.ot-question-card span {
  color: rgba(215, 229, 223, .82);
  font-size: .96rem;
  line-height: 1.55;
}

.ot-related-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 14px;
}

.ot-related-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,.86), rgba(226,239,233,.72)),
    var(--ot-paper-soft);
  border: 1px solid rgba(23, 51, 43, .12);
  border-radius: var(--ot-radius);
  box-shadow:
    0 12px 34px rgba(16, 67, 51, .07),
    inset 0 1px 0 rgba(255,255,255,.72);
  display: block;
  padding: 20px 20px 20px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color .24s ease, box-shadow .24s ease, transform .24s ease;
}

.ot-related-card:before {
  background:
    linear-gradient(180deg, rgba(53, 211, 157, .86), rgba(14, 168, 121, .16)),
    radial-gradient(circle at 90% 12%, rgba(53, 211, 157, .2), transparent 32%);
  content: "";
  inset: 14px auto 14px 12px;
  opacity: .8;
  pointer-events: none;
  position: absolute;
  width: 3px;
  transition: opacity .24s ease;
}

.ot-related-card:after {
  background: radial-gradient(circle at 88% 24%, rgba(53, 211, 157, .16), transparent 30%);
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity .24s ease, transform .24s ease;
}

.ot-related-card:hover {
  border-color: rgba(14, 168, 121, .28);
  box-shadow: 0 18px 44px rgba(16, 67, 51, .12);
  transform: translateY(-4px);
}

.ot-related-card:hover:after {
  opacity: 1;
}

.ot-related-card strong {
  color: var(--ot-paper-ink);
  display: block;
  font-size: 1.02rem;
  line-height: 1.25;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.ot-related-card span {
  color: var(--ot-paper-muted);
  display: block;
  font-size: .94rem;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

.ot-download-asset {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(53, 211, 157, .18), transparent 42%),
    rgba(255, 255, 255, .78);
  border: 1px solid rgba(31, 111, 91, .22);
  border-radius: var(--ot-radius);
  box-shadow: 0 18px 42px rgba(16, 67, 51, .12);
  display: grid;
  gap: 22px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  margin: clamp(28px, 4vw, 48px) 0;
  padding: clamp(20px, 3vw, 30px);
}

.ot-download-mark {
  align-items: center;
  background: var(--ot-bg);
  border: 1px solid rgba(53, 211, 157, .34);
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.07), 0 12px 24px rgba(16, 67, 51, .18);
  color: var(--ot-green);
  display: inline-flex;
  font-size: .84rem;
  font-weight: 900;
  height: 56px;
  justify-content: center;
  letter-spacing: .08em;
  width: 56px;
}

.ot-download-asset h2 {
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  margin: 0 0 8px;
}

.ot-download-asset p:not(.ot-kicker) {
  color: var(--ot-paper-muted);
  margin: 0;
}

.ot-page-cta {
  align-items: center;
  background:
    radial-gradient(circle at 82% 22%, rgba(53, 211, 157, .18), transparent 26%),
    linear-gradient(135deg, rgba(53, 211, 157, .22), transparent 44%),
    var(--ot-bg);
  border-radius: var(--ot-radius);
  box-shadow: 0 22px 56px rgba(16, 67, 51, .16);
  color: #fff;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: clamp(34px, 5vw, 62px);
  overflow: hidden;
  padding: clamp(24px, 4vw, 38px);
  position: relative;
}

.ot-page-cta:after {
  animation: ot-grid-drift 28s linear infinite;
  background-image:
    linear-gradient(rgba(53, 211, 157, .14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 211, 157, .12) 1px, transparent 1px);
  background-size: 38px 38px;
  content: "";
  inset: 0;
  opacity: .22;
  pointer-events: none;
  position: absolute;
}

.ot-page-cta > * {
  position: relative;
  z-index: 1;
}

.ot-page-cta h2 {
  color: #fff;
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  margin: 0 0 10px;
}

.ot-page-cta p {
  color: rgba(255,255,255,.78);
  margin: 0;
}

.ot-cta-actions {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.ot-cta-actions .ot-button {
  min-width: 190px;
}

.wpcf7 {
  background: var(--ot-paper-soft);
  border: 1px solid var(--ot-paper-line);
  border-radius: var(--ot-radius);
  box-shadow: 0 18px 48px rgba(16, 67, 51, .12);
  margin-top: 34px;
  padding: 28px;
}

.wpcf7 label {
  color: var(--ot-paper-ink);
  font-weight: 780;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea,
.search-field {
  background: #fbfdfb;
  border: 1px solid rgba(23, 51, 43, .18);
  border-radius: 6px;
  color: var(--ot-paper-ink);
  font: inherit;
  margin-top: 8px;
  padding: 13px 14px;
  width: 100%;
}

.wpcf7 textarea {
  min-height: 220px;
}

.wpcf7 input[type="submit"],
.search-submit {
  background: var(--ot-green);
  border: 0;
  border-radius: 6px;
  color: #07100d;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  padding: 13px 24px;
}

.ot-footer {
  background: #090c0e;
  border-top: 1px solid var(--ot-line);
  color: var(--ot-muted);
  padding: 46px 0 28px;
}

.ot-footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.1fr .9fr .8fr;
}

.ot-footer h2,
.ot-footer h3 {
  color: #fff;
  font-size: 1rem;
  margin: 0 0 10px;
}

.ot-footer p {
  margin: 0 0 10px;
}

.ot-footer-bottom {
  border-top: 1px solid var(--ot-line);
  color: rgba(255,255,255,.52);
  font-size: .88rem;
  margin-top: 34px;
  padding-top: 22px;
}

.ot-footer-links {
  display: inline-flex;
  gap: 12px;
  margin-left: 12px;
}

.ot-footer-links a {
  color: rgba(255,255,255,.72);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ot-footer-links a:hover {
  color: var(--ot-green);
}

@media (min-width: 760px) {
  .ot-content ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .ot-header-inner {
    align-items: center;
    flex-direction: row;
    gap: 16px;
    min-height: 68px;
    padding: 10px 0;
    position: relative;
  }

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

  .ot-brand-payoff {
    display: none;
  }

  .ot-menu-toggle {
    align-items: center;
    background: rgba(53, 211, 157, .14);
    border: 1px solid rgba(53, 211, 157, .44);
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-size: .88rem;
    font-weight: 850;
    min-height: 42px;
    padding: 9px 13px;
  }

  .ot-nav {
    background: rgba(20, 32, 29, .98);
    border: 1px solid var(--ot-line);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(0,0,0,.28);
    display: none;
    left: 18px;
    max-height: min(72vh, 560px);
    overflow: auto;
    overscroll-behavior: contain;
    padding: 10px;
    position: absolute;
    right: 18px;
    -webkit-overflow-scrolling: touch;
    top: calc(100% + 6px);
    z-index: 80;
  }

  .ot-menu-open .ot-nav {
    display: block;
  }

  .ot-nav-list {
    align-items: stretch;
    display: grid;
    gap: 4px;
    justify-content: stretch;
  }

  .ot-nav a {
    -webkit-tap-highlight-color: rgba(53, 211, 157, .22);
    border: 1px solid transparent;
    color: rgba(255, 255, 255, .9);
    font-size: .98rem;
    padding: 12px 12px;
    touch-action: manipulation;
  }

  .ot-nav-has-children > a {
    background: rgba(53, 211, 157, .08);
    border-color: rgba(53, 211, 157, .16);
    color: var(--ot-green);
    cursor: default;
    font-size: .76rem;
    font-weight: 850;
    letter-spacing: .12em;
    margin-bottom: 4px;
    pointer-events: none;
    text-transform: uppercase;
  }

  .ot-nav a:active,
  .ot-nav a:focus-visible {
    background: rgba(53, 211, 157, .12);
    border-color: rgba(53, 211, 157, .28);
    color: #fff;
  }

  .ot-nav-has-children > a:after {
    display: none;
  }

  .ot-submenu {
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 6px;
    box-shadow: none;
    box-sizing: border-box;
    display: grid;
    gap: 3px;
    left: auto;
    margin: 0 0 4px;
    min-width: 0;
    opacity: 1;
    padding: 6px;
    pointer-events: auto;
    position: static;
    transform: none;
    transition: none;
    width: 100%;
  }

  .ot-nav-has-children:hover .ot-submenu,
  .ot-nav-has-children:focus-within .ot-submenu {
    left: auto;
    opacity: 1;
    pointer-events: auto;
    position: static;
    transform: none;
    width: 100%;
  }

  .ot-submenu:before {
    display: none;
  }

  .ot-submenu a {
    background:
      linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(53, 211, 157, .05)),
      rgba(255, 255, 255, .035);
    border: 1px solid rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .9);
    padding: 12px;
  }

  .ot-submenu strong {
    color: #fff;
    font-size: .95rem;
    margin-bottom: 2px;
  }

  .ot-submenu span {
    color: rgba(215, 229, 223, .62);
    display: block;
    font-size: .76rem;
    line-height: 1.3;
  }

  .ot-grid,
  .ot-footer-grid,
  .ot-split,
  .ot-home-trust,
  .ot-proof-strip,
  .ot-page-cta {
    grid-template-columns: 1fr;
  }

  .ot-page-cta .ot-button {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .ot-wrap {
    padding: 0 18px;
  }

  body.admin-bar .ot-site-header {
    top: 0;
  }

  .ot-hero,
  .ot-hero-inner {
    min-height: 600px;
  }

  .ot-hero h1 {
    font-size: clamp(2.25rem, 14vw, 3.15rem);
    max-width: 96vw;
  }

  .ot-hero-subtitle {
    font-size: 1.03rem;
    line-height: 1.55;
  }

  .ot-hero-inner {
    align-items: center;
    padding-bottom: 54px;
    padding-top: 88px;
  }

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

  .ot-button {
    min-height: 48px;
    width: 100%;
  }

  .ot-hero-metrics {
    gap: 8px;
  }

  .ot-hero-metrics a {
    font-size: .74rem;
    min-height: 42px;
    padding: 9px 12px;
  }

  .ot-hero-metrics a:before {
    height: 9px;
    width: 9px;
  }

  .ot-motion-grid {
    opacity: .18;
  }

  .ot-nav a {
    padding: 8px 9px;
  }

  .ot-featured {
    height: 280px;
  }

  .ot-featured img {
    object-fit: cover;
    object-position: 62% center;
  }

  .ot-section {
    padding: 46px 0;
  }

  .ot-section h2,
  .ot-content h1,
  .ot-content h2 {
    font-size: clamp(1.72rem, 9vw, 2.28rem);
    line-height: 1.12;
  }

  .ot-content ul {
    gap: 12px;
  }

  .ot-content li {
    padding: 20px 18px 20px 50px;
  }

  .ot-content li:before {
    height: 12px;
    left: 22px;
    top: 27px;
    width: 12px;
  }

  .ot-copy {
    padding: 18px;
  }

  .ot-inline-visual {
    margin: 24px 0;
    padding: 5px;
  }

  .ot-download-asset {
    grid-template-columns: 1fr;
  }

  .ot-download-mark {
    height: 50px;
    width: 50px;
  }

  .ot-related-grid {
    grid-template-columns: 1fr;
  }

  .ot-trust-panel {
    gap: 0;
  }

  .ot-trust-line {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .ot-trust-line span {
    margin-bottom: 2px;
  }

  .ot-case-highlight,
  .ot-rd-lane,
  .ot-deliverable-grid,
  .ot-audit-workspace,
  .ot-food-grid,
  .ot-scenario-flow,
  .ot-knowledge-layout,
  .ot-energy-simulator,
  .ot-simulation-chain,
  .ot-machine-canvas,
  .ot-machine-chain,
  .ot-asset-grid,
  .ot-predictive-canvas,
  .ot-predictive-chain,
  .ot-proof-grid {
    grid-template-columns: 1fr;
  }

  .ot-rd-board,
  .ot-deliverable-board,
  .ot-audit-console,
  .ot-food-model,
  .ot-scenario-panel,
  .ot-knowledge-panel,
  .ot-industrial-cockpit {
    padding: 22px;
  }

  .ot-rd-lane:before,
  .ot-scenario-flow:before,
  .ot-scenario-flow:after {
    display: none;
  }

  .ot-machine-unit {
    min-height: 220px;
  }

  .ot-knowledge-orbit {
    aspect-ratio: auto;
    border-radius: var(--ot-radius);
    min-height: 220px;
  }

  .ot-case-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .ot-question-grid {
    grid-template-columns: 1fr;
  }

  .ot-industrial-questions {
    padding: 22px;
  }

  .ot-page-cta {
    padding: 22px;
  }

  .ot-page-cta .ot-button {
    justify-self: stretch;
  }

  .ot-cta-actions {
    justify-content: stretch;
  }

  .ot-cta-actions .ot-button {
    flex: 1 1 100%;
    min-width: 0;
  }

  .ot-card {
    padding: 20px;
  }

  .wpcf7 {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ot-motion-grid {
    animation: none;
  }

  .ot-scenario-panel:before,
  .ot-scenario-flow:after,
  .ot-scenario-node,
  .ot-knowledge-orbit:before,
  .ot-industrial-cockpit:before,
  .ot-energy-bar i,
  .ot-predictive-bar i,
  .ot-simulation-step,
  .ot-machine-step,
  .ot-predictive-step,
  .ot-machine-unit:after {
    animation: none;
  }

  .ot-hero:before,
  .ot-featured:before,
  .ot-hero-inner,
  .ot-page-cta:after {
    animation: none;
  }

  .ot-button,
  .ot-card,
  .ot-content li,
  .ot-hero-metrics a,
  .ot-hero-metrics a:after,
  .ot-scenario-node,
  .ot-knowledge-node,
  .ot-simulation-step,
  .ot-machine-step,
  .ot-predictive-step,
  .ot-asset-card,
  .ot-related-card {
    transition: none;
  }
}
