:root {
  --ink: #f7fbff;
  --muted: #b8c7d8;
  --deep: #070b13;
  --panel: rgba(13, 20, 33, 0.78);
  --line: rgba(255, 255, 255, 0.13);
  --teal: #ff914d;
  --blue: #9d8e77;
  --gold: #f2c70f;
  --coral: #c2a27f;
  --violet: #a678ff;
  --green: #6ee79e;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 12%, rgba(49, 228, 212, 0.18), transparent 28rem),
    radial-gradient(circle at 82% 8%, rgba(255, 107, 107, 0.13), transparent 25rem),
    linear-gradient(135deg, #060912 0%, #10182a 48%, #091119 100%);
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

#signalCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.52;
  z-index: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(7, 11, 19, 0.58);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 11, 19, 0.84);
  border-color: var(--line);
}

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

.brand-mark {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  padding: 8px;
  border: 1px solid rgba(242, 199, 15, 0.34);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(20, 36, 56, 0.96), rgba(25, 52, 83, 0.82));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.74rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.site-nav a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 11px 16px;
  border: 1px solid rgba(49, 228, 212, 0.42);
  border-radius: 8px;
  color: var(--ink) !important;
  background: rgba(49, 228, 212, 0.1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 6px auto;
  background: var(--ink);
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.section,
.hero {
  padding-inline: clamp(18px, 5vw, 76px);
}

.section {
  padding-block: clamp(76px, 11vw, 132px);
}

.section-band {
  position: relative;
}

.section-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.035), transparent 50%, rgba(49, 228, 212, 0.035));
  border-block: 1px solid rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  align-items: center;
  gap: clamp(32px, 5vw, 78px);
  min-height: 92vh;
  padding-top: 112px;
  padding-bottom: 56px;
}

.hero-copy,
.hero-visual,
.section > *,
.section-heading,
.trust-strip {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(3.35rem, 8vw, 7.4rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.hero-headline {
  max-width: 750px;
  line-height: 0.77;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.14rem;
}

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

.hero-lede {
  max-width: 680px;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--gold), var(--teal));
  color: #161012;
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 680px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(14px);
}

.hero-metrics span {
  min-width: 0;
  padding: 18px;
  color: var(--muted);
  border-right: 1px solid var(--line);
  font-size: 0.82rem;
}

.hero-metrics span:last-child {
  border-right: 0;
}

.hero-metrics strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.hero-visual {
  padding: clamp(10px, 2vw, 18px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(49, 228, 212, 0.16), transparent 38%),
    rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  border-radius: 6px;
}

.trust-strip {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 18px clamp(18px, 5vw, 76px);
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.trust-strip span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.84rem;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

.section-heading.compact {
  max-width: 720px;
}

.service-grid,
.industry-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.industry-grid article,
.project-grid article {
  position: relative;
  min-height: 258px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -28% 30%;
  height: 120px;
  filter: blur(34px);
  opacity: 0.48;
}

.accent-teal::after {
  background: var(--teal);
}

.accent-gold::after {
  background: var(--gold);
}

.accent-coral::after {
  background: var(--coral);
}

.accent-violet::after {
  background: var(--violet);
}

.service-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--teal);
  font-weight: 900;
}

.research {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(34px, 6vw, 92px);
}

.research-visual {
  display: grid;
  min-height: 520px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(90, 124, 255, 0.16), rgba(247, 191, 79, 0.08)),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.model-core {
  position: relative;
  display: grid;
  width: min(68vw, 340px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(49, 228, 212, 0.24);
  border-radius: 50%;
}

.model-core::before,
.model-core::after,
.model-core span {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.model-core::before {
  inset: 12%;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  animation: spin 22s linear infinite;
}

.model-core::after {
  width: 42%;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--teal), rgba(90, 124, 255, 0.28) 62%, transparent 64%);
  box-shadow: 0 0 70px rgba(49, 228, 212, 0.42);
}

.model-core span {
  width: 14px;
  height: 14px;
  background: var(--gold);
  box-shadow: 0 0 22px rgba(247, 191, 79, 0.8);
}

.model-core span:nth-child(1) {
  top: 18%;
  left: 28%;
}

.model-core span:nth-child(2) {
  right: 16%;
  top: 46%;
  background: var(--coral);
}

.model-core span:nth-child(3) {
  left: 42%;
  bottom: 13%;
  background: var(--green);
}

.research-stat {
  width: min(80%, 330px);
  margin-top: -88px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 11, 19, 0.72);
  backdrop-filter: blur(14px);
}

.research-stat strong,
.research-stat small {
  display: block;
}

.research-stat strong {
  font-size: 2.6rem;
}

.research-stat small {
  color: var(--muted);
}

.research-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.research-list div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.industry-grid article {
  min-height: 216px;
}

.project-grid article {
  min-height: 286px;
  background:
    linear-gradient(145deg, rgba(49, 228, 212, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.052);
}

.project-grid span {
  display: inline-block;
  margin-bottom: 70px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.industry-grid article:nth-child(1) {
  border-top-color: var(--teal);
}

.industry-grid article:nth-child(2) {
  border-top-color: var(--gold);
}

.industry-grid article:nth-child(3) {
  border-top-color: var(--coral);
}

.industry-grid article:nth-child(4) {
  border-top-color: var(--violet);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.timeline article {
  min-height: 260px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.timeline article:last-child {
  border-right: 0;
}

.timeline span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--deep);
  font-weight: 900;
}

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

.proof-panel,
.proof-grid {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.proof-panel {
  padding: clamp(24px, 4vw, 44px);
}

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

.proof-grid div {
  min-height: 150px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-grid div:nth-child(2n) {
  border-right: 0;
}

.proof-grid div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  margin-bottom: 28px;
  color: var(--teal);
  font-size: 0.92rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
}

.email-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--teal);
  font-weight: 900;
}

.contact-address,
.footer-address {
  margin-top: 16px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.65;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

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

.contact-form span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(7, 11, 19, 0.62);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 76px);
  border-top: 1px solid var(--line);
  background: rgba(7, 11, 19, 0.82);
}

.site-footer p {
  margin: 0;
}

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

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

@media (max-width: 1080px) {
  .hero,
  .research,
  .proof,
  .contact {
    grid-template-columns: 1fr;
  }

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

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

  .timeline article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 16px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 69px 12px auto 12px;
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(7, 11, 19, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px;
  }

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

  h1 {
    font-size: clamp(3.1rem, 15vw, 4.8rem);
  }

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

  .hero-metrics span,
  .proof-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-metrics span:last-child,
  .proof-grid div:last-child {
    border-bottom: 0;
  }

  .service-grid,
  .industry-grid,
  .project-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline article,
  .timeline article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline article:last-child {
    border-bottom: 0;
  }

  .research-visual {
    min-height: 390px;
  }

  .site-footer {
    display: grid;
  }
}

/* Current homepage build: dashboard, richer cards, reveal motion, and expanded footer. */
.h1-brand,
.h1-sub {
  display: block;
}

.h1-sub {
  color: transparent;
  -webkit-text-stroke: 1px rgba(247, 251, 255, 0.78);
}

.hero-metric {
  min-width: 0;
  padding: 18px;
  color: var(--muted);
  border-right: 1px solid var(--line);
}

.hero-metric:last-child {
  border-right: 0;
}

.hero-metric strong,
.hero-metric small {
  display: block;
}

.hero-metric strong {
  color: var(--ink);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.hero-metric span {
  display: inline;
  min-width: 0;
  padding: 0;
  border: 0;
  color: inherit;
  font-size: inherit;
}

.hero-metric small {
  margin-top: 4px;
  font-size: 0.78rem;
}

.command-center {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 0%, rgba(49, 228, 212, 0.18), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(247, 191, 79, 0.13), transparent 30%),
    #0a1220;
}

.cc-titlebar,
.cc-kpis,
.cc-charts,
.cc-status-row,
.cc-tags {
  padding: 16px;
}

.cc-titlebar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.cc-macos {
  display: flex;
  gap: 7px;
}

.cc-macos span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
}

.cc-macos span:nth-child(2) {
  background: var(--gold);
}

.cc-macos span:nth-child(3) {
  background: var(--teal);
}

.cc-title {
  min-width: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.86rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cc-live-badge,
.cc-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  border: 1px solid rgba(49, 228, 212, 0.28);
  border-radius: 8px;
  color: var(--teal);
  background: rgba(49, 228, 212, 0.08);
  font-size: 0.72rem;
  font-weight: 900;
}

.cc-live-dot,
.cc-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 18px rgba(49, 228, 212, 0.8);
}

.cc-live-dot {
  animation: pulse 1.6s ease-in-out infinite;
}

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

.cc-kpi,
.cc-chart-panel,
.rg-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.cc-kpi {
  padding: 14px;
}

.cc-kpi small,
.cc-chart-head,
.rg-panel small {
  color: var(--muted);
  font-size: 0.76rem;
}

.cc-kpi strong {
  display: block;
  margin: 8px 0 5px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
}

.cc-good {
  color: var(--green);
}

.cc-alert {
  color: var(--gold);
}

.cc-delta {
  color: var(--muted);
  font-size: 0.72rem;
}

.cc-up {
  color: var(--green);
}

.cc-charts {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
}

.cc-chart-panel {
  min-height: 174px;
  padding: 14px;
}

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

.cc-bar-chart {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: end;
  gap: 8px;
  height: 116px;
}

.cc-b {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 7px;
  height: 100%;
  color: var(--muted);
  font-size: 0.68rem;
  text-align: center;
  transition: transform 220ms ease, color 220ms ease;
}

.cc-b-fill {
  align-self: end;
  height: var(--h);
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--teal), rgba(90, 124, 255, 0.36));
  box-shadow: 0 0 18px rgba(49, 228, 212, 0.18);
  transform-origin: bottom center;
  animation: barRise 900ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.cc-b--active .cc-b-fill {
  background: linear-gradient(180deg, var(--gold), rgba(255, 107, 107, 0.38));
}

.cc-b--today {
  color: var(--ink);
  transform: translateY(-2px);
}

.cc-b--today .cc-b-fill {
  background: linear-gradient(180deg, var(--gold), var(--teal));
  box-shadow: 0 0 24px rgba(242, 199, 15, 0.32);
  animation: barRise 900ms cubic-bezier(0.2, 0.9, 0.2, 1) both, todayPulse 2.2s ease-in-out infinite 1s;
}

.cc-b--today span {
  font-weight: 800;
}

.cc-chart-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.72rem;
}

.cc-chart-note-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(242, 199, 15, 0.7);
  animation: pulse 1.8s ease-in-out infinite;
}

.cc-sparkline {
  width: 100%;
  height: 86px;
}

.cc-chart-stat {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
  margin-top: 12px;
}

.cc-chart-stat strong {
  color: var(--teal);
  font-family: "JetBrains Mono", ui-monospace, monospace;
}

.cc-chart-stat small {
  color: var(--muted);
}

.cc-status-row {
  display: grid;
  gap: 8px;
  border-top: 1px solid var(--line);
}

.cc-status {
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.cc-dot--green {
  background: var(--green);
  box-shadow: 0 0 18px rgba(110, 231, 158, 0.72);
}

.cc-dot--gold {
  background: var(--gold);
  box-shadow: 0 0 18px rgba(247, 191, 79, 0.72);
}

.cc-dot--teal {
  background: var(--teal);
}

.cc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

.cc-sep {
  color: var(--teal);
}

.trust-strip {
  overflow: hidden;
  justify-content: flex-start;
  flex-wrap: nowrap;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 12px;
  align-items: center;
  animation: marquee 34s linear infinite;
}

.strip-dot {
  padding: 0 !important;
  border: 0 !important;
  color: var(--teal) !important;
}

.service-card-top,
.project-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 56px;
}

.service-icon-svg,
.project-icon,
.ind-card-icon,
.research-item-icon {
  display: grid;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.045);
}

.service-num {
  color: rgba(247, 251, 255, 0.58);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.84rem;
  font-weight: 700;
}

.project-tag {
  margin-bottom: 0 !important;
}

.research {
  display: block;
}

.research-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
}

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

.rg-panel {
  min-height: 150px;
  padding: 18px;
}

.rg-panel--wide {
  grid-column: 1 / -1;
}

.rg-panel--dark {
  background: rgba(7, 11, 19, 0.52);
}

.rg-panel strong {
  display: block;
  margin-top: 14px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 2rem;
}

.rg-big {
  color: var(--gold);
}

.rg-progress,
.rg-progress-fill {
  height: 8px;
  border-radius: 999px;
}

.rg-progress {
  margin-top: 22px;
  background: rgba(255, 255, 255, 0.1);
}

.rg-progress-fill {
  width: var(--w);
  background: linear-gradient(90deg, var(--teal), var(--green));
}

.rg-mini-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 70px;
  margin-top: 18px;
}

.rg-mini-bars div {
  flex: 1;
  height: var(--h);
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--violet), rgba(49, 228, 212, 0.28));
}

.rg-pipeline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 22px;
}

.rg-stage {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.8rem;
}

.rg-stage--done,
.rg-stage--active {
  color: var(--deep);
  background: var(--teal);
}

.rg-stage--active {
  background: var(--gold);
}

.rg-arrow {
  color: var(--muted);
}

.rg-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--green);
  background: rgba(110, 231, 158, 0.1);
  font-size: 0.78rem;
  font-weight: 900;
}

.rg-status-dots {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.rg-status-dots span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 22px rgba(49, 228, 212, 0.5);
}

.rg-status-dots span:nth-child(2) {
  background: var(--green);
}

.rg-status-dots span:nth-child(3) {
  background: var(--gold);
}

.rg-status-dots .rg-dot--muted {
  background: rgba(255, 255, 255, 0.24);
  box-shadow: none;
}

.rg-dot-label {
  margin: 16px 0 0;
  font-size: 0.84rem;
}

.research-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.research-list .research-item > div,
.research-list .research-item-icon {
  padding: 0;
  border: 0;
  background: transparent;
}

.research-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.research-tags span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.82rem;
}

.ind-card-icon {
  margin-bottom: 58px;
}

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

.process-step {
  position: relative;
  display: grid;
  gap: 18px;
  min-height: 290px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.process-connector-line {
  position: absolute;
  top: 44px;
  left: 68px;
  width: calc(100% + 18px);
  border-top: 1px dashed rgba(49, 228, 212, 0.32);
}

.process-num-wrap {
  position: relative;
  z-index: 1;
}

.process-num {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--deep);
  background: var(--ink);
  font-weight: 900;
}

.process-body {
  align-self: end;
}

.proof {
  grid-template-columns: 0.82fr 1.18fr;
}

.proof-header {
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.proof-item h3 {
  font-size: 1rem;
}

.proof-num {
  color: var(--teal);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-weight: 700;
}

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

.contact-signals {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-signals div {
  display: flex;
  gap: 10px;
  align-items: center;
}

.site-footer {
  display: block;
  padding-block: clamp(38px, 5vw, 64px) 24px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(320px, 1fr) minmax(240px, 0.7fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.footer-brand p,
.footer-cta p {
  margin-top: 18px;
}

.footer-email {
  display: inline-block;
  margin-top: 12px;
  color: var(--teal);
}

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

.footer-col {
  display: grid;
  gap: 12px;
}

.footer-col strong,
.footer-cta strong {
  color: var(--ink);
}

.footer-col a {
  color: var(--muted);
  font-weight: 500;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.footer-back-top {
  color: var(--teal);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
  transition-delay: calc(var(--reveal-delay, 0) * 90ms);
}

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

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.9);
  }

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

@keyframes barRise {
  from {
    transform: scaleY(0.22);
    opacity: 0.45;
  }

  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes todayPulse {
  0%,
  100% {
    filter: saturate(1);
  }

  50% {
    filter: saturate(1.22) brightness(1.08);
  }
}

@media (max-width: 1080px) {
  .cc-kpis,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .research-layout,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .process-connector-line {
    display: none;
  }
}

@media (max-width: 760px) {
  .h1-sub {
    -webkit-text-stroke: 0;
    color: rgba(247, 251, 255, 0.9);
  }

  .cc-titlebar,
  .cc-kpis,
  .cc-charts,
  .research-visual-grid,
  .process-grid,
  .form-row,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .cc-titlebar {
    grid-template-columns: auto 1fr;
  }

  .cc-live-badge {
    grid-column: 1 / -1;
    width: max-content;
  }

  .cc-status {
    align-items: flex-start;
  }

  .footer-bottom {
    display: grid;
  }
}
