:root {
  --bg: #06070d;
  --bg-elevated: rgba(12, 14, 24, 0.82);
  --bg-soft: rgba(11, 13, 22, 0.94);
  --bg-card: rgba(14, 17, 28, 0.72);
  --line: rgba(130, 106, 255, 0.18);
  --line-soft: rgba(130, 106, 255, 0.09);
  --text: #f4f7ff;
  --text-soft: rgba(244, 247, 255, 0.72);
  --muted: rgba(244, 247, 255, 0.48);
  --gold: #8b5cf6;
  --gold-deep: #6d4cff;
  --gold-soft: #c084fc;
  --steel: #8d93ab;
  --shadow: 0 18px 48px rgba(8, 10, 20, 0.32);
  --radius-lg: 4px;
  --radius-md: 4px;
  --radius-sm: 4px;
  --shell: min(1240px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top center, rgba(192, 132, 252, 0.18), transparent 24%),
    radial-gradient(circle at 80% 18%, rgba(109, 76, 255, 0.16), transparent 20%),
    linear-gradient(180deg, #06070d 0%, #0a0d16 52%, #090b12 100%);
}

canvas {
  display: block;
  width: 100%;
  height: 100%;
}

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

button {
  font: inherit;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(8, 10, 18, 0.78);
  border-bottom: 0.5px solid var(--line-soft);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0.5px solid rgba(130, 106, 255, 0.34);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.86rem;
  font-weight: 600;
  color: #fff;
}

.brand-copy strong,
.footer-brand {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.brand-copy small {
  color: var(--muted);
}

.main-nav,
.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 14px;
}

.main-nav a,
.footer-links a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-soft);
}

.main-nav a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.main-nav a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
}

.main-nav a.is-active {
  color: var(--text);
}

.main-nav a.is-active::after {
  transform: scaleX(1);
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border: 0.5px solid rgba(130, 106, 255, 0.18);
  background: rgba(16, 18, 30, 0.9);
}

.lang-btn {
  min-width: 52px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--text-soft);
  font-weight: 700;
  cursor: pointer;
}

.lang-btn.is-active {
  background: linear-gradient(135deg, rgba(192, 132, 252, 0.92), rgba(109, 76, 255, 0.92));
  color: #fff;
}

.nav-cta,
.btn,
.play-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.nav-cta {
  min-height: 44px;
  padding: 0 18px;
  border: 0.5px solid rgba(130, 106, 255, 0.22);
  background: linear-gradient(135deg, rgba(192, 132, 252, 0.92), rgba(109, 76, 255, 0.92));
  font-weight: 700;
  color: #fff;
}

.nav-cta:hover,
.btn:hover,
.play-button:hover,
.slider-btn:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
}

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

.hero-overlay,
.demo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 14, 0.88) 0%, rgba(8, 10, 18, 0.58) 42%, rgba(7, 8, 14, 0.84) 100%),
    linear-gradient(180deg, rgba(68, 44, 144, 0.12), rgba(12, 14, 24, 0.44));
}

.hero-content,
.demo-content {
  position: relative;
  z-index: 1;
}

.hero-content {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) 260px;
  grid-template-rows: 1fr auto;
  gap: 20px;
  align-items: end;
  padding: 78px 0 42px;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow,
.capability-no,
.card-tag,
.value-body small {
  margin: 0 0 14px;
  display: inline-block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.hero-title,
.section-head h2,
.capability-copy h2,
.story-copy h2,
.demo-copy h2,
.cta-panel h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.98;
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 5.6rem);
}

.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(18px);
  animation: rise-in 0.7s ease forwards;
}

.hero-title .line:nth-child(2) { animation-delay: 0.12s; }
.hero-title .line:nth-child(3) { animation-delay: 0.24s; }

@keyframes rise-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-desc,
.section-head p,
.capability-copy p,
.value-body p,
.usecase-card p,
.story-copy p,
.testimonial-card p,
.demo-copy p,
.cta-panel p,
.site-footer p,
.glass-card p,
.hero-glass p {
  color: var(--text-soft);
  line-height: 1.75;
}

.hero-desc {
  max-width: 38rem;
  margin: 18px 0 0;
  font-size: 1.02rem;
}

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

.btn,
.play-button {
  min-height: 52px;
  padding: 0 22px;
  border: 0.5px solid rgba(130, 106, 255, 0.16);
  font-weight: 700;
}

.btn-primary,
.play-button {
  background: linear-gradient(135deg, rgba(192, 132, 252, 0.88), rgba(109, 76, 255, 0.94));
  box-shadow: 0 14px 32px rgba(73, 48, 184, 0.22);
  color: #fff;
}

.btn-secondary {
  background: rgba(14, 17, 28, 0.72);
  color: var(--text);
}

.btn-arrow {
  position: relative;
  width: 22px;
  height: 10px;
  overflow: hidden;
}

.btn-arrow::before,
.btn-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.24s ease;
}

.btn-arrow::before { left: 0; }
.btn-arrow::after { left: 8px; }

.btn:hover .btn-arrow::before,
.btn:hover .btn-arrow::after {
  transform: translate(8px, -50%) rotate(45deg);
}

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

.hero-tags span {
  min-height: 36px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border: 0.5px solid rgba(130, 106, 255, 0.18);
  background: rgba(18, 22, 36, 0.78);
  color: rgba(244, 247, 255, 0.82);
  font-size: 0.86rem;
}

.hero-glass,
.glass-card {
  border: 0.5px solid rgba(130, 106, 255, 0.18);
  background: rgba(12, 15, 26, 0.62);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-glass {
  padding: 18px 18px 16px;
}

.hero-glass--main {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  margin-top: 26px;
}

.hero-glass--side {
  grid-column: 2;
  grid-row: 2;
  margin-bottom: 10px;
}

.hero-glass small,
.glass-card small {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-glass strong,
.glass-card strong {
  display: block;
  margin: 10px 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.9rem;
}

.platform-section {
  padding-top: 0;
}

.capability-slider {
  border-top: 0.5px solid var(--line);
  border-bottom: 0.5px solid var(--line);
  background: linear-gradient(180deg, rgba(8, 10, 18, 0.94), rgba(11, 13, 22, 0.98));
}

.capability-slide {
  display: none;
  min-height: 100vh;
  padding: 0;
}

.capability-slide.is-active {
  display: block;
}

.capability-grid {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 24px;
}

.capability-copy {
  max-width: 520px;
}

.capability-copy h2,
.section-head h2,
.story-copy h2,
.demo-copy h2,
.cta-panel h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.capability-copy ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.capability-copy li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
}

.capability-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
}

.capability-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-left: 0.5px solid var(--line-soft);
  background:
    radial-gradient(circle at 50% 50%, rgba(109, 76, 255, 0.18), transparent 24%),
    radial-gradient(circle at 60% 38%, rgba(192, 132, 252, 0.12), transparent 18%);
}

.capability-visual::before,
.capability-visual::after {
  content: "";
  position: absolute;
}

.capability-visual--vision::before {
  inset: 50%;
  width: 260px;
  height: 260px;
  margin: -130px 0 0 -130px;
  border-radius: 50%;
  border: 1px solid rgba(130, 106, 255, 0.38);
  box-shadow:
    0 0 0 80px rgba(109, 76, 255, 0.05),
    0 0 0 160px rgba(192, 132, 252, 0.03);
}

.capability-visual--vision::after {
  inset: 50%;
  width: 420px;
  height: 420px;
  margin: -210px 0 0 -210px;
  border-radius: 50%;
  border: 1px dashed rgba(130, 106, 255, 0.16);
  animation: rotate 18s linear infinite;
}

.capability-visual--motion::before {
  left: 14%;
  right: 14%;
  top: 24%;
  bottom: 24%;
  border: 1px solid rgba(130, 106, 255, 0.14);
  transform: rotate(-10deg);
}

.capability-visual--motion::after {
  left: 24%;
  top: 50%;
  width: 52%;
  height: 1px;
  background: linear-gradient(90deg, rgba(109, 76, 255, 0), rgba(109, 76, 255, 0.72), rgba(109, 76, 255, 0));
  box-shadow:
    0 -120px 0 rgba(192, 132, 252, 0.08),
    0 120px 0 rgba(109, 76, 255, 0.08);
}

.capability-visual--control::before {
  left: 18%;
  right: 18%;
  bottom: 18%;
  height: 240px;
  background:
    linear-gradient(90deg,
      rgba(192, 132, 252, 0.08) 0%,
      rgba(109, 76, 255, 0.46) 20%,
      rgba(99, 61, 255, 0.22) 100%);
  clip-path: polygon(0 100%, 0 82%, 18% 82%, 18% 40%, 36% 40%, 36% 66%, 56% 66%, 56% 20%, 76% 20%, 76% 54%, 100% 54%, 100% 100%);
}

.capability-visual--control::after {
  left: 24%;
  right: 24%;
  top: 20%;
  height: 1px;
  background: rgba(130, 106, 255, 0.12);
  box-shadow: 0 110px 0 rgba(130, 106, 255, 0.12), 0 220px 0 rgba(130, 106, 255, 0.12);
}

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

.glass-card {
  position: absolute;
  left: 34px;
  bottom: 34px;
  width: min(340px, calc(100% - 68px));
  padding: 20px;
}

.slider-footer {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 0.5px solid var(--line);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  padding: 0;
  background: rgba(244, 247, 255, 0.16);
  cursor: pointer;
}

.slider-dots button.is-active {
  width: 28px;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold-deep));
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.slider-btn {
  position: relative;
  width: 46px;
  height: 46px;
  border: 0.5px solid rgba(130, 106, 255, 0.18);
  background: rgba(16, 18, 30, 0.88);
  cursor: pointer;
}

.slider-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #f4f7ff;
  border-right: 2px solid #f4f7ff;
  transform: translate(-40%, -50%) rotate(-135deg);
}

.slider-btn--next::before {
  transform: translate(-60%, -50%) rotate(45deg);
}

.logo-wall,
.value-section,
.metrics-section,
.usecase-section,
.stories-section,
.cta-section,
.page-section {
  padding: 88px 0;
}

.page-hero {
  padding: 96px 0 48px;
}

.page-hero-inner {
  max-width: 860px;
}

.page-hero h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.02;
}

.page-hero p:last-child {
  max-width: 48rem;
  margin: 18px 0 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.logo-strip span {
  min-height: 78px;
  display: grid;
  place-items: center;
  border: 0.5px solid var(--line);
  background: rgba(11, 14, 24, 0.72);
  color: rgba(244, 247, 255, 0.26);
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.08em;
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.value-grid,
.metrics-grid,
.story-grid {
  display: grid;
  gap: 20px;
}

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

.value-card,
.metric-card,
.usecase-card,
.testimonial-card,
.cta-panel {
  background: var(--bg-card);
  border: 0.5px solid var(--line);
  box-shadow: var(--shadow);
}

.value-card {
  overflow: hidden;
}

.value-visual {
  min-height: 260px;
  position: relative;
  background:
    radial-gradient(circle at 50% 50%, rgba(109, 76, 255, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(14, 17, 29, 0.9), rgba(10, 13, 22, 0.96));
}

.value-visual::before,
.value-visual::after {
  content: "";
  position: absolute;
}

.value-visual--retrofit::before {
  inset: 22px;
  border: 1px solid rgba(130, 106, 255, 0.12);
  background:
    linear-gradient(90deg, rgba(130, 106, 255, 0.07) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(rgba(192, 132, 252, 0.05) 1px, transparent 1px) 0 0 / 44px 44px;
}

.value-visual--greenfield::before {
  inset: 50%;
  width: 220px;
  height: 220px;
  margin: -110px 0 0 -110px;
  border-radius: 50%;
  border: 1px solid rgba(130, 106, 255, 0.28);
  box-shadow:
    0 0 0 70px rgba(109, 76, 255, 0.04),
    0 0 0 140px rgba(192, 132, 252, 0.025);
}

.value-visual--greenfield::after {
  inset: 50%;
  width: 280px;
  height: 280px;
  margin: -140px 0 0 -140px;
  border-radius: 50%;
  border: 1px dashed rgba(130, 106, 255, 0.12);
}

.value-body {
  padding: 26px;
}

.value-body h3,
.usecase-card h3 {
  margin: 10px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.45rem;
  line-height: 1.16;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.kpi-grid div {
  padding: 18px 16px;
  border: 0.5px solid rgba(130, 106, 255, 0.14);
  background: rgba(17, 20, 32, 0.8);
}

.kpi-grid strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.7rem;
}

.kpi-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

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

.metric-card {
  padding: 28px 22px;
  text-align: center;
}

.metric-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  background: linear-gradient(135deg, rgba(144, 113, 255, 1), rgba(214, 166, 255, 1));
  -webkit-background-clip: text;
  color: transparent;
}

.metric-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 600;
}

.usecase-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.usecase-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.usecase-row::-webkit-scrollbar {
  display: none;
}

.usecase-card {
  min-height: 320px;
  padding: 24px;
  scroll-snap-align: start;
  background:
    radial-gradient(circle at 78% 24%, rgba(109, 76, 255, 0.2), transparent 18%),
    linear-gradient(180deg, rgba(14, 17, 29, 0.98), rgba(11, 13, 22, 0.98));
}

.usecase-card::after {
  content: "";
  display: block;
  margin-top: 26px;
  width: 92px;
  height: 92px;
  border: 0.5px solid rgba(130, 106, 255, 0.14);
  background: linear-gradient(135deg, rgba(192, 132, 252, 0.16), rgba(109, 76, 255, 0.08));
}

.usecase-card a {
  display: inline-block;
  margin-top: 22px;
  color: #c6a5ff;
  font-weight: 700;
}

.story-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: stretch;
}

.story-copy {
  padding-right: 20px;
}

.story-controls {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.testimonial-shell {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  position: relative;
  min-height: 380px;
}

.testimonial-card {
  display: none;
  min-height: 380px;
  padding: 30px;
}

.testimonial-card.is-active {
  display: block;
}

.avatar {
  width: 52px;
  height: 52px;
  border: 0.5px solid rgba(130, 106, 255, 0.14);
  background:
    radial-gradient(circle at 38% 32%, rgba(192, 132, 252, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(109, 76, 255, 0.18), rgba(22, 26, 40, 0.4));
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
  margin-top: 18px;
}

.testimonial-card span {
  margin-top: 8px;
  color: var(--muted);
}

.demo-section {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: end;
  overflow: hidden;
}

.demo-content {
  min-height: 78vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  padding: 0 0 48px;
}

.play-button span {
  position: relative;
  width: 34px;
  height: 34px;
  border: 0.5px solid rgba(244, 247, 255, 0.22);
  background: rgba(244, 247, 255, 0.1);
}

.play-button span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  border-left: 10px solid #fff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  transform: translate(-50%, -50%);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 30px;
}

.site-footer {
  padding: 24px 0 42px;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 0.5px solid var(--line);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 19, 7, 0.34);
}

.modal-panel {
  position: relative;
  width: min(1320px, calc(100% - 28px));
  height: min(82vh, 780px);
  overflow: hidden;
  border: 0.5px solid rgba(130, 106, 255, 0.16);
  background: #0b0d16;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  width: 42px;
  height: 42px;
  border: 0.5px solid rgba(130, 106, 255, 0.16);
  background: rgba(16, 18, 30, 0.9);
  color: #f4f7ff;
  font-size: 1.8rem;
  cursor: pointer;
}

.modal-stage {
  width: 100%;
  height: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.product-grid,
.info-grid,
.timeline-grid,
.contact-grid {
  display: grid;
  gap: 20px;
}

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

.product-card,
.info-card,
.timeline-card,
.contact-card,
.contact-form-card,
.split-panel,
.mini-stat {
  background: var(--bg-card);
  border: 0.5px solid var(--line);
  box-shadow: var(--shadow);
}

.product-card,
.info-card,
.timeline-card,
.contact-card,
.contact-form-card {
  padding: 26px;
}

.product-topline,
.contact-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  background: rgba(22, 18, 40, 0.84);
  border: 0.5px solid rgba(130, 106, 255, 0.18);
  color: #d5b7ff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card h3,
.timeline-card h3,
.split-copy h2 {
  margin: 14px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
  line-height: 1.18;
}

.product-card p,
.info-card p,
.timeline-card p,
.contact-card p,
.split-copy p,
.contact-form-card label span {
  color: var(--text-soft);
  line-height: 1.8;
}

.spec-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  border-top: 0.5px solid rgba(130, 106, 255, 0.1);
}

.spec-list span {
  color: var(--muted);
}

.spec-list strong {
  text-align: right;
  font-weight: 700;
}

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

.info-card strong,
.contact-card strong {
  display: block;
  margin-bottom: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.24rem;
}

.contact-card a {
  display: inline-block;
  margin-top: 18px;
  color: #d5b7ff;
  font-weight: 700;
}

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

.timeline-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 20px;
  padding: 30px;
}

.split-copy .eyebrow {
  margin-bottom: 12px;
}

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

.mini-stat {
  padding: 22px;
}

.mini-stat strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  color: #b596ff;
}

.mini-stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.contact-form-card {
  display: grid;
  gap: 16px;
}

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

.contact-form-card label {
  display: grid;
  gap: 8px;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  padding: 15px 16px;
  border: 0.5px solid rgba(130, 106, 255, 0.18);
  background: rgba(16, 18, 30, 0.82);
  color: var(--text);
  font: inherit;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  outline: 0;
  border-color: rgba(130, 106, 255, 0.52);
}

.form-actions {
  display: flex;
  justify-content: flex-start;
  padding-top: 4px;
}

@media (max-width: 1100px) {
  .hero-content,
  .capability-grid,
  .value-grid,
  .metrics-grid,
  .story-grid,
  .demo-content,
  .cta-panel,
  .logo-strip,
  .product-grid,
  .info-grid,
  .timeline-grid,
  .contact-grid,
  .split-panel,
  .form-row {
    grid-template-columns: 1fr;
  }

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

  .hero-glass--main,
  .hero-glass--side {
    grid-column: auto;
    grid-row: auto;
    margin: 0;
  }

  .capability-slide,
  .capability-grid {
    min-height: auto;
  }

  .capability-visual {
    min-height: 420px;
    border-left: 0;
    border-top: 0.5px solid var(--line-soft);
  }

  .metrics-grid {
    gap: 16px;
  }

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

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 24px, 1240px);
  }

  .header-row,
  .main-nav,
  .footer-grid,
  .header-tools {
    flex-direction: column;
  }

  .header-row {
    padding: 14px 0 18px;
  }

  .main-nav {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .nav-cta,
  .btn,
  .play-button {
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero-content,
  .demo-content,
  .cta-panel {
    padding-bottom: 24px;
  }

  .logo-strip,
  .kpi-grid,
  .split-stats {
    grid-template-columns: 1fr;
  }

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

  .lang-switcher {
    width: 100%;
    justify-content: center;
  }
}
