@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/inter-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/poppins-500-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/poppins-600-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/poppins-700-latin.woff2") format("woff2");
}

:root {
  --color-bg: #081220;
  --color-bg-deep: #050c16;
  --color-bg-soft: #111f31;
  --color-surface: #16263a;
  --color-surface-raised: #1e293b;
  --color-primary: #2563eb;
  --color-primary-bright: #3b82f6;
  --color-cyan: #06b6d4;
  --color-green: #8b5cf6;
  --color-purple: #8b5cf6;
  --color-white: #f8fafc;
  --color-text: #e2e8f0;
  --color-muted: #64748b;
  --color-muted-strong: #aab7c7;
  --color-border: rgba(148, 163, 184, 0.18);
  --color-border-strong: rgba(148, 163, 184, 0.3);
  --shadow-sm: 0 12px 30px rgba(0, 0, 0, 0.16);
  --shadow-lg: 0 30px 90px rgba(0, 0, 0, 0.34);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --container: 1240px;
  --header-height: 82px;
  --font-sans: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: Poppins, Inter, "Segoe UI", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

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

button,
select {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 3.45rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

p {
  color: var(--color-muted-strong);
}

::selection {
  color: var(--color-white);
  background: rgba(37, 99, 235, 0.72);
}

:focus-visible {
  outline: 3px solid var(--color-cyan);
  outline-offset: 4px;
}

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

.section {
  position: relative;
  padding-block: 118px;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-150%);
  border-radius: 10px;
  color: var(--color-white);
  background: var(--color-primary);
  font-weight: 700;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

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

.button:active {
  transform: translateY(0);
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), #1d4ed8);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.3), inset 0 1px rgba(255, 255, 255, 0.14);
}

.button-primary:hover {
  box-shadow: 0 16px 38px rgba(37, 99, 235, 0.4), inset 0 1px rgba(255, 255, 255, 0.14);
}

.button-secondary {
  border-color: var(--color-border-strong);
  color: var(--color-white);
  background: rgba(13, 27, 42, 0.72);
}

.button-secondary:hover {
  border-color: rgba(56, 189, 248, 0.48);
  background: rgba(16, 34, 53, 0.96);
}

.button-whatsapp {
  border-color: rgba(34, 197, 94, 0.35);
  color: #b8f5cb;
  background: rgba(34, 197, 94, 0.1);
}

.button-whatsapp:hover {
  border-color: rgba(34, 197, 94, 0.6);
  background: rgba(34, 197, 94, 0.17);
}

.button-small {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 0.875rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--color-cyan);
  font-weight: 720;
  transition: color 180ms ease, gap 180ms ease;
}

.text-link:hover {
  gap: 13px;
  color: #7dd3fc;
}

.section-kicker,
.eyebrow {
  color: var(--color-cyan);
  font-family: var(--font-display);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-kicker {
  margin-bottom: 14px;
}

.section-heading {
  margin-bottom: 60px;
}

.section-heading p:last-child {
  max-width: 690px;
  margin-bottom: 0;
  font-size: 1.06rem;
}

.section-heading.centered {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered p:last-child {
  margin-inline: auto;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 56px;
}

.split-heading h2,
.split-heading p {
  margin-bottom: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms ease var(--reveal-delay, 0ms), transform 600ms ease var(--reveal-delay, 0ms);
}

[data-reveal][data-visible="true"] {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: height 220ms ease, border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.site-header[data-scrolled="true"],
body.menu-open .site-header {
  border-color: var(--color-border);
  background: rgba(7, 17, 31, 0.86);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  min-width: 184px;
  align-items: center;
  gap: 8px;
}

.brand img {
  width: 62px;
  height: 41px;
}

.brand span,
.footer-logo span,
.legal-logo span {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.055em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.desktop-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 9px;
  color: var(--color-muted-strong);
  font-size: 0.9rem;
  font-weight: 650;
  transition: color 180ms ease, background-color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--color-white);
  background: rgba(148, 163, 184, 0.08);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  color: var(--color-white);
  background: rgba(13, 27, 42, 0.75);
}

.menu-button .icon {
  width: 24px;
  height: 24px;
}

.menu-button .close-icon,
.menu-button[aria-expanded="true"] .menu-icon {
  display: none;
}

.menu-button[aria-expanded="true"] .close-icon {
  display: block;
}

.mobile-nav {
  position: fixed;
  z-index: 95;
  top: var(--header-height);
  right: 0;
  left: 0;
  display: none;
  max-height: calc(100dvh - var(--header-height));
  overflow-y: auto;
  border-bottom: 1px solid var(--color-border);
  background: rgba(7, 17, 31, 0.98);
  box-shadow: var(--shadow-lg);
}

.mobile-nav[data-open="true"] {
  display: block;
}

.mobile-nav-inner {
  display: grid;
  gap: 3px;
  padding-block: 18px 28px;
}

.mobile-nav a:not(.button) {
  display: flex;
  min-height: 50px;
  align-items: center;
  padding-inline: 12px;
  border-radius: 10px;
  color: var(--color-text);
  font-weight: 650;
}

.mobile-nav a:not(.button):hover {
  background: var(--color-bg-soft);
}

.mobile-nav .button {
  margin-top: 10px;
}

/* Hero */
.hero {
  min-height: 790px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: calc(var(--header-height) + 72px);
  padding-bottom: 70px;
  background:
    radial-gradient(circle at 82% 14%, rgba(37, 99, 235, 0.14), transparent 31%),
    linear-gradient(180deg, var(--color-bg-deep) 0%, var(--color-bg) 80%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 88%);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-orb-blue {
  top: 18%;
  right: -180px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.17), transparent 68%);
}

.hero-orb-green {
  bottom: -170px;
  left: 22%;
  width: 390px;
  height: 390px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.08), transparent 69%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(560px, 1.2fr);
  align-items: center;
  gap: 54px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.12);
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 26px;
  font-size: clamp(2.8rem, 4.2vw, 3.85rem);
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(100deg, #60a5fa 0%, var(--color-primary) 48%, var(--color-cyan) 108%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-description {
  max-width: 625px;
  margin-bottom: 34px;
  font-size: clamp(1.04rem, 1.5vw, 1.15rem);
  line-height: 1.75;
}

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

.capability-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 17px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-list li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.capability-list .icon {
  width: 15px;
  height: 15px;
  color: var(--color-green);
  stroke-width: 2.3;
}

.hero-visual {
  position: relative;
  width: 100%;
  perspective: 1300px;
}

.hero [data-reveal] {
  opacity: 1;
  transform: none;
}

.hero-network {
  position: absolute;
  z-index: 0;
  inset: -80px -50px -60px;
  opacity: 0.68;
  background:
    linear-gradient(32deg, transparent 48.8%, rgba(37, 99, 235, 0.28) 49%, rgba(37, 99, 235, 0.28) 49.2%, transparent 49.4%) 18% 24% / 210px 170px,
    linear-gradient(-24deg, transparent 48.8%, rgba(6, 182, 212, 0.22) 49%, rgba(6, 182, 212, 0.22) 49.2%, transparent 49.4%) 72% 58% / 250px 190px,
    radial-gradient(circle at 52% 44%, rgba(37, 99, 235, 0.18), transparent 50%);
  pointer-events: none;
}

.hero-network span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.09), 0 0 18px rgba(37, 99, 235, 0.65);
}

.hero-network span:nth-child(1) { top: 18%; left: 13%; }
.hero-network span:nth-child(2) { top: 32%; right: 8%; background: var(--color-cyan); }
.hero-network span:nth-child(3) { top: 68%; left: 5%; }
.hero-network span:nth-child(4) { right: 15%; bottom: 11%; background: var(--color-purple); }
.hero-network span:nth-child(5) { top: 7%; left: 58%; width: 4px; height: 4px; }
.hero-network span:nth-child(6) { bottom: 23%; left: 42%; width: 4px; height: 4px; background: var(--color-cyan); }

.dashboard-shell {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 16px 16px 8px 8px;
  background: #091523;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.52), 0 0 80px rgba(37, 99, 235, 0.1);
  transform: rotateY(-2deg) rotateX(1deg);
}

.dashboard-loader {
  position: absolute;
  z-index: 20;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
  color: #e2e8f0;
  background:
    radial-gradient(circle at center, rgba(37, 99, 235, 0.17), transparent 42%),
    rgba(8, 18, 32, 0.98);
  text-align: center;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.dashboard-loader img {
  width: 58px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 8px 24px rgba(37, 99, 235, 0.35));
}

.dashboard-loader strong {
  margin-bottom: 4px;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 0.9rem;
}

.dashboard-loader > span {
  color: #64748b;
  font-size: 0.62rem;
}

.dashboard-loader i {
  width: min(230px, 68%);
  height: 5px;
  overflow: hidden;
  margin-top: 21px;
  border-radius: 999px;
  background: #1e293b;
}

.dashboard-loader i b {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-primary), var(--color-cyan), var(--color-purple));
  animation: dashboard-progress 900ms cubic-bezier(0.65, 0, 0.35, 1) 120ms forwards;
}

.dashboard-shell[data-loaded="true"] .dashboard-loader {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.dashboard-shell[data-loaded="false"] .dashboard-topbar,
.dashboard-shell[data-loaded="false"] .dashboard-body {
  opacity: 0.25;
  filter: blur(2px);
}

.dashboard-topbar,
.dashboard-body {
  transition: opacity 420ms ease, filter 420ms ease;
}

.laptop-base {
  position: relative;
  z-index: 3;
  width: 92%;
  height: 22px;
  margin: -1px auto 0;
  clip-path: polygon(5% 0, 95% 0, 100% 70%, 93% 100%, 7% 100%, 0 70%);
  background: linear-gradient(180deg, #d9e0e8 0%, #7d8996 42%, #374151 100%);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.34);
}

.laptop-base::before {
  position: absolute;
  top: 0;
  right: 39%;
  left: 39%;
  height: 5px;
  border-radius: 0 0 6px 6px;
  background: #64748b;
  content: "";
}

.laptop-base span {
  position: absolute;
  right: 46%;
  bottom: 2px;
  left: 46%;
  height: 2px;
  border-radius: 2px;
  background: rgba(248, 250, 252, 0.5);
}

.dashboard-topbar {
  display: grid;
  height: 48px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-inline: 14px;
  border-bottom: 1px solid var(--color-border);
  background: rgba(13, 27, 42, 0.94);
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span,
.product-browser-bar > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #475569;
}

.window-dots span:first-child,
.product-browser-bar > span:first-child {
  background: #f87171;
}

.window-dots span:nth-child(2),
.product-browser-bar > span:nth-child(2) {
  background: #fbbf24;
}

.window-dots span:nth-child(3),
.product-browser-bar > span:nth-child(3) {
  background: #4ade80;
}

.dashboard-url {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 15px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 7px;
  color: #7e91a7;
  background: #07111f;
  font-size: 0.6rem;
}

.secure-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-green);
}

.avatar {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  justify-self: end;
  border-radius: 8px;
  color: #dbeafe;
  background: rgba(37, 99, 235, 0.28);
  font-size: 0.55rem;
  font-weight: 800;
}

.dashboard-body {
  display: grid;
  min-height: 456px;
  grid-template-columns: 62px 1fr;
}

.dashboard-sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  padding: 14px 10px;
  border-right: 1px solid var(--color-border);
  background: #08131f;
}

.dashboard-sidebar img {
  margin-bottom: 7px;
}

.sidebar-item {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  color: #64748b;
}

.sidebar-item.active {
  color: #93c5fd;
  background: rgba(37, 99, 235, 0.16);
}

.sidebar-item .icon {
  width: 16px;
  height: 16px;
}

.dashboard-content {
  min-width: 0;
  padding: 21px;
}

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

.dashboard-heading > div span,
.dashboard-heading > div strong {
  display: block;
}

.dashboard-heading > div span {
  margin-bottom: 2px;
  color: #64748b;
  font-size: 0.58rem;
}

.dashboard-heading > div strong {
  color: #f1f5f9;
  font-size: 0.94rem;
}

.live-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #86efac;
  font-size: 0.56rem;
}

.live-status span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.09);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-bottom: 11px;
}

.metric-card,
.chart-panel,
.activity-panel {
  border: 1px solid rgba(148, 163, 184, 0.13);
  border-radius: 11px;
  background: rgba(16, 34, 53, 0.68);
}

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

.metric-label {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  margin-bottom: 9px;
  color: #8192a7;
  font-size: 0.54rem;
  white-space: nowrap;
}

.metric-icon {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 6px;
}

.metric-icon .icon {
  width: 12px;
  height: 12px;
}

.metric-icon.blue {
  color: #93c5fd;
  background: rgba(37, 99, 235, 0.15);
}

.metric-icon.green {
  color: #86efac;
  background: rgba(34, 197, 94, 0.12);
}

.metric-icon.cyan {
  color: #7dd3fc;
  background: rgba(56, 189, 248, 0.12);
}

.metric-card > strong {
  display: block;
  margin-bottom: 5px;
  color: #f8fafc;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.metric-card small {
  display: block;
  overflow: hidden;
  color: #64748b;
  font-size: 0.48rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.metric-card small span {
  color: #4ade80;
  font-weight: 750;
}

.dashboard-panels {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(145px, 0.75fr);
  gap: 9px;
}

.chart-panel,
.activity-panel {
  padding: 13px;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.panel-header strong {
  color: #dbe7f3;
  font-size: 0.64rem;
}

.panel-header span {
  color: #64748b;
  font-size: 0.48rem;
}

.chart-area {
  position: relative;
  height: 146px;
}

.chart-line {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(148, 163, 184, 0.09);
}

.line-one { top: 28px; }
.line-two { top: 69px; }
.line-three { top: 110px; }

.chart-area svg {
  position: absolute;
  top: 4px;
  width: 100%;
  height: 126px;
  overflow: visible;
}

.chart-area .area {
  fill: url(#chart-fill);
  opacity: 0;
}

.chart-area .stroke {
  fill: none;
  stroke: #38bdf8;
  stroke-width: 2;
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
}

.dashboard-shell[data-loaded="true"] .chart-area .area {
  animation: chart-area-in 700ms ease 750ms forwards;
}

.dashboard-shell[data-loaded="true"] .chart-area .stroke {
  animation: chart-line-draw 1250ms cubic-bezier(0.45, 0, 0.2, 1) 500ms forwards;
}

.chart-area circle {
  fill: #07111f;
  stroke: #7dd3fc;
  stroke-width: 2;
}

.chart-labels {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  color: #64748b;
  font-size: 0.45rem;
}

.activity-panel {
  display: flex;
  flex-direction: column;
}

.progress-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 8px;
  margin-top: 15px;
  color: #8192a7;
  font-size: 0.49rem;
}

.progress-row strong {
  color: #cbd5e1;
  font-size: 0.5rem;
}

.progress-row i {
  display: block;
  height: 5px;
  grid-column: 1 / -1;
  overflow: hidden;
  border-radius: 10px;
  background: #1e293b;
}

.progress-row b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  transform: scaleX(0);
  transform-origin: left;
}

.dashboard-shell[data-loaded="true"] .progress-row b {
  animation: progress-grow 800ms ease 900ms forwards;
}

.mobile-insight-card {
  position: absolute;
  right: -23px;
  bottom: -44px;
  width: 188px;
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 17px;
  background: rgba(13, 27, 42, 0.94);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
  display: none;
}

@keyframes dashboard-progress {
  to { transform: scaleX(1); }
}

@keyframes chart-line-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes chart-area-in {
  to { opacity: 1; }
}

@keyframes progress-grow {
  to { transform: scaleX(1); }
}

.mobile-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
  color: #94a3b8;
  font-size: 0.55rem;
}

.mobile-card-header i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.09);
}

.mobile-insight-card > strong {
  color: #f8fafc;
  font-size: 0.85rem;
}

.mobile-bars {
  display: flex;
  height: 45px;
  align-items: flex-end;
  gap: 5px;
  margin-block: 12px 8px;
}

.mobile-bars span {
  width: 100%;
  border-radius: 4px 4px 1px 1px;
  background: linear-gradient(to top, #2563eb, #38bdf8);
}

.mobile-insight-card > small {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #64748b;
  font-size: 0.48rem;
}

.mobile-insight-card > small span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-green);
}

/* Trust bar */
.trust-bar {
  border-block: 1px solid var(--color-border);
  background: #081522;
}

.value-strip {
  border-bottom: 1px solid rgba(100, 116, 139, 0.18);
  background: var(--color-white);
}

.value-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 30px;
}

.value-strip article {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 24px;
  border-right: 1px solid rgba(100, 116, 139, 0.17);
}

.value-strip article:first-child {
  padding-left: 0;
}

.value-strip article:last-child {
  padding-right: 0;
  border-right: 0;
}

.value-strip article > span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  color: var(--color-primary);
  background: rgba(37, 99, 235, 0.08);
}

.value-strip article > span .icon {
  width: 19px;
  height: 19px;
}

.value-strip h2 {
  margin: 1px 0 4px;
  color: #081220;
  font-size: 0.78rem;
  letter-spacing: -0.015em;
}

.value-strip p {
  margin: 0;
  color: #64748b;
  font-size: 0.66rem;
  line-height: 1.5;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: 42px;
  padding-block: 28px;
}

.trust-layout p {
  margin: 0;
  color: var(--color-muted-strong);
  font-size: 0.88rem;
  font-weight: 620;
  line-height: 1.5;
}

.technology-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.technology-list li {
  padding: 7px 10px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 8px;
  color: #93a5ba;
  background: rgba(15, 31, 48, 0.65);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.69rem;
  font-weight: 700;
}

/* Problems */
.problems-section {
  background: var(--color-white);
}

.problems-section .section-heading h2,
.problems-section .problem-card h3 {
  color: #081220;
}

.problems-section .section-heading p:last-child,
.problems-section .problem-card p {
  color: #64748b;
}

.problems-section .section-kicker {
  color: var(--color-primary);
}

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

.problem-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(100, 116, 139, 0.2);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(8, 18, 32, 0.06);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.problem-card::after {
  position: absolute;
  right: -35px;
  bottom: -65px;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.13), transparent 70%);
  content: "";
}

.problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.32);
  box-shadow: var(--shadow-sm);
}

.card-number {
  position: absolute;
  top: 25px;
  right: 26px;
  color: rgba(37, 99, 235, 0.2);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 800;
}

.icon-box {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 13px;
  color: var(--color-primary);
  background: rgba(37, 99, 235, 0.08);
}

.icon-box .icon {
  width: 23px;
  height: 23px;
}

.problem-card h3 {
  margin-bottom: 10px;
}

.problem-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  font-size: 0.92rem;
  line-height: 1.65;
}

/* Services */
.services-section {
  border-block: 1px solid rgba(100, 116, 139, 0.16);
  background: var(--color-white);
}

.services-section .section-heading h2,
.services-section .service-card h3 {
  color: #081220;
}

.services-section .section-heading p:last-child,
.services-section .service-card > p {
  color: #64748b;
}

.services-section .section-kicker {
  color: var(--color-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 440px;
  padding: 27px;
  border: 1px solid rgba(100, 116, 139, 0.2);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(8, 18, 32, 0.05);
  transition: transform 200ms ease, border-color 200ms ease, background-color 200ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.3);
  background: #ffffff;
}

.service-card-featured {
  border-color: rgba(37, 99, 235, 0.42);
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.1), transparent 35%),
    #ffffff;
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 30px;
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 14px;
  color: #7dd3fc;
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.2), rgba(56, 189, 248, 0.06));
}

.service-icon .icon {
  width: 25px;
  height: 25px;
}

.service-index {
  color: rgba(37, 99, 235, 0.25);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
}

.service-card h3 {
  font-size: 1.35rem;
}

.service-card > p {
  min-height: 78px;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(100, 116, 139, 0.16);
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 19px;
  color: #64748b;
  font-size: 0.82rem;
}

.check-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.09);
  content: "";
}

/* Products */
.products-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 42%, rgba(37, 99, 235, 0.06), transparent 28%),
    var(--color-white);
}

.products-section .section-heading h2 {
  color: #081220;
}

.products-section .section-heading p:last-child {
  color: #64748b;
}

.products-section .section-kicker {
  color: var(--color-primary);
}

.product-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.product-card {
  display: grid;
  min-height: 510px;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.7fr);
  align-items: center;
  gap: 22px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 18px;
  background: #f8fafc;
  box-shadow: 0 18px 42px rgba(8, 18, 32, 0.08);
}

.product-workshop {
  background: #f8fafc;
}

.product-label {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
  color: #64748b;
  font-size: 0.77rem;
  font-weight: 720;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-mark {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  font-size: 0.82rem;
  font-weight: 850;
}

.product-workshop .product-mark {
  background: linear-gradient(135deg, #16a34a, #34d399);
}

.product-copy h3 {
  margin-bottom: 18px;
  font-size: clamp(1.7rem, 2.5vw, 2.25rem);
  color: #081220;
}

.product-copy > p {
  margin-bottom: 26px;
  font-size: 0.88rem;
  color: #475569;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.feature-pills li {
  padding: 6px 10px;
  border: 1px solid rgba(100, 116, 139, 0.24);
  border-radius: 8px;
  color: #475569;
  background: #ffffff;
  font-size: 0.66rem;
  font-weight: 620;
}

.product-visual {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 18px;
  background: #f4f7fb;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.38);
  transform: rotateY(-2deg) rotateX(1deg);
}

.reference-product-visual {
  aspect-ratio: 540 / 440;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.reference-product-visual > :not(.mockup-device-image) {
  display: none;
}

.mockup-device-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-browser-bar {
  display: flex;
  height: 39px;
  align-items: center;
  gap: 6px;
  padding-inline: 13px;
  border-bottom: 1px solid #dce3eb;
  background: #e9eef4;
}

.product-browser-bar small {
  margin-left: 8px;
  color: #64748b;
  font-size: 0.55rem;
}

.pos-layout {
  display: grid;
  min-height: 380px;
  grid-template-columns: minmax(0, 1.45fr) minmax(165px, 0.65fr);
  color: #334155;
  background: #f6f8fb;
}

.pos-catalog {
  min-width: 0;
  padding: 20px;
  border-right: 1px solid #dce3eb;
}

.pos-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 19px;
}

.pos-toolbar strong {
  color: #0f172a;
  font-size: 0.82rem;
}

.pos-toolbar span {
  min-width: 140px;
  padding: 7px 10px;
  border: 1px solid #dce3eb;
  border-radius: 7px;
  color: #94a3b8;
  background: #fff;
  font-size: 0.48rem;
}

.pos-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pos-products > div {
  min-width: 0;
  padding: 10px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(15, 23, 42, 0.05);
}

.product-shape {
  display: block;
  height: 58px;
  margin-bottom: 8px;
  border-radius: 7px;
}

.shape-blue { background: linear-gradient(145deg, #dbeafe, #93c5fd); }
.shape-green { background: linear-gradient(145deg, #dcfce7, #86efac); }
.shape-orange { background: linear-gradient(145deg, #ffedd5, #fdba74); }
.shape-purple { background: linear-gradient(145deg, #f3e8ff, #c4b5fd); }

.pos-products strong,
.pos-products small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pos-products strong {
  color: #334155;
  font-size: 0.56rem;
}

.pos-products small {
  margin-top: 3px;
  color: #2563eb;
  font-size: 0.54rem;
  font-weight: 760;
}

.pos-ticket {
  display: flex;
  flex-direction: column;
  padding: 20px 16px;
  background: #fff;
}

.ticket-title,
.ticket-line,
.ticket-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.ticket-title {
  margin-bottom: 20px;
}

.ticket-title strong {
  color: #0f172a;
  font-size: 0.72rem;
}

.ticket-title span {
  padding: 3px 6px;
  border-radius: 5px;
  color: #2563eb;
  background: #eff6ff;
  font-size: 0.45rem;
}

.ticket-line {
  padding-block: 11px;
  border-bottom: 1px solid #edf1f5;
  color: #475569;
  font-size: 0.51rem;
}

.ticket-line span small {
  display: block;
  color: #94a3b8;
  font-size: 0.43rem;
}

.ticket-line strong {
  color: #334155;
  font-size: 0.52rem;
}

.ticket-total {
  margin-top: auto;
  padding-block: 17px;
  color: #475569;
  font-size: 0.62rem;
}

.ticket-total strong {
  color: #0f172a;
  font-size: 1rem;
}

.ticket-button {
  padding: 11px;
  border-radius: 8px;
  color: #fff;
  background: #2563eb;
  font-size: 0.58rem;
  font-weight: 750;
  text-align: center;
}

.workshop-layout {
  min-height: 380px;
  padding: 20px;
  color: #334155;
  background: #f6f8fb;
}

.workshop-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 17px;
}

.workshop-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 9px;
  background: #fff;
}

.workshop-summary span {
  color: #64748b;
  font-size: 0.51rem;
}

.workshop-summary strong {
  color: #0f172a;
  font-size: 0.94rem;
}

.workshop-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.board-column {
  min-width: 0;
  padding: 10px;
  border-radius: 9px;
  background: #edf1f5;
}

.board-column > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  color: #475569;
  font-size: 0.52rem;
  font-weight: 730;
}

.board-column > span i {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 5px;
  color: #64748b;
  background: #dce3eb;
  font-size: 0.43rem;
  font-style: normal;
}

.board-column article {
  padding: 11px;
  border: 1px solid #e2e8f0;
  border-left: 3px solid #38bdf8;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 5px 12px rgba(15, 23, 42, 0.05);
}

.board-column:nth-child(2) article { border-left-color: #f59e0b; }
.board-column:nth-child(3) article { border-left-color: #22c55e; }

.board-column article > * {
  display: block;
}

.board-column article b {
  margin-bottom: 7px;
  color: #64748b;
  font-size: 0.42rem;
}

.board-column article strong {
  overflow: hidden;
  color: #0f172a;
  font-size: 0.59rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.board-column article small {
  margin-top: 4px;
  color: #64748b;
  font-size: 0.47rem;
}

.board-column article em {
  margin-top: 17px;
  padding-top: 7px;
  border-top: 1px solid #edf1f5;
  color: #16a34a;
  font-size: 0.44rem;
  font-style: normal;
  font-weight: 700;
}

.custom-product-card {
  display: grid;
  grid-column: 1 / -1;
  min-height: 380px;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  align-items: center;
  gap: 80px;
  overflow: hidden;
  padding: 52px;
  border: 1px solid rgba(37, 99, 235, 0.35);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 50%, rgba(37, 99, 235, 0.15), transparent 34%),
    linear-gradient(135deg, rgba(13, 31, 49, 0.96), rgba(7, 17, 31, 0.96));
}

.custom-product-card h3 {
  margin-bottom: 15px;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.custom-product-card p:not(.section-kicker) {
  max-width: 540px;
  margin-bottom: 28px;
}

.custom-modules {
  position: relative;
  display: grid;
  min-height: 265px;
  grid-template-columns: 1fr 1fr;
  place-content: center;
  gap: 28px 72px;
}

.custom-modules span {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  color: #cbd5e1;
  background: rgba(16, 34, 53, 0.92);
  box-shadow: var(--shadow-sm);
  font-size: 0.78rem;
  font-weight: 700;
}

.custom-modules span .icon {
  color: var(--color-cyan);
}

.custom-modules i {
  position: absolute;
  z-index: 1;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.08), rgba(56, 189, 248, 0.5), rgba(56, 189, 248, 0.08));
}

.custom-modules i:nth-of-type(1) {
  top: 50%;
  left: 14%;
  width: 72%;
  height: 1px;
}

.custom-modules i:nth-of-type(2) {
  top: 19%;
  bottom: 19%;
  left: 50%;
  width: 1px;
  background: linear-gradient(rgba(56, 189, 248, 0.08), rgba(56, 189, 248, 0.5), rgba(56, 189, 248, 0.08));
}

.custom-modules i:nth-of-type(3) {
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--color-cyan);
  box-shadow: 0 0 0 8px rgba(56, 189, 248, 0.1);
}

/* Industries */
.industries-section {
  border-block: 1px solid rgba(100, 116, 139, 0.16);
  background: var(--color-white);
}

.industries-section .section-heading h2,
.industries-section .industry-card h3 {
  color: #081220;
}

.industries-section .section-heading p:last-child,
.industries-section .industry-card p {
  color: #64748b;
}

.industries-section .section-kicker {
  color: var(--color-primary);
}

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

.industry-card {
  min-height: 230px;
  padding: 25px;
  border: 1px solid rgba(100, 116, 139, 0.2);
  border-radius: 17px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(8, 18, 32, 0.05);
  transition: transform 180ms ease, border-color 180ms ease;
}

.industry-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.3);
}

.industry-card > span {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 12px;
  color: #7dd3fc;
  background: rgba(37, 99, 235, 0.12);
}

.industry-card > span .icon {
  width: 22px;
  height: 22px;
}

.industry-card h3 {
  font-size: 1.05rem;
}

.industry-card p {
  margin-bottom: 0;
  font-size: 0.82rem;
  line-height: 1.55;
}

/* Process */
.process-section {
  overflow: hidden;
  background: var(--color-white);
}

.process-section .section-heading h2,
.process-section .process-timeline h3 {
  color: #081220;
}

.process-section .section-heading p:last-child,
.process-section .process-timeline p {
  color: #64748b;
}

.process-section .section-kicker {
  color: var(--color-primary);
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-timeline::before {
  position: absolute;
  top: 58px;
  right: 9%;
  left: 9%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.5), transparent);
  content: "";
}

.process-timeline li {
  position: relative;
  padding: 25px 18px 0;
  text-align: center;
}

.process-number {
  position: absolute;
  top: 2px;
  right: 12px;
  color: rgba(148, 163, 184, 0.27);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.65rem;
}

.process-icon {
  position: relative;
  z-index: 2;
  display: grid;
  width: 67px;
  height: 67px;
  place-items: center;
  margin: 0 auto 25px;
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 18px;
  color: var(--color-cyan);
  background: #ffffff;
  box-shadow: 0 0 0 8px var(--color-white), 0 14px 32px rgba(8, 18, 32, 0.1);
}

.process-icon .icon {
  width: 26px;
  height: 26px;
}

.process-timeline h3 {
  font-size: 1.03rem;
}

.process-timeline p {
  margin-bottom: 0;
  font-size: 0.79rem;
  line-height: 1.6;
}

/* Differentiators */
.differentiators-section {
  border-block: 1px solid rgba(148, 163, 184, 0.08);
  background:
    radial-gradient(circle at 18% 36%, rgba(37, 99, 235, 0.09), transparent 27%),
    #081522;
}

.differentiators-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: 76px;
}

.differentiators-intro {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.differentiators-intro > p:not(.section-kicker) {
  margin-bottom: 28px;
}

.differentiators-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.differentiators-grid article {
  display: flex;
  min-height: 220px;
  align-items: flex-start;
  gap: 17px;
  padding: 25px;
  border: 1px solid var(--color-border);
  border-radius: 17px;
  background: rgba(13, 30, 47, 0.76);
}

.differentiators-grid article > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  color: #7dd3fc;
  background: rgba(37, 99, 235, 0.12);
}

.differentiators-grid article > span .icon {
  width: 20px;
  height: 20px;
}

.differentiators-grid h3 {
  margin-top: 7px;
  font-size: 1rem;
}

.differentiators-grid p {
  margin-bottom: 0;
  font-size: 0.79rem;
  line-height: 1.6;
}

/* Featured project */
.featured-project-section {
  overflow: hidden;
  background: var(--color-bg-deep);
}

.featured-project-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.77fr) minmax(0, 1.23fr);
  align-items: center;
  gap: 80px;
}

.featured-project-copy > p:not(.section-kicker) {
  margin-bottom: 17px;
}

.architecture-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.architecture-features li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #a9b8c8;
  font-size: 0.77rem;
  font-weight: 650;
}

.architecture-features .icon {
  width: 16px;
  height: 16px;
  color: var(--color-green);
  stroke-width: 2.5;
}

.architecture-diagram {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 26px;
  background:
    radial-gradient(circle at center, rgba(37, 99, 235, 0.14), transparent 45%),
    #081522;
  box-shadow: var(--shadow-lg);
}

.architecture-grid {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.06) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle, black 10%, transparent 75%);
}

.arch-node {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 150px;
  min-height: 95px;
  grid-template-columns: 39px 1fr;
  align-content: center;
  gap: 1px 10px;
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 15px;
  background: rgba(13, 31, 49, 0.96);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
}

.arch-node > span {
  display: grid;
  width: 39px;
  height: 39px;
  grid-row: 1 / 3;
  place-items: center;
  border-radius: 10px;
  color: #7dd3fc;
  background: rgba(37, 99, 235, 0.14);
}

.arch-node > span .icon {
  width: 19px;
  height: 19px;
}

.arch-node strong {
  align-self: end;
  color: #e2e8f0;
  font-size: 0.7rem;
}

.arch-node small {
  color: #64748b;
  font-size: 0.48rem;
}

.arch-users { top: 52px; left: 50%; transform: translateX(-50%); }
.arch-app { top: 212px; left: 35px; }
.arch-api { top: 212px; left: 50%; transform: translateX(-50%); border-color: rgba(56, 189, 248, 0.43); }
.arch-data { top: 212px; right: 35px; }
.arch-cloud { bottom: 42px; left: 50%; transform: translateX(-50%); }

.connector {
  position: absolute;
  z-index: 1;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.15), rgba(56, 189, 248, 0.7), rgba(56, 189, 248, 0.15));
}

.connector-one { top: 178px; left: 50%; width: 183px; transform: rotate(145deg); }
.connector-two { top: 178px; left: 50%; width: 183px; transform: rotate(35deg); }
.connector-three { top: 260px; left: 185px; width: calc(50% - 185px); }
.connector-four { top: 260px; left: 50%; width: calc(50% - 185px); }

.architecture-diagram::after {
  position: absolute;
  z-index: 1;
  top: 307px;
  left: 50%;
  width: 1px;
  height: 118px;
  background: linear-gradient(rgba(56, 189, 248, 0.6), rgba(56, 189, 248, 0.1));
  content: "";
}

.data-pulse {
  position: absolute;
  z-index: 4;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-cyan);
  box-shadow: 0 0 0 6px rgba(56, 189, 248, 0.1), 0 0 18px var(--color-cyan);
}

.pulse-one { top: 174px; left: calc(50% - 4px); }
.pulse-two { top: 256px; left: calc(50% - 4px); }

/* About */
.about-section {
  border-block: 1px solid rgba(148, 163, 184, 0.08);
  background: #081522;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 90px;
}

.about-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 25px;
  background:
    linear-gradient(rgba(56, 189, 248, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 32% 42%, rgba(37, 99, 235, 0.2), transparent 35%),
    #091725;
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.about-mark {
  position: absolute;
  top: 118px;
  left: 82px;
  display: grid;
  width: 142px;
  height: 142px;
  place-items: center;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 34px;
  background: rgba(13, 27, 42, 0.86);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
  transform: rotate(-4deg);
}

.about-stack {
  position: absolute;
  top: 64px;
  right: 53px;
  display: grid;
  gap: 9px;
}

.about-stack span {
  min-width: 130px;
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: #9fb0c3;
  background: rgba(16, 34, 53, 0.86);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.62rem;
}

.about-stack span:nth-child(2) { transform: translateX(18px); }
.about-stack span:nth-child(3) { transform: translateX(-9px); }
.about-stack span:nth-child(4) { transform: translateX(25px); }

.about-code-lines {
  position: absolute;
  right: 58px;
  bottom: 42px;
  left: 58px;
  display: grid;
  gap: 9px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 12px;
  background: rgba(4, 11, 20, 0.62);
}

.about-code-lines i {
  display: block;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.8) 0 12%, rgba(148, 163, 184, 0.2) 12% 68%, transparent 68%);
}

.about-code-lines i:nth-child(2) { width: 81%; margin-left: 22px; }
.about-code-lines i:nth-child(3) { width: 65%; margin-left: 22px; }
.about-code-lines i:nth-child(4) { width: 74%; margin-left: 38px; }
.about-code-lines i:nth-child(5) { width: 48%; }

.about-copy p:not(.section-kicker) {
  margin-bottom: 16px;
  font-size: 1rem;
}

/* Testimonials */
.testimonials-section {
  background: var(--color-white);
}

.testimonials-section .section-heading h2 {
  color: #081220;
}

.testimonials-section .section-heading p:last-child,
.testimonials-section .testimonials-grid blockquote > p {
  color: #475569;
}

.testimonials-section .section-kicker {
  color: var(--color-primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.testimonials-grid blockquote {
  display: flex;
  min-height: 315px;
  flex-direction: column;
  margin: 0;
  padding: 29px;
  border: 1px solid rgba(100, 116, 139, 0.2);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(8, 18, 32, 0.06);
}

.quote-icon {
  width: 31px;
  height: 31px;
  margin-bottom: 27px;
  fill: none;
  stroke: var(--color-cyan);
  stroke-width: 1.5;
  opacity: 0.7;
}

.testimonials-grid blockquote > p {
  margin-bottom: 32px;
  color: #475569;
  font-size: 1.02rem;
  line-height: 1.65;
}

.testimonials-grid footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
}

.testimonials-grid footer span,
.testimonials-grid footer small {
  display: block;
}

.testimonials-grid footer span {
  margin-bottom: 3px;
  color: #1e293b;
  font-size: 0.78rem;
  font-weight: 720;
}

.testimonials-grid footer small {
  color: #64748b;
  font-size: 0.66rem;
}

/* FAQ */
.faq-section {
  border-block: 1px solid rgba(148, 163, 184, 0.08);
  background: #081522;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1.35fr);
  align-items: start;
  gap: 85px;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.faq-intro > p:not(.section-kicker) {
  margin-bottom: 27px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: rgba(13, 30, 47, 0.72);
}

.faq-list details[open] {
  border-color: rgba(56, 189, 248, 0.3);
  background: rgba(16, 36, 55, 0.9);
}

.faq-list summary {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  color: #e2e8f0;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 680;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary > span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  color: #94a3b8;
  background: rgba(148, 163, 184, 0.08);
}

.faq-list summary .icon {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.faq-list details[open] summary .icon {
  transform: rotate(180deg);
}

.faq-list details > div {
  padding: 0 72px 20px 20px;
}

.faq-list details p {
  margin: 0;
  font-size: 0.88rem;
}

/* Contact */
.contact-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 48%, rgba(37, 99, 235, 0.19), transparent 29%),
    linear-gradient(135deg, #07111f, #0a1928 72%, #07111f);
}

.contact-section::before {
  position: absolute;
  inset: 0;
  opacity: 0.27;
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.05) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, black, transparent 58%);
  content: "";
  pointer-events: none;
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(330px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: 80px;
}

.contact-copy h2 {
  font-size: clamp(2.25rem, 4.6vw, 4.1rem);
}

.contact-copy > p:not(.section-kicker) {
  max-width: 565px;
  font-size: 1.05rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-block: 31px;
}

.contact-promise {
  display: flex;
  max-width: 550px;
  align-items: flex-start;
  gap: 15px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.contact-promise > span {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  color: #86efac;
  background: rgba(34, 197, 94, 0.1);
}

.contact-promise strong {
  display: block;
  color: #e2e8f0;
  font-size: 0.87rem;
}

.contact-promise p {
  margin: 3px 0 0;
  font-size: 0.76rem;
}

.contact-form {
  padding: 34px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 24px;
  background: rgba(12, 28, 44, 0.95);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.form-heading {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

.form-heading span {
  display: block;
  margin-bottom: 3px;
  color: #f1f5f9;
  font-size: 1.12rem;
  font-weight: 730;
}

.form-heading p {
  margin: 0;
  font-size: 0.75rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.form-field {
  min-width: 0;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  margin-bottom: 6px;
  color: #cbd5e1;
  font-size: 0.75rem;
  font-weight: 660;
}

.form-field label span {
  color: #64748b;
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 10px;
  outline: none;
  color: #e2e8f0;
  background: rgba(4, 11, 20, 0.56);
  font-size: 0.84rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.form-field input,
.form-field select {
  padding: 0 13px;
}

.form-field textarea {
  min-height: 120px;
  padding: 12px 13px;
  resize: vertical;
}

.form-field select {
  color-scheme: dark;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #55677c;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: rgba(148, 163, 184, 0.4);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-cyan);
  background: rgba(4, 11, 20, 0.78);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.11);
}

.field-help {
  display: block;
  margin-top: 5px;
  color: #64748b;
  font-size: 0.66rem;
}

.field-error {
  display: none;
  margin-top: 5px;
  color: #fca5a5;
  font-size: 0.66rem;
}

.contact-form[data-validated="true"] .form-field[data-invalid="true"] .field-error,
.contact-form[data-validated="true"] .form-consent[data-invalid="true"] .field-error {
  display: block;
}

.form-field[data-invalid="true"] input,
.form-field[data-invalid="true"] select,
.form-field[data-invalid="true"] textarea {
  border-color: rgba(248, 113, 113, 0.8);
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.08);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-consent {
  display: grid;
  grid-template-columns: 19px 1fr;
  align-items: start;
  gap: 9px;
  margin-block: 20px;
  color: #94a3b8;
  cursor: pointer;
  font-size: 0.71rem;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--color-primary);
}

.form-consent a {
  color: #7dd3fc;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-consent .field-error {
  grid-column: 2;
  margin-top: -4px;
}

.form-submit {
  width: 100%;
}

.button-loading {
  display: none;
}

.form-submit[data-loading="true"] .button-label,
.form-submit[data-loading="true"] .icon {
  display: none;
}

.form-submit[data-loading="true"] .button-loading {
  display: inline;
}

.form-status {
  margin: 13px 0 0;
  padding: 11px 13px;
  border: 1px solid var(--color-border);
  border-radius: 9px;
  color: #b8c5d4;
  background: rgba(148, 163, 184, 0.07);
  font-size: 0.72rem;
}

.form-status[data-state="success"] {
  border-color: rgba(34, 197, 94, 0.35);
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.08);
}

.form-status[data-state="warning"] {
  border-color: rgba(251, 191, 36, 0.38);
  color: #fde68a;
  background: rgba(251, 191, 36, 0.07);
}

.form-status[data-state="error"] {
  border-color: rgba(248, 113, 113, 0.38);
  color: #fecaca;
  background: rgba(248, 113, 113, 0.07);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--color-border);
  background: #040b14;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr repeat(3, 0.75fr);
  gap: 60px;
  padding-block: 70px 58px;
}

.footer-logo,
.legal-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img,
.legal-logo img {
  width: 62px;
  height: 41px;
}

.footer-brand > p {
  max-width: 330px;
  margin-bottom: 22px;
  font-size: 0.85rem;
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #7f91a6;
  font-size: 0.76rem;
}

.footer-location .icon {
  width: 17px;
  height: 17px;
  color: var(--color-cyan);
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
}

.footer-column h2 {
  margin-bottom: 12px;
  color: #e2e8f0;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-column a {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  gap: 7px;
  color: #7f91a6;
  font-size: 0.76rem;
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: #dbeafe;
}

.footer-column .icon {
  width: 15px;
  height: 15px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 21px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: #52657a;
  font-size: 0.7rem;
}

/* Responsive */
@media (max-width: 1180px) {
  .header-cta {
    display: none;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
    gap: 35px;
  }

  .hero h1 {
    font-size: clamp(3rem, 5.5vw, 4.15rem);
  }

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

  .service-card {
    min-height: 460px;
  }

  .product-card {
    grid-template-columns: minmax(0, 1fr) 165px;
    gap: 18px;
    padding: 28px;
  }

  .product-shape {
    height: 50px;
  }

  .differentiators-layout,
  .featured-project-layout,
  .contact-layout {
    gap: 52px;
  }

  .architecture-diagram {
    min-height: 490px;
  }

  .arch-node {
    width: 132px;
  }

  .arch-app { left: 20px; }
  .arch-data { right: 20px; }
  .connector-three { left: 152px; width: calc(50% - 152px); }
  .connector-four { width: calc(50% - 152px); }
}

@media (max-width: 959px) {
  :root {
    --header-height: 74px;
  }

  .section {
    padding-block: 96px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .brand img {
    width: 58px;
    height: 38px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 78px);
    padding-bottom: 110px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }

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

  .hero h1 {
    max-width: 780px;
    font-size: clamp(2.8rem, 8vw, 4.5rem);
  }

  .hero-visual {
    width: calc(100% - 26px);
    max-width: 790px;
    margin-inline: auto;
  }

  .dashboard-shell {
    transform: none;
  }

  .trust-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .value-strip article:nth-child(2) {
    border-right: 0;
  }

  .value-strip article:nth-child(n + 3) {
    padding-top: 22px;
    border-top: 1px solid rgba(100, 116, 139, 0.17);
  }

  .technology-list {
    justify-content: flex-start;
  }

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

  .split-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .split-heading > p {
    max-width: 670px;
  }

  .product-card {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .product-copy {
    max-width: 690px;
  }

  .product-visual {
    width: 100%;
    max-width: 720px;
    margin-inline: auto;
    transform: none;
  }

  .custom-product-card {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

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

  .process-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 28px 16px;
  }

  .process-timeline::before {
    display: none;
  }

  .process-timeline li {
    min-height: 245px;
    padding: 25px;
    border: 1px solid rgba(100, 116, 139, 0.2);
    border-radius: 17px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(8, 18, 32, 0.06);
  }

  .process-icon {
    box-shadow: none;
  }

  .differentiators-layout,
  .featured-project-layout,
  .about-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .differentiators-intro,
  .faq-intro {
    position: static;
    max-width: 730px;
  }

  .architecture-diagram {
    width: 100%;
    max-width: 720px;
    margin-inline: auto;
  }

  .about-visual {
    width: 100%;
    max-width: 690px;
    margin-inline: auto;
  }

  .about-copy {
    max-width: 690px;
  }

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

  .testimonials-grid blockquote:last-child {
    grid-column: 1 / -1;
    min-height: 250px;
  }

  .contact-copy {
    max-width: 760px;
  }

  .contact-form {
    max-width: 760px;
  }

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

  .footer-column:last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .section {
    padding-block: 80px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .brand img {
    width: 55px;
    height: 36px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 62px);
    padding-bottom: 90px;
  }

  .hero-layout {
    gap: 58px;
  }

  .eyebrow {
    align-items: flex-start;
    font-size: 0.68rem;
  }

  .eyebrow-dot {
    flex: 0 0 auto;
    margin-top: 4px;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(2.2rem, 10.4vw, 3.1rem);
  }

  .hero-description {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .hero-actions {
    display: grid;
  }

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

  .capability-list {
    display: none;
  }

  .hero-visual {
    width: calc(100% - 8px);
  }

  .hero-network {
    inset: -35px -25px -30px;
  }

  .dashboard-topbar {
    height: 41px;
    grid-template-columns: 1fr auto;
  }

  .dashboard-url {
    display: none;
  }

  .dashboard-body {
    min-height: 420px;
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    display: none;
  }

  .dashboard-content {
    padding: 15px;
  }

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

  .metric-card:nth-child(3) {
    grid-column: 1 / -1;
  }

  .dashboard-panels {
    grid-template-columns: 1fr;
  }

  .activity-panel {
    display: none;
  }

  .mobile-insight-card {
    right: -8px;
    bottom: -48px;
    width: 164px;
  }

  .trust-layout {
    padding-block: 24px;
  }

  .value-strip-grid {
    grid-template-columns: 1fr;
    padding-block: 12px;
  }

  .value-strip article,
  .value-strip article:first-child,
  .value-strip article:last-child {
    padding: 18px 0;
    border-top: 1px solid rgba(100, 116, 139, 0.17);
    border-right: 0;
  }

  .value-strip article:first-child {
    border-top: 0;
  }

  .technology-list li {
    font-size: 0.62rem;
  }

  .problems-grid,
  .services-grid,
  .industries-grid,
  .differentiators-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .problem-card {
    min-height: 245px;
  }

  .service-card {
    min-height: auto;
  }

  .service-card > p {
    min-height: auto;
  }

  .product-card,
  .custom-product-card {
    padding: 28px;
    border-radius: 21px;
  }

  .pos-layout {
    min-height: 330px;
    grid-template-columns: 1fr 130px;
  }

  .pos-catalog,
  .workshop-layout {
    padding: 12px;
  }

  .pos-toolbar span {
    display: none;
  }

  .product-shape {
    height: 42px;
  }

  .pos-ticket {
    padding: 13px 10px;
  }

  .ticket-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .workshop-summary > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .board-column {
    padding: 7px;
  }

  .board-column article {
    padding: 8px;
  }

  .custom-product-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .custom-modules {
    min-height: 240px;
    gap: 20px 45px;
  }

  .industry-card {
    min-height: 205px;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .process-timeline li {
    display: grid;
    min-height: auto;
    grid-template-columns: 65px 1fr;
    column-gap: 18px;
    text-align: left;
  }

  .process-number {
    right: 17px;
  }

  .process-icon {
    grid-row: 1 / 3;
    margin: 0;
  }

  .process-timeline h3 {
    align-self: end;
  }

  .process-timeline p {
    grid-column: 2;
  }

  .architecture-diagram {
    min-height: 620px;
  }

  .arch-node {
    width: 144px;
  }

  .arch-users { top: 32px; }
  .arch-app { top: 170px; left: 24px; }
  .arch-api { top: 304px; }
  .arch-data { top: 438px; right: 24px; }
  .arch-cloud { bottom: 24px; left: 24px; transform: none; }

  .connector-one,
  .connector-two,
  .connector-three,
  .connector-four,
  .architecture-diagram::after,
  .data-pulse {
    display: none;
  }

  .about-visual {
    min-height: 400px;
  }

  .about-mark {
    top: 80px;
    left: 34px;
    width: 120px;
    height: 120px;
  }

  .about-mark img {
    width: 96px;
    height: auto;
  }

  .about-stack {
    top: 43px;
    right: 28px;
  }

  .about-stack span {
    min-width: 112px;
  }

  .about-code-lines {
    right: 28px;
    bottom: 29px;
    left: 28px;
  }

  .testimonials-grid blockquote,
  .testimonials-grid blockquote:last-child {
    min-height: 270px;
    grid-column: auto;
  }

  .faq-list details > div {
    padding-right: 20px;
  }

  .contact-actions {
    display: grid;
  }

  .contact-actions .button {
    width: 100%;
  }

  .contact-form {
    padding: 25px;
    border-radius: 19px;
  }

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

  .form-field-full {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

@media (max-width: 420px) {
  .container {
    width: calc(100% - 30px);
  }

  .section {
    padding-block: 72px;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 10vw, 2.7rem);
  }

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

  .dashboard-heading .live-status {
    display: none;
  }

  .metric-card {
    padding: 10px;
  }

  .mobile-insight-card {
    width: 150px;
  }

  .product-card,
  .custom-product-card {
    padding: 22px;
  }

  .product-browser-bar small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .pos-layout {
    grid-template-columns: 1fr;
  }

  .pos-ticket {
    display: none;
  }

  .workshop-summary {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
  }

  .workshop-summary > div {
    padding: 8px;
  }

  .workshop-board {
    grid-template-columns: 1fr;
  }

  .board-column:nth-child(3) {
    display: none;
  }

  .custom-modules {
    gap: 15px;
  }

  .custom-modules span {
    min-height: 58px;
    padding: 10px;
    font-size: 0.66rem;
  }

  .architecture-diagram {
    min-height: 610px;
  }

  .arch-node {
    width: 132px;
  }

  .arch-app { left: 14px; }
  .arch-data { right: 14px; }
  .arch-cloud { left: 14px; }

  .about-mark {
    left: 22px;
  }

  .about-stack {
    right: 17px;
  }

  .contact-form {
    padding: 21px;
  }

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

  .footer-brand,
  .footer-column:last-child {
    grid-column: auto;
  }
}

@media (min-width: 1600px) {
  :root {
    --container: 1320px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(610px, 1.05fr);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Legal page */
.legal-page {
  background: var(--color-bg-deep);
}

.legal-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid var(--color-border);
  background: rgba(7, 17, 31, 0.92);
  backdrop-filter: blur(16px);
}

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

.legal-header img {
  width: 62px;
}

.legal-main {
  padding-block: 90px 110px;
}

.legal-content {
  max-width: 900px;
}

.legal-content h1 {
  margin-bottom: 12px;
  font-size: clamp(2.5rem, 6vw, 4.6rem);
}

.legal-content h2 {
  margin-top: 48px;
  margin-bottom: 14px;
  font-size: 1.45rem;
}

.legal-content p {
  max-width: 820px;
}

.legal-content code {
  padding: 2px 6px;
  border: 1px solid var(--color-border);
  border-radius: 5px;
  color: #bae6fd;
  background: var(--color-bg-soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.88em;
}

.legal-updated {
  color: #64748b;
  font-size: 0.8rem;
}

.legal-notice {
  margin-block: 38px;
  padding: 20px;
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-radius: 14px;
  background: rgba(251, 191, 36, 0.06);
}

.legal-notice strong {
  display: block;
  margin-bottom: 5px;
  color: #fde68a;
}

.legal-notice p {
  margin: 0;
  font-size: 0.84rem;
}

.legal-content > .button {
  margin-top: 42px;
}

.legal-footer {
  border-top: 1px solid var(--color-border);
  background: #040b14;
}

.legal-footer p {
  margin: 0;
  padding-block: 24px;
  color: #64748b;
  font-size: 0.72rem;
}

@media (max-width: 540px) {
  .legal-header-inner {
    min-height: 70px;
  }

  .legal-header img {
    width: 55px;
  }

  .legal-header .button {
    padding-inline: 12px;
    font-size: 0.72rem;
  }

  .legal-main {
    padding-block: 68px 80px;
  }
}

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

.button.is-disabled,
.lab-card-video.is-disabled {
  cursor: not-allowed;
  opacity: 0.58;
  pointer-events: none;
}

.desktop-nav a[aria-current="page"],
.mobile-nav a[aria-current="page"] {
  color: var(--color-white);
  background: rgba(37, 99, 235, 0.13);
}

.tone-blue { --lab-accent: #3b82f6; --lab-accent-rgb: 59, 130, 246; }
.tone-purple { --lab-accent: #8b5cf6; --lab-accent-rgb: 139, 92, 246; }
.tone-cyan { --lab-accent: #06b6d4; --lab-accent-rgb: 6, 182, 212; }
.tone-red { --lab-accent: #ef4444; --lab-accent-rgb: 239, 68, 68; }
.tone-green { --lab-accent: #10b981; --lab-accent-rgb: 16, 185, 129; }
.tone-pink { --lab-accent: #ec4899; --lab-accent-rgb: 236, 72, 153; }
.tone-slate { --lab-accent: #475569; --lab-accent-rgb: 71, 85, 105; }
.tone-orange { --lab-accent: #f97316; --lab-accent-rgb: 249, 115, 22; }

/* Laboratory on home */
.home-laboratory-section {
  overflow: hidden;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  background:
    radial-gradient(circle at 86% 13%, rgba(37, 99, 235, 0.15), transparent 27%),
    radial-gradient(circle at 8% 82%, rgba(139, 92, 246, 0.09), transparent 26%),
    #081220;
}

.home-laboratory-grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 78%, transparent);
}

.home-laboratory-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(410px, 0.88fr);
  align-items: center;
  gap: 80px;
}

.home-laboratory-intro h2 {
  max-width: 700px;
}

.home-laboratory-intro h2 span {
  color: #38bdf8;
}

.home-laboratory-intro > div:first-child > p:not(.section-kicker) {
  max-width: 680px;
  margin-bottom: 13px;
}

.home-laboratory-actions,
.laboratory-hero-actions,
.laboratory-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.home-laboratory-panel {
  position: relative;
  overflow: visible;
  border: 1px solid rgba(96, 165, 250, 0.24);
  border-radius: 18px;
  background: rgba(13, 27, 42, 0.86);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.36), 0 0 60px rgba(37, 99, 235, 0.11);
}

.home-laboratory-panel::after {
  position: absolute;
  z-index: -1;
  inset: 25px -28px -28px 25px;
  border: 1px solid rgba(56, 189, 248, 0.13);
  border-radius: 22px;
  content: "";
}

.home-laboratory-panel-top {
  display: flex;
  height: 43px;
  align-items: center;
  gap: 16px;
  padding-inline: 15px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(5, 12, 22, 0.55);
}

.home-laboratory-panel-top > span {
  display: flex;
  gap: 5px;
}

.home-laboratory-panel-top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #334155;
}

.home-laboratory-panel-top i:first-child { background: #ef4444; }
.home-laboratory-panel-top i:nth-child(2) { background: #f59e0b; }
.home-laboratory-panel-top i:last-child { background: #10b981; }

.home-laboratory-panel-top small {
  color: #64748b;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.66rem;
}

.home-laboratory-panel-body {
  min-height: 280px;
  padding: 36px;
}

.home-lab-icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 18px;
  color: #7dd3fc;
  background: rgba(37, 99, 235, 0.14);
}

.home-lab-icon .icon {
  width: 31px;
  height: 31px;
}

.home-laboratory-panel-body > div > small {
  color: #38bdf8;
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.home-laboratory-panel-body > div > strong {
  display: block;
  margin-top: 6px;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.home-laboratory-panel-body > div > p {
  margin: 7px 0 24px;
  font-size: 0.77rem;
}

.home-lab-progress > span {
  display: block;
  height: 7px;
  margin-bottom: 9px;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(148, 163, 184, 0.16);
}

.home-lab-progress i {
  display: block;
  width: 62%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-primary), var(--color-cyan));
  box-shadow: 0 0 18px rgba(6, 182, 212, 0.5);
}

.home-lab-progress small {
  color: #64748b;
  font-size: 0.64rem;
}

.home-laboratory-panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 15px 20px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(5, 12, 22, 0.35);
}

.home-laboratory-panel-tags span {
  padding: 4px 8px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 6px;
  color: #8ea2b8;
  font-size: 0.6rem;
  font-weight: 700;
}

.home-laboratory-categories {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 72px;
  padding: 15px;
  overflow-x: auto;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 15px;
  background: rgba(13, 27, 42, 0.72);
  scrollbar-width: thin;
}

.home-laboratory-categories span,
.home-laboratory-categories a {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 8px;
  color: #aab7c7;
  background: rgba(148, 163, 184, 0.045);
  font-size: 0.69rem;
  font-weight: 650;
}

.home-laboratory-categories a {
  color: #7dd3fc;
  border-color: rgba(56, 189, 248, 0.2);
}

.home-laboratory-categories .icon {
  width: 15px;
  height: 15px;
}

.home-laboratory-heading {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-top: 75px;
  margin-bottom: 28px;
}

.home-laboratory-heading h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
}

.home-laboratory-heading .section-kicker {
  margin-bottom: 8px;
}

.home-youtube-callout {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  padding: 24px 28px;
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(127, 29, 29, 0.17), rgba(13, 27, 42, 0.8));
}

.video-play {
  display: grid;
  width: 55px;
  height: 55px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #ef4444;
  box-shadow: 0 12px 28px rgba(239, 68, 68, 0.3);
}

.video-play .icon {
  width: 25px;
  height: 25px;
}

.home-youtube-callout strong {
  display: block;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.home-youtube-callout p {
  margin: 3px 0 0;
  font-size: 0.78rem;
}

/* Laboratory catalog page */
.laboratory-page,
.laboratory-detail-page {
  background: var(--color-bg-deep);
}

.laboratory-hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: calc(var(--header-height) + 75px);
  padding-bottom: 95px;
  background:
    radial-gradient(circle at 76% 24%, rgba(37, 99, 235, 0.16), transparent 28%),
    radial-gradient(circle at 14% 82%, rgba(139, 92, 246, 0.08), transparent 26%),
    #050c16;
}

.laboratory-hero-grid,
.laboratory-detail-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, #000 22%, transparent 92%);
}

.laboratory-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.45;
}

.laboratory-hero-orb-one {
  top: 16%;
  right: 9%;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(56, 189, 248, 0.16);
  box-shadow: inset 0 0 60px rgba(37, 99, 235, 0.1);
}

.laboratory-hero-orb-two {
  right: 34%;
  bottom: 13%;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.laboratory-hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: 70px;
}

.laboratory-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 6vw, 5.6rem);
}

.laboratory-hero-copy h1 span {
  color: #38bdf8;
}

.laboratory-hero-subtitle {
  max-width: 700px;
  margin-bottom: 15px;
  color: #d5e1ed;
  font-size: 1.08rem;
}

.laboratory-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
}

.laboratory-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.laboratory-hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #8ea2b8;
  font-size: 0.72rem;
  font-weight: 650;
}

.laboratory-hero-points .icon {
  width: 16px;
  height: 16px;
  color: #38bdf8;
}

.laboratory-terminal {
  position: relative;
  border: 1px solid rgba(96, 165, 250, 0.24);
  border-radius: 20px;
  background: #0b1828;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.42), 0 0 80px rgba(37, 99, 235, 0.1);
  transform: perspective(1100px) rotateY(-3deg) rotateX(1deg);
}

.laboratory-terminal::before {
  position: absolute;
  z-index: -1;
  inset: 32px -32px -32px 32px;
  border: 1px solid rgba(56, 189, 248, 0.11);
  border-radius: 25px;
  content: "";
}

.laboratory-terminal-bar {
  display: flex;
  height: 46px;
  align-items: center;
  gap: 6px;
  padding-inline: 15px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.13);
  background: #081321;
}

.laboratory-terminal-bar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #334155;
}

.laboratory-terminal-bar > span:first-child { background: #ef4444; }
.laboratory-terminal-bar > span:nth-child(2) { background: #f59e0b; }
.laboratory-terminal-bar > span:nth-child(3) { background: #10b981; }

.laboratory-terminal-bar small {
  margin-left: 9px;
  color: #52657a;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.62rem;
}

.laboratory-terminal-body {
  display: grid;
  min-height: 425px;
  grid-template-columns: 58px 1fr;
}

.terminal-sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 13px;
  padding: 18px 9px;
  border-right: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(5, 12, 22, 0.48);
}

.terminal-sidebar strong {
  margin-bottom: 12px;
  color: #38bdf8;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
}

.terminal-sidebar span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  color: #52657a;
}

.terminal-sidebar span.is-active {
  color: #7dd3fc;
  background: rgba(37, 99, 235, 0.15);
}

.terminal-content {
  min-width: 0;
  padding: 31px;
}

.terminal-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.terminal-heading small,
.terminal-task small {
  display: block;
  color: #38bdf8;
  font-size: 0.57rem;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.terminal-heading strong {
  display: block;
  margin-top: 5px;
  color: #f8fafc;
  font-family: var(--font-display);
  font-size: 1.18rem;
}

.terminal-heading > span {
  padding: 5px 8px;
  border: 1px solid rgba(56, 189, 248, 0.15);
  border-radius: 7px;
  color: #7dd3fc;
  background: rgba(37, 99, 235, 0.1);
  font-size: 0.61rem;
  font-weight: 750;
}

.terminal-progress {
  height: 5px;
  margin-block: 21px 29px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(148, 163, 184, 0.12);
}

.terminal-progress span {
  display: block;
  width: 50%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
  animation: laboratory-pulse 2.8s ease-in-out infinite;
}

@keyframes laboratory-pulse {
  0%, 100% { width: 48%; filter: brightness(1); }
  50% { width: 64%; filter: brightness(1.25); }
}

.terminal-code {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  padding: 20px;
  border: 1px solid rgba(148, 163, 184, 0.11);
  border-radius: 12px;
  background: #06101d;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.7rem;
  line-height: 2;
}

.terminal-code i {
  color: #334155;
  font-style: normal;
}

.terminal-code code {
  color: #cbd5e1;
  white-space: nowrap;
}

.terminal-code b { color: #7dd3fc; font-weight: 500; }
.terminal-code em { color: #c4b5fd; font-style: normal; }

.terminal-task {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 19px;
  padding: 14px;
  border: 1px solid rgba(16, 185, 129, 0.16);
  border-radius: 11px;
  background: rgba(16, 185, 129, 0.055);
}

.terminal-task > span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  color: #6ee7b7;
  background: rgba(16, 185, 129, 0.12);
}

.terminal-task strong {
  display: block;
  margin-top: 2px;
  color: #d5e1ed;
  font-size: 0.76rem;
}

.laboratory-floating-badge {
  position: absolute;
  right: -30px;
  bottom: -26px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 13px;
  color: #c4b5fd;
  background: rgba(15, 23, 42, 0.95);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.laboratory-floating-badge > .icon {
  width: 23px;
  height: 23px;
}

.laboratory-floating-badge strong,
.laboratory-floating-badge small {
  display: block;
}

.laboratory-floating-badge strong {
  color: #e2e8f0;
  font-size: 0.7rem;
}

.laboratory-floating-badge small {
  color: #64748b;
  font-size: 0.56rem;
}

.laboratory-benefits {
  position: relative;
  z-index: 2;
  border-block: 1px solid rgba(100, 116, 139, 0.16);
  background: #f8fafc;
}

.laboratory-benefits-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: stretch;
}

.laboratory-benefits-grid > span {
  position: relative;
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  padding: 17px 10px;
  border-right: 1px solid rgba(100, 116, 139, 0.13);
  color: #334155;
  font-size: 0.65rem;
  font-weight: 700;
  text-align: center;
}

.laboratory-benefits-grid > span:last-child {
  border-right: 0;
}

.laboratory-benefits-grid .icon {
  color: #2563eb;
}

.laboratory-benefits-grid small {
  position: absolute;
  top: 8px;
  right: 7px;
  padding: 2px 5px;
  border-radius: 4px;
  color: #7c3aed;
  background: #f3e8ff;
  font-size: 0.48rem;
  text-transform: uppercase;
}

.laboratory-categories-section,
.laboratory-future-section {
  background: #f8fafc;
}

.laboratory-categories-section .section-heading h2,
.laboratory-catalog-section .section-heading h2,
.laboratory-future-section h2 {
  color: #081220;
}

.laboratory-categories-section .section-heading p,
.laboratory-catalog-section .section-heading p,
.laboratory-future-section p {
  color: #64748b;
}

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

.laboratory-category {
  position: relative;
  display: grid;
  min-height: 145px;
  align-content: end;
  justify-items: start;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(100, 116, 139, 0.19);
  border-radius: 14px;
  background: #fff;
  text-align: left;
  box-shadow: 0 10px 26px rgba(8, 18, 32, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.laboratory-category::after {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(var(--lab-accent-rgb), 0.07);
  content: "";
}

.laboratory-category:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--lab-accent-rgb), 0.35);
  box-shadow: 0 16px 34px rgba(8, 18, 32, 0.08);
}

.laboratory-category > span {
  position: absolute;
  z-index: 1;
  top: 18px;
  left: 18px;
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 10px;
  color: var(--lab-accent);
  background: rgba(var(--lab-accent-rgb), 0.09);
}

.laboratory-category strong {
  position: relative;
  z-index: 1;
  color: #0f172a;
  font-family: var(--font-display);
  font-size: 0.88rem;
}

.laboratory-category small {
  position: relative;
  z-index: 1;
  margin-top: 3px;
  color: #94a3b8;
  font-size: 0.58rem;
}

.laboratory-catalog-section {
  background:
    radial-gradient(circle at 12% 16%, rgba(37, 99, 235, 0.05), transparent 25%),
    #eef3f8;
}

.laboratory-catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.laboratory-search {
  position: relative;
  display: flex;
  width: min(100%, 520px);
  align-items: center;
}

.laboratory-search .icon {
  position: absolute;
  left: 16px;
  color: #64748b;
  pointer-events: none;
}

.laboratory-search input {
  width: 100%;
  min-height: 52px;
  padding: 12px 18px 12px 48px;
  border: 1px solid rgba(100, 116, 139, 0.23);
  border-radius: 12px;
  outline: 0;
  color: #0f172a;
  background: #fff;
  box-shadow: 0 8px 22px rgba(8, 18, 32, 0.045);
}

.laboratory-search input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.11);
}

.laboratory-result-count {
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 700;
}

.laboratory-filters {
  display: flex;
  gap: 7px;
  margin-bottom: 36px;
  padding-bottom: 8px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.laboratory-filters button {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 7px 11px;
  border: 1px solid rgba(100, 116, 139, 0.19);
  border-radius: 8px;
  color: #64748b;
  background: #fff;
  font-size: 0.64rem;
  font-weight: 700;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.laboratory-filters button:hover,
.laboratory-filters button[aria-pressed="true"] {
  border-color: #2563eb;
  color: #fff;
  background: #2563eb;
}

.laboratory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.laboratory-card {
  --lab-accent: #3b82f6;
  --lab-accent-rgb: 59, 130, 246;
  display: flex;
  min-width: 0;
  min-height: 570px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(100, 116, 139, 0.2);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 16px 35px rgba(8, 18, 32, 0.07);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.laboratory-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--lab-accent-rgb), 0.35);
  box-shadow: 0 23px 50px rgba(8, 18, 32, 0.12);
}

.laboratory-card-visual {
  position: relative;
  display: grid;
  min-height: 158px;
  overflow: hidden;
  place-items: center;
  color: var(--lab-accent);
  background:
    radial-gradient(circle at 50% 52%, rgba(var(--lab-accent-rgb), 0.18), transparent 34%),
    linear-gradient(145deg, #081525, #0d2035);
}

.laboratory-card-grid {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(var(--lab-accent-rgb), 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--lab-accent-rgb), 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle, #000, transparent 70%);
}

.laboratory-card-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid rgba(var(--lab-accent-rgb), 0.35);
  border-radius: 18px;
  background: rgba(var(--lab-accent-rgb), 0.13);
  box-shadow: 0 0 38px rgba(var(--lab-accent-rgb), 0.18);
}

.laboratory-card-icon .icon {
  width: 31px;
  height: 31px;
}

.laboratory-card-code {
  position: absolute;
  right: 19px;
  bottom: 13px;
  color: rgba(255, 255, 255, 0.12);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 1.3rem;
  font-weight: 800;
}

.laboratory-card-body {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.laboratory-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.laboratory-card-meta > span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #64748b;
  font-size: 0.63rem;
  font-weight: 650;
}

.laboratory-card-meta .icon {
  width: 14px;
  height: 14px;
}

.difficulty {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 3px 8px;
  border-radius: 6px;
  color: #047857;
  background: #d1fae5;
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.difficulty-intermedio {
  color: #b45309;
  background: #fef3c7;
}

.difficulty-avanzado {
  color: #b91c1c;
  background: #fee2e2;
}

.laboratory-card h3 {
  margin-bottom: 10px;
  color: #0f172a;
  font-size: 1.18rem;
  line-height: 1.22;
}

.laboratory-card-body > p {
  margin-bottom: 16px;
  color: #64748b;
  font-size: 0.78rem;
  line-height: 1.65;
}

.technology-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.technology-badges > span {
  padding: 4px 7px;
  border: 1px solid rgba(100, 116, 139, 0.17);
  border-radius: 6px;
  color: #475569;
  background: #f8fafc;
  font-size: 0.55rem;
  font-weight: 700;
}

.lab-progress-mini {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5px 12px;
  margin-top: auto;
  padding-top: 21px;
  color: #94a3b8;
  font-size: 0.57rem;
}

.lab-progress-mini strong {
  color: var(--lab-accent);
}

.progress-track {
  width: 100%;
  height: 6px;
  overflow: hidden;
  border-radius: 9px;
  background: #e2e8f0;
}

.progress-track > span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--lab-accent, #2563eb), #06b6d4);
  transition: width 320ms ease;
}

.laboratory-card-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  margin-top: 19px;
}

.laboratory-card-actions .button {
  min-height: 43px;
  padding: 9px 13px;
  font-size: 0.67rem;
}

.lab-card-video {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  color: #64748b;
  font-size: 0.61rem;
  font-weight: 700;
  white-space: nowrap;
}

.lab-card-video .icon {
  width: 16px;
  height: 16px;
}

.home-laboratory-cards .laboratory-card {
  min-height: 550px;
}

.laboratory-empty {
  padding: 65px 25px;
  border: 1px dashed rgba(100, 116, 139, 0.3);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.55);
  text-align: center;
}

.laboratory-empty > span {
  display: grid;
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 50%;
  color: #64748b;
  background: #e2e8f0;
}

.laboratory-empty h3 {
  color: #0f172a;
}

.laboratory-empty p,
.laboratory-noscript {
  color: #64748b;
}

.laboratory-video-callout-section {
  background: #081220;
}

.laboratory-video-callout {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 70px;
}

.laboratory-video-preview {
  --lab-accent: #ef4444;
  --lab-accent-rgb: 239, 68, 68;
  position: relative;
  display: grid;
  min-height: 320px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(var(--lab-accent-rgb), 0.25);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(var(--lab-accent-rgb), 0.16), transparent 48%),
    radial-gradient(circle at 50% 45%, rgba(var(--lab-accent-rgb), 0.14), transparent 29%),
    #091728;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.laboratory-video-preview::before {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
  mask-image: radial-gradient(circle, #000, transparent 72%);
}

.laboratory-video-preview .video-play {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
}

.video-preview-duration {
  position: absolute;
  z-index: 1;
  top: 18px;
  right: 18px;
  padding: 5px 8px;
  border-radius: 6px;
  color: #fff;
  background: rgba(0, 0, 0, 0.65);
  font-size: 0.62rem;
  font-weight: 700;
}

.laboratory-video-preview > div:last-child {
  position: absolute;
  z-index: 1;
  right: 25px;
  bottom: 22px;
  left: 25px;
}

.laboratory-video-preview small {
  display: block;
  color: #fca5a5;
  font-size: 0.56rem;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.laboratory-video-preview strong {
  display: block;
  max-width: 330px;
  margin-top: 5px;
  color: #fff;
  font-family: var(--font-display);
  line-height: 1.25;
}

.laboratory-video-copy h2 {
  max-width: 630px;
}

.laboratory-video-copy blockquote {
  max-width: 650px;
  margin: 0 0 17px;
  color: #d5e1ed;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.6;
}

.laboratory-video-copy > p:not(.section-kicker) {
  max-width: 650px;
}

.laboratory-video-copy > div {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 28px;
}

.laboratory-future-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1.22fr);
  align-items: center;
  gap: 75px;
}

.laboratory-future-layout > div:first-child > p:not(.section-kicker) {
  max-width: 570px;
}

.future-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.future-feature-grid span {
  display: flex;
  min-height: 66px;
  align-items: center;
  gap: 11px;
  padding: 14px 16px;
  border: 1px solid rgba(100, 116, 139, 0.17);
  border-radius: 12px;
  color: #334155;
  background: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(8, 18, 32, 0.045);
}

.future-feature-grid .icon {
  color: #2563eb;
}

/* Laboratory detail */
.laboratory-detail-loading {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding-top: calc(var(--header-height) + 60px);
  text-align: center;
}

.laboratory-detail-loading span {
  display: block;
  width: 46px;
  height: 46px;
  margin: 0 auto 16px;
  border: 3px solid rgba(148, 163, 184, 0.18);
  border-top-color: #38bdf8;
  border-radius: 50%;
  animation: laboratory-spin 850ms linear infinite;
}

@keyframes laboratory-spin { to { transform: rotate(360deg); } }

.laboratory-detail-hero {
  --lab-accent: #3b82f6;
  --lab-accent-rgb: 59, 130, 246;
  overflow: hidden;
  padding-top: calc(var(--header-height) + 55px);
  padding-bottom: 85px;
  background:
    radial-gradient(circle at 82% 25%, rgba(var(--lab-accent-rgb), 0.17), transparent 30%),
    #050c16;
}

.laboratory-detail-hero .container {
  position: relative;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 55px;
  overflow: hidden;
  color: #64748b;
  font-size: 0.68rem;
  white-space: nowrap;
}

.breadcrumbs a:hover {
  color: #7dd3fc;
}

.breadcrumbs span:last-child {
  overflow: hidden;
  color: #94a3b8;
  text-overflow: ellipsis;
}

.laboratory-detail-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  align-items: center;
  gap: 90px;
}

.laboratory-detail-hero-layout h1 {
  max-width: 830px;
  margin-bottom: 21px;
  font-size: clamp(3rem, 5.6vw, 5.25rem);
}

.laboratory-detail-hero-layout > div:first-child > p:not(.section-kicker) {
  max-width: 770px;
  color: #b5c3d2;
  font-size: 1.02rem;
}

.laboratory-detail-hero .technology-badges {
  margin-top: 22px;
}

.laboratory-detail-hero .technology-badges > span {
  border-color: rgba(var(--lab-accent-rgb), 0.23);
  color: #cbd5e1;
  background: rgba(var(--lab-accent-rgb), 0.08);
}

.laboratory-detail-summary {
  position: relative;
  padding: 31px;
  border: 1px solid rgba(var(--lab-accent-rgb), 0.25);
  border-radius: 20px;
  background: rgba(13, 27, 42, 0.83);
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.28);
}

.laboratory-detail-summary .laboratory-card-icon {
  position: absolute;
  top: -33px;
  right: 30px;
  color: var(--lab-accent);
}

.laboratory-detail-summary dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 17px;
  margin: 23px 0 0;
}

.laboratory-detail-summary dt {
  margin-bottom: 4px;
  color: #64748b;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.laboratory-detail-summary dd {
  margin: 0;
  color: #e2e8f0;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 650;
}

.laboratory-detail-content-section {
  background: #eef3f8;
}

.laboratory-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: 42px;
}

.laboratory-detail-main {
  display: grid;
  min-width: 0;
  gap: 25px;
}

.laboratory-content-card,
.laboratory-steps-section {
  padding: 37px;
  border: 1px solid rgba(100, 116, 139, 0.18);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(8, 18, 32, 0.055);
}

.laboratory-content-card h2,
.laboratory-steps-section h2,
.laboratory-related h2 {
  margin-bottom: 16px;
  color: #0f172a;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.laboratory-content-card > p:last-child {
  margin-bottom: 0;
}

.objective-lead {
  color: #334155;
  font-size: 1.05rem;
  font-weight: 650;
}

.laboratory-requirements {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.laboratory-requirements li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 15px;
  border: 1px solid rgba(100, 116, 139, 0.14);
  border-radius: 10px;
  color: #475569;
  background: #f8fafc;
  font-size: 0.79rem;
}

.laboratory-requirements .icon {
  flex: 0 0 auto;
  margin-top: 2px;
  color: #10b981;
}

.laboratory-card-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.laboratory-card-heading > span {
  flex: 0 0 auto;
  padding: 5px 8px;
  border-radius: 6px;
  color: #2563eb;
  background: #eff6ff;
  font-size: 0.63rem;
  font-weight: 750;
}

.laboratory-video-frame {
  overflow: hidden;
  border-radius: 14px;
  background: #081220;
  aspect-ratio: 16 / 9;
}

.laboratory-video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.laboratory-video-placeholder {
  --lab-accent: #3b82f6;
  --lab-accent-rgb: 59, 130, 246;
  display: grid;
  width: 100%;
  height: 100%;
  place-content: center;
  justify-items: center;
  gap: 18px;
  padding: 25px;
  color: var(--lab-accent);
  background:
    radial-gradient(circle, rgba(var(--lab-accent-rgb), 0.19), transparent 30%),
    linear-gradient(rgba(var(--lab-accent-rgb), 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--lab-accent-rgb), 0.05) 1px, transparent 1px),
    #081220;
  background-size: auto, 32px 32px, 32px 32px, auto;
  text-align: center;
}

.laboratory-video-placeholder .video-play {
  width: 68px;
  height: 68px;
  color: #fff;
  background: var(--lab-accent);
}

.laboratory-video-placeholder small,
.laboratory-video-placeholder strong,
.laboratory-video-placeholder span {
  display: block;
}

.laboratory-video-placeholder small {
  color: var(--lab-accent);
  font-size: 0.6rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.laboratory-video-placeholder strong {
  max-width: 520px;
  margin-top: 5px;
  color: #f8fafc;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.laboratory-video-placeholder span {
  margin-top: 5px;
  color: #64748b;
  font-size: 0.66rem;
}

.video-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-top: 20px;
}

.video-card-footer p {
  max-width: 500px;
  margin: 0;
  font-size: 0.74rem;
}

.video-card-footer .button {
  flex: 0 0 auto;
}

.laboratory-steps-section {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 35px 0 0;
}

.laboratory-steps {
  display: grid;
  gap: 14px;
}

.laboratory-step {
  display: grid;
  min-width: 0;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: start;
  gap: 20px;
  padding: 27px;
  border: 1px solid rgba(100, 116, 139, 0.18);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(8, 18, 32, 0.045);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.laboratory-step.is-complete {
  border-color: rgba(16, 185, 129, 0.28);
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.035), #fff 28%);
}

.laboratory-step-number {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 13px;
  color: #2563eb;
  background: #eff6ff;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 750;
}

.laboratory-step.is-complete .laboratory-step-number {
  color: #047857;
  background: #d1fae5;
}

.laboratory-step-content {
  min-width: 0;
}

.laboratory-step h3 {
  margin: 2px 0 7px;
  color: #0f172a;
  font-size: 1.04rem;
}

.laboratory-step p {
  margin-bottom: 0;
  color: #64748b;
  font-size: 0.78rem;
}

.step-check,
.final-check {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  color: #64748b;
  font-size: 0.63rem;
  font-weight: 700;
}

.step-check input,
.final-check input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.step-check > span,
.final-check > span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid #cbd5e1;
  border-radius: 7px;
  color: transparent;
  background: #fff;
}

.step-check .icon,
.final-check .icon {
  width: 15px;
  height: 15px;
}

.step-check input:checked + span,
.final-check input:checked + span {
  border-color: #10b981;
  color: #fff;
  background: #10b981;
}

.step-check input:focus-visible + span,
.final-check input:focus-visible + span {
  outline: 3px solid var(--color-cyan);
  outline-offset: 3px;
}

.step-check em {
  font-style: normal;
}

.laboratory-code-block {
  margin-top: 19px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.13);
  border-radius: 12px;
  background: #07111f;
}

.laboratory-code-block > div {
  display: flex;
  height: 38px;
  align-items: center;
  justify-content: space-between;
  padding-inline: 13px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  background: #0d1b2b;
}

.laboratory-code-block > div span {
  color: #64748b;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.59rem;
  text-transform: uppercase;
}

.laboratory-code-block button {
  padding: 4px 7px;
  border: 0;
  border-radius: 5px;
  color: #94a3b8;
  background: rgba(148, 163, 184, 0.08);
  font-size: 0.57rem;
  font-weight: 700;
}

.laboratory-code-block button:hover {
  color: #fff;
  background: rgba(37, 99, 235, 0.25);
}

.laboratory-code-block pre {
  margin: 0;
  padding: 18px;
  overflow-x: auto;
  color: #d5e1ed;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.7rem;
  line-height: 1.75;
  tab-size: 2;
}

.final-exercise {
  position: relative;
  overflow: hidden;
  border-color: rgba(139, 92, 246, 0.22);
  background:
    radial-gradient(circle at 92% 10%, rgba(139, 92, 246, 0.1), transparent 25%),
    #fff;
}

.final-exercise-icon {
  position: absolute;
  top: 30px;
  right: 31px;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 14px;
  color: #8b5cf6;
  background: #f3e8ff;
}

.final-exercise > p:not(.section-kicker) {
  max-width: 720px;
  color: #475569;
}

.final-check {
  margin-top: 10px;
  color: #334155;
}

.final-exercise details {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(100, 116, 139, 0.14);
}

.final-exercise summary {
  color: #7c3aed;
  font-size: 0.72rem;
  font-weight: 750;
}

.final-exercise details p {
  margin: 14px 0 0;
  padding: 15px;
  border-radius: 10px;
  color: #475569;
  background: #f8fafc;
  font-size: 0.76rem;
}

.laboratory-related {
  padding-top: 42px;
}

.laboratory-related > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.related-lab-card {
  --lab-accent: #3b82f6;
  --lab-accent-rgb: 59, 130, 246;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border: 1px solid rgba(100, 116, 139, 0.18);
  border-radius: 14px;
  background: #fff;
}

.related-lab-card > span {
  display: grid;
  width: 47px;
  height: 47px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  color: var(--lab-accent);
  background: rgba(var(--lab-accent-rgb), 0.09);
}

.related-lab-card small {
  color: #94a3b8;
  font-size: 0.54rem;
}

.related-lab-card h3 {
  margin: 3px 0 6px;
  color: #0f172a;
  font-size: 0.86rem;
}

.related-lab-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2563eb;
  font-size: 0.6rem;
  font-weight: 750;
}

.related-lab-card a .icon {
  width: 14px;
  height: 14px;
}

.laboratory-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 25px);
  display: grid;
  gap: 16px;
}

.laboratory-progress-card,
.laboratory-resource-card,
.laboratory-future-card {
  padding: 24px;
  border: 1px solid rgba(100, 116, 139, 0.18);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(8, 18, 32, 0.05);
}

.laboratory-progress-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 15px;
}

.progress-ring {
  --progress: 0;
  position: relative;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#2563eb calc(var(--progress) * 1%), #e2e8f0 0);
}

.progress-ring::before {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.progress-ring strong {
  position: relative;
  z-index: 1;
  color: #0f172a;
  font-family: var(--font-display);
  font-size: 0.85rem;
}

.laboratory-progress-card h2,
.laboratory-resource-card h2,
.laboratory-future-card h2 {
  margin: 0 0 4px;
  color: #0f172a;
  font-size: 0.95rem;
}

.laboratory-progress-card p {
  margin: 0;
  color: #64748b;
  font-size: 0.64rem;
}

.laboratory-progress-card > .progress-track,
.laboratory-progress-card > small,
.laboratory-progress-card > .button {
  grid-column: 1 / -1;
}

.laboratory-progress-card > small {
  color: #94a3b8;
  font-size: 0.57rem;
}

.laboratory-progress-card > .button {
  min-height: 42px;
  font-size: 0.66rem;
}

.laboratory-resource-card h2 {
  margin-bottom: 16px;
}

.resource-download,
.official-resource-list a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px;
  border: 1px solid rgba(100, 116, 139, 0.14);
  border-radius: 10px;
  color: #2563eb;
  background: #f8fafc;
}

.resource-download span,
.resource-download strong,
.resource-download small {
  display: block;
}

.resource-download strong {
  color: #334155;
  font-size: 0.67rem;
}

.resource-download small {
  color: #94a3b8;
  font-size: 0.54rem;
}

.official-resource-list {
  display: grid;
  gap: 8px;
}

.official-resource-list a {
  align-items: flex-start;
  color: #475569;
  font-size: 0.63rem;
  font-weight: 650;
  line-height: 1.45;
}

.official-resource-list a:hover,
.resource-download:hover {
  border-color: rgba(37, 99, 235, 0.3);
  color: #2563eb;
}

.official-resource-list .icon,
.resource-download > .icon {
  flex: 0 0 auto;
}

.laboratory-future-card {
  border-color: rgba(139, 92, 246, 0.2);
  background: linear-gradient(145deg, #faf7ff, #fff);
}

.laboratory-future-card > span {
  display: inline-flex;
  margin-bottom: 13px;
  padding: 3px 7px;
  border-radius: 5px;
  color: #7c3aed;
  background: #f3e8ff;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.laboratory-future-card p {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 0.68rem;
}

.laboratory-noscript-fixed {
  position: fixed;
  z-index: 999;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 14px;
  border-radius: 10px;
  color: #fff;
  background: #b45309;
  text-align: center;
}

@media (max-width: 1180px) {
  .home-laboratory-intro,
  .laboratory-hero-layout {
    gap: 48px;
  }

  .laboratory-hero-layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(450px, 1.15fr);
  }

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

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

  .home-laboratory-cards .laboratory-card-body {
    padding: 20px;
  }

  .home-laboratory-cards .laboratory-card-actions {
    grid-template-columns: 1fr;
  }

  .laboratory-benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .laboratory-benefits-grid > span:nth-child(4) {
    border-right: 0;
  }

  .laboratory-benefits-grid > span:nth-child(n + 5) {
    border-top: 1px solid rgba(100, 116, 139, 0.13);
  }

  .laboratory-detail-hero-layout {
    gap: 50px;
  }

  .laboratory-detail-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 28px;
  }
}

@media (max-width: 959px) {
  .home-laboratory-intro,
  .laboratory-hero-layout,
  .laboratory-video-callout,
  .laboratory-future-layout,
  .laboratory-detail-hero-layout,
  .laboratory-detail-layout {
    grid-template-columns: 1fr;
  }

  .home-laboratory-intro {
    gap: 65px;
  }

  .home-laboratory-panel,
  .laboratory-terminal {
    width: calc(100% - 35px);
    max-width: 720px;
    margin-inline: auto;
    transform: none;
  }

  .home-laboratory-cards {
    grid-template-columns: 1fr 1fr;
  }

  .home-laboratory-cards .laboratory-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 11px);
  }

  .laboratory-hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 85px);
  }

  .laboratory-hero-layout {
    gap: 75px;
  }

  .laboratory-hero-copy {
    max-width: 790px;
  }

  .laboratory-terminal {
    max-width: 760px;
  }

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

  .laboratory-video-callout,
  .laboratory-future-layout {
    gap: 50px;
  }

  .laboratory-video-preview {
    max-width: 700px;
  }

  .future-feature-grid {
    max-width: 700px;
  }

  .laboratory-detail-hero-layout > div:first-child {
    max-width: 820px;
  }

  .laboratory-detail-summary {
    max-width: 600px;
  }

  .laboratory-sidebar {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .laboratory-progress-card {
    grid-row: span 2;
  }
}

@media (max-width: 700px) {
  .home-laboratory-actions,
  .laboratory-hero-actions,
  .laboratory-detail-actions,
  .laboratory-video-copy > div {
    display: grid;
  }

  .home-laboratory-actions .button,
  .laboratory-hero-actions .button,
  .laboratory-detail-actions .button,
  .laboratory-video-copy > div .button {
    width: 100%;
  }

  .home-laboratory-panel {
    width: calc(100% - 10px);
  }

  .home-laboratory-panel::after,
  .laboratory-terminal::before {
    display: none;
  }

  .home-laboratory-panel-body {
    min-height: 250px;
    padding: 28px;
  }

  .home-laboratory-categories {
    margin-top: 55px;
  }

  .home-laboratory-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 60px;
  }

  .home-laboratory-cards,
  .laboratory-grid {
    grid-template-columns: 1fr;
  }

  .home-laboratory-cards .laboratory-card:last-child {
    width: auto;
    grid-column: auto;
  }

  .home-youtube-callout {
    grid-template-columns: auto 1fr;
    padding: 22px;
  }

  .home-youtube-callout .button {
    grid-column: 1 / -1;
  }

  .laboratory-hero-copy h1 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .laboratory-terminal {
    width: calc(100% - 8px);
  }

  .laboratory-terminal-body {
    min-height: 390px;
    grid-template-columns: 1fr;
  }

  .terminal-sidebar {
    display: none;
  }

  .terminal-content {
    padding: 24px;
  }

  .laboratory-floating-badge {
    right: -5px;
  }

  .laboratory-benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .laboratory-benefits-grid > span {
    border-top: 1px solid rgba(100, 116, 139, 0.13);
  }

  .laboratory-benefits-grid > span:nth-child(odd) {
    border-right: 1px solid rgba(100, 116, 139, 0.13);
  }

  .laboratory-benefits-grid > span:nth-child(even) {
    border-right: 0;
  }

  .laboratory-category-grid {
    grid-template-columns: 1fr 1fr;
  }

  .laboratory-category {
    min-height: 135px;
    padding: 17px;
  }

  .laboratory-catalog-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .laboratory-search {
    width: 100%;
  }

  .laboratory-video-callout {
    gap: 38px;
  }

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

  .laboratory-detail-hero {
    padding-top: calc(var(--header-height) + 42px);
    padding-bottom: 70px;
  }

  .breadcrumbs {
    margin-bottom: 42px;
  }

  .laboratory-detail-hero-layout h1 {
    font-size: clamp(2.5rem, 11vw, 3.8rem);
  }

  .laboratory-detail-summary {
    margin-top: 10px;
    padding: 25px;
  }

  .laboratory-content-card {
    padding: 26px;
  }

  .video-card-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .video-card-footer .button {
    width: 100%;
  }

  .laboratory-step {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 15px;
    padding: 22px;
  }

  .laboratory-step-number {
    width: 44px;
    height: 44px;
  }

  .step-check {
    grid-column: 2;
    justify-self: start;
  }

  .laboratory-related > div,
  .laboratory-sidebar {
    grid-template-columns: 1fr;
  }

  .laboratory-progress-card {
    grid-row: auto;
  }
}

@media (max-width: 420px) {
  .home-youtube-callout {
    grid-template-columns: 1fr;
  }

  .home-youtube-callout .button {
    grid-column: auto;
  }

  .laboratory-category-grid {
    grid-template-columns: 1fr;
  }

  .laboratory-category {
    min-height: 125px;
  }

  .laboratory-card-actions {
    grid-template-columns: 1fr;
  }

  .lab-card-video {
    border: 1px solid rgba(100, 116, 139, 0.16);
    border-radius: 9px;
  }

  .laboratory-terminal-body {
    min-height: 355px;
  }

  .terminal-content {
    padding: 20px;
  }

  .terminal-code {
    padding: 13px;
    font-size: 0.59rem;
  }

  .laboratory-floating-badge {
    position: static;
    border: 0;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 0 0 18px 18px;
    box-shadow: none;
  }

  .laboratory-benefits-grid {
    grid-template-columns: 1fr;
  }

  .laboratory-benefits-grid > span,
  .laboratory-benefits-grid > span:nth-child(odd) {
    min-height: 70px;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    padding-inline: 18px;
    border-right: 0;
    text-align: left;
  }

  .laboratory-video-preview {
    min-height: 280px;
  }

  .laboratory-detail-summary dl {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .laboratory-detail-summary .laboratory-card-icon {
    width: 58px;
    height: 58px;
  }

  .laboratory-content-card {
    padding: 22px;
  }

  .laboratory-video-frame {
    aspect-ratio: 4 / 3;
  }

  .laboratory-step {
    grid-template-columns: 1fr;
  }

  .laboratory-step-number,
  .step-check {
    grid-column: auto;
  }

  .final-exercise-icon {
    position: static;
    margin-bottom: 20px;
  }
}

.tone-blue { --lab-accent: #3b82f6; --lab-accent-rgb: 59, 130, 246; }
.tone-purple { --lab-accent: #8b5cf6; --lab-accent-rgb: 139, 92, 246; }
.tone-cyan { --lab-accent: #06b6d4; --lab-accent-rgb: 6, 182, 212; }
.tone-red { --lab-accent: #ef4444; --lab-accent-rgb: 239, 68, 68; }
.tone-green { --lab-accent: #10b981; --lab-accent-rgb: 16, 185, 129; }
.tone-pink { --lab-accent: #ec4899; --lab-accent-rgb: 236, 72, 153; }
.tone-slate { --lab-accent: #475569; --lab-accent-rgb: 71, 85, 105; }
.tone-orange { --lab-accent: #f97316; --lab-accent-rgb: 249, 115, 22; }
/* Compact desktop density for laptop-sized screens. */
@media (min-width: 1181px) and (max-width: 1599px) {
  html {
    font-size: 90%;
  }

  :root {
    --container: 1240px;
    --header-height: 74px;
    --radius-sm: 11px;
    --radius-md: 16px;
    --radius-lg: 22px;
  }

  body {
    font-size: 1rem;
  }

  .section {
    padding-block: 106px;
  }

  .button {
    min-height: 45px;
    gap: 9px;
    padding: 11px 18px;
    border-radius: 11px;
  }

  .button-small {
    min-height: 40px;
    padding: 9px 14px;
  }

  .section-heading {
    margin-bottom: 54px;
  }

  .split-heading {
    gap: 50px;
  }

  .brand {
    min-width: 166px;
  }

  .brand img {
    width: 56px;
    height: 37px;
  }

  .desktop-nav a {
    min-height: 40px;
    padding: 7px 11px;
  }

  .hero {
    min-height: 740px;
    padding-top: calc(var(--header-height) + 65px);
    padding-bottom: 63px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.8fr) minmax(560px, 1.2fr);
    gap: 49px;
  }

  .hero h1 {
    font-size: 3.85rem;
  }

  .eyebrow {
    margin-bottom: 20px;
  }

  .hero-description,
  .hero-actions {
    margin-bottom: 30px;
  }

  .hero-actions {
    gap: 11px;
  }

  .capability-list {
    gap: 8px 16px;
  }

  .hero .hero-visual {
    width: 111.111%;
    margin-block: -26px;
    margin-inline: -5.555%;
    transform: scale(0.9);
  }

  .trust-layout {
    gap: 38px;
    padding-block: 25px;
  }

  .value-strip-grid {
    padding-block: 27px;
  }

  .value-strip article {
    gap: 13px;
    padding-inline: 22px;
  }

  .problem-card {
    min-height: 243px;
    padding: 25px;
  }

  .icon-box {
    width: 43px;
    height: 43px;
    margin-bottom: 25px;
  }

  .service-card {
    min-height: 396px;
    padding: 25px;
  }

  .service-card-top {
    margin-bottom: 27px;
  }

  .service-icon {
    width: 47px;
    height: 47px;
  }

  .service-card > p {
    min-height: 70px;
    margin-bottom: 22px;
  }

  .check-list {
    gap: 9px;
    padding-top: 18px;
  }

  .product-stack {
    gap: 25px;
  }

  .product-card {
    min-height: 459px;
    grid-template-columns: minmax(0, 1fr) minmax(162px, 0.7fr);
    gap: 20px;
    padding: 31px;
  }

  .custom-product-card {
    min-height: 342px;
    grid-template-columns: minmax(0, 0.9fr) minmax(306px, 1.1fr);
    gap: 72px;
    padding: 47px;
  }

  .custom-modules {
    min-height: 239px;
    gap: 25px 65px;
  }

  .custom-modules span {
    min-height: 57px;
    gap: 11px;
    padding: 14px;
  }

  .home-laboratory-intro {
    grid-template-columns: minmax(0, 1fr) minmax(369px, 0.88fr);
    gap: 72px;
  }

  .home-laboratory-panel-body {
    min-height: 252px;
    padding: 33px;
  }

  .home-laboratory-categories {
    margin-top: 65px;
    padding: 14px;
  }

  .home-laboratory-heading {
    margin-top: 68px;
    margin-bottom: 25px;
  }

  .home-youtube-callout {
    gap: 18px;
    margin-top: 25px;
    padding: 22px 25px;
  }

  .industry-card {
    min-height: 207px;
    padding: 23px;
  }

  .industry-card > span {
    width: 41px;
    height: 41px;
    margin-bottom: 25px;
  }

  .process-timeline {
    gap: 15px;
  }

  .process-timeline li {
    padding: 23px 16px 0;
  }

  .process-timeline::before {
    top: 52px;
  }

  .process-icon {
    width: 61px;
    height: 61px;
    margin-bottom: 23px;
  }

  .differentiators-layout,
  .featured-project-layout,
  .about-layout,
  .faq-layout,
  .contact-layout {
    gap: 72px;
  }

  .architecture-diagram {
    min-height: 477px;
  }

  .about-visual {
    min-height: 423px;
  }

  .testimonials-grid {
    gap: 16px;
  }

  .testimonials-grid blockquote {
    min-height: 279px;
    padding: 27px;
  }

  .faq-list summary {
    min-height: 61px;
    padding: 15px 18px;
  }

  .faq-list details > div {
    padding: 0 65px 18px 18px;
  }

  .contact-layout {
    grid-template-columns: minmax(297px, 0.75fr) minmax(0, 1.25fr);
  }

  .contact-form {
    padding: 31px;
  }

  .form-grid {
    gap: 16px;
  }

  .form-field input,
  .form-field select {
    min-height: 45px;
  }

  .form-field textarea {
    min-height: 108px;
  }

  .footer-grid {
    gap: 54px;
    padding-block: 63px 52px;
  }

  .legal-main {
    padding-block: 81px 99px;
  }

  .laboratory-hero {
    min-height: 700px;
    padding-top: calc(var(--header-height) + 68px);
    padding-bottom: 86px;
  }

  .laboratory-hero-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr);
    gap: 63px;
  }

  .laboratory-hero-copy h1 {
    font-size: 5.6rem;
  }

  .laboratory-terminal {
    width: 111.111%;
    margin-block: -27px;
    margin-inline: -5.555%;
    transform: scale(0.9) perspective(1100px) rotateY(-3deg) rotateX(1deg);
  }
}
