:root {
  --bg: #070a0f;
  --bg-2: #0c1118;
  --panel: #151722;
  --panel-2: #1f2029;
  --line: rgba(139, 165, 185, 0.18);
  --text: #f5f7fb;
  --muted: #8fa0ad;
  --teal: #19c8b5;
  --teal-2: #2e8d91;
  --cyan: #36bdf2;
  --amber: #f6a20a;
  --red: #f04d4e;
  --magenta: #b540e9;
  --green: #42d077;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
  --radius: 8px;
  --font-body: "M PLUS Rounded 1c", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-title: "Encode Sans SC", "M PLUS Rounded 1c", system-ui, sans-serif;
  --font-number: "Signika", "M PLUS Rounded 1c", system-ui, sans-serif;
}

@property --idle-float {
  syntax: "<length>";
  inherits: false;
  initial-value: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0;
}

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

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

button {
  font: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ambient-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(rgba(25, 200, 181, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 200, 181, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 25% 10%, rgba(25, 200, 181, 0.16), transparent 34%),
    radial-gradient(circle at 82% 42%, rgba(246, 162, 10, 0.12), transparent 30%),
    linear-gradient(180deg, #0d0e16 0%, #070a0f 45%, #0b1111 100%);
  background-size: 58px 58px, 58px 58px, auto, auto, auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  height: 70px;
  padding: 0 clamp(18px, 4vw, 64px);
  background: rgba(31, 32, 41, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.brand img {
  width: 138px;
  height: auto;
}

.status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 16px rgba(66, 208, 119, 0.9);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
  margin-left: auto;
  color: #b7c2cc;
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 500;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--teal);
}

.header-action,
.primary-button,
.secondary-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 20px;
  border: 0;
  border-radius: 18px 0 18px 0;
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
  font-family: var(--font-title);
  letter-spacing: 0;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.header-action::before,
.primary-button::before,
.secondary-button::before {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(25, 200, 181, 0.48);
  border-radius: 22px 0 22px 0;
  pointer-events: none;
  transition: inset 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.header-action,
.primary-button {
  background: linear-gradient(135deg, rgba(25, 200, 181, 0.95), rgba(54, 189, 242, 0.86));
  color: #f5ffff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 10px 22px rgba(0, 0, 0, 0.22);
}

.secondary-button {
  background: rgba(255, 255, 255, 0.075);
  color: #f1f7fb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 10px 22px rgba(0, 0, 0, 0.2);
}

.header-action:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: perspective(600px) rotateX(4deg) rotateY(-5deg) translateY(-2px);
}

.header-action:hover::before,
.primary-button:hover::before,
.secondary-button:hover::before {
  inset: -7px;
  border-color: rgba(246, 162, 10, 0.62);
  transform: translateZ(-1px);
}

.section-band {
  position: relative;
  padding: clamp(72px, 8vw, 132px) clamp(18px, 5vw, 76px);
}

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  padding-top: 116px;
  padding-bottom: 76px;
  overflow: hidden;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.youtube-bg,
.youtube-bg iframe {
  position: absolute;
  inset: 0;
}

.youtube-bg iframe {
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78vh);
  height: max(56.25vw, 100vh);
  transform: translate(-50%, -50%);
  border: 0;
  opacity: 0.82;
  filter: saturate(1.16) contrast(1.08) brightness(0.9);
  pointer-events: none;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 10, 15, 0.98) 0%, rgba(7, 10, 15, 0.94) 32%, rgb(43 95 103 / 62%) 47%, rgb(163 52 71 / 36%) 58%, rgb(112 143 79 / 18%) 100%),
    linear-gradient(180deg, rgba(7, 10, 15, 0.1) 0%, rgba(7, 10, 15, 0.04) 68%, rgba(7, 10, 15, 0.48) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 33px;
  font-family: var(--font-title);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-logo {
  width: clamp(260px, 42vw, 690px);
  height: auto;
  margin: 0 0 24px;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.5));
}

.hero-subtitle {
  max-width: 900px;
  margin-bottom: 22px;
  line-height: 1.08;
}

.hero-copy {
  max-width: 760px;
  margin: 28px 0 0;
  color: #c8d2da;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(190px, 1fr));
  gap: 12px;
  max-width: 1180px;
  margin-top: 46px;
}

.hero-metrics div {
  position: relative;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 86px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(21, 23, 34, 0.84), rgba(12, 19, 24, 0.78));
  overflow: hidden;
}

.hero-metrics .metric-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 18px 0 18px 0;
  background: rgba(25, 200, 181, 0.08);
  color: rgba(54, 189, 242, 0.92);
  font-family: "Material Symbols Rounded";
  font-size: 54px;
  font-weight: 400;
  line-height: 1;
  text-transform: none;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  box-shadow: inset 0 0 0 1px rgba(54, 189, 242, 0.26);
}

.hero-metrics .metric-icon.latency {
  color: var(--cyan);
  box-shadow: inset 0 0 0 1px rgba(54, 189, 242, 0.34);
}

.hero-metrics .metric-icon.risk {
  color: var(--amber);
  background: rgba(246, 162, 10, 0.08);
  box-shadow: inset 0 0 0 1px rgba(246, 162, 10, 0.34);
}

.hero-metrics .metric-icon.data {
  color: var(--teal);
  box-shadow: inset 0 0 0 1px rgba(25, 200, 181, 0.34);
}

.hero-metrics .metric-icon.ai {
  color: var(--magenta);
  background: rgba(181, 64, 233, 0.08);
  box-shadow: inset 0 0 0 1px rgba(181, 64, 233, 0.34);
}

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

.hero-metrics strong {
  display: block;
  color: #fff;
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1;
  font-family: var(--font-number);
  font-weight: 599;
  font-variation-settings: "GRAD" -2;
}

.hero-metrics .metric-copy > span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}


.section-heading {
  max-width: 920px;
  margin-bottom: 34px;
}

.section-heading h2,
.showcase-copy h2,
.demo-card h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 70px);
  line-height: 1.02;
  font-family: var(--font-title);
  font-weight: 680;
  font-variation-settings: "wdth" 100;
}

.intro-section {
  padding-top: 56px;
}

.market-scene {
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 8%, rgba(25, 200, 181, 0.16), transparent 28%),
    radial-gradient(circle at 82% 38%, rgba(246, 162, 10, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(10, 17, 24, 0.94), rgba(6, 10, 14, 0.96));
}

.market-scene::before,
.market-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.market-scene::before {
  opacity: 0.58;
  background:
    linear-gradient(rgba(54, 189, 242, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 200, 181, 0.08) 1px, transparent 1px);
  background-size: 74px 74px;
  transform-origin: 50% 0%;
  transform: perspective(780px) rotateX(62deg) translateY(-34%) scale(1.65);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.34) 62%, transparent 100%);
}

.market-scene::after {
  background:
    radial-gradient(ellipse at 50% 13%, rgba(216, 242, 239, 0.18), transparent 9%),
    linear-gradient(90deg, rgba(7, 10, 15, 0.1), rgba(7, 10, 15, 0.68));
  mix-blend-mode: screen;
  opacity: 0.35;
}

.market-scene-alt {
  background:
    radial-gradient(circle at 70% 18%, rgba(181, 64, 233, 0.1), transparent 30%),
    radial-gradient(circle at 20% 50%, rgba(25, 200, 181, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(8, 13, 19, 0.98), rgba(7, 10, 15, 0.96));
}

.market-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.48;
  filter: saturate(1.16);
}

.market-scene > :not(.market-canvas) {
  position: relative;
  z-index: 1;
}

.intro-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.intro-grid article,
.feature-grid article,
.strip-card,
.pipe-node {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(31, 32, 41, 0.86), rgba(13, 18, 26, 0.86));
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.2);
}

.intro-grid article {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(31, 32, 41, 0.9), rgba(9, 14, 20, 0.86)),
    radial-gradient(circle at 84% 8%, rgba(25, 200, 181, 0.16), transparent 32%);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.intro-grid article::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--cyan), var(--amber));
  opacity: 0.55;
  transform: scaleX(0.24);
  transform-origin: left;
  transition: transform 260ms ease, opacity 260ms ease;
}

.intro-grid article:hover {
  transform: perspective(900px) rotateX(2deg) rotateY(-2deg) translateY(-4px);
  border-color: rgba(25, 200, 181, 0.42);
  background:
    linear-gradient(145deg, rgba(37, 40, 52, 0.92), rgba(10, 18, 24, 0.9)),
    radial-gradient(circle at 84% 8%, rgba(54, 189, 242, 0.18), transparent 34%);
}

.intro-grid article:hover::after {
  opacity: 0.95;
  transform: scaleX(1);
}

.module-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.module-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(25, 200, 181, 0.35);
  border-radius: var(--radius);
  color: var(--teal);
  font-family: var(--font-number);
  font-weight: 599;
  font-variation-settings: "GRAD" -2;
}

.module-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 20px 0 20px 0;
  background: rgba(25, 200, 181, 0.08);
  color: rgba(54, 189, 242, 0.9);
  font-family: "Material Symbols Rounded";
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  text-transform: none;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  box-shadow: inset 0 0 0 1px rgba(54, 189, 242, 0.28);
}

.intro-grid article:nth-child(2) .module-icon {
  color: var(--teal);
  box-shadow: inset 0 0 0 1px rgba(25, 200, 181, 0.32);
}

.intro-grid article:nth-child(3) .module-icon {
  color: var(--amber);
  background: rgba(246, 162, 10, 0.08);
  box-shadow: inset 0 0 0 1px rgba(246, 162, 10, 0.32);
}

.intro-grid article:nth-child(4) .module-icon {
  color: var(--magenta);
  background: rgba(181, 64, 233, 0.08);
  box-shadow: inset 0 0 0 1px rgba(181, 64, 233, 0.32);
}

h3 {
  margin: 22px 0 10px;
  font-size: 20px;
  font-family: var(--font-title);
  font-weight: 453;
  font-variation-settings: "wdth" 100;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.showcase-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 92px);
}

.showcase-copy p:not(.eyebrow),
.demo-card p:not(.eyebrow) {
  max-width: 680px;
  font-size: 17px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.check-list span {
  padding: 13px 14px;
  border: 1px solid rgba(25, 200, 181, 0.22);
  border-radius: var(--radius);
  background: rgba(25, 200, 181, 0.07);
  color: #d9fbf7;
  font-size: 13px;
  font-weight: 500;
}

.tilt-frame {
  position: relative;
  transform: perspective(1200px) rotateY(-7deg) rotateX(2deg);
  border: 1px solid rgba(25, 200, 181, 0.3);
  border-radius: var(--radius);
  background: #101620;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  appearance: none;
  transition: transform 220ms ease, border-color 220ms ease;
}

.tilt-frame:hover {
  transform: perspective(1200px) rotateY(-5deg) rotateX(3deg) translateY(-3px);
  border-color: rgba(246, 162, 10, 0.5);
}

.tilt-frame img,
.tilt-frame iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 0;
}

.tilt-frame iframe {
  display: block;
  height: auto;
}

.play-mark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.play-mark::before {
  content: "";
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
}

.play-mark::after {
  content: "";
  position: absolute;
  margin-left: 4px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid rgba(255, 255, 255, 0.9);
}

.feature-section {
  position: relative;
  overflow: hidden;
  min-height: 980px;
  background:
    radial-gradient(circle at 18% 0%, rgba(25, 200, 181, 0.14), transparent 28%),
    radial-gradient(circle at 86% 16%, rgba(181, 64, 233, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(31, 32, 41, 0.2), rgba(9, 12, 18, 0.92));
}

.feature-section .section-heading {
  position: relative;
  z-index: 2;
  max-width: min(880px, 58vw);
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.capability-visual {
  position: absolute;
  z-index: 1;
  top: clamp(84px, 10vw, 142px);
  right: clamp(-170px, -8vw, -70px);
  width: min(58vw, 980px);
  pointer-events: none;
  filter: drop-shadow(0 36px 64px rgba(0, 0, 0, 0.5)) saturate(1.08);
  transform: translate3d(0, calc(var(--scroll-float, 0px) + var(--idle-float, 0px)), 0) rotateZ(-1deg);
  animation: capabilityFloat 6.4s ease-in-out infinite;
  will-change: transform;
  transition: opacity 260ms ease, transform 260ms ease;
}

.feature-section.capability-active .capability-visual {
  opacity: 0;
  transform: translate3d(0, -18px, 0) scale(0.96) rotateZ(-1deg);
}

@keyframes capabilityFloat {
  0%, 100% {
    --idle-float: -8px;
  }
  50% {
    --idle-float: 12px;
  }
}

.feature-grid {
  position: relative;
  z-index: 2;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.feature-grid article {
  position: relative;
  color: var(--teal);
  min-height: 280px;
  padding: 24px;
  overflow: hidden;
  cursor: pointer;
  transform: perspective(950px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(var(--lift, 0));
  transform-style: preserve-3d;
  transition: transform 110ms ease, opacity 220ms ease, border-color 220ms ease, background 220ms ease;
  will-change: transform;
}

.feature-grid article:nth-child(2) { color: var(--cyan); }
.feature-grid article:nth-child(3) { color: var(--amber); }
.feature-grid article:nth-child(4) { color: var(--magenta); }
.feature-grid article:nth-child(5) { color: var(--red); }
.feature-grid article:nth-child(6) { color: var(--green); }

.feature-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 38%),
    radial-gradient(circle at 88% 12%, currentColor, transparent 22%);
  opacity: 0.08;
  pointer-events: none;
}

.feature-grid article::after {
  content: "";
  position: absolute;
  inset: auto 24px 20px 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  opacity: 0.36;
}

.feature-grid article:hover,
.feature-grid article:focus-visible {
  --lift: -5px;
  border-color: color-mix(in srgb, currentColor 52%, transparent);
  outline: none;
}

.capability-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  border-radius: 22px 0 22px 0;
  background: rgba(25, 200, 181, 0.08);
  color: var(--teal);
  font-family: "Material Symbols Rounded";
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  text-transform: none;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, currentColor 44%, transparent);
}

.capability-kicker {
  max-width: 132px;
  color: currentColor;
  font-family: var(--font-title);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.2;
  text-align: right;
  text-transform: uppercase;
}

.capability-card h3 {
  color: #f4fbff;
  margin-top: 0;
  font-size: clamp(23px, 2.2vw, 31px);
}

.capability-card > p {
  margin-bottom: 0;
  font-size: 16px;
}

.capability-detail {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.capability-panel-visual {
  display: none;
}

.detail-block {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
  transform: translateZ(0);
}

.detail-block:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, currentColor 46%, transparent);
  background: rgba(255, 255, 255, 0.078);
}

.detail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 15px 0 15px 0;
  color: currentColor;
  font-family: "Material Symbols Rounded";
  font-size: 34px;
  line-height: 1;
  text-transform: none;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, currentColor 38%, transparent);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, text-shadow 220ms ease;
  transform: translateZ(0);
}

.detail-block:hover .detail-icon {
  transform: translateY(-8px) scale(1.06);
  background: rgba(255, 255, 255, 0.09);
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, currentColor 58%, transparent),
    0 18px 38px color-mix(in srgb, currentColor 28%, transparent);
  text-shadow: 0 7px 16px color-mix(in srgb, currentColor 42%, transparent);
}

.detail-block b {
  display: block;
  color: #f4fbff;
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 680;
  line-height: 1.12;
}

.detail-block p {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.55;
}

.detail-block code {
  color: #ddf7ff;
  font-family: var(--font-number);
  font-size: 0.96em;
}

.capability-close {
  position: absolute;
  top: 44px;
  left: 184px;
  right: auto;
  z-index: 12;
  display: none;
  min-height: 34px;
  padding: 0 16px;
  border: 0;
  border-radius: 17px 0 17px 0;
  background: rgba(18, 22, 31, 0.72);
  color: #fff;
  font-family: var(--font-title);
  font-weight: 500;
  cursor: pointer;
  backdrop-filter: blur(12px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14), 0 14px 26px rgba(0, 0, 0, 0.3);
}

.feature-grid.has-active {
  grid-template-columns: 1fr;
}

.feature-grid.has-active .capability-card:not(.is-active) {
  display: none;
}

.capability-card.is-active {
  min-height: 540px;
  padding: clamp(24px, 4vw, 42px);
  cursor: default;
  color: var(--teal);
  --lift: 0;
  overflow: visible;
}

.capability-card.is-active::after {
  inset: auto 42px 26px 42px;
}

.capability-card.is-active .feature-icon {
  width: 112px;
  height: 112px;
  font-size: 72px;
}

.capability-card.is-active h3 {
  max-width: 860px;
  font-size: clamp(40px, 5vw, 78px);
  line-height: 0.98;
}

.capability-card.is-active > p {
  max-width: min(920px, 54%);
  font-size: clamp(18px, 1.8vw, 24px);
}

.capability-card.is-active .capability-panel-visual {
  display: block;
  position: absolute;
  z-index: 2;
  top: clamp(-84px, -5vw, -38px);
  right: clamp(92px, 10vw, 168px);
  width: min(42vw, 760px);
  max-height: 410px;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 34px 58px rgba(0, 0, 0, 0.46)) saturate(1.07);
  animation: activePanelFloat 5.6s ease-in-out infinite;
}

.capability-card.is-active .capability-detail {
  position: static;
}

.capability-card.is-active .capability-detail {
  display: grid;
}

.capability-card.is-active .capability-close {
  display: inline-flex;
  align-items: center;
}

@keyframes activePanelFloat {
  0%, 100% {
    transform: translateY(-8px) rotateZ(-1deg);
  }
  50% {
    transform: translateY(12px) rotateZ(0.6deg);
  }
}

.feature-icon.teal { color: var(--teal); background: rgba(25, 200, 181, 0.08); }
.feature-icon.cyan { color: var(--cyan); background: rgba(54, 189, 242, 0.08); }
.feature-icon.amber { color: var(--amber); background: rgba(246, 162, 10, 0.08); }
.feature-icon.magenta { color: var(--magenta); background: rgba(181, 64, 233, 0.08); }
.feature-icon.red { color: var(--red); background: rgba(240, 77, 78, 0.08); }
.feature-icon.green { color: var(--green); background: rgba(66, 208, 119, 0.08); }

.row-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  max-width: none;
}

.gallery-controls {
  display: flex;
  gap: 10px;
}

.icon-button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  font-family: var(--font-number);
  font-weight: 599;
}

.coverflow {
  position: relative;
  min-height: clamp(360px, 55vw, 680px);
  perspective: 1200px;
  overflow: hidden;
  touch-action: pan-y;
}

.cover-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(78vw, 980px);
  transform: translateX(-50%);
  border: 1px solid rgba(25, 200, 181, 0.26);
  border-radius: var(--radius);
  overflow: hidden;
  background: #111821;
  box-shadow: var(--shadow);
  transition: transform 450ms ease, opacity 450ms ease, filter 450ms ease;
}

.cover-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.cover-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(9, 12, 18, 0.78);
  backdrop-filter: blur(16px);
}

.cover-card span {
  color: var(--teal);
  font-size: 12px;
  font-family: var(--font-title);
  font-weight: 500;
  text-transform: uppercase;
}

.cover-card b {
  font-size: clamp(15px, 2vw, 22px);
  font-family: var(--font-title);
  font-weight: 453;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 20px;
}

.strip-card {
  overflow: hidden;
}

.strip-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.strip-card h3,
.strip-card p {
  padding-left: 18px;
  padding-right: 18px;
}

.strip-card p {
  padding-bottom: 18px;
}

.pipeline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px minmax(0, 1fr) 36px minmax(0, 1fr) 36px minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
}

.pipe-node {
  min-height: 240px;
  padding: 22px;
}

.pipe-node span {
  color: var(--amber);
  font-size: 65px;
  font-family: var(--font-number);
  font-weight: 599;
  font-variation-settings: "GRAD" -2;
}

.pipe-line {
  align-self: center;
  height: 2px;
  background: linear-gradient(90deg, rgba(25, 200, 181, 0.05), var(--teal), rgba(246, 162, 10, 0.45));
}

.comparison-table {
  overflow: clip;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(17, 21, 31, 0.92), rgba(7, 12, 17, 0.92)),
    radial-gradient(circle at 92% 10%, rgba(25, 200, 181, 0.15), transparent 28%);
  box-shadow: var(--shadow);
}

.comparison-table [role="row"] {
  display: grid;
  grid-template-columns: minmax(210px, 0.85fr) repeat(3, minmax(230px, 1fr));
  align-items: stretch;
  min-height: 122px;
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, transform 180ms ease;
}

.comparison-table [role="row"]:last-child {
  border-bottom: 0;
}

.comparison-table span {
  display: block;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5df;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.comparison-table span:last-child {
  border-right: 0;
  background: linear-gradient(135deg, rgba(25, 200, 181, 0.08), rgba(54, 189, 242, 0.035));
}

.table-head {
  min-height: 76px !important;
  background: rgba(25, 200, 181, 0.08);
}

.table-head span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-size: 16px;
  font-family: var(--font-title);
  font-weight: 680;
  text-transform: uppercase;
}

.table-head i,
.cap-name i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Material Symbols Rounded";
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-transform: none;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
}

.table-head i {
  width: 34px;
  height: 34px;
  border-radius: 10px 0 10px 0;
  background: rgba(25, 200, 181, 0.08);
  font-size: 23px;
}

.cap-name {
  color: #f4fbff !important;
  background: rgba(255, 255, 255, 0.035);
}

.cap-name i {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 16px 0 16px 0;
  color: var(--cyan);
  background: rgba(54, 189, 242, 0.08);
  box-shadow: inset 0 0 0 1px rgba(54, 189, 242, 0.28);
  font-size: 38px;
}

.cap-name b {
  display: block;
  max-width: 210px;
  font-family: var(--font-title);
  font-size: 21px;
  font-weight: 680;
  line-height: 1.08;
}

.status {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 12px;
  padding: 5px 9px;
  border-radius: 12px 0 12px 0;
  font-family: var(--font-title);
  font-size: 12px;
  font-style: normal;
  font-weight: 680;
  line-height: 1.1;
  text-transform: uppercase;
}

.status.bad {
  color: #ffb2b2;
  background: rgba(240, 77, 78, 0.12);
}

.status.mid {
  color: #ffd58b;
  background: rgba(246, 162, 10, 0.12);
}

.status.good {
  color: #9ffbe7;
  background: rgba(25, 200, 181, 0.13);
}

.comparison-table [role="row"]:not(.table-head):hover {
  background: rgba(255, 255, 255, 0.035);
  transform: translateY(-2px);
}

.demo-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(280px, 1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(181, 64, 233, 0.25);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(31, 32, 41, 0.94), rgba(26, 13, 39, 0.64));
}

.datasheet-section {
  background:
    radial-gradient(circle at 15% 12%, rgba(54, 189, 242, 0.12), transparent 30%),
    radial-gradient(circle at 86% 20%, rgba(246, 162, 10, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(7, 10, 15, 0.96), rgba(10, 15, 22, 0.98));
}

.datasheet-shell {
  border: 1px solid rgba(25, 200, 181, 0.24);
  border-radius: var(--radius);
  background: rgba(13, 18, 26, 0.84);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.datasheet-shell summary {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 18px;
  min-height: 118px;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
  background:
    linear-gradient(135deg, rgba(25, 200, 181, 0.12), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.03);
}

.datasheet-shell summary::-webkit-details-marker {
  display: none;
}

.datasheet-summary-icon,
.datasheet-shell summary > i,
.datasheet-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Material Symbols Rounded";
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-transform: none;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.datasheet-summary-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px 0 20px 0;
  color: var(--cyan);
  background: rgba(54, 189, 242, 0.08);
  box-shadow: inset 0 0 0 1px rgba(54, 189, 242, 0.32);
  font-size: 46px;
}

.datasheet-shell summary b {
  display: block;
  color: #f4fbff;
  font-family: var(--font-title);
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 680;
  line-height: 0.96;
}

.datasheet-shell summary em {
  display: block;
  margin-top: 10px;
  color: var(--teal);
  font-family: var(--font-body);
  font-size: clamp(16px, 1.6vw, 22px);
  font-style: normal;
  font-weight: 500;
}

.datasheet-shell summary > i {
  width: 46px;
  height: 46px;
  border-radius: 14px 0 14px 0;
  color: var(--teal);
  background: rgba(25, 200, 181, 0.08);
  font-size: 32px;
  transition: transform 220ms ease;
}

.datasheet-shell[open] summary > i {
  transform: rotate(180deg);
}

.datasheet-intro {
  padding: 28px clamp(22px, 4vw, 42px) 0;
}

.datasheet-intro p {
  max-width: 1080px;
  margin: 0;
  font-size: 18px;
}

.datasheet-tier {
  padding: clamp(26px, 4vw, 42px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tier-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.tier-heading span {
  color: var(--amber);
  font-family: var(--font-number);
  font-size: 20px;
  font-weight: 599;
}

.tier-heading h3 {
  max-width: 760px;
  margin: 0;
  text-align: right;
  font-size: clamp(24px, 3vw, 44px);
}

.datasheet-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.datasheet-card {
  position: relative;
  min-height: 310px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(31, 32, 41, 0.86), rgba(9, 14, 20, 0.9)),
    radial-gradient(circle at 85% 8%, rgba(25, 200, 181, 0.1), transparent 34%);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.datasheet-card:hover {
  transform: translateY(-5px);
  border-color: rgba(25, 200, 181, 0.36);
}

.datasheet-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px 0 18px 0;
  color: var(--teal);
  background: rgba(25, 200, 181, 0.08);
  box-shadow: inset 0 0 0 1px rgba(25, 200, 181, 0.3);
  font-size: 40px;
}

.datasheet-card h4 {
  margin: 22px 0 14px;
  color: #f4fbff;
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 680;
  line-height: 1.08;
}

.datasheet-card p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.5;
}

.datasheet-card p:last-child {
  margin-bottom: 0;
}

.datasheet-card b {
  color: #e9f8f6;
}

.demo-card img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 76px);
  border-top: 1px solid var(--line);
  background: #07090d;
}

.site-footer img {
  width: 142px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--teal);
  font-weight: 500;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-grid article.reveal.is-visible {
  transform: perspective(950px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(var(--lift, 0));
}

@media (max-width: 1060px) {
  .hero,
  .showcase-split,
  .demo-card {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-detail {
    grid-template-columns: 1fr;
  }

  .capability-card.is-active > p {
    max-width: 100%;
  }

  .capability-card.is-active .capability-panel-visual {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 760px);
    max-height: none;
    margin: 24px auto 0;
  }

  .feature-section .section-heading {
    max-width: 100%;
    min-height: 360px;
  }

  .capability-visual {
    top: 110px;
    right: -210px;
    width: min(92vw, 760px);
    opacity: 0.72;
  }

  .pipeline {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pipe-line {
    width: 2px;
    height: 34px;
    justify-self: center;
  }

  .product-strip {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 780px) {
  .site-header {
    height: 64px;
  }

  .brand img {
    width: 112px;
  }

  .brand span:last-child,
  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 96px;
  }

  .hero-logo {
    width: min(84vw, 430px);
  }

  .hero-metrics,
  .intro-grid,
  .feature-grid,
  .check-list {
    grid-template-columns: 1fr;
  }

  .capability-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .capability-kicker {
    max-width: none;
    text-align: left;
  }

  .capability-card.is-active .feature-icon {
    width: 88px;
    height: 88px;
    font-size: 58px;
  }

  .capability-close {
    top: 24px;
    left: auto;
    right: 24px;
  }

  .feature-section .section-heading {
    min-height: 520px;
  }

  .capability-visual {
    top: 200px;
    right: -180px;
    width: 125vw;
    opacity: 0.58;
  }

  .row-heading {
    align-items: start;
    flex-direction: column;
  }

  .coverflow {
    min-height: 360px;
  }

  .cover-card {
    width: 88vw;
  }

  .cover-card div {
    position: static;
    align-items: start;
    flex-direction: column;
  }

  .comparison-table [role="row"] {
    grid-template-columns: 1fr;
  }

  .comparison-table span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px;
    font-size: 14px;
  }

  .comparison-table span:last-child {
    border-bottom: 0;
  }

  .table-head {
    display: none !important;
  }

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

  .datasheet-shell summary {
    grid-template-columns: 1fr;
  }

  .datasheet-shell summary > i {
    justify-self: start;
  }

  .tier-heading {
    align-items: start;
    flex-direction: column;
  }

  .tier-heading h3 {
    text-align: left;
  }

  .datasheet-grid {
    grid-template-columns: 1fr;
  }
}
