:root {
  --bg: #08111f;
  --bg-soft: #0e1728;
  --surface: rgba(10, 18, 32, 0.72);
  --surface-strong: #0d1727;
  --surface-light: #f6f8fc;
  --card: #ffffff;
  --card-muted: #eef3fb;
  --text: #0f172a;
  --text-soft: #475569;
  --text-subtle: #64748b;
  --line: rgba(148, 163, 184, 0.24);
  --line-strong: rgba(100, 116, 139, 0.28);
  --brand: #2b6df6;
  --brand-2: #47b0ff;
  --brand-3: #9b7cff;
  --accent: #11b7a3;
  --accent-2: #0f766e;
  --warning: #f59e0b;
  --shadow-lg: 0 28px 80px rgba(6, 14, 28, 0.18);
  --shadow-md: 0 18px 40px rgba(15, 23, 42, 0.1);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(71, 176, 255, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(155, 124, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 52%, #f7f9fc 100%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(248, 251, 255, 0.82);
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  padding: 0.45rem;
  background: linear-gradient(135deg, #12223d, #1c5cf2 60%, #4ab1ff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.brand-label {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-label strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand-label span {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-subtle);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.nav-link,
.nav-cta {
  border-radius: 999px;
  padding: 0.8rem 1rem;
  transition: 180ms ease;
  font-size: 0.95rem;
}

.nav-link {
  color: var(--text-soft);
}

.nav-link:hover,
.nav-link.current {
  color: var(--text);
  background: rgba(43, 109, 246, 0.08);
}

.nav-cta {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
  box-shadow: 0 10px 24px rgba(43, 109, 246, 0.24);
}

.nav-cta:hover,
.button-primary:hover,
.button-secondary:hover,
.button-ghost:hover {
  transform: translateY(-1px);
}

main {
  padding: 2.25rem 0 4rem;
}

.eyebrow,
.pill,
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  background: rgba(43, 109, 246, 0.1);
  color: var(--brand);
}

.pill {
  background: var(--card-muted);
  color: var(--text-soft);
}

.status-pill {
  background: rgba(17, 183, 163, 0.12);
  color: var(--accent-2);
}

.hero,
.page-hero,
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.hero,
.page-hero {
  padding: clamp(2rem, 4vw, 4rem);
  background:
    radial-gradient(circle at top left, rgba(74, 177, 255, 0.24), transparent 28%),
    radial-gradient(circle at bottom right, rgba(155, 124, 255, 0.18), transparent 26%),
    linear-gradient(145deg, rgba(7, 17, 31, 0.98), rgba(13, 23, 39, 0.96));
  color: white;
  box-shadow: var(--shadow-lg);
}

.hero-simple {
  padding-block: clamp(2.4rem, 5vw, 4.6rem);
}

.hero-simple-inner {
  position: relative;
  z-index: 1;
  max-width: 840px;
}

.hero::before,
.page-hero::before,
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent 80%);
  pointer-events: none;
}

.hero-grid,
.two-column,
.contact-layout,
.spotlight-grid,
.preview-split {
  display: grid;
  gap: 1.5rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.9fr);
  align-items: center;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: 1.5rem;
  align-items: end;
}

.hero h1,
.page-hero h1 {
  margin: 0.9rem 0 1rem;
  font-size: clamp(2.55rem, 5vw, 4.7rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.hero p,
.page-hero p,
.section-intro,
.muted {
  color: rgba(226, 232, 240, 0.88);
}

.hero p,
.page-hero p {
  font-size: 1.08rem;
  max-width: 64ch;
}

.section-intro,
.muted {
  font-size: 1rem;
  color: var(--text-soft);
}

.hero-actions,
.cta-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.65rem;
}

.button-primary,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.9rem 1.2rem;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: 180ms ease;
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 14px 34px rgba(43, 109, 246, 0.26);
}

.button-secondary {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.button-ghost {
  color: var(--brand);
  background: rgba(43, 109, 246, 0.08);
  border: 1px solid rgba(43, 109, 246, 0.12);
}

.button-primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.hero-kpis,
.metric-grid,
.feature-grid,
.product-grid,
.module-grid,
.summary-grid,
.timeline-grid,
.detail-grid {
  display: grid;
  gap: 1rem;
}

.hero-kpis {
  margin-top: 1.2rem;
  gap: 1.2rem 1rem;
}

.hero-kpis,
.metric-grid,
.summary-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.feature-grid,
.product-grid,
.module-grid,
.detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.kpi-card,
.card,
.product-card,
.contact-card,
.timeline-item,
.preview-shell,
.module-card,
.stat-card {
  background: var(--card);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.kpi-card,
.stat-card {
  padding: 1.15rem;
}

.hero-kpis .kpi-card {
  padding: 1.3rem 1.15rem 1.35rem;
}

.kpi-card strong,
.stat-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
  color: var(--text);
}

.kpi-card span,
.stat-card span {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.section {
  margin-top: 1.6rem;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(12px);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section h2,
.section h3,
.card h3,
.product-card h3,
.contact-card h3,
.timeline-item h3,
.preview-shell h3,
.module-card h3 {
  margin: 0;
  letter-spacing: -0.03em;
}

.section h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
}

.card,
.product-card,
.contact-card,
.module-card,
.timeline-item,
.preview-shell {
  padding: 1.35rem;
}

.card p,
.product-card p,
.contact-card p,
.module-card p,
.timeline-item p,
.preview-shell p,
.list,
.list li {
  color: var(--text-soft);
}

.card-top,
.product-top,
.module-top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.95rem;
}

.card-top {
  justify-content: flex-start;
  min-height: 4rem;
}

.card-top h3 {
  flex: 1;
  line-height: 1.15;
  padding-top: 0.15rem;
}

.feature-grid-no-marker .card-top,
.detail-grid-no-marker .card-top {
  min-height: 0;
}

.feature-grid-no-marker .card-top h3,
.detail-grid-no-marker .card-top h3 {
  padding-top: 0;
}

.product-top,
.module-top {
  justify-content: space-between;
}

.accent-marker,
.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.card-top .accent-marker {
  flex: 0 0 48px;
}

.accent-marker {
  color: var(--brand);
  background: linear-gradient(135deg, rgba(43, 109, 246, 0.12), rgba(74, 177, 255, 0.14));
}

.icon-badge {
  color: white;
  background: linear-gradient(135deg, var(--brand), var(--brand-3));
}

.list {
  margin: 1rem 0 0;
  padding-left: 1rem;
}

.list li + li {
  margin-top: 0.55rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-card.primary {
  background: linear-gradient(180deg, rgba(43, 109, 246, 0.06), rgba(255, 255, 255, 0.96));
}

.product-card.secondary {
  background: linear-gradient(180deg, rgba(17, 183, 163, 0.06), rgba(255, 255, 255, 0.96));
}

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

.product-card .cta-row,
.link-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.spotlight-grid,
.preview-split,
.contact-layout,
.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.preview-shell {
  background: linear-gradient(180deg, #0a1222 0%, #111c31 100%);
  color: white;
  overflow: hidden;
}

.hero-preview-shell {
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

.preview-shell p,
.preview-shell .muted {
  color: rgba(226, 232, 240, 0.75);
}

.preview-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.1rem;
}

.tex-hero {
  padding: clamp(1.85rem, 3.4vw, 3.2rem);
  padding-bottom: clamp(2.2rem, 4.4vw, 3.7rem);
  background:
    radial-gradient(circle at 12% 0%, rgba(74, 177, 255, 0.14), transparent 26%),
    radial-gradient(circle at 100% 20%, rgba(17, 183, 163, 0.18), transparent 28%),
    radial-gradient(circle at 52% 90%, rgba(155, 124, 255, 0.08), transparent 20%),
    linear-gradient(145deg, #0a1422 0%, #0b1020 38%, #10182b 100%);
}

.tex-hero-head {
  position: relative;
  z-index: 1;
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.tex-hero-head h1 {
  max-width: 15ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.3rem, 3.55vw, 3.45rem);
  line-height: 0.95;
}

.tex-hero-head p {
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
}

.tex-hero-head .hero-actions {
  justify-content: center;
}

.tex-hero-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.tex-hero-tags .pill {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(226, 232, 240, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tex-flow-stage {
  position: relative;
  z-index: 1;
  margin-top: 1.5rem;
}

.tex-flow-shell {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(191, 219, 254, 0.34);
  background: #f8fbff;
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.16);
}

.tex-flow-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.12), transparent 24%, transparent 76%, rgba(59, 130, 246, 0.08));
}

.tex-flow-bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.9rem 1rem;
  background: #111827;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.tex-flow-title {
  margin-left: 0.5rem;
  font-size: 0.82rem;
  color: rgba(226, 232, 240, 0.88);
}

.tex-flow-badge {
  margin-left: auto;
  padding: 0.34rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #dbeafe;
  background: rgba(59, 130, 246, 0.16);
  border: 1px solid rgba(96, 165, 250, 0.24);
}

.tex-flow-workspace {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  min-height: 560px;
}

.tex-flow-rail,
.tex-flow-inspector {
  padding: 1rem 0.9rem;
  background: rgba(241, 245, 249, 0.78);
}

.tex-flow-rail {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  border-right: 1px solid rgba(148, 163, 184, 0.18);
}

.tex-flow-rail-item {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0.65rem 0.75rem;
  border-radius: 14px;
  border: 1px solid rgba(191, 219, 254, 0.52);
  color: #355070;
  font-size: 0.84rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.78);
}

.tex-flow-rail-item.active {
  color: #1d4ed8;
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
}

.tex-flow-canvas {
  position: relative;
  min-height: 560px;
  padding: 1rem;
  background: linear-gradient(180deg, #fbfdff 0%, #f6f9ff 100%);
}

.tex-flow-canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(148, 163, 184, 0.28) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.55;
}

.tex-flow-links {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.tex-flow-links path {
  fill: none;
  stroke: rgba(96, 165, 250, 0.48);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tex-flow-links path.accent {
  stroke: rgba(20, 184, 166, 0.48);
}

.tex-flow-note {
  position: absolute;
  z-index: 1;
  width: min(220px, 21vw);
  display: grid;
  gap: 0.3rem;
  padding: 0.72rem 0.82rem;
  border-radius: 12px;
  border: 1px solid rgba(191, 219, 254, 0.7);
  background: rgba(239, 246, 255, 0.92);
  box-shadow: 0 8px 18px rgba(148, 163, 184, 0.18);
}

.tex-flow-note strong {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2563eb;
}

.tex-flow-note span {
  color: #475569;
  font-size: 0.78rem;
  line-height: 1.45;
}

.tex-note-primary {
  top: 5%;
  left: 2%;
}

.tex-note-secondary {
  top: 5%;
  left: 36%;
}

.tex-node {
  position: absolute;
  z-index: 1;
  width: clamp(138px, 15vw, 158px);
  display: grid;
  gap: 0.25rem;
  padding: 0.72rem 0.78rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(203, 213, 225, 0.9);
  box-shadow: 0 12px 24px rgba(148, 163, 184, 0.18);
}

.tex-node-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.15rem;
}

.tex-node strong,
.tex-inspector-group strong {
  display: block;
  color: #0f172a;
  font-size: 0.84rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.tex-node > span:not(.tex-node-type),
.tex-inspector-value {
  display: block;
  margin-top: 0.28rem;
  color: #475569;
  font-size: 0.72rem;
  line-height: 1.38;
}

.tex-node-type {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1e3a8a;
  background: #dbeafe;
}

.tex-node-port {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  min-height: 24px;
  padding: 0 0.45rem;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #64748b;
  background: #f8fafc;
  border: 1px solid rgba(203, 213, 225, 0.9);
}

.tex-node-state {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 0.7rem;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(226, 232, 240, 0.92);
  color: #0f766e;
  font-size: 0.7rem;
}

.tex-flow-meta {
  display: flex;
  gap: 0.5rem;
  padding: 0 1rem 1rem;
  flex-wrap: wrap;
}

.tex-flow-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  color: rgba(226, 232, 240, 0.72);
  background: rgba(255, 255, 255, 0.06);
}

.tex-node-trigger {
  top: 31%;
  left: 2%;
}

.tex-node-trigger .tex-node-type {
  color: #1d4ed8;
  background: rgba(191, 219, 254, 0.9);
}

.tex-node-map {
  top: 31%;
  left: 20%;
}

.tex-node-map .tex-node-type {
  color: #4338ca;
  background: rgba(224, 231, 255, 0.96);
}

.tex-node-reference {
  top: 31%;
  left: 38%;
}

.tex-node-reference .tex-node-type {
  color: #4f46e5;
  background: rgba(224, 231, 255, 0.96);
}

.tex-node-policy {
  top: 31%;
  left: 56%;
}

.tex-node-policy .tex-node-type {
  color: #0f766e;
  background: rgba(204, 251, 241, 0.98);
}

.tex-node-gate {
  top: 31%;
  left: 74%;
}

.tex-node-gate .tex-node-type {
  color: #0f766e;
  background: rgba(209, 250, 229, 0.95);
}

.tex-node-template {
  top: 59%;
  left: 74%;
}

.tex-node-template .tex-node-type {
  color: #5b21b6;
  background: rgba(237, 233, 254, 0.98);
}

.tex-node-ai {
  top: 59%;
  left: 38%;
}

.tex-node-ai .tex-node-type {
  color: #6d28d9;
  background: rgba(237, 233, 254, 0.98);
}

.tex-node-delivery {
  top: 59%;
  left: 56%;
}

.tex-node-delivery .tex-node-type {
  color: #a16207;
  background: rgba(254, 240, 138, 0.95);
}

.tex-node-break {
  top: 59%;
  left: 20%;
}

.tex-node-break .tex-node-type {
  color: #be123c;
  background: rgba(255, 228, 230, 0.98);
}

.tex-flow-inspector {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.tex-inspector-group {
  padding: 0.9rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.tex-inspector-label {
  display: block;
  margin-bottom: 0.35rem;
  color: rgba(148, 163, 184, 0.88);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tex-inspector-group .tex-flow-meta {
  padding: 0;
}

.tex-inspector-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.tex-signal-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.tex-signal-card {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tex-signal-card strong {
  display: block;
  margin-bottom: 0.3rem;
  color: white;
  font-size: 1.02rem;
}

.tex-signal-card span {
  color: rgba(226, 232, 240, 0.74);
  font-size: 0.92rem;
}

.tex-advantage-section {
  background:
    radial-gradient(circle at top right, rgba(74, 177, 255, 0.07), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 250, 255, 0.92));
}

.tex-advantage-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(43, 109, 246, 0.06), rgba(17, 183, 163, 0.07));
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.tex-advantage-item {
  display: grid;
  gap: 0.45rem;
  align-content: start;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.tex-advantage-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(43, 109, 246, 0.14), rgba(74, 177, 255, 0.16));
  font-size: 1.05rem;
}

.tex-advantage-item strong {
  color: var(--text);
  letter-spacing: -0.02em;
}

.tex-advantage-item span:last-child,
.tex-competitive-label,
.tex-compare-row span {
  color: var(--text-soft);
}

.tex-competitive-grid {
  gap: 1rem;
}

.tex-competitive-card {
  display: grid;
  gap: 0.9rem;
}

.tex-competitive-label {
  margin: -0.15rem 0 0;
  font-size: 0.92rem;
}

.tex-compare-table {
  display: grid;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(248, 250, 252, 0.7);
}

.tex-compare-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 1rem;
  padding: 0.85rem 1rem;
  align-items: start;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.tex-compare-row:first-child {
  border-top: 0;
}

.tex-compare-head {
  background: rgba(11, 23, 48, 0.04);
}

.tex-compare-head span {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.tex-compare-row strong {
  color: var(--brand);
  font-weight: 700;
}

.tex-preview-shell {
  background:
    radial-gradient(circle at top right, rgba(74, 177, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #08111f 0%, #111b2d 100%);
}

.tex-preview-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
}

.tex-preview-board,
.tex-preview-side {
  display: grid;
  gap: 0.9rem;
}

.tex-preview-route {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tex-preview-route::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(74, 177, 255, 0.95), rgba(17, 183, 163, 0.68));
}

.tex-preview-kicker {
  display: inline-flex;
  margin-bottom: 0.5rem;
  padding: 0.24rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(191, 219, 254, 0.88);
  background: rgba(43, 109, 246, 0.14);
}

.tex-preview-route h3 {
  margin-bottom: 0.35rem;
}

.tex-preview-route p {
  margin: 0 0 0.85rem;
}

.tex-preview-route .tex-flow-meta {
  padding: 0;
}

.tex-preview-side .side-stat,
.tex-preview-side .mini-log {
  background: rgba(255, 255, 255, 0.05);
}

.tex-surface-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: 2.25rem;
  align-items: start;
}

.tex-surface-nav {
  display: grid;
  gap: 0;
  align-content: start;
  align-self: start;
}

.tex-surface-tab {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
  cursor: pointer;
  color: var(--text);
  transition: color 0.2s ease, transform 0.2s ease;
}

.tex-surface-tab:last-child {
  border-bottom: 0;
}

.tex-surface-tab:hover,
.tex-surface-tab:focus-visible {
  color: var(--brand-deep);
  outline: none;
}

.tex-surface-tab.active {
  color: var(--brand-deep);
}

.tex-surface-tab-copy {
  display: grid;
  gap: 0.55rem;
}

.tex-surface-tab-title {
  font-size: clamp(1.12rem, 1.4vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.tex-surface-tab-text {
  display: none;
  color: var(--text-soft);
  max-width: 38ch;
  font-size: 1rem;
  line-height: 1.65;
}

.tex-surface-tab.active .tex-surface-tab-text {
  display: block;
}

.tex-surface-tab-toggle {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
  border: 1px solid rgba(148, 163, 184, 0.42);
  color: var(--text-subtle);
  background: rgba(255, 255, 255, 0.9);
}

.tex-surface-tab-toggle::before {
  content: "+";
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.tex-surface-tab.active .tex-surface-tab-toggle {
  color: var(--brand);
  border-color: rgba(43, 109, 246, 0.3);
  background: rgba(239, 246, 255, 0.98);
}

.tex-surface-tab.active .tex-surface-tab-toggle::before {
  content: "×";
}

.tex-surface-stage {
  position: relative;
  min-width: 0;
}

.tex-surface-panel {
  height: 100%;
  display: grid;
  gap: 1.1rem;
  padding: 1.55rem;
  background: linear-gradient(180deg, #eef2ff 0%, #f8fbff 100%);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 34px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.tex-surface-panel[hidden] {
  display: none;
}

.tex-surface-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.tex-surface-panel-index {
  color: var(--text-subtle);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.tex-surface-panel-copy-block h3 {
  margin-bottom: 0.4rem;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.tex-surface-panel-copy-block p {
  margin: 0;
  color: var(--text-soft);
  max-width: 54ch;
  line-height: 1.65;
}

.tex-surface-window {
  min-height: 320px;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(10, 18, 34, 0.96);
  color: white;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.tex-surface-window-bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tex-surface-window-label {
  margin-left: 0.45rem;
  color: rgba(226, 232, 240, 0.72);
  font-size: 0.82rem;
}

.tex-surface-window-body {
  display: grid;
  gap: 0.9rem;
  padding: 1.1rem;
}

.tex-surface-overline {
  display: inline-flex;
  margin-bottom: 0.45rem;
  color: rgba(191, 219, 254, 0.92);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tex-surface-prompt-card,
.tex-surface-score-card,
.tex-surface-command-card,
.tex-surface-schedule-card,
.tex-surface-agent-card,
.tex-surface-flow-card,
.tex-surface-audit-item,
.tex-surface-tool-card,
.tex-surface-job,
.tex-surface-signal-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

.tex-surface-prompt-card,
.tex-surface-score-card,
.tex-surface-command-card,
.tex-surface-schedule-card {
  padding: 1rem;
}

.tex-surface-prompt-card p,
.tex-surface-command-card p,
.tex-surface-schedule-card p {
  margin: 0;
  color: rgba(226, 232, 240, 0.84);
  font-size: 0.95rem;
  line-height: 1.55;
}

.tex-surface-flow-grid,
.tex-surface-agent-grid,
.tex-surface-audit-grid,
.tex-surface-tool-grid {
  display: grid;
  gap: 0.8rem;
}

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

.tex-surface-agent-grid,
.tex-surface-audit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.tex-surface-flow-card,
.tex-surface-agent-card,
.tex-surface-audit-item,
.tex-surface-tool-card,
.tex-surface-job,
.tex-surface-signal-card {
  display: grid;
  gap: 0.28rem;
  padding: 0.95rem;
}

.tex-surface-flow-card strong,
.tex-surface-agent-card strong,
.tex-surface-audit-item strong,
.tex-surface-tool-card strong,
.tex-surface-job strong,
.tex-surface-signal-card strong,
.tex-surface-score-card strong {
  display: block;
  line-height: 1.18;
}

.tex-surface-flow-card span,
.tex-surface-agent-card span,
.tex-surface-audit-item span,
.tex-surface-tool-card span,
.tex-surface-job span,
.tex-surface-signal-card span,
.tex-surface-score-card span {
  color: rgba(226, 232, 240, 0.74);
  font-size: 0.8rem;
  line-height: 1.4;
}

.tex-surface-flow-card.is-primary,
.tex-surface-agent-card.is-primary {
  background: rgba(43, 109, 246, 0.18);
}

.tex-surface-flow-card.is-accent,
.tex-surface-agent-card.is-accent {
  background: rgba(17, 183, 163, 0.18);
}

.tex-surface-window-body-agents,
.tex-surface-window-body-dashboard,
.tex-surface-window-body-scheduler,
.tex-surface-window-body-compliance {
  gap: 1rem;
}

.tex-surface-signal-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.tex-surface-score-card {
  display: grid;
  gap: 0.2rem;
  background: linear-gradient(135deg, rgba(43, 109, 246, 0.24), rgba(17, 183, 163, 0.16));
}

.tex-surface-score-card strong {
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.tex-surface-frameworks {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.tex-surface-frameworks span,
.tex-surface-chip-row span {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
}

.tex-surface-frameworks span {
  color: rgba(226, 232, 240, 0.84);
  background: rgba(255, 255, 255, 0.08);
}

.tex-surface-job-list {
  display: grid;
  gap: 0.7rem;
}

.tex-surface-chip-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.tex-surface-chip-row span {
  color: var(--brand);
  background: rgba(43, 109, 246, 0.1);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: -1.35rem -1.35rem 1rem;
  padding: 0.85rem 1.15rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.26);
}

.dot:nth-child(1) { background: #fb7185; }
.dot:nth-child(2) { background: #fbbf24; }
.dot:nth-child(3) { background: #4ade80; }

.window-label {
  margin-left: 0.55rem;
  font-size: 0.82rem;
  color: rgba(226, 232, 240, 0.72);
}

.workflow-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  align-items: stretch;
}

.pipeline-board,
.dashboard-shell {
  display: grid;
  gap: 0.75rem;
  align-content: start;
  border-radius: 20px;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-dashboard-shell {
  display: grid;
  gap: 1rem;
  flex: 1;
  align-content: start;
  padding: 1.1rem;
}

.hero-dashboard-shell .mini-log {
  margin-top: auto;
  padding: 1rem;
  gap: 0.75rem;
}

.node-lane {
  display: grid;
  gap: 0.75rem;
}

.node-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: stretch;
}

.node,
.side-stat,
.dashboard-card,
.module-tile,
.mini-log {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.35rem;
  border-radius: 16px;
  padding: 0.8rem 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.node,
.module-tile {
  min-height: 72px;
}

.node strong,
.side-stat strong,
.dashboard-card strong,
.module-tile strong {
  display: block;
  margin-bottom: 0;
  line-height: 1.15;
}

.node strong,
.module-tile strong {
  font-size: 0.88rem;
}

.node span,
.side-stat span,
.dashboard-card span,
.module-tile span,
.mini-log span {
  color: rgba(226, 232, 240, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
}

.node span,
.module-tile span {
  font-size: 0.78rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.node.brand,
.dashboard-card.brand {
  background: linear-gradient(135deg, rgba(43, 109, 246, 0.24), rgba(74, 177, 255, 0.18));
}

.node.alt,
.dashboard-card.alt {
  background: linear-gradient(135deg, rgba(17, 183, 163, 0.18), rgba(155, 124, 255, 0.14));
}

.side-panel,
.dashboard-panel {
  display: grid;
  gap: 0.75rem;
  align-content: start;
  grid-auto-rows: max-content;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-log {
  display: grid;
  gap: 0.55rem;
}

.mini-log span::before {
  content: "•";
  margin-right: 0.45rem;
  color: var(--brand-2);
}

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

.texerp-coverage-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.texerp-sneakpeek-shell {
  padding: 0;
}

.texerp-sneakpeek-layout {
  display: grid;
  grid-template-columns: 228px minmax(0, 1fr);
  min-height: 560px;
}

.texerp-sneakpeek-sidebar {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 1rem;
  background: rgba(241, 245, 249, 0.78);
  border-right: 1px solid rgba(148, 163, 184, 0.18);
}

.texerp-sneakpeek-sidebar-top,
.texerp-sneakpeek-note {
  display: grid;
  gap: 0.45rem;
  padding: 0.9rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(191, 219, 254, 0.52);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.texerp-sneakpeek-sidebar-top strong,
.texerp-sneakpeek-note strong,
.texerp-sneakpeek-toolbar strong {
  color: var(--text);
}

.texerp-sneakpeek-sidebar-top span:last-child,
.texerp-sneakpeek-note span,
.texerp-sneakpeek-toolbar span {
  color: var(--text-soft);
}

.texerp-sneakpeek-sidebar-top .status-pill {
  background: rgba(43, 109, 246, 0.12);
  color: var(--brand-deep);
  border-color: rgba(43, 109, 246, 0.18);
}

.texerp-sneakpeek-nav {
  display: grid;
  gap: 0.45rem;
}

.texerp-sneakpeek-nav span {
  padding: 0.72rem 0.85rem;
  border-radius: 14px;
  color: #355070;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(191, 219, 254, 0.52);
  font-size: 0.92rem;
  font-weight: 600;
}

.texerp-sneakpeek-nav .is-current {
  background: rgba(59, 130, 246, 0.12);
  color: #1d4ed8;
  border-color: rgba(59, 130, 246, 0.3);
}

.texerp-sneakpeek-main {
  position: relative;
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 1rem;
  background:
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.12), transparent 26%),
    linear-gradient(180deg, #fbfdff 0%, #f6f9ff 100%);
}

.texerp-sneakpeek-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(148, 163, 184, 0.28) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.42;
  pointer-events: none;
}

.texerp-sneakpeek-toolbar,
.texerp-sneakpeek-card,
.texerp-sneakpeek-stat {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.07);
}

.texerp-sneakpeek-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
}

.texerp-sneakpeek-toolbar strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

.texerp-sneakpeek-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.texerp-sneakpeek-badges span {
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(239, 246, 255, 0.95);
  border: 1px solid rgba(191, 219, 254, 0.9);
  color: var(--brand-deep);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.texerp-sneakpeek-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.texerp-sneakpeek-stat {
  padding: 1rem;
}

.texerp-sneakpeek-stat span,
.texerp-sneakpeek-stat small {
  display: block;
}

.texerp-sneakpeek-stat span {
  color: var(--text-subtle);
  font-size: 0.8rem;
}

.texerp-sneakpeek-stat strong {
  display: block;
  margin: 0.3rem 0 0.25rem;
  font-size: 1.8rem;
  letter-spacing: -0.04em;
  color: var(--text);
}

.texerp-sneakpeek-stat small {
  color: var(--text-soft);
  line-height: 1.45;
}

.texerp-sneakpeek-widgets {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.texerp-sneakpeek-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 0.85rem;
}

.texerp-sneakpeek-card {
  padding: 1rem;
}

.texerp-sneakpeek-card h3 {
  margin: 0 0 0.85rem;
  font-size: 0.96rem;
  color: var(--text);
}

.texerp-sneakpeek-card ul,
.texerp-sneakpeek-deals,
.texerp-sneakpeek-actions {
  margin: 0;
  padding: 0;
  list-style: none;
}

.texerp-sneakpeek-card ul {
  display: grid;
  gap: 0.7rem;
}

.texerp-sneakpeek-card li {
  display: grid;
  gap: 0.18rem;
  padding: 0.75rem 0.8rem;
  border-radius: 14px;
  background: rgba(248, 250, 252, 0.88);
  border: 1px solid rgba(226, 232, 240, 0.98);
}

.texerp-sneakpeek-card li strong,
.texerp-sneakpeek-deals strong {
  color: var(--text);
}

.texerp-sneakpeek-card li span,
.texerp-sneakpeek-deals span {
  color: var(--text-soft);
  font-size: 0.84rem;
}

.texerp-sneakpeek-actions {
  display: grid;
  gap: 0.65rem;
}

.texerp-sneakpeek-actions span {
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  background: rgba(248, 250, 252, 0.94);
  border: 1px solid rgba(226, 232, 240, 0.98);
  color: var(--text);
  font-weight: 600;
}

.texerp-sneakpeek-deals {
  display: grid;
  gap: 0.7rem;
}

.texerp-sneakpeek-deals li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.texerp-sneakpeek-deals strong {
  color: var(--brand);
  font-size: 0.92rem;
}

@media (max-width: 1080px) {
  .texerp-sneakpeek-layout,
  .texerp-sneakpeek-bottom {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .texerp-sneakpeek-stats,
  .texerp-sneakpeek-widgets {
    grid-template-columns: 1fr;
  }

  .texerp-sneakpeek-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .texerp-sneakpeek-badges {
    justify-content: flex-start;
  }
}

.module-card {
  min-height: 180px;
}

.placeholder-note {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(245, 158, 11, 0.12);
  color: #9a6700;
  border: 1px solid rgba(245, 158, 11, 0.22);
}

.timeline-item {
  position: relative;
  padding-left: 1.45rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 0 0 6px rgba(43, 109, 246, 0.08);
}

.contact-card a.inline-link,
.inline-link {
  color: var(--brand);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-group {
  display: grid;
  gap: 0.45rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
}

.form-group textarea {
  min-height: 164px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(43, 109, 246, 0.55);
  box-shadow: 0 0 0 4px rgba(43, 109, 246, 0.12);
}

.form-status {
  display: none;
  border-radius: 14px;
  padding: 1rem;
}

.form-status.success {
  display: block;
  background: rgba(16, 185, 129, 0.12);
  color: #065f46;
  border: 1px solid rgba(16, 185, 129, 0.28);
}

.form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  color: #991b1b;
  border: 1px solid rgba(239, 68, 68, 0.28);
}

.cta-band {
  margin-top: 1.6rem;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  color: white;
  background: linear-gradient(145deg, #0b1730, #163f9a 72%, #3f92ff);
  box-shadow: var(--shadow-lg);
}

.cta-band p {
  margin: 0.6rem 0 0;
  max-width: 62ch;
  color: rgba(226, 232, 240, 0.88);
}

.client-strip {
  margin-top: 1.15rem;
  padding: 0.45rem 0 0.2rem;
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.client-strip-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-subtle);
  opacity: 0.9;
}

.client-strip-list {
  width: min(100%, 860px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.85rem;
}

.client-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.client-logo {
  display: block;
  width: auto;
  max-width: min(100%, 156px);
  max-height: 34px;
  object-fit: contain;
  filter: grayscale(1) saturate(0) brightness(0.42) contrast(1.06);
  opacity: 0.9;
}

.client-logo--mizuho {
  max-height: 30px;
}

.client-logo--jlr {
  max-height: 42px;
}

.client-logo--nbcu {
  max-height: 26px;
}

.client-logo--boohoo {
  max-height: 24px;
}

.client-logo--t3wares {
  max-height: 36px;
}

.site-footer {
  margin-top: 2rem;
  padding: 2rem 0 3rem;
}

.footer-shell {
  padding: 1.6rem;
  border-radius: var(--radius-xl);
  background: #0b1527;
  color: rgba(226, 232, 240, 0.82);
  box-shadow: var(--shadow-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(0, 0.8fr));
  gap: 1.2rem;
}

.footer-grid h4 {
  margin: 0 0 0.9rem;
  color: white;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0.35rem 0;
  color: rgba(226, 232, 240, 0.72);
}

.footer-bottom {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  color: rgba(226, 232, 240, 0.64);
}

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

@media (max-width: 1080px) {
  .hero-grid,
  .page-hero-grid,
  .workflow-grid,
  .tex-surface-showcase,
  .tex-preview-grid,
  .spotlight-grid,
  .preview-split,
  .contact-layout,
  .two-column,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-kpis,
  .metric-grid,
  .summary-grid,
  .tex-signal-row,
  .tex-advantage-strip,
  .feature-grid,
  .product-grid,
  .timeline-grid,
  .detail-grid,
  .module-grid,
  .side-panel,
  .dashboard-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tex-flow-workspace {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .tex-flow-inspector {
    grid-column: 1 / -1;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tex-node {
    width: min(200px, 30vw);
  }

  .tex-flow-note {
    width: min(220px, 32vw);
  }
}

@media (max-width: 720px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 0.85rem 0;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }

  main {
    padding-top: 1.25rem;
  }

  .hero,
  .page-hero,
  .section,
  .cta-band,
  .footer-shell {
    border-radius: 22px;
  }

  .client-strip {
    justify-items: stretch;
  }

  .client-strip-list {
    width: 100%;
  }

  .hero-kpis,
  .metric-grid,
  .summary-grid,
  .tex-signal-row,
  .tex-advantage-strip,
  .feature-grid,
  .product-grid,
  .timeline-grid,
  .detail-grid,
  .module-grid,
  .side-panel,
  .dashboard-panel,
  .node-row,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .tex-flow-workspace {
    grid-template-columns: 1fr;
  }

  .tex-surface-panel {
    padding: 1.1rem;
    border-radius: 24px;
  }

  .tex-surface-tab {
    padding: 1rem 0;
  }

  .tex-surface-window {
    min-height: 0;
  }

  .tex-surface-flow-grid,
  .tex-surface-agent-grid,
  .tex-surface-audit-grid,
  .tex-surface-tool-grid,
  .tex-surface-signal-row {
    grid-template-columns: 1fr;
  }

  .tex-flow-rail {
    display: none;
  }

  .tex-flow-canvas {
    min-height: auto;
    display: grid;
    gap: 0.9rem;
    padding: 1rem;
  }

  .tex-flow-links {
    display: none;
  }

  .tex-flow-note,
  .tex-node,
  .tex-node-break {
    position: relative;
    width: 100%;
    inset: auto;
  }

  .tex-note-primary,
  .tex-note-secondary {
    left: auto;
    top: auto;
  }

  .tex-flow-inspector {
    grid-template-columns: 1fr;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .section-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .tex-compare-row {
    grid-template-columns: 1fr;
  }
}