:root {
  --bg: #fbfdff;
  --surface: #ffffff;
  --surface-soft: #f1f7f6;
  --text-main: #0e1d42;
  --text-soft: #5f6c86;
  --line: #dbe5ee;
  --brand: #148f71;
  --brand-dark: #0f735d;
  --accent: #36ad8f;
  --logo-orange: #ff6b1a;
  --logo-blue: #168fd3;
  --logo-cyan: #28c8df;
  --logo-green: #118c72;
  --radius-lg: 8px;
  --radius-md: 8px;
  --shadow: 0 18px 42px rgba(20, 47, 86, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

:where(section[id], article[id]) {
  scroll-margin-top: 116px;
}

body {
  margin: 0;
  background:
    radial-gradient(#dce9f1 1px, transparent 1px) 0 460px / 18px 18px no-repeat,
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  color: var(--text-main);
  font-family: "Manrope", "Segoe UI", sans-serif;
  position: relative;
  overflow-x: hidden;
}

main {
  position: relative;
  z-index: 1;
}

.ambient-wave {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: var(--wave-opacity, 0.52);
  filter: saturate(1.18) contrast(1.12);
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    transparent calc(var(--wave-start-from, 34%) - 12%),
    rgba(0, 0, 0, 0.08) calc(var(--wave-start-from, 34%) - 5%),
    rgba(0, 0, 0, 0.4) calc(var(--wave-start-from, 34%) + 3%),
    rgba(0, 0, 0, 0.72) calc(var(--wave-start-from, 34%) + 10%),
    rgba(0, 0, 0, 1) 74%,
    #000 100%
  );
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    transparent calc(var(--wave-start-from, 34%) - 12%),
    rgba(0, 0, 0, 0.08) calc(var(--wave-start-from, 34%) - 5%),
    rgba(0, 0, 0, 0.4) calc(var(--wave-start-from, 34%) + 3%),
    rgba(0, 0, 0, 0.72) calc(var(--wave-start-from, 34%) + 10%),
    rgba(0, 0, 0, 1) 74%,
    #000 100%
  );
}

.ambient-wave-numbers {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.94;
  mix-blend-mode: multiply;
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    transparent 28%,
    rgba(0, 0, 0, 0.4) 39%,
    #000 100%
  );
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    transparent 28%,
    rgba(0, 0, 0, 0.4) 39%,
    #000 100%
  );
}

.ambient-wave-tint {
  --wave-focus-x: 50%;
  --wave-focus-y: 68%;
  --wave-focus-opacity: 0;
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    circle 210px at var(--wave-focus-x) var(--wave-focus-y),
    rgba(23, 143, 105, calc(var(--wave-focus-opacity) * 0.13)) 0%,
    rgba(42, 176, 137, calc(var(--wave-focus-opacity) * 0.09)) 34%,
    rgba(75, 190, 158, calc(var(--wave-focus-opacity) * 0.04)) 58%,
    rgba(75, 190, 158, 0) 76%
  );
  transition: opacity 220ms ease;
}

svg {
  display: block;
}

.container {
  width: min(1150px, calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  padding: 10px 0 8px;
  position: relative;
  z-index: 20;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(214, 232, 229, 0.8);
}

.floating-header {
  position: fixed;
  top: 10px;
  left: 0;
  right: 0;
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-18px);
  transition:
    opacity 240ms ease,
    transform 280ms ease,
    visibility 0s linear 280ms;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
}

.floating-header .header-inner {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(210, 229, 224, 0.92);
  border: 1px solid rgba(210, 229, 224, 0.92);
  border-radius: 20px;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 42px rgba(20, 47, 86, 0.12);
  transition:
    background 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease,
    backdrop-filter 280ms ease;
}

.floating-header.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity 240ms ease,
    transform 280ms ease,
    visibility 0s linear 0s;
}

.floating-header.is-visible .header-inner {
  animation: header-float-in 280ms ease-out;
}

.floating-header .brand {
  min-width: 0;
}

.floating-header .brand-mark-shell {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-header .brand-mark-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transform: none;
}

.floating-header .brand-wordmark {
  font-size: 1.5rem;
}

.floating-header .btn {
  min-height: 42px;
  padding: 11px 22px;
}

@keyframes header-float-in {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  min-width: 0;
  flex-shrink: 0;
}

.brand-mark-shell {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-mark-image {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
  object-position: center;
  transform: translateY(-1px);
}

.brand-wordmark {
  display: block;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.62rem;
  font-weight: 700;
  line-height: 1;
  color: #0e1d42;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.site-nav a {
  text-decoration: none;
  color: #35425d;
  font-weight: 600;
  padding: 9px 8px;
  border-bottom: 2px solid transparent;
  font-size: 0.9rem;
}

.site-nav a.active {
  color: var(--text-main);
  border-image: linear-gradient(90deg, var(--logo-green), var(--logo-blue), var(--logo-orange)) 1;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background:
    linear-gradient(135deg, rgba(255, 107, 26, 0.22), rgba(255, 107, 26, 0) 36%),
    linear-gradient(135deg, #159a79, #0f7a5f);
  color: #fff;
}

.btn-outline {
  background: linear-gradient(135deg, rgba(40, 200, 223, 0.08), rgba(255, 107, 26, 0.06));
  border: 1.4px solid #7bcfbe;
  color: var(--brand);
}

.hero {
  padding: 30px 0 8px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(540px, 1.1fr);
  gap: 36px;
  align-items: start;
  min-width: 0;
}

.pill {
  display: inline-block;
  border-radius: 999px;
  padding: 7px 12px;
  color: #0d8568;
  background:
    linear-gradient(90deg, rgba(255, 107, 26, 0.11), rgba(40, 200, 223, 0.13)),
    #e6f6f1;
  font-size: 0.73rem;
  letter-spacing: 0;
  font-weight: 800;
}

.hero-copy h1 {
  margin: 24px 0 18px;
  line-height: 1.15;
  font-size: 2.86rem;
  letter-spacing: 0;
}

.hero-copy h1 span {
  color: #198e72;
  background: linear-gradient(90deg, #198e72 0%, #198e72 52%, #168fd3 78%, #ff6b1a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy p {
  color: var(--text-soft);
  font-size: 1.06rem;
  line-height: 1.7;
  max-width: 31ch;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  gap: 16px;
}

.feature-list {
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.feature-list li {
  text-align: center;
  color: #374967;
  font-size: 0.78rem;
  font-weight: 600;
  display: grid;
  gap: 9px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto;
  background: #edf6f8;
  color: #257f98;
}

.feature-list li:nth-child(1) .feature-icon {
  color: var(--logo-blue);
  background: rgba(22, 143, 211, 0.1);
}

.feature-list li:nth-child(2) .feature-icon {
  color: var(--logo-cyan);
  background: rgba(40, 200, 223, 0.11);
}

.feature-list li:nth-child(3) .feature-icon {
  color: var(--logo-green);
  background: rgba(17, 140, 114, 0.1);
}

.feature-list li:nth-child(4) .feature-icon {
  color: var(--logo-orange);
  background: rgba(255, 107, 26, 0.11);
}

.feature-icon svg,
.service-icon svg,
.strip-icon svg,
.result-icon svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dashboard {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 10px;
  padding: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.dashboard::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--logo-orange), var(--logo-blue), var(--logo-green));
  opacity: 0.8;
}

.dashboard-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.dashboard-head h2 {
  margin: 0;
  font-size: 1.05rem;
}

.dashboard-head p {
  margin: 0;
  color: #7382a0;
  font-weight: 600;
  font-size: 0.72rem;
}

.dot-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #28bd8b;
  display: inline-block;
  margin-left: 4px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 11px;
}

.metric-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fefefe;
  box-shadow: inset 0 2px 0 var(--metric-accent, rgba(20, 143, 113, 0.18));
}

.metric-card:nth-child(1) {
  --metric-accent: rgba(22, 143, 211, 0.35);
}

.metric-card:nth-child(2) {
  --metric-accent: rgba(255, 107, 26, 0.32);
}

.metric-card:nth-child(3) {
  --metric-accent: rgba(17, 140, 114, 0.34);
}

.metric-card p {
  margin: 0;
  color: #5c6a83;
  font-size: 0.68rem;
  font-weight: 700;
  white-space: nowrap;
}

.metric-card strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 1.42rem;
}

.metric-up,
.metric-down {
  font-size: 0.82rem;
  font-weight: 700;
}

.metric-card small {
  display: block;
  margin-top: 4px;
  color: #7b879a;
  font-size: 0.63rem;
}

.metric-up {
  color: #1d9a78;
}

.metric-down {
  color: var(--logo-orange);
}

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

.panel-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: #fbfdff;
  min-height: 136px;
}

.panel-card h3 {
  margin: 0 0 10px;
  font-size: 0.78rem;
}

.map-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
}

.map-wrap svg {
  width: 100%;
  max-width: 170px;
}

.map-wrap path {
  fill: url(#map-gradient);
}

.legend {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #5e6d88;
  font-size: 0.7rem;
  display: grid;
  gap: 5px;
}

.legend li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.legend span,
.donut-wrap li span {
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--legend);
  display: inline-block;
}

.line-chart {
  width: 100%;
  height: 98px;
}

.line-chart .line-bg {
  stroke: #e6edf5;
  stroke-width: 1.3;
}

.chart-legend {
  display: flex;
  gap: 16px;
  color: #53647e;
  font-size: 0.7rem;
  margin-bottom: 2px;
}

.chart-legend span::before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 2px;
  margin-right: 6px;
  vertical-align: middle;
  background: #4dbb9f;
}

.chart-legend span + span::before {
  background: #8fb5ed;
}

.chart-fill {
  fill: rgba(93, 179, 173, 0.13);
}

.line-chart polyline {
  fill: none;
  stroke: #4dbb9f;
  stroke-width: 3.1;
}

.donut-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.donut {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: conic-gradient(
    #5e8de5 0 23%,
    #6cb2ef 23% 55%,
    #5fc4c8 55% 80%,
    #3ea99f 80% 100%
  );
  position: relative;
}

.donut::after {
  content: "";
  position: absolute;
  inset: 15px;
  border-radius: 50%;
  background: #fbfdff;
}

.donut-wrap ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.72rem;
  color: #51607c;
  display: grid;
  gap: 7px;
}

.bars-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.bars-list li {
  display: grid;
  gap: 3px;
  font-size: 0.72rem;
  color: #4c5c79;
}

.bars-list i {
  width: var(--w);
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, #38ae95, #95ddd1);
}

.ai-strip {
  margin-top: 26px;
}

.ai-strip-inner {
  background: #edf3f7;
  border: 1px solid #dbe6ee;
  border-radius: var(--radius-md);
  padding: 22px 28px;
  display: grid;
  gap: 24px;
  grid-template-columns: 1.25fr 1.6fr;
  align-items: center;
}

.ai-intro {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 22px;
  align-items: center;
}

.ai-brain svg {
  width: 110px;
  height: auto;
}

.ai-brain path:first-child {
  fill: rgba(97, 210, 218, 0.15);
  stroke: #49cfe0;
}

.ai-brain path {
  fill: none;
  stroke: #49cfe0;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ai-strip-inner h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
}

.ai-strip-inner p {
  margin: 0;
  color: #556480;
  font-size: 0.82rem;
  line-height: 1.55;
}

.ai-capabilities {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  color: #2f3f5f;
  font-weight: 600;
}

.ai-capabilities li {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.45;
}

.strip-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--strip-accent, #16856d);
  background: color-mix(in srgb, var(--strip-accent, #16856d) 12%, white);
}

.ai-capabilities li:nth-child(4n + 1) {
  --strip-accent: var(--logo-blue);
}

.ai-capabilities li:nth-child(4n + 2) {
  --strip-accent: var(--logo-cyan);
}

.ai-capabilities li:nth-child(4n + 3) {
  --strip-accent: var(--logo-orange);
}

.ai-capabilities li:nth-child(4n + 4) {
  --strip-accent: var(--logo-green);
}

.thesis-lab {
  padding: 36px 0 12px;
  position: relative;
}

.thesis-lab-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: 28px;
  align-items: stretch;
}

.thesis-copy {
  align-self: center;
}

.thesis-copy h2 {
  margin: 10px 0 12px;
  font-size: 1.86rem;
  line-height: 1.16;
  letter-spacing: 0;
}

.thesis-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.68;
  max-width: 42ch;
}

.thesis-actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.research-board {
  border: 1px solid #d8e8ec;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 107, 26, 0.08), transparent 28%),
    linear-gradient(135deg, rgba(40, 200, 223, 0.12), rgba(255, 255, 255, 0.92));
  padding: 22px;
  display: grid;
  gap: 18px;
}

.research-note {
  border-left: 4px solid var(--logo-orange);
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 8px;
}

.research-note small {
  display: block;
  color: #138a70;
  font-weight: 800;
  font-size: 0.72rem;
  margin-bottom: 7px;
}

.research-note strong {
  display: block;
  max-width: 38ch;
  color: var(--text-main);
  font-size: 1.16rem;
  line-height: 1.32;
}

.research-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.research-steps li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  padding: 13px;
  border: 1px solid rgba(207, 225, 230, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.research-steps span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--logo-green), var(--logo-blue));
  font-weight: 800;
  font-size: 0.72rem;
}

.research-steps strong {
  display: block;
  color: var(--text-main);
  margin-bottom: 4px;
}

.research-steps p {
  margin: 0;
  color: #5f6c86;
  font-size: 0.86rem;
  line-height: 1.48;
}

.dashboard-pages {
  padding: 34px 0 14px;
  position: relative;
}

.dashboard-pages-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1.42fr);
  gap: 34px;
  align-items: center;
}

.dashboard-pages-copy h2 {
  margin: 10px 0 12px;
  font-size: 1.72rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.dashboard-pages-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.6;
  max-width: 36ch;
}

.dashboard-page-stage {
  min-height: 410px;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 26px;
  align-items: center;
  perspective: 1200px;
  perspective-origin: 50% 44%;
}

.dashboard-page {
  --page-rotate-y: 0deg;
  --page-rotate-x: 0deg;
  --page-shift: 0px;
  min-height: 354px;
  border: 1px solid rgba(195, 222, 226, 0.84);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 251, 252, 0.96)),
    #ffffff;
  box-shadow:
    0 26px 58px rgba(15, 45, 76, 0.14),
    0 2px 0 rgba(255, 255, 255, 0.9) inset;
  overflow: hidden;
  transform:
    translateX(var(--page-shift))
    rotateX(var(--page-rotate-x))
    rotateY(var(--page-rotate-y))
    translateZ(0);
  transform-style: preserve-3d;
  transition:
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 520ms ease,
    border-color 300ms ease;
  will-change: transform;
}

.dashboard-page-left {
  --page-rotate-y: 7deg;
  --page-rotate-x: 1deg;
  --page-shift: 8px;
  transform-origin: 100% 50%;
}

.dashboard-page-right {
  --page-rotate-y: -7deg;
  --page-rotate-x: 1deg;
  --page-shift: -8px;
  transform-origin: 0% 50%;
}

.dashboard-page:hover,
.dashboard-page:focus-visible {
  --page-rotate-y: 0deg;
  --page-rotate-x: 0deg;
  --page-shift: 0px;
  border-color: rgba(94, 190, 202, 0.9);
  box-shadow:
    0 32px 68px rgba(15, 45, 76, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset;
  outline: 0;
  z-index: 2;
}

.dashboard-page-topbar {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  border-bottom: 1px solid #d7e7ea;
  background:
    linear-gradient(90deg, rgba(255, 107, 26, 0.16), rgba(22, 143, 211, 0.12), rgba(17, 140, 114, 0.14)),
    rgba(255, 255, 255, 0.8);
}

.dashboard-page-topbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--logo-orange);
}

.dashboard-page-topbar span:nth-child(2) {
  background: var(--logo-blue);
}

.dashboard-page-topbar span:nth-child(3) {
  background: var(--logo-green);
}

.dashboard-page-topbar strong {
  margin-left: 7px;
  color: #1b2b49;
  font-size: 0.77rem;
}

.dashboard-page-body {
  padding: 16px;
  display: grid;
  gap: 12px;
}

.dashboard-page-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.dashboard-page-kpis span,
.dashboard-signal-card,
.dashboard-line-card,
.dashboard-alert-list {
  border: 1px solid #dbe8ee;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.dashboard-page-kpis span {
  padding: 10px;
  display: grid;
  gap: 6px;
}

.dashboard-page-kpis small {
  color: #60708d;
  font-size: 0.64rem;
  font-weight: 700;
}

.dashboard-page-kpis strong {
  color: var(--text-main);
  font-size: 1.36rem;
  line-height: 1;
}

.dashboard-signal-card {
  min-height: 154px;
  padding: 12px;
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr) 96px;
  gap: 10px;
  align-items: center;
}

.signal-orbit {
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.95) 0 23%, transparent 24%),
    conic-gradient(from 48deg, var(--logo-blue), var(--logo-cyan), var(--logo-green), var(--logo-orange), var(--logo-blue));
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.82);
}

.signal-orbit::before,
.signal-orbit::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(22, 143, 211, 0.2);
  border-radius: 50%;
}

.signal-orbit::after {
  inset: 34%;
  border-color: rgba(255, 107, 26, 0.2);
}

.signal-orbit span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  background: var(--logo-orange);
  box-shadow: 0 0 0 6px rgba(255, 107, 26, 0.12);
  animation: dashboard-pulse 2.2s ease-in-out infinite paused;
}

.signal-orbit span:nth-child(1) {
  left: 24%;
  top: 28%;
}

.signal-orbit span:nth-child(2) {
  right: 22%;
  top: 42%;
  background: var(--logo-blue);
  box-shadow: 0 0 0 6px rgba(22, 143, 211, 0.12);
  animation-delay: 0.45s;
}

.signal-orbit span:nth-child(3) {
  left: 48%;
  bottom: 18%;
  background: var(--logo-green);
  box-shadow: 0 0 0 6px rgba(17, 140, 114, 0.12);
  animation-delay: 0.9s;
}

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

.signal-heatmap i {
  aspect-ratio: 1.25;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent),
    color-mix(in srgb, var(--logo-blue) calc(var(--level) * 100%), var(--logo-green));
  opacity: calc(0.42 + var(--level) * 0.58);
}

.signal-stat-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: #53647e;
  font-size: 0.66rem;
  font-weight: 700;
}

.signal-stat-list li {
  display: grid;
  gap: 4px;
}

.signal-stat-list i {
  width: var(--v);
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--logo-green), var(--logo-blue));
}

.dashboard-page-bars {
  height: 72px;
  border: 1px solid #dbe8ee;
  border-radius: 8px;
  padding: 10px 14px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  align-items: end;
  background: rgba(255, 255, 255, 0.72);
}

.dashboard-page-bars span {
  display: block;
  align-self: end;
  height: var(--h);
  min-height: 14px;
  border-radius: 999px 999px 3px 3px;
  background: linear-gradient(180deg, var(--logo-cyan), var(--logo-blue));
  animation: dashboard-bar 2.8s ease-in-out infinite paused;
}

.dashboard-page-bars span:nth-child(even) {
  background: linear-gradient(180deg, #8adfcd, var(--logo-green));
  animation-delay: 0.38s;
}

.dashboard-line-card {
  min-height: 168px;
  padding: 12px;
}

.dashboard-line-card svg {
  width: 100%;
  height: 142px;
}

.dashboard-line-card .line-area {
  fill: rgba(40, 200, 223, 0.13);
}

.dashboard-line-card .line-grid {
  fill: none;
  stroke: #e6edf5;
  stroke-width: 1.2;
}

.dashboard-line-card polyline {
  fill: none;
  stroke: var(--logo-green);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  animation: dashboard-line 3.2s ease-in-out infinite paused;
}

.dashboard-page:hover .dashboard-page-bars span,
.dashboard-page:focus-visible .dashboard-page-bars span,
.dashboard-page:hover .dashboard-line-card polyline,
.dashboard-page:focus-visible .dashboard-line-card polyline,
.dashboard-page:hover .signal-orbit span,
.dashboard-page:focus-visible .signal-orbit span {
  animation-play-state: running;
}

.dashboard-alert-list {
  padding: 12px;
  display: grid;
  gap: 9px;
}

.dashboard-alert-list span {
  color: #344761;
  font-size: 0.76rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dashboard-alert-list i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--logo-orange);
  box-shadow: 0 0 0 5px rgba(255, 107, 26, 0.1);
}

.dashboard-alert-list span:nth-child(2) i {
  background: var(--logo-blue);
  box-shadow: 0 0 0 5px rgba(22, 143, 211, 0.1);
}

.dashboard-alert-list span:nth-child(3) i {
  background: var(--logo-green);
  box-shadow: 0 0 0 5px rgba(17, 140, 114, 0.1);
}

@keyframes dashboard-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.62;
  }

  50% {
    transform: scale(1.35);
    opacity: 1;
  }
}

@keyframes dashboard-bar {
  0%,
  100% {
    transform: scaleY(0.88);
  }

  50% {
    transform: scaleY(1.05);
  }
}

@keyframes dashboard-line {
  0% {
    stroke-dashoffset: 520;
  }

  45%,
  100% {
    stroke-dashoffset: 0;
  }
}

.section-space {
  padding: 66px 0 26px;
}

.eyebrow {
  color: #178f73;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0;
}

.services > .container > .eyebrow,
.projects > .eyebrow,
.results > .container > .eyebrow {
  display: block;
  text-align: center;
}

.services h2,
.projects h2,
.results h2 {
  margin: 12px 0 8px;
  font-size: 1.75rem;
  letter-spacing: 0;
  text-align: center;
}

.section-subtitle {
  margin: 0 auto;
  color: #5f6c86;
  font-size: 1.12rem;
  max-width: 56ch;
}

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

.service-card {
  background: #fff;
  border: 1px solid #dce7f0;
  border-left: 4px solid color-mix(in srgb, var(--service-accent, var(--logo-green)) 72%, white);
  border-radius: 8px;
  padding: 22px;
  display: grid;
  align-content: start;
  min-height: 220px;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--service-accent, var(--logo-green));
  background: color-mix(in srgb, var(--service-accent, var(--logo-green)) 12%, white);
}

.service-card:nth-child(4n + 1) {
  --service-accent: var(--logo-blue);
}

.service-card:nth-child(4n + 2) {
  --service-accent: var(--logo-cyan);
}

.service-card:nth-child(4n + 3) {
  --service-accent: var(--logo-green);
}

.service-card:nth-child(4n + 4) {
  --service-accent: var(--logo-orange);
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: #5d6d87;
  line-height: 1.45;
  font-size: 0.88rem;
}

.service-card a {
  margin-top: auto;
  color: var(--brand);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.service-card a::after {
  content: "->";
}

.floating-rail {
  position: fixed;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 45;
  display: grid;
  gap: 12px;
}

.floating-rail::before,
.floating-rail::after {
  content: "";
  justify-self: center;
  width: 1px;
  background: linear-gradient(180deg, transparent, #b7dcd4 18%, #b7dcd4 82%, transparent);
}

.floating-rail::before {
  height: 52px;
}

.floating-rail::after {
  height: 70px;
}

.floating-rail-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #c7e5dd;
  background: rgba(255, 255, 255, 0.9);
  color: #16876e;
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(20, 47, 86, 0.08);
  position: relative;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.floating-rail-link:hover,
.floating-rail-link.is-active {
  transform: translateX(4px);
  background: linear-gradient(135deg, #159a79, #0f7a5f);
  color: #ffffff;
  border-color: #159a79;
}

.floating-rail-link::after {
  content: attr(data-label);
  position: absolute;
  left: 54px;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  color: #213452;
  border: 1px solid #d4e8e4;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 14px 28px rgba(20, 47, 86, 0.08);
  transition: opacity 160ms ease;
}

.floating-rail-link:hover::after,
.floating-rail-link.is-active::after {
  opacity: 1;
}

.floating-rail-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.projects {
  padding: 58px 0 24px;
  position: relative;
}

.projects-head {
  text-align: center;
}

.project-slider {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 12px;
  align-items: center;
  position: relative;
  min-width: 0;
}

.project-viewport {
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #cfe1df;
  background:
    linear-gradient(135deg, rgba(230, 246, 241, 0.88), rgba(248, 252, 253, 0.96)),
    #ffffff;
  box-shadow: 0 18px 44px rgba(20, 47, 86, 0.08);
}

.project-track {
  width: 100%;
  min-width: 0;
  display: flex;
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-card {
  --preview-height: 292px;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  align-items: center;
  min-width: 100%;
  flex: 0 0 100%;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  background: transparent;
}

.project-card:hover {
  color: inherit;
}

.project-visual {
  display: grid;
  min-width: 0;
  border-right: 1px solid #d6e8e5;
}

.browser-bar {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-bottom: 1px solid #d6e8e5;
  background: rgba(255, 255, 255, 0.74);
}

.browser-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #9edfd2;
}

.browser-bar i:nth-child(2) {
  background: #7bc4ee;
}

.browser-bar i:nth-child(3) {
  background: #5f8de7;
}

.browser-bar strong {
  margin-left: 8px;
  color: #52627c;
  font-size: 0.75rem;
  font-weight: 700;
}

.browser-bar em {
  margin-left: auto;
  color: #0f8469;
  border: 1px solid #a8dcd1;
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 0.72rem;
  font-style: normal;
  background: #edf8f5;
}

.project-preview {
  height: var(--preview-height);
  display: block;
  position: relative;
  overflow: hidden;
  background: #eaf1f5;
}

.project-screenshot {
  width: 100%;
  height: auto;
  min-height: var(--preview-height);
  display: block;
  transition: transform 5200ms cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}

.project-card:hover .project-screenshot {
  transform: translateY(calc(-100% + var(--preview-height)));
}

.project-copy {
  padding: 32px 34px;
  display: grid;
  gap: 12px;
  align-content: center;
  min-width: 0;
  min-height: calc(var(--preview-height) + 42px);
  background:
    radial-gradient(circle at 100% 0%, rgba(116, 213, 198, 0.2), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(242, 250, 248, 0.9));
}

.project-copy small {
  color: #138a70;
  font-size: 0.76rem;
  font-weight: 800;
}

.project-copy strong {
  color: var(--text-main);
  font-size: 1.52rem;
  line-height: 1.2;
  overflow-wrap: break-word;
}

.project-copy span {
  color: #566782;
  line-height: 1.68;
  font-size: 0.94rem;
}

.project-copy .project-stack {
  color: #263653;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 0.78rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.project-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-highlights b {
  border: 1px solid #c7e5dd;
  border-radius: 999px;
  background: #ffffff;
  color: #15876e;
  padding: 7px 10px;
  font-size: 0.72rem;
  font-weight: 800;
}

.project-action {
  margin-top: 6px;
  width: fit-content;
  border: 1px solid #138a70;
  border-radius: 4px;
  padding: 11px 18px;
  font-weight: 800;
  background: linear-gradient(135deg, #159a79, #0f7a5f);
}

.project-copy .project-action {
  color: #ffffff;
  line-height: 1;
}

.project-nav {
  width: 44px;
  height: 44px;
  border: 1px solid #b7ded4;
  border-radius: 50%;
  background: #ffffff;
  color: #138a70;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(20, 47, 86, 0.08);
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.project-nav:hover {
  transform: translateY(-2px);
  background: #138a70;
  color: #ffffff;
}

.project-nav svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.project-dots {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.project-dots button {
  width: 28px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: #c7dedb;
  cursor: pointer;
  transition:
    width 180ms ease,
    background 180ms ease;
}

.project-dots button.is-active {
  width: 44px;
  background: #138a70;
}

.training-card {
  margin-top: 18px;
  background: #fff;
  border: 1px solid #dbe6ef;
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
}

.training-media {
  min-height: 310px;
  background: #eef4f6;
}

.training-media img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  display: block;
}

.training-copy {
  padding: 26px 24px;
}

.training-copy h3 {
  margin: 10px 0 10px;
  font-size: 1.55rem;
  line-height: 1.15;
}

.training-copy p {
  margin: 0;
  color: #5c6b84;
  line-height: 1.5;
  font-size: 0.9rem;
}

.training-copy ul {
  margin: 16px 0 18px;
  padding: 0;
  list-style: none;
  color: #334663;
  display: grid;
  gap: 8px;
  font-size: 0.84rem;
}

.training-copy li::before {
  content: "+";
  color: #179378;
  font-weight: 800;
  margin-right: 8px;
}

.results {
  padding: 32px 0 54px;
  text-align: center;
}

.result-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.result-card {
  background: #fff;
  border: 1px solid #dbe6ef;
  border-radius: 8px;
  padding: 18px 15px;
  text-align: left;
}

.result-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #138a70;
  background: #e8f6f2;
  margin-bottom: 12px;
}

.result-card strong {
  font-size: 1.55rem;
  color: #148e71;
}

.result-card p {
  margin: 8px 0 0;
  color: #576783;
  font-weight: 600;
  line-height: 1.4;
  font-size: 0.9rem;
}

.contact-band {
  padding: 0 0 82px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 18px;
  align-items: stretch;
}

.contact-grid > article {
  border: 1px solid #dbe6ef;
  border-radius: 8px;
  background: #ffffff;
  padding: 30px;
}

.contact-grid h2,
.contact-panel h3 {
  margin: 10px 0 12px;
  color: var(--text-main);
  line-height: 1.18;
  letter-spacing: 0;
}

.contact-grid h2 {
  font-size: 1.72rem;
}

.contact-panel h3 {
  font-size: 1.45rem;
}

.contact-grid p {
  margin: 0;
  color: #5c6b84;
  line-height: 1.6;
  font-size: 0.94rem;
}

.contact-panel {
  display: grid;
  align-content: start;
  gap: 6px;
  background:
    linear-gradient(135deg, #ffffff 0%, #f3fbf8 100%);
}

.contact-selection {
  margin-top: 10px;
  padding: 12px 14px;
  border: 1px solid #cfe5e3;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(40, 200, 223, 0.08), rgba(255, 107, 26, 0.06)),
    #ffffff;
}

.contact-selection span {
  display: block;
  color: #64728a;
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.contact-selection strong {
  color: var(--text-main);
  font-size: 0.96rem;
}

.contact-panel .btn {
  margin-top: 14px;
  width: fit-content;
}

@media (max-width: 980px) {
  .floating-rail {
    display: none;
  }

  .site-nav {
    display: none;
  }

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

  .thesis-lab-inner {
    grid-template-columns: 1fr;
  }

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

  .dashboard-pages-copy p {
    max-width: 58ch;
  }

  .dashboard-page-stage {
    min-height: auto;
  }

  .hero-copy p {
    max-width: 100%;
  }

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

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

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

@media (max-width: 1100px) and (min-width: 981px) {
  .container {
    width: min(1150px, calc(100% - 48px));
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
    gap: 28px;
  }

  .hero-copy h1 {
    font-size: 2.35rem;
  }

  .hero-copy p {
    font-size: 0.98rem;
  }

  .feature-list {
    gap: 8px;
  }

  .feature-list li {
    font-size: 0.7rem;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(1220px, calc(100% - 28px));
  }

  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .floating-header .header-inner {
    padding: 10px 16px;
  }

  .brand-mark-shell {
    width: 44px;
    height: 44px;
  }

  .brand-wordmark {
    font-size: 1.48rem;
  }

  .hero-copy h1 {
    font-size: 2.36rem;
  }

  .hero-copy p {
    font-size: 1.08rem;
  }

  .feature-list {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .stats-row,
  .panel-grid {
    grid-template-columns: 1fr;
  }

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

  .ai-intro {
    grid-template-columns: 78px 1fr;
  }

  .ai-brain svg {
    width: 76px;
  }

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

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

  .training-card {
    grid-template-columns: 1fr;
  }

  .training-media {
    min-height: 220px;
  }

  .training-media img {
    min-height: 220px;
  }

  .training-copy h3 {
    font-size: 1.84rem;
  }

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

@media (max-width: 600px) {
  .container {
    width: calc(100vw - 22px);
    max-width: calc(100vw - 22px);
  }

  .hero-copy,
  .dashboard,
  .ai-strip-inner,
  .training-card,
  .project-card,
  .service-card,
  .result-card,
  .contact-grid > article {
    min-width: 0;
    max-width: 100%;
  }

  .site-header {
    padding-top: 8px;
    padding-bottom: 7px;
  }

  .ambient-wave {
    opacity: calc(var(--wave-opacity, 0.52) * 0.72);
  }

  .ambient-wave-numbers {
    opacity: 0.78;
  }

  .ambient-wave-tint {
    opacity: 0.86;
  }

  .floating-header {
    top: 8px;
  }

  .floating-header .header-inner {
    padding: 9px 14px;
    border-radius: 18px;
  }

  .brand-mark-shell,
  .floating-header .brand-mark-shell {
    width: 38px;
    height: 38px;
  }

  .brand-mark-image,
  .floating-header .brand-mark-image {
    width: 38px;
    height: 38px;
  }

  .brand-wordmark,
  .floating-header .brand-wordmark {
    font-size: 1.28rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-copy h1 {
    font-size: 1.92rem;
    line-height: 1.28;
    max-width: 12ch;
  }

  .hero-copy p {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 31ch;
  }

  .feature-list {
    grid-template-columns: 1fr;
    row-gap: 18px;
  }

  .feature-list li {
    justify-items: center;
  }

  .btn {
    width: 100%;
    white-space: normal;
  }

  .dashboard {
    padding: 12px;
  }

  .thesis-copy h2,
  .dashboard-pages-copy h2 {
    font-size: 1.48rem;
  }

  .research-board {
    padding: 16px;
  }

  .dashboard-pages {
    padding-top: 26px;
  }

  .dashboard-page-stage {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .dashboard-page,
  .dashboard-page-left,
  .dashboard-page-right {
    --page-rotate-y: 0deg;
    --page-rotate-x: 0deg;
    --page-shift: 0px;
    min-height: 0;
  }

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

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

  .dashboard-head {
    display: grid;
    gap: 8px;
  }

  .dashboard-head p {
    text-align: left;
  }

  .metric-card p {
    white-space: normal;
  }

  .map-wrap {
    grid-template-columns: 1fr;
  }

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

  .chart-legend {
    flex-wrap: wrap;
    row-gap: 4px;
  }

  .ai-strip-inner {
    padding: 18px;
  }

  .project-slider {
    grid-template-columns: 1fr;
    padding-top: 54px;
  }

  .project-card {
    grid-template-columns: 1fr;
  }

  .project-visual {
    border-right: 0;
    border-bottom: 1px solid #d6e8e5;
  }

  .projects h2 {
    font-size: 1.45rem;
    line-height: 1.25;
  }

  .projects .section-subtitle {
    font-size: 0.9rem;
    max-width: 30ch;
  }

  .project-nav {
    position: absolute;
    top: 0;
    z-index: 3;
  }

  .project-nav-prev {
    left: calc(50% - 50px);
  }

  .project-nav-next {
    right: calc(50% - 50px);
  }

  .project-preview {
    height: 220px;
  }

  .project-screenshot {
    min-height: 220px;
  }

  .browser-bar em {
    display: none;
  }

  .project-copy {
    padding: 24px 20px;
  }

  .project-copy strong {
    font-size: 1.26rem;
  }

  .project-highlights {
    gap: 6px;
  }

  .project-highlights b {
    font-size: 0.66rem;
    padding: 6px 8px;
  }

  .contact-grid > article {
    padding: 22px;
  }

  .contact-panel .btn {
    width: 100%;
  }

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

  .ai-intro {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ai-brain {
    justify-self: center;
  }

  .ai-capabilities {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dashboard-page,
  .dashboard-page-bars span,
  .signal-orbit span,
  .dashboard-line-card polyline {
    animation: none;
    transition-duration: 0.01ms;
  }

  .dashboard-line-card polyline {
    stroke-dashoffset: 0;
  }
}

/* Thesis-focused landing page */
.thesis-hero {
  padding: 72px 0 86px;
}

.thesis-hero .hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: center;
}

.thesis-hero .hero-copy h1 {
  max-width: 16ch;
  margin: 22px 0 20px;
  font-size: clamp(2.6rem, 5vw, 4.65rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.thesis-hero .hero-copy p {
  max-width: 59ch;
  font-size: 1.08rem;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.audience-list li {
  padding: 8px 12px;
  border: 1px solid #cfe3df;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #40516c;
  font-size: 0.78rem;
  font-weight: 700;
}

.thesis-diagnostic {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid #cfe4df;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 249, 246, 0.97));
  box-shadow: 0 28px 70px rgba(14, 65, 75, 0.13);
}

.thesis-diagnostic::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--logo-green), var(--logo-cyan), var(--logo-blue));
}

.diagnostic-heading {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.diagnostic-icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--brand);
  background: #dff3ed;
}

.diagnostic-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.diagnostic-heading small {
  color: var(--brand);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.diagnostic-heading h2 {
  margin: 5px 0 0;
  font-size: 1.38rem;
  line-height: 1.25;
}

.thesis-diagnostic > p {
  margin: 22px 0;
  color: #53637c;
  line-height: 1.65;
}

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

.diagnostic-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid #dceae7;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  color: #344761;
  font-size: 0.88rem;
  font-weight: 650;
}

.diagnostic-list span {
  color: var(--brand);
  font: 700 0.76rem "Sora", sans-serif;
}

.diagnostic-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 22px;
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: none;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2 {
  margin: 10px 0 12px;
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.section-heading p {
  margin: 0 auto;
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 1.02rem;
}

.thesis-help {
  padding: 82px 0;
  background: linear-gradient(
    180deg,
    rgba(245, 251, 249, 0.94) 0%,
    rgba(245, 251, 249, 0.9) 68%,
    rgba(245, 251, 249, 0.58) 86%,
    rgba(245, 251, 249, 0) 100%
  );
  border-block: 1px solid #dcebe7;
}

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

.stage-card {
  padding: 24px;
  border: 1px solid #d9e7e4;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(20, 47, 86, 0.045);
}

.stage-number {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 9px;
  background: #e1f4ef;
  color: var(--brand);
  font: 700 0.78rem "Sora", sans-serif;
}

.stage-card h3 {
  margin: 18px 0 8px;
  font-size: 1.08rem;
}

.stage-card p {
  margin: 0;
  color: #5d6d84;
  font-size: 0.88rem;
  line-height: 1.6;
}

.concepts-section {
  padding: 90px 0;
}

.concepts-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: start;
}

.concepts-intro {
  position: sticky;
  top: 120px;
}

.concepts-intro h2 {
  margin: 10px 0 14px;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.concepts-intro p {
  margin: 0 0 24px;
  color: var(--text-soft);
  line-height: 1.7;
}

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

.concept-list article {
  padding: 22px;
  border: 1px solid #dce7ef;
  border-radius: 12px;
  background: #fff;
}

.concept-list strong {
  display: block;
  color: #203552;
  line-height: 1.35;
}

.concept-list p {
  margin: 8px 0 0;
  color: #65738a;
  font-size: 0.85rem;
  line-height: 1.58;
}

.services.section-space {
  padding: 82px 0 90px;
  background: rgba(248, 252, 253, 0.92);
  border-block: 1px solid #e1eaef;
}

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

.thesis-service-grid .service-card {
  min-height: 230px;
}

.service-tag {
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 9px;
  border-radius: 6px;
  color: var(--brand-dark);
  background: #e7f5f1;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.thesis-contact {
  padding: 92px 0;
}

.thesis-contact .contact-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
  gap: 26px;
  align-items: start;
}

.thesis-contact .contact-grid > article {
  padding: clamp(24px, 4vw, 38px);
  border-radius: 14px;
}

.contact-intro h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  letter-spacing: -0.03em;
}

.contact-promises {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.contact-promises li {
  position: relative;
  padding-left: 28px;
  color: #465a73;
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-promises li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 900;
}

.direct-email {
  padding-top: 22px;
  border-top: 1px solid #dce7e5;
}

.direct-email span {
  display: block;
  margin-bottom: 5px;
  color: #6a778b;
  font-size: 0.75rem;
  font-weight: 700;
}

.direct-email a {
  color: var(--brand-dark);
  font-size: 0.9rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.form-panel h3 {
  margin-bottom: 22px;
}

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

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

.thesis-form label {
  display: grid;
  gap: 7px;
  color: #31445f;
  font-size: 0.8rem;
  font-weight: 800;
}

.thesis-form input,
.thesis-form select,
.thesis-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #cbdde1;
  border-radius: 9px;
  background: #fff;
  color: #172b48;
  font: 500 0.9rem "Manrope", sans-serif;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.thesis-form input,
.thesis-form select {
  min-height: 46px;
  padding: 0 12px;
}

.thesis-form textarea {
  min-height: 138px;
  padding: 12px;
  line-height: 1.55;
  resize: vertical;
}

.thesis-form input:focus,
.thesis-form select:focus,
.thesis-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(20, 143, 113, 0.12);
}

.thesis-form .consent-field {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #607087;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.45;
}

.consent-field input {
  width: 17px;
  min-height: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--brand);
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-status {
  margin: 0;
  padding: 12px 14px;
  border-radius: 9px;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.5;
}

.form-status.is-success {
  border: 1px solid #a9dccc;
  background: #e8f7f1;
  color: #0d6f58;
}

.form-status.is-error {
  border: 1px solid #f0c7b2;
  background: #fff3ed;
  color: #9a421f;
}

.form-note {
  color: #7b8799;
  text-align: center;
  font-size: 0.7rem;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.site-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid #dce7e5;
  background: #f6faf9;
}

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

.footer-inner span {
  color: var(--brand-dark);
  font: 700 1.1rem "Sora", sans-serif;
}

.footer-inner p {
  margin: 0;
  color: #66758b;
  font-size: 0.82rem;
}

@media (max-width: 980px) {
  .thesis-hero .hero-grid,
  .concepts-layout,
  .thesis-contact .contact-grid {
    grid-template-columns: 1fr;
  }

  .thesis-hero .hero-copy h1 {
    max-width: 14ch;
  }

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

  .concepts-intro {
    position: static;
  }
}

@media (max-width: 600px) {
  .site-header .header-inner > .btn,
  .floating-header .header-inner > .btn {
    width: auto;
    padding: 10px 13px;
    font-size: 0.72rem;
  }

  .thesis-hero {
    padding: 42px 0 58px;
  }

  .thesis-hero .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 12vw, 3rem);
    line-height: 1.08;
  }

  .thesis-hero .hero-copy p {
    max-width: 100%;
    font-size: 0.96rem;
  }

  .audience-list {
    margin-top: 26px;
  }

  .thesis-diagnostic {
    padding: 24px 18px;
  }

  .diagnostic-heading {
    display: grid;
  }

  .thesis-help,
  .concepts-section,
  .services.section-space,
  .thesis-contact {
    padding: 60px 0;
  }

  .stage-grid,
  .concept-list,
  .thesis-service-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .stage-card,
  .concept-list article,
  .thesis-service-grid .service-card {
    padding: 20px;
  }

  .thesis-contact .contact-grid > article {
    padding: 22px 18px;
  }

  .footer-inner {
    padding: 20px 0;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
